From fidencio at redhat.com Mon Dec 2 08:07:27 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Mon, 2 Dec 2019 09:07:27 +0100 Subject: [Libosinfo] ANNOUNCE: libosinfo 1.7.0 release Message-ID: I am happy to announce a new release of libosinfo, version 1.7.0: https://releases.pagure.org/libosinfo/libosinfo-1.7.0.tar.xz This is signed with key 09B9 C8FF 223E F113 AFA0 6A39 EE92 6C2B DACC 177B (4096R) https://releases.pagure.org/libosinfo/libosinfo-1.7.0.tar.xz.asc All historical releases are available from: http://libosinfo.org/download/ Changes in this release include: - Add API to expose a device driver "priority" - Improve media detection when using "volume-size" to distinguish medias - General improvements on OsinfoList APIs to avoid unsafe access - Minor POD fixes - Switch to meson build system - Add API to expose "firmware" support on OsinfoOS - Drop "env" type support from osinfo-detect - Print the architecture of the detected tree / media on osinfo-detect - Add API to create an OsinfoTree from a treeinfo file Thanks to everyone who contributed to this release Best Regards, -- Fabiano Fid?ncio From fidencio at redhat.com Mon Dec 2 08:09:48 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Mon, 2 Dec 2019 09:09:48 +0100 Subject: [Libosinfo] ANNOUNCE: osinfo-db-tools 1.7.0 release Message-ID: I am happy to announce a new release of osinfo-db-tools, version 1.7.0: https://releases.pagure.org/libosinfo/osinfo-db-tools-1.7.0.tar.xz This is signed with key 09B9 C8FF 223E F113 AFA0 6A39 EE92 6C2B DACC 177B (4096R) https://releases.pagure.org/libosinfo/osinfo-db-tools-1.7.0.tar.xz.asc All historical releases are available from: http://libosinfo.org/download/ Changes in this release include: - Switch to meson build system Thanks to everyone who contributed to this release Best Regards, -- Fabiano Fid?ncio From fidencio at redhat.com Wed Dec 4 14:06:20 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Wed, 4 Dec 2019 15:06:20 +0100 Subject: [Libosinfo] ANNOUNCE: libosinfo 1.7.1 release Message-ID: After some breakage caused by 1.7.0 release, I am happy to announce a new release of libosinfo, version 1.7.1: https://releases.pagure.org/libosinfo/libosinfo-1.7.1.tar.xz This is signed with key 09B9 C8FF 223E F113 AFA0 6A39 EE92 6C2B DACC 177B (4096R) https://releases.pagure.org/libosinfo/libosinfo-1.7.1.tar.xz.asc All historical releases are available from: http://libosinfo.org/download/ Changes in this release include: - Fix usage of versioned symbols - MinGW spec file fixes and improvements - Fix pci.ids and usb.ids installation Thanks to everyone who contributed to this release and sorry for the breakage caused by 1.7.0 one. Best Regards, -- Fabiano Fid?ncio From bogorodskiy at gmail.com Sun Dec 8 06:12:45 2019 From: bogorodskiy at gmail.com (Roman Bogorodskiy) Date: Sun, 8 Dec 2019 10:12:45 +0400 Subject: [Libosinfo] [osinfo-db-tools PATCH 1/2] meson: respect mandir option Message-ID: <20191208061246.28213-1-bogorodskiy@gmail.com> There's an osinfo_db_tools_mandir setting that respects meson's 'mandir' option. Use that for tools man installation dir instead of building a path based on osinfo_db_tools_datadir. Signed-off-by: Roman Bogorodskiy --- tools/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/meson.build b/tools/meson.build index 6c87014..c810fd6 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -90,7 +90,7 @@ if pod2man.found() output: file + '.1', input: file + '.c', install: true, - install_dir: join_paths(osinfo_db_tools_datadir, 'man', 'man1'), + install_dir: join_paths(osinfo_db_tools_mandir, 'man1'), build_by_default: true, command: [ pod2man, -- 2.23.0 From bogorodskiy at gmail.com Sun Dec 8 06:12:46 2019 From: bogorodskiy at gmail.com (Roman Bogorodskiy) Date: Sun, 8 Dec 2019 10:12:46 +0400 Subject: [Libosinfo] [osinfo-db-tools PATCH 2/2] meson: fix GETTEXT_PACKAGE formatting In-Reply-To: <20191208061246.28213-1-bogorodskiy@gmail.com> References: <20191208061246.28213-1-bogorodskiy@gmail.com> Message-ID: <20191208061246.28213-2-bogorodskiy@gmail.com> Properly specify placeholder value to get it replaced. Signed-off-by: Roman Bogorodskiy --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 663b6da..96eb9ae 100644 --- a/meson.build +++ b/meson.build @@ -76,7 +76,7 @@ osinfo_db_tools_cflags += [ ] # gettext package name -osinfo_db_tools_cflags += ['-DGETTEXT_PACKAGE="0"'.format(meson.project_name())] +osinfo_db_tools_cflags += ['-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name())] # cflags to check whether the compiler supports them or not osinfo_db_tools_check_cflags = [ -- 2.23.0 From bogorodskiy at gmail.com Sun Dec 8 07:53:45 2019 From: bogorodskiy at gmail.com (Roman Bogorodskiy) Date: Sun, 8 Dec 2019 11:53:45 +0400 Subject: [Libosinfo] [osinfo-db-tools PATCH] meson: tests: make python3 really optional Message-ID: <20191208075345.85739-1-bogorodskiy@gmail.com> As python3 is supposed to be optional, pass 'required: false' to python.find_installation(), otherwise when it's missing, build fails with: Program python found: NO tests/meson.build:12:0: ERROR: python3 not found Signed-off-by: Roman Bogorodskiy --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 08ba470..05c7e1a 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -9,7 +9,7 @@ test( python = import('python') -python3 = python.find_installation('python3') +python3 = python.find_installation('python3', required: false) if python3.found() tests = { 'export-import': 'test_osinfo_db_export_import.py', -- 2.23.0 From fidencio at redhat.com Sun Dec 8 09:54:12 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Sun, 8 Dec 2019 10:54:12 +0100 Subject: [Libosinfo] [osinfo-db-tools PATCH 1/2] meson: respect mandir option In-Reply-To: <20191208061246.28213-1-bogorodskiy@gmail.com> References: <20191208061246.28213-1-bogorodskiy@gmail.com> Message-ID: On Sun, Dec 8, 2019 at 7:13 AM Roman Bogorodskiy wrote: > > There's an osinfo_db_tools_mandir setting that respects meson's 'mandir' > option. Use that for tools man installation dir instead of building > a path based on osinfo_db_tools_datadir. > > Signed-off-by: Roman Bogorodskiy > --- > tools/meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/meson.build b/tools/meson.build > index 6c87014..c810fd6 100644 > --- a/tools/meson.build > +++ b/tools/meson.build > @@ -90,7 +90,7 @@ if pod2man.found() > output: file + '.1', > input: file + '.c', > install: true, > - install_dir: join_paths(osinfo_db_tools_datadir, 'man', 'man1'), > + install_dir: join_paths(osinfo_db_tools_mandir, 'man1'), > build_by_default: true, > command: [ > pod2man, > -- > 2.23.0 > > > _______________________________________________ > Libosinfo mailing list > Libosinfo at redhat.com > https://www.redhat.com/mailman/listinfo/libosinfo > Reviewed-by: Fabiano Fid?ncio From fidencio at redhat.com Sun Dec 8 09:54:51 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Sun, 8 Dec 2019 10:54:51 +0100 Subject: [Libosinfo] [osinfo-db-tools PATCH 2/2] meson: fix GETTEXT_PACKAGE formatting In-Reply-To: <20191208061246.28213-2-bogorodskiy@gmail.com> References: <20191208061246.28213-1-bogorodskiy@gmail.com> <20191208061246.28213-2-bogorodskiy@gmail.com> Message-ID: On Sun, Dec 8, 2019 at 7:13 AM Roman Bogorodskiy wrote: > > Properly specify placeholder value to get it replaced. > > Signed-off-by: Roman Bogorodskiy > --- > meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meson.build b/meson.build > index 663b6da..96eb9ae 100644 > --- a/meson.build > +++ b/meson.build > @@ -76,7 +76,7 @@ osinfo_db_tools_cflags += [ > ] > > # gettext package name > -osinfo_db_tools_cflags += ['-DGETTEXT_PACKAGE="0"'.format(meson.project_name())] > +osinfo_db_tools_cflags += ['-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name())] > > # cflags to check whether the compiler supports them or not > osinfo_db_tools_check_cflags = [ > -- > 2.23.0 > > > _______________________________________________ > Libosinfo mailing list > Libosinfo at redhat.com > https://www.redhat.com/mailman/listinfo/libosinfo > Reviewed-by: Fabiano Fid?ncio From fidencio at redhat.com Sun Dec 8 09:55:03 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Sun, 8 Dec 2019 10:55:03 +0100 Subject: [Libosinfo] [osinfo-db-tools PATCH] meson: tests: make python3 really optional In-Reply-To: <20191208075345.85739-1-bogorodskiy@gmail.com> References: <20191208075345.85739-1-bogorodskiy@gmail.com> Message-ID: On Sun, Dec 8, 2019 at 8:54 AM Roman Bogorodskiy wrote: > > As python3 is supposed to be optional, pass > 'required: false' to python.find_installation(), otherwise when > it's missing, build fails with: > > Program python found: NO > tests/meson.build:12:0: ERROR: python3 not found > > Signed-off-by: Roman Bogorodskiy > --- > tests/meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/meson.build b/tests/meson.build > index 08ba470..05c7e1a 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -9,7 +9,7 @@ test( > > python = import('python') > > -python3 = python.find_installation('python3') > +python3 = python.find_installation('python3', required: false) > if python3.found() > tests = { > 'export-import': 'test_osinfo_db_export_import.py', > -- > 2.23.0 > > > _______________________________________________ > Libosinfo mailing list > Libosinfo at redhat.com > https://www.redhat.com/mailman/listinfo/libosinfo > Reviewed-by: Fabiano Fid?ncio From bogorodskiy at gmail.com Sun Dec 8 11:37:54 2019 From: bogorodskiy at gmail.com (Roman Bogorodskiy) Date: Sun, 8 Dec 2019 15:37:54 +0400 Subject: [Libosinfo] [libosinfo PATCH] meson: respect mandir option Message-ID: <20191208113754.79197-1-bogorodskiy@gmail.com> Construct man installation dir from libosinfo_mandir instead of libosinfo_datadir. Signed-off-by: Roman Bogorodskiy --- tools/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/meson.build b/tools/meson.build index d24b167..0a95664 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -54,7 +54,7 @@ if pod2man.found() output: file + '.1', input: file + '.c', install: true, - install_dir: join_paths(libosinfo_datadir, 'man', 'man1'), + install_dir: join_paths(libosinfo_mandir, 'man1'), build_by_default: true, command: [ pod2man, -- 2.23.0 From fidencio at redhat.com Sun Dec 8 23:09:55 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Mon, 9 Dec 2019 00:09:55 +0100 Subject: [Libosinfo] [libosinfo PATCH] meson: respect mandir option In-Reply-To: <20191208113754.79197-1-bogorodskiy@gmail.com> References: <20191208113754.79197-1-bogorodskiy@gmail.com> Message-ID: On Sun, Dec 8, 2019 at 12:38 PM Roman Bogorodskiy wrote: > > Construct man installation dir from libosinfo_mandir instead of > libosinfo_datadir. > > Signed-off-by: Roman Bogorodskiy > --- > tools/meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/meson.build b/tools/meson.build > index d24b167..0a95664 100644 > --- a/tools/meson.build > +++ b/tools/meson.build > @@ -54,7 +54,7 @@ if pod2man.found() > output: file + '.1', > input: file + '.c', > install: true, > - install_dir: join_paths(libosinfo_datadir, 'man', 'man1'), > + install_dir: join_paths(libosinfo_mandir, 'man1'), > build_by_default: true, > command: [ > pod2man, > -- > 2.23.0 > > > _______________________________________________ > Libosinfo mailing list > Libosinfo at redhat.com > https://www.redhat.com/mailman/listinfo/libosinfo > Reviewed-by: Fabiano Fid?ncio From carnold at suse.com Wed Dec 11 18:09:30 2019 From: carnold at suse.com (Charles Arnold) Date: Wed, 11 Dec 2019 18:09:30 +0000 Subject: [Libosinfo] [PATCH osinfo-db 1/2] Add SLE12-SP5 to the database In-Reply-To: <20191211180917.11783-1-carnold@suse.com> References: <20191211180917.11783-1-carnold@suse.com> Message-ID: <20191211180917.11783-2-carnold@suse.com> Add SUSE Linux Enterprise Server and Desktop description files for version 12-SP5. --- data/os/suse.com/sled-12.5.xml.in | 38 +++++++++++++++++++++++ data/os/suse.com/sles-12.5.xml.in | 65 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 data/os/suse.com/sled-12.5.xml.in create mode 100644 data/os/suse.com/sles-12.5.xml.in diff --git a/data/os/suse.com/sled-12.5.xml.in b/data/os/suse.com/sled-12.5.xml.in new file mode 100644 index 0000000..7442b0c --- /dev/null +++ b/data/os/suse.com/sled-12.5.xml.in @@ -0,0 +1,38 @@ + + + + sled12sp5 + <_name>SUSE Linux Enterprise Desktop 12 SP5 + 12.5 + <_vendor>SUSE + linux + sled + + + + 2019-12-06 + + + + LINUX + SLE-12-SP5-Desktop-DVD-x86_64 + + boot/x86_64/loader/linux + boot/x86_64/loader/initrd + + + + + 500000000 + 536870912 + 1074151424 + + + 2400000000 + 1073741824 + 17179869184 + + + + diff --git a/data/os/suse.com/sles-12.5.xml.in b/data/os/suse.com/sles-12.5.xml.in new file mode 100644 index 0000000..2264cd0 --- /dev/null +++ b/data/os/suse.com/sles-12.5.xml.in @@ -0,0 +1,65 @@ + + + + sles12sp5 + <_name>SUSE Linux Enterprise Server 12 SP5 + 12.5 + <_vendor>SUSE + linux + sles + + + + 2019-12-06 + + + + LINUX + SLE-12-SP5-Server-DVD-x86_64 + + boot/x86_64/loader/linux + boot/x86_64/loader/initrd + + + + + LINUX + SLE-12-SP5-Server-DVD-aarch64 + + boot/aarch64/linux + boot/aarch64/initrd + + + + + LINUX + SLE-12-SP5-Server-DVD-ppc64le + + boot/ppc64le/linux + boot/ppc64le/initrd + + + + + LINUX + SLE-12-SP5-Server-DVD-s390x + + boot/s390x/linux + boot/s390x/initrd + + + + + 500000000 + 536870912 + 1074151424 + + + 2400000000 + 1073741824 + 17179869184 + + + + -- 2.16.4 From carnold at suse.com Wed Dec 11 18:09:31 2019 From: carnold at suse.com (Charles Arnold) Date: Wed, 11 Dec 2019 18:09:31 +0000 Subject: [Libosinfo] [PATCH osinfo-db 2/2] Added SLE12-SP5 isodata to the database In-Reply-To: <20191211180917.11783-1-carnold@suse.com> References: <20191211180917.11783-1-carnold@suse.com> Message-ID: <20191211180917.11783-3-carnold@suse.com> Add SUSE Linux Enterprise Server and Desktop isodata files for version 12-SP5. --- .../SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ .../SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ .../SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt | 16 ++++++++++++ .../SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ .../SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ 5 files changed, 132 insertions(+) create mode 100644 tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt diff --git a/tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt new file mode 100644 index 0000000..4575743 --- /dev/null +++ b/tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Desktop-DVD-x86_64029 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Desktop-DVD-x86_64-Build0296-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 2241936 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect 4 + Bootoff 155C 5468 diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt new file mode 100644 index 0000000..23cfa6c --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-aarch64037 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-aarch64-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 1722762 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect CCC + Bootoff 1331E 78622 diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt new file mode 100644 index 0000000..9cff7e3 --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt @@ -0,0 +1,16 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-ppc64le037 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-ppc64le-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 1906680 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt new file mode 100644 index 0000000..fb0fbda --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-s390x03721 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-s390x-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 1919321 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect 4 + Bootoff 26A 618 diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt new file mode 100644 index 0000000..39b4649 --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-x86_640372 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-x86_64-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 2001146 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect 4 + Bootoff 1526 5414 -- 2.16.4 From carnold at suse.com Wed Dec 11 18:09:29 2019 From: carnold at suse.com (Charles Arnold) Date: Wed, 11 Dec 2019 18:09:29 +0000 Subject: [Libosinfo] [PATCH osinfo-db 0/2] Add SLE12-SP5 Information to the Database Message-ID: <20191211180917.11783-1-carnold@suse.com> Add SUSE Linux Enterprise Server and Desktop description and isodata files for version 12-SP5. Charles Arnold (2): Add SLE12-SP5 to the database Added SLE12-SP5 isodata to the database data/os/suse.com/sled-12.5.xml.in | 38 +++++++++++++ data/os/suse.com/sles-12.5.xml.in | 65 ++++++++++++++++++++++ .../SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++ .../SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt | 29 ++++++++++ .../SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt | 16 ++++++ .../SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt | 29 ++++++++++ .../SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++ 7 files changed, 235 insertions(+) create mode 100644 data/os/suse.com/sled-12.5.xml.in create mode 100644 data/os/suse.com/sles-12.5.xml.in create mode 100644 tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt -- 2.16.4 From fidencio at redhat.com Thu Dec 12 10:40:50 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Thu, 12 Dec 2019 11:40:50 +0100 Subject: [Libosinfo] [PATCH osinfo-db 0/2] Add SLE12-SP5 Information to the Database In-Reply-To: <20191211180917.11783-1-carnold@suse.com> References: <20191211180917.11783-1-carnold@suse.com> Message-ID: Charles, On Wed, Dec 11, 2019 at 7:13 PM Charles Arnold wrote: > > Add SUSE Linux Enterprise Server and Desktop description and > isodata files for version 12-SP5. > > Charles Arnold (2): > Add SLE12-SP5 to the database > Added SLE12-SP5 isodata to the database Please, change: Added -> Add Apart from this, two comments: - We started requiring that all contributors to assert that contributions are in compliance with the terms of the Developer's Certificate of Origin 1.1 (https://developercertificate.org/). In order to indicate compliance every commit must have a tag Signed-off-by: REAL NAME This can be achieved by passing the "-s" flag to the "git commit" command. To update all commits on the current branch to add a Signed-off-by tag, use git rebase -i master -x 'git commit --amend --no-edit -s' - We need to update the -unknown entries as well. I've cooked a patch for this so you don't have to do so. However, I'd like to have your ack on the changes: ``` >From c161eb72c1d7a16d77c966d5cfb29e9c2c6b054d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 12 Dec 2019 11:33:58 +0100 Subject: [PATCH] sle[ds]-12-unknown: Update after 12.5 release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiano Fid?ncio --- data/os/suse.com/sled-12-unknown.xml.in | 6 +++--- data/os/suse.com/sles-12-unknown.xml.in | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/data/os/suse.com/sled-12-unknown.xml.in b/data/os/suse.com/sled-12-unknown.xml.in index ff2f56d3..defcaad9 100644 --- a/data/os/suse.com/sled-12-unknown.xml.in +++ b/data/os/suse.com/sled-12-unknown.xml.in @@ -8,13 +8,13 @@ <_vendor>SUSE linux sled - - + + LINUX - SLE-12-SP[5-9]-Desktop-DVD-x86_64 + SLE-12-SP[6-9]-Desktop-DVD-x86_64 boot/x86_64/loader/linux boot/x86_64/loader/initrd diff --git a/data/os/suse.com/sles-12-unknown.xml.in b/data/os/suse.com/sles-12-unknown.xml.in index ee2b975a..4f128580 100644 --- a/data/os/suse.com/sles-12-unknown.xml.in +++ b/data/os/suse.com/sles-12-unknown.xml.in @@ -8,13 +8,13 @@ <_vendor>SUSE linux sles - - + + LINUX - SLE-12-SP[5-9]-Server-DVD-x86_64 + SLE-12-SP[6-9]-Server-DVD-x86_64 boot/x86_64/loader/linux boot/x86_64/loader/initrd @@ -23,7 +23,7 @@ LINUX - SLE-12-SP[5-9]-Server-DVD-aarch64 + SLE-12-SP[6-9]-Server-DVD-aarch64 boot/aarch64/linux boot/aarch64/initrd @@ -32,7 +32,7 @@ LINUX - SLE-12-SP[5-9]-Server-DVD-ppc64le + SLE-12-SP[6-9]-Server-DVD-ppc64le boot/ppc64le/linux boot/ppc64le/initrd @@ -41,7 +41,7 @@ LINUX - SLE-12-SP[5-9]-Server-DVD-s390x + SLE-12-SP[6-9]-Server-DVD-s390x boot/s390x/linux boot/s390x/initrd -- 2.23.0 ``` From carnold at suse.com Thu Dec 12 15:43:08 2019 From: carnold at suse.com (Charles Arnold) Date: Thu, 12 Dec 2019 15:43:08 +0000 Subject: [Libosinfo] [PATCH v2 osinfo-db 2/2] Add SLE12-SP5 isodata to the database In-Reply-To: <20191212154259.28400-1-carnold@suse.com> References: <20191212154259.28400-1-carnold@suse.com> Message-ID: <20191212154259.28400-3-carnold@suse.com> Add SUSE Linux Enterprise Server and Desktop isodata files for version 12-SP5. Signed-off-by: Charles Arnold --- .../SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ .../SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ .../SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt | 16 ++++++++++++ .../SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ .../SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++++++++++++++ 5 files changed, 132 insertions(+) create mode 100644 tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt diff --git a/tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt new file mode 100644 index 0000000..4575743 --- /dev/null +++ b/tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Desktop-DVD-x86_64029 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Desktop-DVD-x86_64-Build0296-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 2241936 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect 4 + Bootoff 155C 5468 diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt new file mode 100644 index 0000000..23cfa6c --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-aarch64037 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-aarch64-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 1722762 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect CCC + Bootoff 1331E 78622 diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt new file mode 100644 index 0000000..9cff7e3 --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt @@ -0,0 +1,16 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-ppc64le037 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-ppc64le-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 1906680 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt new file mode 100644 index 0000000..fb0fbda --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-s390x03721 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-s390x-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 1919321 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect 4 + Bootoff 26A 618 diff --git a/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt new file mode 100644 index 0000000..39b4649 --- /dev/null +++ b/tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt @@ -0,0 +1,29 @@ +CD-ROM is in ISO 9660 format +System id: LINUX +Volume id: SLE-12-SP5-Server-DVD-x86_640372 +Volume set id: +Publisher id: SUSE LINUX GmbH +Data preparer id: KIWI - http://opensuse.github.com/kiwi +Application id: SLE-12-SP5-Server-DVD-x86_64-Build0372-Media1 +Copyright File id: +Abstract File id: +Bibliographic File id: +Volume set size is: 1 +Volume set sequence number is: 1 +Logical block size is: 2048 +Volume size is: 2001146 +El Torito VD version 1 found, boot catalog is in sector 20 +Joliet with UCS level 3 found +Rock Ridge signatures version 1 found +Eltorito validation header: + Hid 1 + Arch 0 (x86) + ID 'SUSE LINUX GmbH' + Key 55 AA + Eltorito defaultboot header: + Bootid 88 (bootable) + Boot media 0 (No Emulation Boot) + Load segment 0 + Sys type 0 + Nsect 4 + Bootoff 1526 5414 -- 2.12.3 From carnold at suse.com Thu Dec 12 15:43:06 2019 From: carnold at suse.com (Charles Arnold) Date: Thu, 12 Dec 2019 15:43:06 +0000 Subject: [Libosinfo] [PATCH v2 osinfo-db 0/2] Add SLE12-SP5 Information to the Database Message-ID: <20191212154259.28400-1-carnold@suse.com> Add SUSE Linux Enterprise Server and Desktop description and isodata files for version 12-SP5. Charles Arnold (2): Add SLE12-SP5 to the database Add SLE12-SP5 isodata to the database data/os/suse.com/sled-12.5.xml.in | 38 +++++++++++++ data/os/suse.com/sles-12.5.xml.in | 65 ++++++++++++++++++++++ .../SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++ .../SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt | 29 ++++++++++ .../SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt | 16 ++++++ .../SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt | 29 ++++++++++ .../SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++ 7 files changed, 235 insertions(+) create mode 100644 data/os/suse.com/sled-12.5.xml.in create mode 100644 data/os/suse.com/sles-12.5.xml.in create mode 100644 tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt -- 2.12.3 From carnold at suse.com Thu Dec 12 15:43:07 2019 From: carnold at suse.com (Charles Arnold) Date: Thu, 12 Dec 2019 15:43:07 +0000 Subject: [Libosinfo] [PATCH v2 osinfo-db 1/2] Add SLE12-SP5 to the database In-Reply-To: <20191212154259.28400-1-carnold@suse.com> References: <20191212154259.28400-1-carnold@suse.com> Message-ID: <20191212154259.28400-2-carnold@suse.com> Add SUSE Linux Enterprise Server and Desktop description files for version 12-SP5. Signed-off-by: Charles Arnold --- data/os/suse.com/sled-12.5.xml.in | 38 +++++++++++++++++++++++ data/os/suse.com/sles-12.5.xml.in | 65 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 data/os/suse.com/sled-12.5.xml.in create mode 100644 data/os/suse.com/sles-12.5.xml.in diff --git a/data/os/suse.com/sled-12.5.xml.in b/data/os/suse.com/sled-12.5.xml.in new file mode 100644 index 0000000..7442b0c --- /dev/null +++ b/data/os/suse.com/sled-12.5.xml.in @@ -0,0 +1,38 @@ + + + + sled12sp5 + <_name>SUSE Linux Enterprise Desktop 12 SP5 + 12.5 + <_vendor>SUSE + linux + sled + + + + 2019-12-06 + + + + LINUX + SLE-12-SP5-Desktop-DVD-x86_64 + + boot/x86_64/loader/linux + boot/x86_64/loader/initrd + + + + + 500000000 + 536870912 + 1074151424 + + + 2400000000 + 1073741824 + 17179869184 + + + + diff --git a/data/os/suse.com/sles-12.5.xml.in b/data/os/suse.com/sles-12.5.xml.in new file mode 100644 index 0000000..2264cd0 --- /dev/null +++ b/data/os/suse.com/sles-12.5.xml.in @@ -0,0 +1,65 @@ + + + + sles12sp5 + <_name>SUSE Linux Enterprise Server 12 SP5 + 12.5 + <_vendor>SUSE + linux + sles + + + + 2019-12-06 + + + + LINUX + SLE-12-SP5-Server-DVD-x86_64 + + boot/x86_64/loader/linux + boot/x86_64/loader/initrd + + + + + LINUX + SLE-12-SP5-Server-DVD-aarch64 + + boot/aarch64/linux + boot/aarch64/initrd + + + + + LINUX + SLE-12-SP5-Server-DVD-ppc64le + + boot/ppc64le/linux + boot/ppc64le/initrd + + + + + LINUX + SLE-12-SP5-Server-DVD-s390x + + boot/s390x/linux + boot/s390x/initrd + + + + + 500000000 + 536870912 + 1074151424 + + + 2400000000 + 1073741824 + 17179869184 + + + + -- 2.12.3 From carnold at suse.com Thu Dec 12 15:46:30 2019 From: carnold at suse.com (Charles Arnold) Date: Thu, 12 Dec 2019 15:46:30 +0000 Subject: [Libosinfo] [PATCH osinfo-db 0/2] Add SLE12-SP5 Information to the Database In-Reply-To: References: <20191211180917.11783-1-carnold@suse.com> Message-ID: <1576165635.17517.2.camel@suse.com> On Thu, 2019-12-12 at 11:40 +0100, Fabiano Fid?ncio wrote: > Charles, > > On Wed, Dec 11, 2019 at 7:13 PM Charles Arnold > wrote: > > > > Add SUSE Linux Enterprise Server and Desktop description and > > isodata files for version 12-SP5. > > > > Charles Arnold (2): > > Add SLE12-SP5 to the database > > Added SLE12-SP5 isodata to the database > > Please, change: > Added -> Add > > Apart from this, two comments: > - We started requiring that all contributors to assert that > contributions are in compliance with the terms of the Developer's > Certificate of Origin 1.1 (https://developercertificate.org/). In > order to indicate compliance every commit must have a tag > Signed-off-by: REAL NAME > This can be achieved by passing the "-s" flag to the "git commit" > command. > To update all commits on the current branch to add a Signed-off-by > tag, use > git rebase -i master -x 'git commit --amend --no-edit -s' > > - We need to update the -unknown entries as well. I've cooked a patch > for this so you don't have to do so. However, I'd like to have your > ack on the changes: Thanks! > ``` > From c161eb72c1d7a16d77c966d5cfb29e9c2c6b054d Mon Sep 17 00:00:00 > 2001 > From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= > Date: Thu, 12 Dec 2019 11:33:58 +0100 > Subject: [PATCH] sle[ds]-12-unknown: Update after 12.5 release > MIME-Version: 1.0 > Content-Type: text/plain; charset=UTF-8 > Content-Transfer-Encoding: 8bit > > Signed-off-by: Fabiano Fid?ncio Acked-by: Charles Arnold > --- > data/os/suse.com/sled-12-unknown.xml.in | 6 +++--- > data/os/suse.com/sles-12-unknown.xml.in | 12 ++++++------ > 2 files changed, 9 insertions(+), 9 deletions(-) > > diff --git a/data/os/suse.com/sled-12-unknown.xml.in > b/data/os/suse.com/sled-12-unknown.xml.in > index ff2f56d3..defcaad9 100644 > --- a/data/os/suse.com/sled-12-unknown.xml.in > +++ b/data/os/suse.com/sled-12-unknown.xml.in > @@ -8,13 +8,13 @@ > <_vendor>SUSE > linux > sled > - ; > - ; > + ; > + ; > > > > LINUX > - SLE-12-SP[5-9]-Desktop-DVD-x86_64 > + SLE-12-SP[6-9]-Desktop-DVD-x86_64 > > boot/x86_64/loader/linux > boot/x86_64/loader/initrd > diff --git a/data/os/suse.com/sles-12-unknown.xml.in > b/data/os/suse.com/sles-12-unknown.xml.in > index ee2b975a..4f128580 100644 > --- a/data/os/suse.com/sles-12-unknown.xml.in > +++ b/data/os/suse.com/sles-12-unknown.xml.in > @@ -8,13 +8,13 @@ > <_vendor>SUSE > linux > sles > - ; > - ; > + ; > + ; > > > > LINUX > - SLE-12-SP[5-9]-Server-DVD-x86_64 > + SLE-12-SP[6-9]-Server-DVD-x86_64 > > boot/x86_64/loader/linux > boot/x86_64/loader/initrd > @@ -23,7 +23,7 @@ > > > LINUX > - SLE-12-SP[5-9]-Server-DVD-aarch64 > + SLE-12-SP[6-9]-Server-DVD-aarch64 > > boot/aarch64/linux > boot/aarch64/initrd > @@ -32,7 +32,7 @@ > > > LINUX > - SLE-12-SP[5-9]-Server-DVD-ppc64le > + SLE-12-SP[6-9]-Server-DVD-ppc64le > > boot/ppc64le/linux > boot/ppc64le/initrd > @@ -41,7 +41,7 @@ > > > LINUX > - SLE-12-SP[5-9]-Server-DVD-s390x > + SLE-12-SP[6-9]-Server-DVD-s390x > > boot/s390x/linux > boot/s390x/initrd From fidencio at redhat.com Mon Dec 16 12:02:04 2019 From: fidencio at redhat.com (=?UTF-8?Q?Fabiano_Fid=C3=AAncio?=) Date: Mon, 16 Dec 2019 13:02:04 +0100 Subject: [Libosinfo] [PATCH v2 osinfo-db 0/2] Add SLE12-SP5 Information to the Database In-Reply-To: <20191212154259.28400-1-carnold@suse.com> References: <20191212154259.28400-1-carnold@suse.com> Message-ID: On Thu, Dec 12, 2019 at 4:45 PM Charles Arnold wrote: > > Add SUSE Linux Enterprise Server and Desktop description and > isodata files for version 12-SP5. > > Charles Arnold (2): > Add SLE12-SP5 to the database > Add SLE12-SP5 isodata to the database > > data/os/suse.com/sled-12.5.xml.in | 38 +++++++++++++ > data/os/suse.com/sles-12.5.xml.in | 65 ++++++++++++++++++++++ > .../SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++ > .../SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt | 29 ++++++++++ > .../SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt | 16 ++++++ > .../SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt | 29 ++++++++++ > .../SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 ++++++++++ > 7 files changed, 235 insertions(+) > create mode 100644 data/os/suse.com/sled-12.5.xml.in > create mode 100644 data/os/suse.com/sles-12.5.xml.in > create mode 100644 tests/isodata/sled/sled12sp5/SLE-12-SP5-Desktop-DVD-x86_64-GM-DVD1.iso.txt > create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-aarch64-GM-DVD1.iso.txt > create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-ppc64le-GM-DVD1.iso.txt > create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-s390x-GM-DVD1.iso.txt > create mode 100644 tests/isodata/sles/sles12sp5/SLE-12-SP5-Server-DVD-x86_64-GM-DVD1.iso.txt > > -- > 2.12.3 > > > _______________________________________________ > Libosinfo mailing list > Libosinfo at redhat.com > https://www.redhat.com/mailman/listinfo/libosinfo > Reviewed-by: Fabiano Fid?ncio and pushed! Thanks for the contribution!