Dominique Leuenberger 2019-07-08 13:09:21 +00:00 committed by Git OBS Bridge
commit 2ba76e31f6
7 changed files with 106 additions and 9 deletions

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Jul 1 23:45:55 CEST 2019 - sbrabec@suse.com
- Fix license of libraries: LGPL-2.1-or-later and BSD-3-Clause for
libuuid (bsc#1135708).
-------------------------------------------------------------------
Thu Jun 20 09:27:11 UTC 2019 - Martin Liška <mliska@suse.cz>
- Use FAT LTO objects in order to provide proper static library (boo#1138795).
-------------------------------------------------------------------
Wed Jun 19 00:21:25 CEST 2019 - sbrabec@suse.com
- raw.service: Add RemainAfterExit=yes (bsc#1135534).
-------------------------------------------------------------------
Thu May 9 21:00:29 CEST 2019 - sbrabec@suse.com

View File

@ -217,6 +217,7 @@ mount program, the fdisk configuration tool, and more.
%package -n libblkid1
Summary: Filesystem detection library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libblkid1
Library for filesystem detection.
@ -224,6 +225,7 @@ Library for filesystem detection.
%package -n libblkid-devel
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libblkid1 = %{version}
%description -n libblkid-devel
@ -233,6 +235,7 @@ detection.
%package -n libblkid-devel-static
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libblkid-devel = %{version}
%description -n libblkid-devel-static
@ -242,6 +245,7 @@ detection.
%package -n libuuid1
Summary: Library to generate UUIDs
Group: System/Libraries
License: BSD-3-Clause
%description -n libuuid1
A library to generate universally unique IDs (UUIDs).
@ -249,6 +253,7 @@ A library to generate universally unique IDs (UUIDs).
%package -n libuuid-devel
Summary: Development files for libuuid
Group: Development/Libraries/C and C++
License: BSD-3-Clause
Requires: libuuid1 = %{version}
%description -n libuuid-devel
@ -258,6 +263,7 @@ unique IDs (UUIDs).
%package -n libuuid-devel-static
Summary: Development files for libuuid
Group: Development/Libraries/C and C++
License: BSD-3-Clause
Requires: libuuid-devel = %{version}
%description -n libuuid-devel-static
@ -267,6 +273,7 @@ unique IDs (UUIDs).
%package -n libmount1
Summary: Device mount library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libmount1
Library designed to be used in low-level utils like
@ -275,22 +282,25 @@ mount(8) and /usr/sbin/mount.<type> helpers.
%package -n libmount-devel
Summary: Development files for libmount
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libmount1 = %{version}
%description -n libmount-devel
Files to develop applications using the libmount library.
%package -n libmount-devel-static
Summary: Development files for libmount
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libmount-devel = %{version}
%description -n libmount-devel-static
Files to develop applications using the libmount library.
%description -n libmount-devel
Files to develop applications using the libmount library.
%package -n libsmartcols1
Summary: Column-based text sort engine
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libsmartcols1
Library to sort human readable column-based text output.
@ -298,6 +308,7 @@ Library to sort human readable column-based text output.
%package -n libsmartcols-devel
Summary: Development files for libsmartcols
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libsmartcols1 = %{version}
%description -n libsmartcols-devel
@ -306,6 +317,7 @@ Files to develop applications using the libsmartcols library.
%package -n libsmartcols-devel-static
Summary: Development files for libsmartcols
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libsmartcols-devel = %{version}
%description -n libsmartcols-devel-static
@ -314,6 +326,7 @@ Files to develop applications using the libsmartcols library.
%package -n libfdisk1
Summary: Filesystem detection library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libfdisk1
Library for filesystem detection.
@ -321,6 +334,7 @@ Library for filesystem detection.
%package -n libfdisk-devel
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libfdisk1 = %{version}
%description -n libfdisk-devel
@ -330,6 +344,7 @@ detection.
%package -n libfdisk-devel-static
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libfdisk-devel = %{version}
%description -n libfdisk-devel-static
@ -399,6 +414,7 @@ cp -a %{S:2} .
%patch5 -p1
%build
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
bash ./util-linux-login_defs-check.sh
%if %build_util_linux
#

View File

@ -4,6 +4,7 @@ After=local-fs.target remote-fs.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/bin/sh -c "\
/sbin/modprobe raw;\
/sbin/udevadm settle;\

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Jul 1 23:45:55 CEST 2019 - sbrabec@suse.com
- Fix license of libraries: LGPL-2.1-or-later and BSD-3-Clause for
libuuid (bsc#1135708).
-------------------------------------------------------------------
Thu Jun 20 09:27:11 UTC 2019 - Martin Liška <mliska@suse.cz>
- Use FAT LTO objects in order to provide proper static library (boo#1138795).
-------------------------------------------------------------------
Wed Jun 19 00:21:25 CEST 2019 - sbrabec@suse.com
- raw.service: Add RemainAfterExit=yes (bsc#1135534).
-------------------------------------------------------------------
Thu May 9 21:00:29 CEST 2019 - sbrabec@suse.com

View File

@ -217,6 +217,7 @@ mount program, the fdisk configuration tool, and more.
%package -n libblkid1
Summary: Filesystem detection library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libblkid1
Library for filesystem detection.
@ -224,6 +225,7 @@ Library for filesystem detection.
%package -n libblkid-devel
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libblkid1 = %{version}
%description -n libblkid-devel
@ -233,6 +235,7 @@ detection.
%package -n libblkid-devel-static
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libblkid-devel = %{version}
%description -n libblkid-devel-static
@ -242,6 +245,7 @@ detection.
%package -n libuuid1
Summary: Library to generate UUIDs
Group: System/Libraries
License: BSD-3-Clause
%description -n libuuid1
A library to generate universally unique IDs (UUIDs).
@ -249,6 +253,7 @@ A library to generate universally unique IDs (UUIDs).
%package -n libuuid-devel
Summary: Development files for libuuid
Group: Development/Libraries/C and C++
License: BSD-3-Clause
Requires: libuuid1 = %{version}
%description -n libuuid-devel
@ -258,6 +263,7 @@ unique IDs (UUIDs).
%package -n libuuid-devel-static
Summary: Development files for libuuid
Group: Development/Libraries/C and C++
License: BSD-3-Clause
Requires: libuuid-devel = %{version}
%description -n libuuid-devel-static
@ -267,6 +273,7 @@ unique IDs (UUIDs).
%package -n libmount1
Summary: Device mount library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libmount1
Library designed to be used in low-level utils like
@ -275,22 +282,25 @@ mount(8) and /usr/sbin/mount.<type> helpers.
%package -n libmount-devel
Summary: Development files for libmount
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libmount1 = %{version}
%description -n libmount-devel
Files to develop applications using the libmount library.
%package -n libmount-devel-static
Summary: Development files for libmount
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libmount-devel = %{version}
%description -n libmount-devel-static
Files to develop applications using the libmount library.
%description -n libmount-devel
Files to develop applications using the libmount library.
%package -n libsmartcols1
Summary: Column-based text sort engine
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libsmartcols1
Library to sort human readable column-based text output.
@ -298,6 +308,7 @@ Library to sort human readable column-based text output.
%package -n libsmartcols-devel
Summary: Development files for libsmartcols
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libsmartcols1 = %{version}
%description -n libsmartcols-devel
@ -306,6 +317,7 @@ Files to develop applications using the libsmartcols library.
%package -n libsmartcols-devel-static
Summary: Development files for libsmartcols
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libsmartcols-devel = %{version}
%description -n libsmartcols-devel-static
@ -314,6 +326,7 @@ Files to develop applications using the libsmartcols library.
%package -n libfdisk1
Summary: Filesystem detection library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libfdisk1
Library for filesystem detection.
@ -321,6 +334,7 @@ Library for filesystem detection.
%package -n libfdisk-devel
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libfdisk1 = %{version}
%description -n libfdisk-devel
@ -330,6 +344,7 @@ detection.
%package -n libfdisk-devel-static
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libfdisk-devel = %{version}
%description -n libfdisk-devel-static
@ -399,6 +414,7 @@ cp -a %{S:2} .
%patch5 -p1
%build
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
bash ./util-linux-login_defs-check.sh
%if %build_util_linux
#

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Jul 1 23:45:55 CEST 2019 - sbrabec@suse.com
- Fix license of libraries: LGPL-2.1-or-later and BSD-3-Clause for
libuuid (bsc#1135708).
-------------------------------------------------------------------
Thu Jun 20 09:27:11 UTC 2019 - Martin Liška <mliska@suse.cz>
- Use FAT LTO objects in order to provide proper static library (boo#1138795).
-------------------------------------------------------------------
Wed Jun 19 00:21:25 CEST 2019 - sbrabec@suse.com
- raw.service: Add RemainAfterExit=yes (bsc#1135534).
-------------------------------------------------------------------
Thu May 9 21:00:29 CEST 2019 - sbrabec@suse.com

View File

@ -217,6 +217,7 @@ mount program, the fdisk configuration tool, and more.
%package -n libblkid1
Summary: Filesystem detection library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libblkid1
Library for filesystem detection.
@ -224,6 +225,7 @@ Library for filesystem detection.
%package -n libblkid-devel
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libblkid1 = %{version}
%description -n libblkid-devel
@ -233,6 +235,7 @@ detection.
%package -n libblkid-devel-static
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libblkid-devel = %{version}
%description -n libblkid-devel-static
@ -242,6 +245,7 @@ detection.
%package -n libuuid1
Summary: Library to generate UUIDs
Group: System/Libraries
License: BSD-3-Clause
%description -n libuuid1
A library to generate universally unique IDs (UUIDs).
@ -249,6 +253,7 @@ A library to generate universally unique IDs (UUIDs).
%package -n libuuid-devel
Summary: Development files for libuuid
Group: Development/Libraries/C and C++
License: BSD-3-Clause
Requires: libuuid1 = %{version}
%description -n libuuid-devel
@ -258,6 +263,7 @@ unique IDs (UUIDs).
%package -n libuuid-devel-static
Summary: Development files for libuuid
Group: Development/Libraries/C and C++
License: BSD-3-Clause
Requires: libuuid-devel = %{version}
%description -n libuuid-devel-static
@ -267,6 +273,7 @@ unique IDs (UUIDs).
%package -n libmount1
Summary: Device mount library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libmount1
Library designed to be used in low-level utils like
@ -275,22 +282,25 @@ mount(8) and /usr/sbin/mount.<type> helpers.
%package -n libmount-devel
Summary: Development files for libmount
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libmount1 = %{version}
%description -n libmount-devel
Files to develop applications using the libmount library.
%package -n libmount-devel-static
Summary: Development files for libmount
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libmount-devel = %{version}
%description -n libmount-devel-static
Files to develop applications using the libmount library.
%description -n libmount-devel
Files to develop applications using the libmount library.
%package -n libsmartcols1
Summary: Column-based text sort engine
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libsmartcols1
Library to sort human readable column-based text output.
@ -298,6 +308,7 @@ Library to sort human readable column-based text output.
%package -n libsmartcols-devel
Summary: Development files for libsmartcols
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libsmartcols1 = %{version}
%description -n libsmartcols-devel
@ -306,6 +317,7 @@ Files to develop applications using the libsmartcols library.
%package -n libsmartcols-devel-static
Summary: Development files for libsmartcols
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libsmartcols-devel = %{version}
%description -n libsmartcols-devel-static
@ -314,6 +326,7 @@ Files to develop applications using the libsmartcols library.
%package -n libfdisk1
Summary: Filesystem detection library
Group: System/Libraries
License: LGPL-2.1-or-later
%description -n libfdisk1
Library for filesystem detection.
@ -321,6 +334,7 @@ Library for filesystem detection.
%package -n libfdisk-devel
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libfdisk1 = %{version}
%description -n libfdisk-devel
@ -330,6 +344,7 @@ detection.
%package -n libfdisk-devel-static
Summary: Development files for the filesystem detection library
Group: Development/Libraries/C and C++
License: LGPL-2.1-or-later
Requires: libfdisk-devel = %{version}
%description -n libfdisk-devel-static
@ -399,6 +414,7 @@ cp -a %{S:2} .
%patch5 -p1
%build
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
bash ./util-linux-login_defs-check.sh
%if %build_util_linux
#