[xtables-addons/f35] Release 3.21
by Leigh Scott
Summary of changes:
8696fb0... Release 3.21 (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 4 months
[xtables-addons/f36] Release 3.21
by Leigh Scott
Summary of changes:
8696fb0... Release 3.21 (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 4 months
[xtables-addons] Release 3.21
by Leigh Scott
commit 8696fb003dba1945b560d8b56831dd9481aaa43c
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Jun 27 13:00:55 2022 +0100
Release 3.21
sources | 2 +-
xtables-addons.spec | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/sources b/sources
index 9ee55c7..72dbf3a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xtables-addons-3.20.tar.xz) = 0a38c12159dd555a31f24dc5a74d012b27723925df827edffe2343f6b8e61e838b5dc4776bafe37587e9622b9da1e9cd4220e4f576d58e78eb21ad18a419fb2e
+SHA512 (xtables-addons-3.21.tar.xz) = 5ec30a14f7dffcaa87bbeb910b46ef5ba3bafc4b6f0ce1579eb21ca6395106fa9157b300f463b43169ea85ec9ff0d9a5377cb5ebc2bb2f637e2a1fe9ff61728e
diff --git a/xtables-addons.spec b/xtables-addons.spec
index d172c68..3075535 100644
--- a/xtables-addons.spec
+++ b/xtables-addons.spec
@@ -1,6 +1,6 @@
Name: xtables-addons
Summary: Extensions targets and matches for iptables
-Version: 3.20
+Version: 3.21
Release: 1%{?dist}
# The entire source code is GPLv2 except ACCOUNT/libxt_ACCOUNT_cl.* which is LGPLv2
License: GPLv2 and LGPLv2
@@ -48,6 +48,9 @@ rm -f %{buildroot}%{_libdir}/*.{la,so}
%{_mandir}/man?/*
%changelog
+* Mon Jun 27 2022 Leigh Scott <leigh123linux(a)gmail.com> - 3.21-1
+- Release 3.21
+
* Sun Apr 17 2022 Leigh Scott <leigh123linux(a)gmail.com> - 3.20-1
- Release 3.20
2 years, 4 months
[rfpkg] Add patch to remove duplicate retire parser because of incompatibility with Python 3.11
by Robert-André Mauchin
commit d8293c3e643a545f804c609d575d832a61f50334
Author: Robert-André Mauchin <zebob.m(a)gmail.com>
Date: Sun Jun 26 21:09:39 2022 +0200
Add patch to remove duplicate retire parser because of incompatibility with Python 3.11
0001-Remove-register_retire-from-rfpkg.patch | 53 ++++++++++++++++++++++++++++
rfpkg.spec | 3 ++
2 files changed, 56 insertions(+)
---
diff --git a/0001-Remove-register_retire-from-rfpkg.patch b/0001-Remove-register_retire-from-rfpkg.patch
new file mode 100644
index 0000000..a0024ac
--- /dev/null
+++ b/0001-Remove-register_retire-from-rfpkg.patch
@@ -0,0 +1,53 @@
+From 7095c31dee518b29d8c8867a6d4241a6a49783e6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= <zebob.m(a)gmail.com>
+Date: Sun, 26 Jun 2022 20:45:19 +0200
+Subject: [PATCH] Remove register_retire from rfpkg
+
+Don't register again the retire command as it is already done
+by pyrpkg. Starting Python 3.11, it creates an error.
+See https://github.com/python/cpython/pull/18605
+
+Fix #24
+---
+ rfpkg/cli.py | 20 ++++----------------
+ 1 file changed, 4 insertions(+), 16 deletions(-)
+
+diff --git a/rfpkg/cli.py b/rfpkg/cli.py
+index 0096d8f..9f91c12 100644
+--- a/rfpkg/cli.py
++++ b/rfpkg/cli.py
+@@ -51,27 +51,15 @@ class rfpkgClient(cliClient):
+ def setup_fed_subparsers(self):
+ """Register the fedora specific targets"""
+
+- self.register_retire()
++ # Don't register again the retire command as it is already done
++ # by pyrpkg. Starting Python 3.11, it creates an error.
++ # https://github.com/python/cpython/pull/18605
++ #self.register_retire()
+
+ # Don't register the update command, as rpmfusion does not have a
+ # bodhi instance to send update requests to
+ #self.register_update()
+
+- # Target registry goes here
+- def register_retire(self):
+- """Register the retire target"""
+-
+- retire_parser = self.subparsers.add_parser(
+- 'retire',
+- help='Retire a package',
+- description='This command will remove all files from the repo, '
+- 'leave a dead.package file, push the changes and '
+- 'retire the package in pkgdb.'
+- )
+- retire_parser.add_argument('reason',
+- help='Reason for retiring the package')
+- retire_parser.set_defaults(command=self.retire)
+-
+ # Target functions go here
+ def _format_update_clog(self, clog):
+ ''' Format clog for the update template. '''
+--
+2.36.1
+
diff --git a/rfpkg.spec b/rfpkg.spec
index 60f5373..7fb8b69 100644
--- a/rfpkg.spec
+++ b/rfpkg.spec
@@ -14,6 +14,9 @@ Source0: %url/archive/v%{version}/%{name}-%{version}.tar.gz
Patch1: 0001-Add-xorg-x11-drv-nvidia-470xx-to-multilibs.patch
Patch2: 0002-Add-unace-to-multilibs-because-is-an-i686-package.patch
Patch3: 0003-Fix-the-download-of-old-sources-with-md5-hash.patch
+# Removing duplicate retire parser because of incompatibility with Python 3.11
+# See https://github.com/rpmfusion-infra/rfpkg/pull/25
+Patch4: 0001-Remove-register_retire-from-rfpkg.patch
BuildArch: noarch
2 years, 4 months
[VirtualBox] Rebuilt for Python 3.11
by Robert-André Mauchin
commit 67749b10da75c0d80d2a83fe5eece772c10704db
Author: Robert-André Mauchin <zebob.m(a)gmail.com>
Date: Sat Jun 25 19:05:43 2022 +0200
Rebuilt for Python 3.11
...Added-support-for-running-with-Python-3.1.patch | 74 ++++++++++++++++++----
VirtualBox-6.1.34-build-xpcom18a4-with-c++17.patch | 12 ++++
VirtualBox.spec | 8 ++-
3 files changed, 81 insertions(+), 13 deletions(-)
---
diff --git a/0001-libs-xpcom-Added-support-for-running-with-Python-3.1.patch b/0001-libs-xpcom-Added-support-for-running-with-Python-3.1.patch
index 2ca8df0..97d0f33 100644
--- a/0001-libs-xpcom-Added-support-for-running-with-Python-3.1.patch
+++ b/0001-libs-xpcom-Added-support-for-running-with-Python-3.1.patch
@@ -21,16 +21,16 @@ index f525dd60cf2..39782f6ff21 100755
#
-# Copyright (C) 2006-2020 Oracle Corporation
-+# Copyright (C) 2006-2021 Oracle Corporation
++# Copyright (C) 2006-2022 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
-@@ -2043,7 +2043,7 @@ extern "C" int main(void)
+@@ -2027,7 +2027,7 @@ extern "C" int main(void)
}
EOF
found=
- SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.8m python3.9 python3.9m"
-+ SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.8m python3.9 python3.9m python3.10 python3.10m"
++ SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.8m python3.9 python3.9m python3.10 python3.10m python3.11 python3.11m"
for p in $PYTHONDIR; do
for d in $SUPPYTHONLIBS; do
for b in lib/x86_64-linux-gnu lib/i386-linux-gnu lib64 lib/64 lib; do
@@ -43,20 +43,20 @@ index 23272feb0d7..84cd3e863e7 100644
#
-# Copyright (C) 2009-2017 Oracle Corporation
-+# Copyright (C) 2009-2021 Oracle Corporation
++# Copyright (C) 2009-2022 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
-@@ -20,7 +20,7 @@ include $(KBUILD_PATH)/subheader.kmk
+@@ -26,7 +26,7 @@ endif
#
# List of supported Python versions, defining a number of
-# VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|38|38M|39|39M|DEF]_[INC|LIB] variables
-+# VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|38|38M|39|39M|310|310M|DEF]_[INC|LIB] variables
++# VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|38|38M|39|39M|310|310M|311|311M|DEF]_[INC|LIB] variables
# which get picked up below.
#
ifeq ($(KBUILD_TARGET),darwin) # Relatively predictable, don't script.
-@@ -646,6 +646,52 @@ VBoxPython3_9m_x86_LIBS = $(VBOX_PYTHON39M_LIB_X86)
+@@ -579,6 +579,98 @@ VBoxPython3_9m_x86_LIBS = $(VBOX_P
endif
endif
@@ -106,10 +106,56 @@ index 23272feb0d7..84cd3e863e7 100644
+ endif
+endif
+
++ifdef VBOX_PYTHON311_INC
++#
++# Python 3.11 version
++#
++DLLS += VBoxPython3_11
++VBoxPython3_11_EXTENDS = VBoxPythonBase
++VBoxPython3_11_EXTENDS_BY = appending
++VBoxPython3_11_TEMPLATE = XPCOM
++VBoxPython3_11_INCS = $(VBOX_PYTHON311_INC)
++VBoxPython3_11_LIBS = $(VBOX_PYTHON311_LIB)
++
++ ifdef VBOX_WITH_32_ON_64_MAIN_API
++ ifdef VBOX_PYTHON311_LIB_X86
++DLLS += VBoxPython3_11_x86
++VBoxPython3_11_x86_EXTENDS = VBoxPythonBase_x86
++VBoxPython3_11_x86_EXTENDS_BY = appending
++VBoxPython3_11_x86_TEMPLATE = XPCOM
++VBoxPython3_11_x86_INCS = $(VBOX_PYTHON311_INC)
++VBoxPython3_11_x86_LIBS = $(VBOX_PYTHON311_LIB_X86)
++ endif
++ endif
++endif
++
++ifdef VBOX_PYTHON311M_INC
++#
++# Python 3.11 version with pymalloc
++#
++DLLS += VBoxPython3_11m
++VBoxPython3_11m_EXTENDS = VBoxPythonBase_m
++VBoxPython3_11m_EXTENDS_BY = appending
++VBoxPython3_11m_TEMPLATE = XPCOM
++VBoxPython3_11m_INCS = $(VBOX_PYTHON311M_INC)
++VBoxPython3_11m_LIBS = $(VBOX_PYTHON311M_LIB)
++
++ ifdef VBOX_WITH_32_ON_64_MAIN_API
++ ifdef VBOX_PYTHON311M_LIB_X86
++DLLS += VBoxPython3_11m_x86
++VBoxPython3_11m_x86_EXTENDS = VBoxPythonBase_x86_m
++VBoxPython3_11m_x86_EXTENDS_BY = appending
++VBoxPython3_11m_x86_TEMPLATE_ = XPCOM
++VBoxPython3_11m_x86_INCS = $(VBOX_PYTHON311M_INC)
++VBoxPython3_11m_x86_LIBS = $(VBOX_PYTHON311M_LIB_X86)
++ endif
++ endif
++endif
++
ifdef VBOX_PYTHONDEF_INC
#
# Python without versioning
-@@ -730,4 +776,3 @@ VBoxPython-inst-py-xpcom_SOURCES = \
+@@ -634,4 +726,3 @@ VBoxPython-inst-py-xpcom_SOURCES = \
include $(FILE_KBUILD_SUB_FOOTER)
@@ -123,7 +169,7 @@ index b116313add2..d5107975763 100755
"""
-Copyright (C) 2009-2016 Oracle Corporation
-+Copyright (C) 2009-2021 Oracle Corporation
++Copyright (C) 2009-2022 Oracle Corporation
This file is part of VirtualBox Open Source Edition (OSE), as
available from http://www.virtualbox.org. This file is free software;
@@ -132,7 +178,7 @@ index b116313add2..d5107975763 100755
from distutils.version import StrictVersion
-versions = ["2.6", "2.7", "3.1", "3.2", "3.2m", "3.3", "3.3m", "3.4", "3.4m", "3.5", "3.5m", "3.6", "3.6m", "3.7", "3.7m", "3.8", "3.8m", "3.9", "3.9m" ]
-+versions = ["2.6", "2.7", "3.1", "3.2", "3.2m", "3.3", "3.3m", "3.4", "3.4m", "3.5", "3.5m", "3.6", "3.6m", "3.7", "3.7m", "3.8", "3.8m", "3.9", "3.9m", "3.10", "3.10m" ]
++versions = ["2.6", "2.7", "3.1", "3.2", "3.2m", "3.3", "3.3m", "3.4", "3.4m", "3.5", "3.5m", "3.6", "3.6m", "3.7", "3.7m", "3.8", "3.8m", "3.9", "3.9m", "3.10", "3.10m", "3.11", "3.11m"]
prefixes = ["/usr", "/usr/local", "/opt", "/opt/local"]
known = {}
@@ -140,12 +186,16 @@ diff --git a/trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp b/trunk/src/l
index 412f75b2899..d40d2b52384 100644
--- a/trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
+++ b/trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
-@@ -84,7 +84,11 @@ extern PYXPCOM_EXPORT void PyXPCOM_InterpreterState_Ensure();
+@@ -84,7 +84,15 @@ extern PYXPCOM_EXPORT void PyXPCOM_Inter
# define MANGLE_MODULE_INIT(a_Name) RT_CONCAT(a_Name, MODULE_NAME_SUFFIX)
# endif
# ifdef VBOX_PYXPCOM_VERSIONED
-# if PY_VERSION_HEX >= 0x03090000 && PY_VERSION_HEX < 0x030a0000
-+# if PY_VERSION_HEX >= 0x030a0000 && PY_VERSION_HEX < 0x030b0000
++# if PY_VERSION_HEX >= 0x030b0000 && PY_VERSION_HEX < 0x030c0000
++# define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython3_11")
++# define initVBoxPython MANGLE_MODULE_INIT(PyInit_VBoxPython3_11)
++
++# elif PY_VERSION_HEX >= 0x030a0000 && PY_VERSION_HEX < 0x030b0000
+# define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython3_10")
+# define initVBoxPython MANGLE_MODULE_INIT(PyInit_VBoxPython3_10)
+
diff --git a/VirtualBox-6.1.34-build-xpcom18a4-with-c++17.patch b/VirtualBox-6.1.34-build-xpcom18a4-with-c++17.patch
new file mode 100644
index 0000000..6889b22
--- /dev/null
+++ b/VirtualBox-6.1.34-build-xpcom18a4-with-c++17.patch
@@ -0,0 +1,12 @@
+diff -up VirtualBox-6.1.34/src/libs/xpcom18a4/Config.kmk.orig VirtualBox-6.1.34/src/libs/xpcom18a4/Config.kmk
+--- VirtualBox-6.1.34/src/libs/xpcom18a4/Config.kmk.orig 2022-03-23 00:47:29.000000000 +0100
++++ VirtualBox-6.1.34/src/libs/xpcom18a4/Config.kmk 2022-06-26 14:06:50.563730173 +0200
+@@ -37,7 +37,7 @@ TEMPLATE_XPCOM_ASFLAGS = $(N
+ TEMPLATE_XPCOM_ASFLAGS.x86 = -m32
+ TEMPLATE_XPCOM_ASFLAGS.amd64 = -m64
+ TEMPLATE_XPCOM_ASDEFS = $(NO_SUCH_VARIABLE)
+-TEMPLATE_XPCOM_CXXFLAGS = -g -pipe -ansi -Wall -Wno-unused -Wno-non-virtual-dtor \
++TEMPLATE_XPCOM_CXXFLAGS = -g -pipe -ansi -Wall -Wno-unused -Wno-non-virtual-dtor -std=gnu++17 \
+ $(VBOX_GCC_Wno-invalid-offsetof) -Wno-sign-compare -Wno-unused -Wno-ctor-dtor-privacy \
+ $(VBOX_GCC_fvisibility-inlines-hidden) $(VBOX_GCC_fvisibility-hidden) \
+ $(VBOX_GCC_fdiagnostics-show-option) $(VBOX_GCC_Wno-delete-non-virtual-dtor)
diff --git a/VirtualBox.spec b/VirtualBox.spec
index a938e0c..8348f25 100644
--- a/VirtualBox.spec
+++ b/VirtualBox.spec
@@ -39,7 +39,7 @@
Name: VirtualBox
Version: 6.1.34
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
License: GPLv2 or (GPLv2 and CDDL)
@@ -97,6 +97,8 @@ Patch80: VirtualBox-6.1.4-gcc10.patch
Patch88: VirtualBox-lzf.patch
Patch90: 0001-libs-xpcom-Added-support-for-running-with-Python-3.1.patch
Patch91: 0002-no_ifndef.patch
+# Force the build of xpcom with -std=gnu++17, mandated by Python 3.11
+Patch92: VirtualBox-6.1.34-build-xpcom18a4-with-c++17.patch
BuildRequires: gcc-c++
BuildRequires: kBuild >= 0.1.9998.r3093
@@ -348,6 +350,7 @@ rm -r src/libs/zlib-1.2.*/
%patch88 -p1 -b .lzf
%patch90 -p2 -b .python3.10
%patch91 -p1 -b .python3.10
+%patch92 -p1 -b .c++17
%build
@@ -904,6 +907,9 @@ getent passwd vboxadd >/dev/null || \
%{_datadir}/%{name}-kmod-%{version}
%changelog
+* Sat Jun 25 2022 Robert-André Mauchin <zebob.m(a)gmail.com> - 6.1.34-5
+- Rebuilt for Python 3.11
+
* Sat Jun 04 2022 Sérgio Basto <sergio(a)serjux.com> - 6.1.34-4
- use opensuse patch for kernel 5.18
2 years, 4 months
[xpra-codecs-freeworld] Release 4.3.4
by sagitter
commit 241e87df693e6f4e104353e8a6ab223a649d3754
Author: Antonio Trande <sagitter(a)fedoraproject.org>
Date: Sun Jun 26 12:18:30 2022 +0200
Release 4.3.4
.gitignore | 1 +
sources | 2 +-
xpra-codecs-freeworld.spec | 7 +++++--
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 5a7a0cd..01bb9d6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -57,3 +57,4 @@ xpra-0.16.3.tar.xz
/xpra-4.3.tar.gz
/xpra-4.3.1.tar.gz
/xpra-4.3.2.tar.gz
+/xpra-4.3.4.tar.gz
diff --git a/sources b/sources
index 43d6941..52a17ad 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xpra-4.3.2.tar.gz) = 8f150798173e0d4377ef884c9dcebb3e0b6c6b5cf5c9db20661e056a4be8b26c430652e934ab6b7180809cb2fbb88e38ef5219d77e871398f3967f490d42b109
+SHA512 (xpra-4.3.4.tar.gz) = 02b0ab2769278649b35c255d64560d393c1749112d24e8c65917ec09c40223fbd8b80b5959988e5dfcf2578827cfe7d027072515a5910db63cdade96a21b830e
diff --git a/xpra-codecs-freeworld.spec b/xpra-codecs-freeworld.spec
index a23160e..85679c9 100644
--- a/xpra-codecs-freeworld.spec
+++ b/xpra-codecs-freeworld.spec
@@ -30,8 +30,8 @@
%endif
Name: xpra-codecs-freeworld
-Version: 4.3.2
-Release: 4%{?dist}
+Version: 4.3.4
+Release: 1%{?dist}
Summary: Additional codecs for xpra using x264 and ffmpeg
License: GPLv2+
URL: https://www.xpra.org/
@@ -169,6 +169,9 @@ find %{buildroot}%{python3_sitearch}/xpra -name '*.so' \
%license COPYING
%changelog
+* Sun Jun 26 2022 Antonio Trande <sagitter(a)fedoraproject.org> - 4.3.4-1
+- Release 4.3.4
+
* Sat Jun 25 2022 Robert-André Mauchin <zebob.m(a)gmail.com> - 4.3.2-4
- Rebuilt for Python 3.11
- Remove dependency to redhat-lsb-core, not actually used on Fedora and RHEL
2 years, 4 months
[shotcut] Update to 22.06.23
by Martin Gansser
commit e7d106c35681417c9884deb863613fda02c979f0
Author: Martin Gansser <mgansser(a)online.de>
Date: Sun Jun 26 11:39:59 2022 +0200
Update to 22.06.23
.gitignore | 1 +
shotcut.spec | 7 +++++--
sources | 2 +-
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 522d6e8..bd6fb19 100644
--- a/.gitignore
+++ b/.gitignore
@@ -47,3 +47,4 @@
/shotcut-22.04.22.tar.gz
/shotcut-22.04.25.tar.gz
/shotcut-22.06.07.tar.gz
+/shotcut-22.06.23.tar.gz
diff --git a/shotcut.spec b/shotcut.spec
index 26b15df..32240c7 100644
--- a/shotcut.spec
+++ b/shotcut.spec
@@ -1,6 +1,6 @@
Name: shotcut
-Version: 22.06.07
-Release: 2%{dist}
+Version: 22.06.23
+Release: 1%{dist}
#Release: 0.1.beta1%%{dist}
Summary: A free, open source, cross-platform video editor
# The entire source code is GPLv3+ except mvcp/ which is LGPLv2+
@@ -188,6 +188,9 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/org.%{name}.S
%doc doc
%changelog
+* Sat Jun 25 2022 Martin Gansser <martinkg(a)fedoraproject.org> - 22.06.23-1
+- Update to 22.06.23
+
* Fri Jun 24 2022 Martin Gansser <martinkg(a)fedoraproject.org> - 22.06.07-2
- Add libdir Patch
diff --git a/sources b/sources
index 8b0669d..eb3c008 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (shotcut-22.06.07.tar.gz) = 1ad7bdd1b615fcf9602af56680c0d175f7da8fa9f454acdd261d3c93606b134eb23aa8753cb8a94f192a47ff1ce91e2a3d30975d066af5eaca3384be48587ba1
+SHA512 (shotcut-22.06.23.tar.gz) = fc1fb6738e38784702ef2319d7e8563506f37ad1071f204cf91c958443df2e145b199e9ed0d6ceca693450718625a944520bf865705e1696072e89bfcfe1e752
2 years, 4 months
[videomorph] Rebuilt for Python 3.11
by Robert-André Mauchin
commit 9b15097732b5e8960ee496afcdf1f857796acdd1
Author: Robert-André Mauchin <zebob.m(a)gmail.com>
Date: Sat Jun 25 18:59:33 2022 +0200
Rebuilt for Python 3.11
videomorph.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/videomorph.spec b/videomorph.spec
index 75cf204..87ce708 100644
--- a/videomorph.spec
+++ b/videomorph.spec
@@ -1,6 +1,6 @@
Name: videomorph
Version: 1.4.1
-Release: 8%{?dist}
+Release: 9%{?dist}
Summary: Small GUI wrapper for FFMPEG based on PyQt5
License: ASL 2.0
URL: https://github.com/videomorph-dev/videomorph
@@ -53,6 +53,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/videomorph.desktop
%changelog
+* Sat Jun 25 2022 Robert-André Mauchin <zebob.m(a)gmail.com> - 1.4.1-9
+- Rebuilt for Python 3.11
+
* Wed Feb 09 2022 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 1.4.1-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2 years, 4 months
[tvheadend] Rebuilt for Python 3.11
by Robert-André Mauchin
commit 71987964096dfac97ba0cb893fee032117b0072f
Author: Robert-André Mauchin <zebob.m(a)gmail.com>
Date: Sat Jun 25 18:46:22 2022 +0200
Rebuilt for Python 3.11
tvheadend.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/tvheadend.spec b/tvheadend.spec
index 9b9354e..7550020 100644
--- a/tvheadend.spec
+++ b/tvheadend.spec
@@ -7,7 +7,7 @@
Name: tvheadend
Version: 4.3
-Release: 6.%{commitdate}git%{shortcommit}%{?dist}
+Release: 7.%{commitdate}git%{shortcommit}%{?dist}
Summary: TV streaming server and digital video recorder
# - Source code is GPLv3+
@@ -190,6 +190,9 @@ chmod 0644 $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
%changelog
+* Sat Jun 25 2022 Robert-André Mauchin <zebob.m(a)gmail.com> - 4.3-7.20220330git2bf1629
+- Rebuilt for Python 3.11
+
* Mon Apr 04 2022 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 4.3-6.20220330git2bf1629
- Update to latest snapshot
- Add workaround to build with GCC 12
2 years, 4 months
[rpmfusion-packager] Rebuilt for Python 3.11
by Robert-André Mauchin
commit 56ef1646e8a3e268ab3adedb1799034f72c3d009
Author: Robert-André Mauchin <zebob.m(a)gmail.com>
Date: Sat Jun 25 18:40:15 2022 +0200
Rebuilt for Python 3.11
rpmfusion-packager.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/rpmfusion-packager.spec b/rpmfusion-packager.spec
index 547c3b9..fb45ba5 100644
--- a/rpmfusion-packager.spec
+++ b/rpmfusion-packager.spec
@@ -12,7 +12,7 @@
Name: rpmfusion-packager
Version: 0.7.2
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Tools for setting up a rpmfusion maintainer environment
License: GPLv2+
@@ -125,6 +125,9 @@ pathfix.py -pni %{python3} src/*.py
%endif
%changelog
+* Sat Jun 25 2022 Robert-André Mauchin <zebob.m(a)gmail.com> - 0.7.2-3
+- Rebuilt for Python 3.11
+
* Tue Jun 15 2021 Leigh Scott <leigh123linux(a)gmail.com> - 0.7.2-2
- Rebuild for python-3.10
2 years, 4 months