[ltris] Update 1.2.2
by Sérgio M. Basto
commit cd02d7d59bf9cd1b124621222dd4eedd3522cdb0
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Mon Jan 4 01:21:02 2021 +0000
Update 1.2.2
.gitignore | 1 +
ltris.spec | 9 ++++++---
sources | 2 +-
3 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index facd588..cfbdc97 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
ltris-1.0.19.tar.gz
/ltris-1.2.1.tar.gz
+/ltris-1.2.2.tar.gz
diff --git a/ltris.spec b/ltris.spec
index 8a19a8a..bf570af 100644
--- a/ltris.spec
+++ b/ltris.spec
@@ -1,11 +1,11 @@
Summary: Game of skill with falling blocks
Name: ltris
-Version: 1.2.1
-Release: 3%{?dist}
+Version: 1.2.2
+Release: 1%{?dist}
License: GPLv2+
URL: http://lgames.sourceforge.net/
-Source: http://dl.sf.net/lgames/%{name}-%{version}.tar.gz
+Source: http://download.sourceforge.net/lgames/%{name}-%{version}.tar.gz
Source2: %{name}.appdata.xml
Patch0: fix_sdl_test.patch
@@ -68,6 +68,9 @@ appstream-util validate --nonet %{buildroot}%{_metainfodir}/%{name}.appdata.xml
%changelog
+* Mon Jan 04 2021 Sérgio Basto <sergio(a)serjux.com> - 1.2.2-1
+- Update 1.2.2
+
* Thu Sep 17 2020 Leigh Scott <leigh123linux(a)gmail.com> - 1.2.1-3
- Fix icon and desktop file
diff --git a/sources b/sources
index 6eee66a..c63bab9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (ltris-1.2.1.tar.gz) = 3cb9d96572e566ad1d36ab0b54ec098e607dfd7649e2c06964a9e869584952b1ccdfaf00d3e16644a0d5169f797ad7c1fac8542b79009cc32808337ddde61b34
+SHA512 (ltris-1.2.2.tar.gz) = 9d4ba4f2fb5c50a20f1f3a12ea86ffbf3c4d329588769f16c3bc90580eb79c18d15f8faa937b44ef8e30629b7221fee4b8ee5efdda6aed789161f2845e28c659
3 years, 10 months
[cairo-dock-freeworld] Update to the latest git
by Mamoru Tasaka
commit b41abf310f85c710dffaba5e1bf10d8ae369d897
Author: Mamoru TASAKA <mtasaka(a)fedoraproject.org>
Date: Sun Jan 3 13:43:06 2021 +0900
Update to the latest git
.gitignore | 1 +
cairo-dock-freeworld.spec | 28 ++++++++++++++++++++++++----
sources | 2 +-
3 files changed, 26 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e416979..9a05ef7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
cairo-dock-3.4.1.tar.gz
+/cairo-dock-3.4.1-20201103git0836f5d.tar.gz
diff --git a/cairo-dock-freeworld.spec b/cairo-dock-freeworld.spec
index 1c5b145..9930c9f 100644
--- a/cairo-dock-freeworld.spec
+++ b/cairo-dock-freeworld.spec
@@ -1,17 +1,28 @@
%global urlver 3.4
-%global mainver 3.4.0
+%global mainver 3.4.0
%global plugin_least_ver 3.4.0
+%global use_git 1
+%global gitdate 20201103
+%global githash 0836f5d1c3e18be0995320175b8bf21d28264a10
+%global shorthash %(c=%{githash} ; echo ${c:0:7})
+
+%global tarballver %{mainver}%{?use_git:-%{gitdate}git%{shorthash}}
+%global mainrel 11
+
Name: cairo-dock-freeworld
Version: 3.4.1
-Release: 10%{?dist}
+Release: %{mainrel}%{?use_git:.%{gitdate}git%{shorthash}}%{?dist}
Summary: Light eye-candy fully themable animated dock
License: GPLv3+
URL: http://glx-dock.org/
-#Source0: http://launchpad.net/cairo-dock-core/%{urlver}/%{mainver}/+download/cairo...
+%if 0%{?use_git} >= 1
+Source0: https://github.com/Cairo-Dock/cairo-dock-core/archive/%{githash}/cairo-do...
+%else
Source0: https://github.com/Cairo-Dock/cairo-dock-core/archive/%{version}/cairo-do...
+%endif
Source1: cairo-dock-freeworld-oldchangelog
BuildRequires: cmake
@@ -54,8 +65,11 @@ This package contains library files for %{name}.
%prep
-#%%setup -q -n cairo-dock-%%{version}
+%if 0%{?use_git} >= 1
+%setup -q -n cairo-dock-core-%{githash}
+%else
%setup -q -n cairo-dock-core-%{version}
+%endif
## permission
# %%_fixperms cannot fix permissions completely here
@@ -74,6 +88,9 @@ sed -i.stat \
-e 's|\${MSGFMT_EXECUTABLE}|\${MSGFMT_EXECUTABLE} --statistics|' \
po/CMakeLists.txt
+# Modify version forcely
+sed -i CMakeLists.txt -e '\@set (VERSION @s|VERSION.*|VERSION "%{version}")|'
+
%build
rm -f CMakeCache.txt
%cmake -B . -DCMAKE_SKIP_RPATH:BOOL=ON .
@@ -126,6 +143,9 @@ install -cpm 644 \
%{_libdir}/%{name}/libgldi.so.3*
%changelog
+* Sun Jan 3 2021 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 3.4.1-11.20201103git0836f5d
+- Update to the latest git
+
* Mon Aug 17 2020 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 3.4.1-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
diff --git a/sources b/sources
index a8601cf..27d0df3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-63285f2744a76354cea9cc4c012b3c11 cairo-dock-3.4.1.tar.gz
+SHA512 (cairo-dock-3.4.1-20201103git0836f5d.tar.gz) = 647b09b545b8734ad2d2495b70344491d8f2eabd3411582c4615721ed924beb645aed73a516ca862ff08ac334c6fa9a08c6f0b4028537182d49f367af8847ed4
3 years, 10 months
[devedeng] Reverted the use of boolean operators in Requires (BZ #5879)
by Andrea Musuruane
commit 4cdf4286a0d4ab6638ff92702cba0c32a72b7dfc
Author: Andrea Musuruane <musuruan(a)gmail.com>
Date: Sat Jan 2 19:07:04 2021 +0100
Reverted the use of boolean operators in Requires (BZ #5879)
devedeng.spec | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/devedeng.spec b/devedeng.spec
index 2b2f743..25abdde 100644
--- a/devedeng.spec
+++ b/devedeng.spec
@@ -1,6 +1,6 @@
Name: devedeng
Version: 4.16.0
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: A program to create video DVDs and CDs (VCD, sVCD or CVD)
License: GPLv3
@@ -17,12 +17,14 @@ BuildRequires: python3-devel
BuildRequires: gettext
BuildRequires: desktop-file-utils
BuildRequires: libappstream-glib
-Requires: (vlc or mpv or mplayer)
+#Requires: (vlc or mpv or mplayer)
+Requires: vlc
Requires: ffmpeg
Requires: dvdauthor
Requires: vcdimager
Requires: genisoimage
-Requires: (brasero or k3b)
+Requires: (brasero or k3b or xfburn)
+Requires: brasero
Requires: ImageMagick
Requires: python3-urllib3
Requires: python3-gobject
@@ -97,6 +99,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata
%changelog
+* Sat Jan 2 16:28:31 CET 2021 Andrea Musuruane <musuruan(a)gmail.com> - 4.16.0-6
+- Reverted the use of boolean operators in Requires (BZ #5879)
+
* Mon Dec 28 13:32:51 CET 2020 Andrea Musuruane <musuruan(a)gmail.com> - 4.16.0-5
- Used boolean operators in Requires (BZ #5879)
3 years, 10 months
[ffmpeg/f33] Update changelog
by Leigh Scott
commit 580aecf2ae9703f8d719eff8e20638779b00502f
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sat Jan 2 15:00:26 2021 +0000
Update changelog
ffmpeg.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index dd07c96..6972a8f 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -106,7 +106,7 @@ ExclusiveArch: armv7hnl
Summary: Digital VCR and streaming server
Name: ffmpeg%{?flavor}
Version: 4.3.1
-Release: 15%{?date}%{?date:git}%{?rel}%{?dist}
+Release: 16%{?date}%{?date:git}%{?rel}%{?dist}
License: %{ffmpeg_license}
URL: http://ffmpeg.org/
%if 0%{?date}
@@ -474,6 +474,9 @@ install -pm755 tools/qt-faststart %{buildroot}%{_bindir}
%changelog
+* Sat Jan 2 2021 Leigh Scott <leigh123linux(a)gmail.com> - 4.3.1-16
+- Enable smb support (rfbz#5880)
+
* Thu Dec 24 2020 Leigh Scott <leigh123linux(a)gmail.com> - 4.3.1-15
- Enable dash demuxer (rfbz#5876)
- Enable lv2 support (rfbz#5863)
3 years, 10 months
[ffmpeg/f33] Enable smb support
by Leigh Scott
commit e835811c3825c16db200e6e66238024301374dd9
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Thu Dec 31 17:03:00 2020 +0000
Enable smb support
ffmpeg.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index f0b521b..dd07c96 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -27,6 +27,9 @@
%endif
%if 0%{?fedora} || 0%{?rhel} > 7
+%ifnarch i686
+%global _with_smb 1
+%endif
%ifarch x86_64 i686
%global _with_vapoursynth 1
%endif
@@ -321,7 +324,7 @@ This package contains development files for %{name}
%{?_with_rav1e:--enable-librav1e} \\\
%{?_with_rtmp:--enable-librtmp} \\\
%{?_with_rubberband:--enable-librubberband} \\\
- %{?_with_smb:--enable-libsmbclient} \\\
+ %{?_with_smb:--enable-libsmbclient --enable-version3} \\\
%{?_with_snappy:--enable-libsnappy} \\\
--enable-libsoxr \\\
--enable-libspeex \\\
3 years, 10 months
[ffmpeg/f32] Update changelog
by Leigh Scott
commit 2e3e04d499aafb23249c30c3187ac33b6193a357
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sat Jan 2 10:43:25 2021 +0000
Update changelog
ffmpeg.spec | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index f89c6fb..a603782 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -93,7 +93,7 @@ ExclusiveArch: armv7hnl
Summary: Digital VCR and streaming server
Name: ffmpeg%{?flavor}
Version: 4.2.4
-Release: 2%{?date}%{?date:git}%{?rel}%{?dist}
+Release: 3%{?date}%{?date:git}%{?rel}%{?dist}
License: %{ffmpeg_license}
URL: http://ffmpeg.org/
%if 0%{?date}
@@ -448,6 +448,10 @@ install -pm755 tools/qt-faststart %{buildroot}%{_bindir}
%changelog
+* Sat Jan 2 2021 Leigh Scott <leigh123linux(a)gmail.com> - 4.2.4-3
+- Enable dash demuxer (rfbz#5876)
+- Enable lv2 support (rfbz#5863)
+
* Tue Jul 14 2020 Leigh Scott <leigh123linux(a)gmail.com> - 4.2.4-2
- Enable libmysofa
3 years, 10 months
[ffmpeg/f32] Enable lv2 support
by Leigh Scott
commit 71b43924722ce7e90031927d2f68c658fa63fbd9
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Thu Dec 24 14:05:54 2020 +0000
Enable lv2 support
ffmpeg.spec | 6 ++++++
1 file changed, 6 insertions(+)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index a7ae0f9..f89c6fb 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -28,6 +28,10 @@
%endif
%endif
+%if 0%{?rhel}
+%global _without_lv2 1
+%endif
+
# flavor nonfree
%if 0%{?_with_cuda:1}
%global debug_package %{nil}
@@ -162,6 +166,7 @@ BuildRequires: nasm
%{?_with_omx:BuildRequires: libomxil-bellagio-devel}
BuildRequires: libxcb-devel
BuildRequires: libxml2-devel
+%{!?_without_lv2:BuildRequires: lilv-devel}
%{!?_without_openal:BuildRequires: openal-soft-devel}
%if 0%{!?_without_opencl:1}
BuildRequires: opencl-headers ocl-icd-devel
@@ -319,6 +324,7 @@ This package contains development files for %{name}
--enable-libzimg \\\
%{?_with_zmq:--enable-libzmq} \\\
%{!?_without_zvbi:--enable-libzvbi} \\\
+ %{!?_without_lv2:--enable-lv2} \\\
--enable-avfilter \\\
--enable-avresample \\\
--enable-libmodplug \\\
3 years, 10 months
[ffmpeg/f32] Fixup vmaf license computation
by Leigh Scott
commit 19afb87a961d508225a9af5c93cdcf8f5283697f
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Dec 27 10:58:00 2020 +0100
Fixup vmaf license computation
ffmpeg.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index fdd992c..a7ae0f9 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -80,7 +80,7 @@ ExclusiveArch: armv7hnl
%global lesser L
%endif
-%if 0%{!?_without_amr} || 0%{?_with_gmp} || 0%{?_with_smb}
+%if 0%{!?_without_amr} || 0%{?_with_gmp} || 0%{?_with_smb} || 0%{?_with_vmaf}
%global ffmpeg_license %{?lesser}GPLv3+
%else
%global ffmpeg_license %{?lesser}GPLv2+
3 years, 10 months