[motion/f33] Update to 4.3.2.
by Vasiliy Glazov
Summary of changes:
23bb8b0... Update to 4.3.2. (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[motion] Update to 4.3.2.
by Vasiliy Glazov
commit 23bb8b02d0157173ea60e199af25d682bdabf798
Author: vascom <vascom2(a)gmail.com>
Date: Mon Oct 26 09:16:45 2020 +0300
Update to 4.3.2.
.gitignore | 1 +
motion.spec | 10 +++++-----
sources | 2 +-
3 files changed, 7 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9c780ac..8214bc7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ motion-3.3.0.tar.gz
/motion-release-4.2.2.tar.gz
/motion-release-4.3.0.tar.gz
/motion-release-4.3.1.tar.gz
+/motion-release-4.3.2.tar.gz
diff --git a/motion.spec b/motion.spec
index c538f73..06d142d 100644
--- a/motion.spec
+++ b/motion.spec
@@ -21,12 +21,9 @@
# tar -pczf motion-3.3.0.tar.gz motion-3.3.0/
#v-
-%global optflags %{optflags} -flto=auto
-%global build_ldflags %{build_ldflags} -flto
-
Name: motion
-Version: 4.3.1
-Release: 2%{?dist}
+Version: 4.3.2
+Release: 1%{?dist}
Summary: A motion detection system
License: GPLv2+
@@ -141,6 +138,9 @@ find /var/motion -user root -group root -exec chown motion:video '{}' ';'
%{_tmpfilesdir}/%{name}.conf
%changelog
+* Mon Oct 26 2020 Vasiliy N. Glazov <vascom2(a)gmail.com> - 4.3.2-1
+- Update to 4.3.2
+
* Tue Aug 18 2020 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 4.3.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
diff --git a/sources b/sources
index c67f02d..6f2e5ae 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (motion-release-4.3.1.tar.gz) = 17033dab055c4f1d9e2912a27d0a5b419d325b0781def98428a6117e38c62201b87199210071ba93d6c4dae514733b749e39cbc1befe6242f157d4583e07dcc6
+SHA512 (motion-release-4.3.2.tar.gz) = df54297eebc44b3bc50fd40890c69a9cbbfc5936224bf7027065364e794d7201ceadd99ac99bf43113ec3368f2b5ca435d2956258b9c774e03a6750b41346a7c
4 years
[mixxx] Revert "Enable KeyFinder feature"
by Uwe Klotz
commit 1fb75404ff81cb09627141538e013416b4b90882
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Mon Oct 26 00:50:37 2020 +0100
Revert "Enable KeyFinder feature"
This reverts commit c96f751da210e0a1b31855586ccaa6a339320b04.
mixxx.spec | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 832c48d..9bbd966 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -37,13 +37,12 @@ BuildRequires: cmake3
BuildRequires: ccache
BuildRequires: gcc-c++
BuildRequires: ninja-build
-BuildRequires: git
# Build Requirements
+# TODO: Add fftw-devel to enable KeyFinder
BuildRequires: chrpath
BuildRequires: faad2-devel
BuildRequires: ffmpeg-devel
-BuildRequires: fftw-devel
BuildRequires: flac-devel
BuildRequires: hidapi-devel
BuildRequires: lame-devel
@@ -100,6 +99,9 @@ echo "#pragma once" > src/build.h
%build
+# TODO: Add `-DKEYFINDER=ON \`
+# Cloning the KeyFinder repo from GitHub during the build
+# doesn't seem to work on http://koji.rpmfusion.org.
%cmake3 \
-GNinja \
-DCMAKE_BUILD_TYPE=Release \
@@ -111,7 +113,6 @@ echo "#pragma once" > src/build.h
-DFAAD=ON \
-DFFMPEG=ON \
-DHID=ON \
- -DKEYFINDER=ON \
-DLOCALECOMPARE=ON \
-DLILV=ON \
-DMAD=ON \
4 years
[mixxx] Disable tests
by Uwe Klotz
commit b55b774071f69900d984f19cc70e05ebd626e5e8
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Mon Oct 26 00:03:32 2020 +0100
Disable tests
mixxx.spec | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 15b03d9..832c48d 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -141,8 +141,11 @@ rm -rf \
%check
-QT_QPA_PLATFORM=offscreen \
-%ctest3
+# Tests can only be executed locally. Running them on
+# http://koji.rpmfusion.org always ends with the error
+# message "# Child aborted***Exception:"
+#QT_QPA_PLATFORM=offscreen \
+#%ctest3
# Desktop launcher
desktop-file-install \
4 years
[mixxx] Enable KeyFinder feature
by Uwe Klotz
commit c96f751da210e0a1b31855586ccaa6a339320b04
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Sun Oct 25 22:36:46 2020 +0100
Enable KeyFinder feature
mixxx.spec | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 31165a5..15b03d9 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -37,12 +37,13 @@ BuildRequires: cmake3
BuildRequires: ccache
BuildRequires: gcc-c++
BuildRequires: ninja-build
+BuildRequires: git
# Build Requirements
-# TODO: Add fftw-devel to enable KeyFinder
BuildRequires: chrpath
BuildRequires: faad2-devel
BuildRequires: ffmpeg-devel
+BuildRequires: fftw-devel
BuildRequires: flac-devel
BuildRequires: hidapi-devel
BuildRequires: lame-devel
@@ -99,9 +100,6 @@ echo "#pragma once" > src/build.h
%build
-# TODO: Add `-DKEYFINDER=ON \`
-# Cloning the KeyFinder repo from GitHub during the build
-# doesn't seem to work on http://koji.rpmfusion.org.
%cmake3 \
-GNinja \
-DCMAKE_BUILD_TYPE=Release \
@@ -113,6 +111,7 @@ echo "#pragma once" > src/build.h
-DFAAD=ON \
-DFFMPEG=ON \
-DHID=ON \
+ -DKEYFINDER=ON \
-DLOCALECOMPARE=ON \
-DLILV=ON \
-DMAD=ON \
4 years
[mixxx] Disable KeyFinder feature
by Uwe Klotz
commit 22a431fbc646b54b95b7a2e7e0330c62dba1bd56
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Sun Oct 25 22:20:15 2020 +0100
Disable KeyFinder feature
mixxx.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index c7f0d77..31165a5 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -39,10 +39,10 @@ BuildRequires: gcc-c++
BuildRequires: ninja-build
# Build Requirements
+# TODO: Add fftw-devel to enable KeyFinder
BuildRequires: chrpath
BuildRequires: faad2-devel
BuildRequires: ffmpeg-devel
-BuildRequires: fftw-devel
BuildRequires: flac-devel
BuildRequires: hidapi-devel
BuildRequires: lame-devel
@@ -99,6 +99,9 @@ echo "#pragma once" > src/build.h
%build
+# TODO: Add `-DKEYFINDER=ON \`
+# Cloning the KeyFinder repo from GitHub during the build
+# doesn't seem to work on http://koji.rpmfusion.org.
%cmake3 \
-GNinja \
-DCMAKE_BUILD_TYPE=Release \
4 years
[mixxx] New upstream snapshot 2.3.0-0.9.beta.20201025gita555ffd
by Uwe Klotz
commit ace9888eef75ac1732feff9ec09a9e396c34e1ac
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Sun Oct 25 21:42:01 2020 +0100
New upstream snapshot 2.3.0-0.9.beta.20201025gita555ffd
mixxx.spec | 9 ++++++---
sources | 2 +-
2 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index b73efb1..c7f0d77 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -8,9 +8,9 @@
%global extraver beta
# Optional: Only used for untagged snapshot versions
-%global gitcommit 64fd2d6cd4010d42e23fe286c3f23fe5940cb603
+%global gitcommit a555ffde6387843967fcddbf72d7e1be4cf315f3
# Format: <yyyymmdd>
-%global gitcommitdate 20200816
+%global gitcommitdate 20201025
%if "%{?gitcommit}" == ""
# (Pre-)Releases
@@ -23,7 +23,7 @@
Name: mixxx
Version: 2.3.0
-Release: 0.8%{?extraver:.%{extraver}}%{?snapinfo:.%{snapinfo}}%{?dist}
+Release: 0.9%{?extraver:.%{extraver}}%{?snapinfo:.%{snapinfo}}%{?dist}
Summary: Mixxx is open source software for DJ'ing
License: GPLv2+
URL: http://www.mixxx.org
@@ -166,6 +166,9 @@ appstream-util \
%changelog
+* Sun Oct 25 2020 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.0-0.9.beta.20201025gita555ffd
+- New upstream snapshot 2.3.0-beta
+
* Sun Aug 16 2020 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.0-0.8.beta.20200816git64fd2d6
- New upstream snapshot 2.3.0-beta
- Re-enable faad2 for decoding MP4/M4A files (actually now)
diff --git a/sources b/sources
index db4f6b1..128b02f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (mixxx-64fd2d6cd4010d42e23fe286c3f23fe5940cb603.tar.gz) = 0244bed6a425191d7ddac44421957cd934d677d5ed0b179456695bdb2caf4f282f406b646abfd59aa19871dde044bb1881e76d46d6e778712fc02d6daf1c7874
+SHA512 (mixxx-a555ffde6387843967fcddbf72d7e1be4cf315f3.tar.gz) = 16a73c6d4cddf25fef1a4b2b2605ead19fa483eb8e9a098f1703e9cec76f8395e764f2e96e53798d42e4ac2c75d72d30ccb8999e2f8b2bf4fa8ae0c6e058bb61
4 years
[zoneminder/el7: 2/2] Merge branch 'master' into el7
by Andrew Bauer
commit 636ed7b0715523fce28bee41619d27018fc67d54
Merge: 13ec3ed 7b369cd
Author: Andrew Bauer <zonexpertconsulting(a)outlook.com>
Date: Sun Oct 25 12:00:16 2020 -0500
Merge branch 'master' into el7
.gitignore | 1 +
sources | 2 +-
zoneminder.spec | 7 +++++--
3 files changed, 7 insertions(+), 3 deletions(-)
---
4 years