[mixxx] Fix weekday in changelog entry
by Uwe Klotz
commit 02b1785f8216eb0b758126e616a0698013de7b9f
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Fri Mar 20 15:36:46 2020 +0100
Fix weekday in changelog entry
mixxx.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index de6d4d7..e4dc804 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -179,7 +179,7 @@ appstream-util \
%changelog
-* Wed Mar 20 2020 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.0-0.2.alpha.20200320git7980941
+* Fri Mar 20 2020 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.0-0.2.alpha.20200320git7980941
- New upstream snapshot 2.3.0-pre-alpha
- Fix udev rules for USB HID devices
- Build debuginfo packages
4 years, 8 months
[mixxx] Update bundled google/benchmark library
by Uwe Klotz
commit dc060d7232473077d789434c7e18ad45026e95df
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Fri Mar 20 14:32:43 2020 +0100
Update bundled google/benchmark library
.gitignore | 2 +-
mixxx.spec | 21 +++-------
sources | 2 +-
usb_hidapi_udev_rules0.patch | 95 --------------------------------------------
usb_hidapi_udev_rules1.patch | 79 ------------------------------------
5 files changed, 7 insertions(+), 192 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 91c9a9c..b62b3c8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/mixxx-9c15f9eb257f4a65419d1e582f7907897bd28ed4.tar.gz
+/mixxx-79809419ea8b4c1c9a846cde1aec60a1b527b0f2.tar.gz
diff --git a/mixxx.spec b/mixxx.spec
index 323b37d..de6d4d7 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -2,9 +2,9 @@
%global extraver alpha
# Optional: Only used for untagged snapshot versions
-%global gitcommit 9c15f9eb257f4a65419d1e582f7907897bd28ed4
+%global gitcommit 79809419ea8b4c1c9a846cde1aec60a1b527b0f2
# Format: <yyyymmdd>
-%global gitcommitdate 20200318
+%global gitcommitdate 20200320
%if "%{?gitcommit}" == ""
# (Pre-)Releases
@@ -23,8 +23,6 @@ Group: Applications/Multimedia
License: GPLv2+
URL: http://www.mixxx.org
Source0: https://github.com/mixxxdj/%{name}/archive/%{sources}.tar.gz#/%{name}-%{s...
-Patch0: usb_hidapi_udev_rules0.patch
-Patch1: usb_hidapi_udev_rules1.patch
# Build Tools
BuildRequires: desktop-file-utils
@@ -100,8 +98,6 @@ cd cmake_build
%cmake \
-DCMAKE_BUILD_TYPE=Release \
-DOPTIMIZE=portable \
- -DINSTALL_GTEST=OFF \
- -DWITH_STATIC_PIC=ON \
-DBATTERY=ON \
-DBROADCAST=ON \
-DBULK=ON \
@@ -118,15 +114,7 @@ cd cmake_build
-DWAVPACK=ON \
..
-# Exclude tests from build
-# The bundled legacy gbenchmark lib cannot be built successfully
-# for all architectures. This is the reason why we can't use the
-# make_build macro here und must instead use plain cmake with an
-# explicit build target.
-cmake \
- --build . \
- --target mixxx \
- %{?_smp_mflags}
+%make_build
%install
@@ -191,8 +179,9 @@ appstream-util \
%changelog
-* Wed Mar 18 2020 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.0-0.2.alpha.20200318gitdf88442
+* Wed Mar 20 2020 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.0-0.2.alpha.20200320git7980941
- New upstream snapshot 2.3.0-pre-alpha
+- Fix udev rules for USB HID devices
- Build debuginfo packages
- Use cmake macros for the build
diff --git a/sources b/sources
index 817d8ec..5a4e54e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (mixxx-9c15f9eb257f4a65419d1e582f7907897bd28ed4.tar.gz) = f949f94d09dc5fb51b4aff03a9fa4d61e264c7cb97bb3716bc5b6ed33d0c55ca0a902b3d34f2c105b8e241a827c1f803b417b5df8a59de8578720f0faf761649
+SHA512 (mixxx-79809419ea8b4c1c9a846cde1aec60a1b527b0f2.tar.gz) = a04e3b98ed54ac2e20e0caaa902079816da475dec3336b230ab30846e57a76e636fd1ade824ba3a2a1f8902ec3fac4126a12d35f5a8d8e0e60c2c9a9aa1ccc6b
4 years, 8 months
[mixxx] Exclude tests from build
by Uwe Klotz
commit c9addb6c4fe0a2fce58aa38aac3b453c694dcc57
Author: Uwe Klotz <uklotz(a)mixxx.org>
Date: Wed Mar 18 21:49:24 2020 +0100
Exclude tests from build
mixxx.spec | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 6ea5b27..323b37d 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -117,7 +117,16 @@ cd cmake_build
-DVINYLCONTROL=ON \
-DWAVPACK=ON \
..
-%make_build
+
+# Exclude tests from build
+# The bundled legacy gbenchmark lib cannot be built successfully
+# for all architectures. This is the reason why we can't use the
+# make_build macro here und must instead use plain cmake with an
+# explicit build target.
+cmake \
+ --build . \
+ --target mixxx \
+ %{?_smp_mflags}
%install
@@ -186,7 +195,6 @@ appstream-util \
- New upstream snapshot 2.3.0-pre-alpha
- Build debuginfo packages
- Use cmake macros for the build
-- Verify the build results by executing ctest
* Tue Mar 17 2020 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.0-0.1.alpha.20200316gite16b6a6
- New upstream snapshot 2.3.0-pre-alpha
4 years, 8 months
[obs-studio] Update to 25.0.1
by Martin Gansser
commit e7f39ad4a68be2a2e45991b4b7691218d5f89034
Author: Martin Gansser <mgansser(a)online.de>
Date: Fri Mar 20 11:32:52 2020 +0100
Update to 25.0.1
obs-studio.spec | 7 +++++--
sources | 2 +-
2 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/obs-studio.spec b/obs-studio.spec
index efb5cd5..0eefa07 100644
--- a/obs-studio.spec
+++ b/obs-studio.spec
@@ -7,8 +7,8 @@
%endif
Name: obs-studio
-Version: 24.0.6
-Release: 2%{?dist}
+Version: 25.0.1
+Release: 1%{?dist}
Summary: Open Broadcaster Software Studio
License: GPLv2+
@@ -149,6 +149,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata
%doc docs/html
%changelog
+* Fri Mar 20 2020 Martin Gansser <martinkg(a)fedoraproject.org> - 25.0.1-1
+- Update to 25.0.1
+
* Sat Feb 22 2020 RPM Fusion Release Engineering <leigh123linux(a)googlemail.com> - 24.0.6-2
- Rebuild for ffmpeg-4.3 git
diff --git a/sources b/sources
index 2ed8184..5cb37f8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (obs-studio-24.0.6.tar.gz) = edbb7d95b1b0f77aa7676835077f5e3fd0cfb1f6ad055778ae2bfc2ff67f04bfa1a809f7b4bb4752ec09e8e17e52d31f967e1844aa67c52b59350a545c54d946
+SHA512 (obs-studio-25.0.1.tar.gz) = d62913e1f0f751f6946401e4bf5f10df5f421ff2bc348b067465c8eaea7a2a6b643f27946fb600f502713c5af05d6326342a36003302e614b9ae69d916dfdd80
4 years, 8 months
[wl-kmod/el7: 4/4] Merge branch 'master' into el7
by Nicolas Viéville
commit 7f923747ea4a7bcb04767fc294ad7ef25f904b8b
Merge: dba37cb e690ac7
Author: Nicolas Viéville <nicolas.vieville(a)uphf.fr>
Date: Fri Mar 20 11:27:41 2020 +0100
Merge branch 'master' into el7
wl-kmod-018_kernel_5.6_adaptations.patch | 59 ++++++++++++++++++++++++++++++++
wl-kmod.spec | 12 +++++--
2 files changed, 69 insertions(+), 2 deletions(-)
---
4 years, 8 months