[mpd/el8] Update to 0.22.2
by Leigh Scott
Summary of changes:
f61a71f... Update to 0.22.2 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[mpd/f31] Update to 0.22.2
by Leigh Scott
Summary of changes:
f61a71f... Update to 0.22.2 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[mpd/f32] Update to 0.22.2
by Leigh Scott
Summary of changes:
f61a71f... Update to 0.22.2 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[mpd/f33] Update to 0.22.2
by Leigh Scott
Summary of changes:
f61a71f... Update to 0.22.2 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[mpd] Update to 0.22.2
by Leigh Scott
commit f61a71fa3f5bd9f23a5f1a9937dac23da394c244
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Oct 28 21:05:20 2020 +0000
Update to 0.22.2
mpd.spec | 5 ++++-
sources | 4 ++--
2 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/mpd.spec b/mpd.spec
index 69f4d10..21ef313 100644
--- a/mpd.spec
+++ b/mpd.spec
@@ -16,7 +16,7 @@
Name: mpd
Epoch: 1
-Version: 0.22.1
+Version: 0.22.2
Release: 1%{?dist}
Summary: The Music Player Daemon
License: GPLv2+
@@ -243,6 +243,9 @@ fi
%changelog
+* Wed Oct 28 2020 Leigh Scott <leigh123linux(a)gmail.com> - 1:0.22.2-1
+- Update to 0.22.2
+
* Sat Oct 17 2020 Leigh Scott <leigh123linux(a)gmail.com> - 1:0.22.1-1
- Update to 0.22.1
diff --git a/sources b/sources
index 2f2c072..f8273c5 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (mpd-0.22.1.tar.xz) = b7c0156bb85bbc551435bbb9a49ed719e51fe0446dcecbaadbe083e705fc16da9d03d83814c7dcc041075a46544473cf63e5d1576dbc3961bfdfa44ef5fb27d7
-SHA512 (mpd-0.22.1.tar.xz.sig) = 2ae1ddd62a6ff81d733fd013e904c6bc70a8caeb9ce63745879ab720b057291523f8f3f2cfde00559a857c100059b61e7ee0f65fb40e6920e1a63dfad16ed939
+SHA512 (mpd-0.22.2.tar.xz.sig) = 722099c40bb11e42b5d11f081067927382e3ebbed3a0e3d6ba2006694c725f27ccda73f0d760b93ca1704679a077c14691801d993c9cf63b7af9886891c16846
+SHA512 (mpd-0.22.2.tar.xz) = 13ec85bda79d0c2588c50e2ebbf53b733f23c9700abfd7ccd4140db8080a4c496073727c8c04e9a2f8897669beeced0d77caa2bac7e2ca9adb41ad56dcf92aeb
4 years
[xtables-addons-kmod] Fix module path for fedora < 33 and el
by Leigh Scott
commit 48e8b984f9d0d325ca551699f52143bf016a0b1c
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Oct 28 20:44:19 2020 +0000
Fix module path for fedora < 33 and el
xtables-addons-kmod.spec | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
---
diff --git a/xtables-addons-kmod.spec b/xtables-addons-kmod.spec
index e0e6e8f..8321481 100644
--- a/xtables-addons-kmod.spec
+++ b/xtables-addons-kmod.spec
@@ -11,7 +11,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 3.11
-Release: 1%{?dist}
+Release: 2%{?dist}
License: GPLv2
URL: https://inai.de/projects/xtables-addons/
Source0: https://inai.de/files/xtables-addons/xtables-addons-%{version}.tar.xz
@@ -48,18 +48,29 @@ done
%build
for kernel_version in %{?kernel_versions} ; do
export XA_ABSTOPSRCDIR=${PWD}/_kmod_build_${kernel_version%%___*}
- make %{?_smp_mflags} V=1 -C "${kernel_version##*___}" M=${PWD}/_kmod_build_${kernel_version%%___*}/extensions modules
+ make %{?_smp_mflags} V=1 -C "${kernel_version##*___}" \
+ M=${PWD}/_kmod_build_${kernel_version%%___*}/extensions modules
done
%install
for kernel_version in %{?kernel_versions} ; do
export XA_ABSTOPSRCDIR=${PWD}/_kmod_build_${kernel_version%%___*}
- make %{?_smp_mflags} V=1 -C "${kernel_version##*___}" M=${PWD}/_kmod_build_${kernel_version%%___*}/extensions _emodinst_ INSTALL_MOD_PATH=%{buildroot} ext-mod-dir=%{kmodinstdir_postfix}
+ make %{?_smp_mflags} V=1 -C "${kernel_version##*___}" \
+ M=${PWD}/_kmod_build_${kernel_version%%___*}/extensions _emodinst_ \
+%if 0%{?fedora} < 33 || 0%{?rhel}
+ INSTALL_MOD_PATH=%{buildroot}%{_prefix} \
+%else
+ INSTALL_MOD_PATH=%{buildroot} \
+%endif
+ ext-mod-dir=%{kmodinstdir_postfix}
done
%{?akmod_install}
%changelog
+* Wed Oct 28 2020 Leigh Scott <leigh123linux(a)gmail.com> - 3.11-2
+- Fix module path for fedora < 33 and el
+
* Wed Oct 28 2020 Leigh Scott <leigh123linux(a)gmail.com> - 3.11-1
- Release 3.11
4 years