[simplescreenrecorder/f26: 4/4] Clean changelog.
by Vasiliy Glazov
commit 67a0f790f65d2f28487803318ba29742731c8797
Author: Vascom <vascom2(a)gmail.com>
Date: Wed Dec 13 11:50:18 2017 +0300
Clean changelog.
simplescreenrecorder.spec | 6 ------
1 file changed, 6 deletions(-)
---
diff --git a/simplescreenrecorder.spec b/simplescreenrecorder.spec
index c7683fb..8c1a4f7 100644
--- a/simplescreenrecorder.spec
+++ b/simplescreenrecorder.spec
@@ -101,12 +101,6 @@ fi
- Update to 0.3.9
- Switch to use cmake for build
-* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.3.8-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
-
-* Sat Apr 29 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 0.3.8-4
-- Rebuild for ffmpeg update
-
* Mon Apr 17 2017 Vasiliy N. Glazov <vascom2(a)gmail.com> - 0.3.8-3
- Exclude power64 arches from build
6 years, 11 months
[simplescreenrecorder] Switch to use cmake for build.
by Vasiliy Glazov
commit b5ccff7337ff1cba44e428dae73d18ff6f9bffaf
Author: Vascom <vascom2(a)gmail.com>
Date: Wed Dec 13 11:47:18 2017 +0300
Switch to use cmake for build.
simplescreenrecorder.spec | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/simplescreenrecorder.spec b/simplescreenrecorder.spec
index 116fd2c..c7683fb 100644
--- a/simplescreenrecorder.spec
+++ b/simplescreenrecorder.spec
@@ -7,13 +7,9 @@ Summary: Simple Screen Recorder is a screen recorder for Linux
License: GPLv3
URL: http://www.maartenbaert.be/simplescreenrecorder/
Source0: https://github.com/MaartenBaert/ssr/archive/%{version}.tar.gz
-Patch0: fix_ldpath.patch
-Patch1: simplescreenrecorder-0.3.6-fix-build.patch
BuildRequires: desktop-file-utils
-BuildRequires: autoconf
-BuildRequires: automake
-BuildRequires: libtool
+BuildRequires: cmake
BuildRequires: ffmpeg-devel
BuildRequires: pkgconfig(Qt5)
BuildRequires: pkgconfig(Qt5X11Extras)
@@ -40,27 +36,30 @@ Despite the name, this program is actually quite complex.
It's 'simple' in the sense that it's easier to use than ffmpeg/avconv or VLC
%prep
-%autosetup -p1 -n %{shortname}-%{version}
+%autosetup -n %{shortname}-%{version}
%build
-./bootstrap
-export LDFLAGS="$LDFLAGS `pkg-config --libs-only-L libavformat libavcodec libavutil libswscale`"
-export CPPFLAGS="$CPPFLAGS -fPIC `pkg-config --cflags-only-I libavformat libavcodec libavutil libswscale`"
-%configure --with-qt5 \
- --disable-static \
+mkdir build-release
+pushd build-release
+ %cmake \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DWITH_QT5=TRUE \
%ifnarch %{ix86} x86_64
- --disable-x86-asm \
+ -DENABLE_X86_ASM=FALSE \
%endif
%ifarch %{arm} aarch64
- --disable-glinjectlib \
+ -DWITH_GLINJECT=FALSE \
%endif
-%nil
-%make_build
+ ..
+ %make_build
+popd
%install
-%make_install
+pushd build-release
+ %make_install
+popd
rm -f %{buildroot}%{_libdir}/*.la
mkdir -p %{buildroot}%{_libdir}/%{name}
@@ -100,6 +99,7 @@ fi
%changelog
* Wed Dec 13 2017 Vasiliy N. Glazov <vascom2(a)gmail.com> - 0.3.9-1
- Update to 0.3.9
+- Switch to use cmake for build
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.3.8-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6 years, 11 months
[simplescreenrecorder] Update to 0.3.9.
by Vasiliy Glazov
commit dd2227c96d6b2b340098bfd06a9da59a367db8dd
Author: Vascom <vascom2(a)gmail.com>
Date: Wed Dec 13 10:57:31 2017 +0300
Update to 0.3.9.
.gitignore | 1 +
simplescreenrecorder.spec | 7 +++++--
sources | 2 +-
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e13be46..a8cfbf3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/0.3.6.tar.gz
/0.3.7.tar.gz
/0.3.8.tar.gz
+/0.3.9.tar.gz
diff --git a/simplescreenrecorder.spec b/simplescreenrecorder.spec
index e68565b..116fd2c 100644
--- a/simplescreenrecorder.spec
+++ b/simplescreenrecorder.spec
@@ -1,7 +1,7 @@
%define shortname ssr
Name: simplescreenrecorder
-Version: 0.3.8
-Release: 5%{?dist}
+Version: 0.3.9
+Release: 1%{?dist}
Summary: Simple Screen Recorder is a screen recorder for Linux
License: GPLv3
@@ -98,6 +98,9 @@ fi
%{_datadir}/appdata/%{name}.appdata.xml
%changelog
+* Wed Dec 13 2017 Vasiliy N. Glazov <vascom2(a)gmail.com> - 0.3.9-1
+- Update to 0.3.9
+
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.3.8-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
diff --git a/sources b/sources
index 6e871e8..667d5e8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-722eda8b3af5137f2f173a8492fb2cf1 0.3.8.tar.gz
+5caa2a10128189d93a7a0699014d3925 0.3.9.tar.gz
6 years, 11 months
[xpra-codecs-freeworld] Update to 2.2
by Antonio
commit 5accc576477b6b12658d81fc424cc0c1c71f521c
Author: sagitter <sagitter(a)fedoraproject.org>
Date: Tue Dec 12 18:44:40 2017 +0100
Update to 2.2
.gitignore | 1 +
sources | 2 +-
...atch-to-allow-building-against-ffmpeg-3.1.patch | 28 ----------------------
xpra-codecs-freeworld.spec | 22 ++++++++---------
4 files changed, 13 insertions(+), 40 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4d52f29..f40ad50 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@ xpra-0.16.3.tar.xz
/xpra-2.1.1.tar.xz
/xpra-2.1.2.tar.xz
/xpra-2.1.3.tar.xz
+/xpra-2.2.tar.xz
diff --git a/sources b/sources
index 83147e2..4e4c944 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a624e80db9ddd3c2fc4dafcc2c0465b5 xpra-2.1.3.tar.xz
+7a03a7bd73d697937aed3e5dc8827cc9 xpra-2.2.tar.xz
diff --git a/xpra-codecs-freeworld.spec b/xpra-codecs-freeworld.spec
index 88b2a9c..8f5250d 100644
--- a/xpra-codecs-freeworld.spec
+++ b/xpra-codecs-freeworld.spec
@@ -18,7 +18,7 @@
%endif
Name: xpra-codecs-freeworld
-Version: 2.1.3
+Version: 2.2
Release: 1%{?dist}
Summary: Additional codecs for xpra using x264 and ffmpeg
@@ -26,11 +26,8 @@ License: GPLv2+
URL: http://www.xpra.org/
Source0: http://xpra.org/src/xpra-%{version}.tar.xz
-##Patch for building xpra with ffmpeg-3.1
-Patch0: %{name}-0002-Add-patch-to-allow-building-against-ffmpeg-3.1.patch
-
BuildRequires: python2-devel pygobject2-devel pygtk2-devel
-BuildRequires: libXtst-devel
+BuildRequires: libXtst-devel, uglify-js
BuildRequires: libxkbfile-devel, libvpx-devel
BuildRequires: xvidcore-devel, x265-devel
BuildRequires: Cython, ack
@@ -54,10 +51,6 @@ x264 and ffmpeg.
%prep
%setup -q -n xpra-%{version}
-%if 0%{?fedora} < 26
-%patch0 -p0
-%endif
-
%build
CFLAGS="%{optflags}" %{__python2} setup.py build --executable="%{__python2} -s" \
%{?_with_enc_x264} \
@@ -65,12 +58,15 @@ CFLAGS="%{optflags}" %{__python2} setup.py build --executable="%{__python2} -s"
%{?_with_csc_swscale} \
--with-Xdummy \
--with-Xdummy_wrapper \
+ --with-enc_ffmpeg \
--without-html5 \
--without-tests \
- --with-verbose
+ --with-verbose \
+ --without-html5_gzip --without-html5_brotli
%install
-%{__python2} setup.py install -O1 --skip-build --root destdir
+%{__python2} setup.py install -O1 --skip-build --root destdir \
+ --without-html5_gzip --without-html5_brotli
## We are interested to additional codecs only
mkdir -p %{buildroot}%{python2_sitearch}/xpra/codecs/
@@ -106,6 +102,10 @@ find %{buildroot}%{python2_sitearch}/xpra -name '*.so' \
%license COPYING
%changelog
+* Tue Dec 12 2017 Antonio Trande <sagitter(a)fedoraproject.org> - 2.2-1
+- Update to 2.2
+- Drop old ffmpeg-3.1 patch
+
* Thu Oct 26 2017 Antonio Trande <sagitter(a)fedoraproject.org> - 2.1.3-1
- Update to 2.1.3
6 years, 11 months
[qmplay2/f26] Update to 17.12.11
by Martin Gansser
Summary of changes:
d611330... Update to 17.12.11 (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 11 months
[qmplay2/f27] Update to 17.12.11
by Martin Gansser
Summary of changes:
d611330... Update to 17.12.11 (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 11 months