use standard log format
OBS-URL: https://build.opensuse.org/package/show/Base:System/kmod?expand=0&rev=138
This commit is contained in:
parent
5208542099
commit
57f8e17617
@ -2,9 +2,9 @@
|
|||||||
Thu Mar 8 16:34:16 UTC 2018 - msuchanek@suse.com
|
Thu Mar 8 16:34:16 UTC 2018 - msuchanek@suse.com
|
||||||
|
|
||||||
- Fix PKCS#7 signature display in modinfo (bsc#1077693).
|
- Fix PKCS#7 signature display in modinfo (bsc#1077693).
|
||||||
+ libkmod-signature-implement-pkcs7-parsing-with-asn1c.patch
|
* Add libkmod-signature-implement-pkcs7-parsing-with-asn1c.patch
|
||||||
+ libkmod-signature-Fix-crash-when-module-signature-is.patch
|
* Add libkmod-signature-Fix-crash-when-module-signature-is.patch
|
||||||
+ refresh 0010-modprobe-Implement-allow-unsupported-modules.patch
|
* Refresh 0010-modprobe-Implement-allow-unsupported-modules.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 1 13:49:25 UTC 2018 - msuchanek@suse.com
|
Thu Feb 1 13:49:25 UTC 2018 - msuchanek@suse.com
|
||||||
|
@ -21,7 +21,7 @@ Name: kmod-testsuite
|
|||||||
Version: 25
|
Version: 25
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Testsuite of the kmod package
|
Summary: Testsuite of the kmod package
|
||||||
License: LGPL-2.1+ and GPL-2.0+
|
License: LGPL-2.1-or-later AND GPL-2.0-or-later
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.jonmasters.org/blog/2011/12/20/libkmod-replaces-module-init-tools/
|
Url: http://www.jonmasters.org/blog/2011/12/20/libkmod-replaces-module-init-tools/
|
||||||
#Announce: https://lwn.net/Articles/664801/
|
#Announce: https://lwn.net/Articles/664801/
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
Thu Mar 8 16:34:16 UTC 2018 - msuchanek@suse.com
|
Thu Mar 8 16:34:16 UTC 2018 - msuchanek@suse.com
|
||||||
|
|
||||||
- Fix PKCS#7 signature display in modinfo (bsc#1077693).
|
- Fix PKCS#7 signature display in modinfo (bsc#1077693).
|
||||||
+ libkmod-signature-implement-pkcs7-parsing-with-asn1c.patch
|
* Add libkmod-signature-implement-pkcs7-parsing-with-asn1c.patch
|
||||||
+ libkmod-signature-Fix-crash-when-module-signature-is.patch
|
* Add libkmod-signature-Fix-crash-when-module-signature-is.patch
|
||||||
+ refresh 0010-modprobe-Implement-allow-unsupported-modules.patch
|
* Refresh 0010-modprobe-Implement-allow-unsupported-modules.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 1 13:49:25 UTC 2018 - msuchanek@suse.com
|
Thu Feb 1 13:49:25 UTC 2018 - msuchanek@suse.com
|
||||||
|
10
kmod.spec
10
kmod.spec
@ -21,7 +21,7 @@ Name: kmod
|
|||||||
Version: 25
|
Version: 25
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Utilities to load modules into the kernel
|
Summary: Utilities to load modules into the kernel
|
||||||
License: LGPL-2.1+ and GPL-2.0+
|
License: LGPL-2.1-or-later AND GPL-2.0-or-later
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: https://www.kernel.org/pub/linux/utils/kernel/kmod/
|
Url: https://www.kernel.org/pub/linux/utils/kernel/kmod/
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ indexes from module-init-tools project.
|
|||||||
|
|
||||||
%package bash-completion
|
%package bash-completion
|
||||||
Summary: Bash completion routines for the kmod utilities
|
Summary: Bash completion routines for the kmod utilities
|
||||||
License: LGPL-2.1+ and GPL-2.0+
|
License: LGPL-2.1-or-later AND GPL-2.0-or-later
|
||||||
Group: System/Shells
|
Group: System/Shells
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ Contains bash completion support for kmod utilities.
|
|||||||
|
|
||||||
%package compat
|
%package compat
|
||||||
Summary: Compat symlinks for kernel module utilities
|
Summary: Compat symlinks for kernel module utilities
|
||||||
License: GPL-2.0+
|
License: GPL-2.0-or-later
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Requires: kmod = %version-%release
|
Requires: kmod = %version-%release
|
||||||
Requires: suse-module-tools
|
Requires: suse-module-tools
|
||||||
@ -86,7 +86,7 @@ This package contains traditional name symlinks (lsmod, etc.)
|
|||||||
|
|
||||||
%package -n %lname
|
%package -n %lname
|
||||||
Summary: Library to interact with Linux kernel modules
|
Summary: Library to interact with Linux kernel modules
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1-or-later
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n %lname
|
%description -n %lname
|
||||||
@ -95,7 +95,7 @@ list modules, also checking its properties, dependencies and aliases.
|
|||||||
|
|
||||||
%package -n libkmod-devel
|
%package -n libkmod-devel
|
||||||
Summary: Development files for libkmod
|
Summary: Development files for libkmod
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1-or-later
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %lname = %version
|
Requires: %lname = %version
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user