[celluloid/f31] Update to 0.18.
by Vasiliy Glazov
Summary of changes:
c9717b2... Update to 0.18. (*)
(*) This commit already existed in another branch; no separate mail sent
4 years, 12 months
[xpra-codecs-freeworld] Release 3.0.2
by Antonio
commit 41e42ed7230a0051a6276deadce62947a8273421
Author: sagitter <sagitter(a)fedoraproject.org>
Date: Tue Nov 5 20:47:59 2019 +0100
Release 3.0.2
.gitignore | 1 +
sources | 2 +-
xpra-codecs-freeworld.spec | 11 ++++++++++-
3 files changed, 12 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 34cbacf..29ac4cd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -32,3 +32,4 @@ xpra-0.16.3.tar.xz
/xpra-2.5.3.tar.xz
/xpra-3.0.tar.xz
/xpra-3.0.1.tar.xz
+/xpra-3.0.2.tar.xz
diff --git a/sources b/sources
index 3f908e1..a547288 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xpra-3.0.1.tar.xz) = 2fd04afe416c9b26c5404f0114c8abbe8367a6cb3e745ffaecedcbb864b1ada4575f7289807a152f6d01834e1f1fc4d6ac780335537f69ec393ef3d16928f4e2
+SHA512 (xpra-3.0.2.tar.xz) = 115f606ff5886d99a906f318cb1a7a4a86e80ebf23e4336e67938267d92ef624de577cc8fc06c6ce541b7c44a0cef58d930b5928f32e24dfc67c72127c7b623c
diff --git a/xpra-codecs-freeworld.spec b/xpra-codecs-freeworld.spec
index 9246d34..6c89743 100644
--- a/xpra-codecs-freeworld.spec
+++ b/xpra-codecs-freeworld.spec
@@ -25,7 +25,7 @@
%endif
Name: xpra-codecs-freeworld
-Version: 3.0.1
+Version: 3.0.2
Release: 1%{?dist}
Summary: Additional codecs for xpra using x264 and ffmpeg
License: GPLv2+
@@ -69,6 +69,11 @@ x264 and ffmpeg.
%prep
%autosetup -n xpra-%{version}
+# cc1: error: unrecognized compiler option ‘-mfpmath=387’
+%ifarch %{arm}
+sed -i 's|-mfpmath=387|-mfloat-abi=hard|' setup.py
+%endif
+
%build
CFLAGS="%{optflags}" %{__python3} setup.py build --executable="%{__python3} -s" \
%{?_with_enc_x264} \
@@ -122,6 +127,10 @@ find %{buildroot}%{python3_sitearch}/xpra -name '*.so' \
%license COPYING
%changelog
+* Tue Nov 05 2019 Antonio Trande <sagitter(a)fedoraproject.org> - 3.0.2-1
+- Release 3.0.2
+- Replace unrecognized compiler option on ARM
+
* Mon Oct 28 2019 Antonio Trande <sagitter(a)fedoraproject.org> - 3.0.1-1
- Release 3.0.1
4 years, 12 months
[rfpkg] Fix F32 issue
by Leigh Scott
commit 582b6dfb13269ad43793d66ef47454b19ced7f25
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Tue Nov 5 14:05:57 2019 +0000
Fix F32 issue
fix_deprecated.patch | 37 +++++++++++++++++++++++++++++++++++++
rfpkg.spec | 12 +++++++++++-
2 files changed, 48 insertions(+), 1 deletion(-)
---
diff --git a/fix_deprecated.patch b/fix_deprecated.patch
new file mode 100644
index 0000000..e3b9a3e
--- /dev/null
+++ b/fix_deprecated.patch
@@ -0,0 +1,37 @@
+--- a/rfpkg/__init__.py
++++ b/rfpkg/__init__.py
+@@ -262,28 +262,18 @@ class Commands(pyrpkg.Commands):
+ """Need to know what the runtime env is, so we can unset anything
+ conflicting
+ """
+-
+ try:
+- mydist = platform.linux_distribution()
+- except:
+- # This is marked as eventually being deprecated.
+- try:
+- mydist = platform.dist()
+- except:
+- runtime_os = 'unknown'
+- runtime_version = '0'
+-
+- if mydist:
+- runtime_os = mydist[0]
+- runtime_version = mydist[1]
+- else:
+- runtime_os = 'unknown'
+- runtime_version = '0'
++ runtime_os, runtime_version, _ = linux_distribution()
++ except Exception:
++ return None
+
+ if runtime_os in ['redhat', 'centos']:
+ return 'el%s' % runtime_version
+ if runtime_os == 'Fedora':
+ return 'fc%s' % runtime_version
++ if (runtime_os == 'Red Hat Enterprise Linux Server' or
++ runtime_os.startswith('CentOS')):
++ return 'el{0}'.format(runtime_version.split('.')[0])
+
+ # fall through, return None
+ return None
diff --git a/rfpkg.spec b/rfpkg.spec
index 62df361..a3e8ca1 100644
--- a/rfpkg.spec
+++ b/rfpkg.spec
@@ -5,12 +5,16 @@
Name: rfpkg
Version: 1.26.2
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: RPM Fusion utility for working with dist-git
License: GPLv2+
Group: Applications/System
URL: https://github.com/rpmfusion-infra/rfpkg
Source0: %url/archive/v%{version}/%{name}-%{version}.tar.gz
+# Fix error in F32
+# if mydist:
+# UnboundLocalError: local variable 'mydist' referenced before assignment
+Patch0: fix_deprecated.patch
BuildArch: noarch
@@ -80,6 +84,9 @@ RPM Fusion utility for working with dist-git.
%prep
%setup -q
+%if 0%{?fedora} > 31
+%patch0 -p1
+%endif
%build
%if %{with python2}
@@ -137,6 +144,9 @@ nosetests
%changelog
+* Tue Nov 05 2019 Leigh Scott <leigh123linux(a)googlemail.com> - 1.26.2-3
+- Fix F32 issue
+
* Sat Oct 12 2019 Sérgio Basto <sergio(a)serjux.com> - 1.26.2-2
- Fixup buildrequires and use correct python macros
4 years, 12 months
[celluloid] Update to 0.18.
by Vasiliy Glazov
commit c9717b28247830fe547cd972bd48a921c9b7f2c9
Author: Vasiliy Glazov <vascom2(a)gmail.com>
Date: Tue Nov 5 15:42:43 2019 +0300
Update to 0.18.
.gitignore | 1 +
6fca3f16616f4f46c1647fe4610e57c8c9ae74ff.patch | 27 --------------------------
celluloid.spec | 8 +++++---
sources | 2 +-
4 files changed, 7 insertions(+), 31 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 67f8c76..57a3c4f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/celluloid-0.17.tar.xz
+/celluloid-0.18.tar.xz
diff --git a/celluloid.spec b/celluloid.spec
index 5a59950..46a596b 100644
--- a/celluloid.spec
+++ b/celluloid.spec
@@ -1,12 +1,11 @@
Name: celluloid
-Version: 0.17
-Release: 2%{?dist}
+Version: 0.18
+Release: 1%{?dist}
Summary: A simple GTK+ frontend for mpv
License: GPLv3+
URL: https://github.com/celluloid-player/celluloid
Source0: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.xz
-Patch0: 6fca3f16616f4f46c1647fe4610e57c8c9ae74ff.patch
BuildRequires: gcc
BuildRequires: desktop-file-utils
@@ -57,6 +56,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/io.github.celluloid_p
%{_mandir}/man1/%{name}.1.*
%changelog
+* Tue Nov 05 2019 Vasiliy N. Glazov <vascom2(a)gmail.com> - 0.18-1
+- Update to 0.18
+
* Mon Sep 23 2019 Vasiliy N. Glazov <vascom2(a)gmail.com> - 0.17-2
- Fix crash #5392
diff --git a/sources b/sources
index 9acf912..0a2c26b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-142e6dd2142073f7a3eb093be565d558 celluloid-0.17.tar.xz
+SHA512 (celluloid-0.18.tar.xz) = 22e04ee774ca1e3d9bdc966ce32ca4c6f00ac5731b4019a4e92552d74524f7a20d4dfcb94f1c043f906c0bbb121708b08d34b00bc8a914391f38eaf08c7e50c2
4 years, 12 months
[nvidia-xconfig/f30: 6/6] Merge branch 'master' into f30
by Leigh Scott
commit c1a2648eb4ef87777ed9b8ed9a441713006ef95f
Merge: 79f5c71 e1d0029
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Nov 4 20:55:12 2019 +0000
Merge branch 'master' into f30
nvidia-xconfig.spec | 17 ++++++++++++++++-
sources | 2 +-
2 files changed, 17 insertions(+), 2 deletions(-)
---
4 years, 12 months
[nvidia-settings/f30: 6/6] Merge branch 'master' into f30
by Leigh Scott
commit 78394f7150a0139cccd5f3e14dc16a31ba5afa14
Merge: 4d6012a f2c546d
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Nov 4 20:54:47 2019 +0000
Merge branch 'master' into f30
nvidia-settings.spec | 17 ++++++++++++++++-
sources | 2 +-
2 files changed, 17 insertions(+), 2 deletions(-)
---
4 years, 12 months
[nvidia-persistenced/f30: 7/7] Merge branch 'master' into f30
by Leigh Scott
commit 6ac582e47b2d21120d53fd6dd4de38ec7167b9bb
Merge: 162b806 ff81271
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Nov 4 20:54:22 2019 +0000
Merge branch 'master' into f30
.gitignore | 4 ++++
nvidia-persistenced.spec | 19 +++++++++++++++++--
sources | 2 +-
3 files changed, 22 insertions(+), 3 deletions(-)
---
4 years, 12 months