[xroar/f32] (3 commits) ...fix conditional
by Andrea Musuruane
Summary of changes:
416e6a0... Updated to new upstream release (*)
5bec60d... pangox has been retired for F33 so disable gtkglext support (*)
238401b... fix conditional (*)
(*) This commit already existed in another branch; no separate mail sent
4 years, 5 months
[xroar] fix conditional
by Leigh Scott
commit 238401bad0f09c02af9534c2b2b61e0e0b248ca1
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sun Jun 21 09:59:34 2020 +0100
fix conditional
xroar.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/xroar.spec b/xroar.spec
index d87eaa9..27d104e 100644
--- a/xroar.spec
+++ b/xroar.spec
@@ -11,7 +11,7 @@ Source3: %{name}-minifirm.desktop
Source4: %{name}.appdata.xml
BuildRequires: gcc
BuildRequires: gtk2-devel
-%if 0%{?fedora} > 33
+%if 0%{?fedora} < 33
BuildRequires: gtkglext-devel
%endif
BuildRequires: SDL2-devel
4 years, 5 months
[xroar] pangox has been retired for F33 so disable gtkglext support
by Leigh Scott
commit 5bec60d71dad42fda23599f3f68b387cfb7c1c31
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sun Jun 21 09:53:02 2020 +0100
pangox has been retired for F33 so disable gtkglext support
xroar.spec | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/xroar.spec b/xroar.spec
index aafca8d..d87eaa9 100644
--- a/xroar.spec
+++ b/xroar.spec
@@ -1,6 +1,6 @@
Name: xroar
Version: 0.36.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A Dragon 32, Dragon 64 and Tandy CoCo emulator
License: GPLv3+
URL: http://www.6809.org.uk/xroar/
@@ -11,7 +11,9 @@ Source3: %{name}-minifirm.desktop
Source4: %{name}.appdata.xml
BuildRequires: gcc
BuildRequires: gtk2-devel
+%if 0%{?fedora} > 33
BuildRequires: gtkglext-devel
+%endif
BuildRequires: SDL2-devel
BuildRequires: libsndfile-devel
BuildRequires: pulseaudio-libs-devel
@@ -96,6 +98,9 @@ rm -f %{buildroot}%{_infodir}/dir
%changelog
+* Sun Jun 21 2020 Leigh Scott <leigh123linux(a)gmail.com> - 0.36.1-2
+- pangox has been retired for F33 so disable gtkglext support
+
* Fri Jun 19 2020 Andrea Musuruane <musuruan(a)gmail.com> - 0.36.1-1
- Updated to new upstream release
4 years, 5 months
[VirtualBox] The VirtualBox 6.1 changelog says that it supports vboximg-mount on Linux hosts
by Sérgio M. Basto
commit a4cb95cbb14c12031d236572f516dd8721b34d10
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Jun 21 05:30:24 2020 +0100
The VirtualBox 6.1 changelog says that it supports vboximg-mount on Linux
hosts
VirtualBox.spec | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/VirtualBox.spec b/VirtualBox.spec
index 86d11e1..08dc1fd 100644
--- a/VirtualBox.spec
+++ b/VirtualBox.spec
@@ -46,7 +46,7 @@
Name: VirtualBox
Version: 6.1.10
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
License: GPLv2 or (GPLv2 and CDDL)
@@ -391,6 +391,7 @@ kmk %{_smp_mflags} \
VBOX_PATH_APP_PRIVATE=%{_libdir}/virtualbox \
VBOX_PATH_APP_DOCS=%{_docdir}/VirtualBox \
VBOX_WITH_VBOX_IMG=1 \
+ VBOX_WITH_VBOXIMGMOUNT=1 \
VBOX_WITH_SYSFS_BY_DEFAULT=1 \
VBOX_USE_SYSTEM_XORG_HEADERS=1 \
VBOX_USE_SYSTEM_GL_HEADERS=1 \
@@ -483,6 +484,7 @@ install -p -m 0755 -t %{buildroot}%{_libdir}/virtualbox \
obj/bin/vboxshell.py \
%endif
obj/bin/vbox-img \
+ obj/bin/vboximg-mount \
obj/bin/VBoxDTrace \
obj/bin/VBoxBugReport \
obj/bin/VirtualBoxVM \
@@ -514,7 +516,8 @@ ln -s VBox %{buildroot}%{_bindir}/virtualboxvm
%if %{with webservice}
ln -s VBox %{buildroot}%{_bindir}/vboxwebsrv
%endif
-ln -s ../..%{_libdir}/virtualbox/vbox-img %{buildroot}%{_bindir}/vbox-img
+ln -s ../..%{_libdir}/virtualbox/vbox-img %{buildroot}%{_bindir}
+ln -s ../..%{_libdir}/virtualbox/vboximg-mount %{buildroot}%{_bindir}
#ln -s /usr/share/virtualbox/src/vboxhost $RPM_BUILD_ROOT/usr/src/vboxhost-%VER%
@@ -781,6 +784,7 @@ getent passwd vboxadd >/dev/null || \
%{_bindir}/VirtualBoxVM
%{_bindir}/virtualboxvm
%{_bindir}/vbox-img
+%{_bindir}/vboximg-mount
%{_bindir}/rdesktop-vrdp
%dir %{_libdir}/virtualbox
%{_libdir}/virtualbox/*.[^p]*
@@ -808,6 +812,7 @@ getent passwd vboxadd >/dev/null || \
%{_libdir}/virtualbox/VBoxBugReport
%{_libdir}/virtualbox/VBoxDTrace
%{_libdir}/virtualbox/vbox-img
+%{_libdir}/virtualbox/vboximg-mount
%{_libdir}/virtualbox/rdesktop-vrdp-keymaps
# This permissions have to be here, before generator of debuginfo need
# permissions to read this files
@@ -893,6 +898,10 @@ getent passwd vboxadd >/dev/null || \
%{_datadir}/%{name}-kmod-%{version}
%changelog
+* Sun Jun 21 2020 Sérgio Basto <sergio(a)serjux.com> - 6.1.10-5
+- The VirtualBox 6.1 changelog says that it supports vboximg-mount on Linux
+ hosts
+
* Wed Jun 17 2020 Sérgio Basto <sergio(a)serjux.com> - 6.1.10-4
- Fix (#5677)
https://docs.pagure.org/packaging-guidelines/Packaging%3AScriptlets.html (On
4 years, 5 months
[VirtualBox] Fix warning Failed to preset unit: Unit file vboxweb-httpd.service does not exist.
by Sérgio M. Basto
commit 2efc07900d277b9a9ae673c85290f88daa26df7d
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Jun 21 04:22:31 2020 +0100
Fix warning Failed to preset unit: Unit file vboxweb-httpd.service does not exist.
when we install VirtualBox-webservice
VirtualBox.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/VirtualBox.spec b/VirtualBox.spec
index d631355..86d11e1 100644
--- a/VirtualBox.spec
+++ b/VirtualBox.spec
@@ -708,7 +708,7 @@ fi
%endif
%post webservice
-%systemd_post vboxweb-httpd.service
+%systemd_post vboxweb.service
%preun webservice
%systemd_preun vboxweb.service
4 years, 5 months
[VirtualBox] Minor fixes
by Sérgio M. Basto
commit 5885037b673ea7a660091ee3396c8b7fe41d83cf
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Jun 21 04:21:42 2020 +0100
Minor fixes
VirtualBox.spec | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/VirtualBox.spec b/VirtualBox.spec
index 3e8e3d7..d631355 100644
--- a/VirtualBox.spec
+++ b/VirtualBox.spec
@@ -639,7 +639,7 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications \
--remove-key=Encoding obj/bin/virtualbox.desktop
desktop-file-validate %{buildroot}%{_datadir}/applications/virtualbox.desktop
-install -P -m 0644 -D %{SOURCE2} %{buildroot}%{_metainfodir}/%{name}.appdata.xml
+install -p -m 0644 -D %{SOURCE2} %{buildroot}%{_metainfodir}/%{name}.appdata.xml
# --remove-key=DocPath
# to review:
@@ -650,7 +650,7 @@ install -P -m 0644 -D %{SOURCE2} %{buildroot}%{_metainfodir}/%{name}.appdata.xml
#set_selinux_permissions /usr/lib/virtualbox /usr/share/virtualbox
# vboxautostart-service
-install -d %{buildroot}%{_libdir}/virtualbox/rdesktop-vrdp-keymaps
+install -d %{buildroot}%{_libdir}/virtualbox/rdesktop-vrdp-keymaps
install -p -m 0644 -t %{buildroot}%{_libdir}/virtualbox/rdesktop-vrdp-keymaps obj/bin/rdesktop-vrdp-keymaps/*
install -p -m 0644 -t %{buildroot}%{_libdir}/virtualbox obj/bin/rdesktop-vrdp.tar.gz
install -p -m 0755 -t %{buildroot}%{_bindir} obj/bin/rdesktop-vrdp
4 years, 5 months
[VirtualBox] Enable TESTCASES and VALIDATIONKIT defaults
by Sérgio M. Basto
commit 02d8b27bda5410e6d4daeb9ea2d3aef5677ce75b
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Jun 21 04:20:15 2020 +0100
Enable TESTCASES and VALIDATIONKIT defaults
VirtualBox.spec | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/VirtualBox.spec b/VirtualBox.spec
index 28545f3..3e8e3d7 100644
--- a/VirtualBox.spec
+++ b/VirtualBox.spec
@@ -390,8 +390,6 @@ kmk %{_smp_mflags} \
TOOL_YASM_AS=yasm \
VBOX_PATH_APP_PRIVATE=%{_libdir}/virtualbox \
VBOX_PATH_APP_DOCS=%{_docdir}/VirtualBox \
- VBOX_WITH_TESTCASES= \
- VBOX_WITH_VALIDATIONKIT= \
VBOX_WITH_VBOX_IMG=1 \
VBOX_WITH_SYSFS_BY_DEFAULT=1 \
VBOX_USE_SYSTEM_XORG_HEADERS=1 \
@@ -408,6 +406,8 @@ kmk %{_smp_mflags} \
VBOX_WITHOUT_PRECOMPILED_HEADERS=1 \
VBOX_BUILD_PUBLISHER=%{publisher}
+# VBOX_WITH_TESTCASES= \
+# VBOX_WITH_VALIDATIONKIT= \
# VBOX_XCURSOR_LIBS="Xcursor Xext X11 GL" \
# doc/manual/fr_FR/ missing man_VBoxManage-debugvm.xml and man_VBoxManage-extpack.xml
4 years, 5 months
[chromium-freeworld] Disable python byte compiling
by qvint
commit a5dfb5bfca518ff069723bd9ecb18d260ee5d38a
Author: qvint <dotqvint(a)gmail.com>
Date: Sat Jun 20 21:32:35 2020 +0300
Disable python byte compiling
chromium-freeworld.spec | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
---
diff --git a/chromium-freeworld.spec b/chromium-freeworld.spec
index ab7e48b..8901640 100644
--- a/chromium-freeworld.spec
+++ b/chromium-freeworld.spec
@@ -22,9 +22,6 @@
%else
%bcond_without system_ply
%endif
-# This package depends on automagic byte compilation
-# https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompi...
-%global _python_bytecompile_extra 1
#Require harfbuzz >= 2.4.0 for hb_subset_input_set_retain_gids
%if 0%{?fedora} >= 31
%bcond_without system_harfbuzz
@@ -750,6 +747,7 @@ appstream-util validate-relax --nonet "%{buildroot}%{_metainfodir}/%{name}.appda
%changelog
* Wed Jun 17 2020 qvint <dotqvint(a)gmail.com> - 83.0.4103.106-1
- Update to 83.0.4103.106
+- Disable python byte compiling
* Mon Jun 08 2020 qvint <dotqvint(a)gmail.com> - 83.0.4103.97-2
- Fix crash in ServiceWorker (rfbz#5671)
4 years, 5 months
[smplayer] Add BR qt5-qtbase-private-devel
by Sérgio M. Basto
commit 937e56a2d0f8ec18022668f2f86b06eb948f36eb
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sat Jun 20 00:50:56 2020 +0100
Add BR qt5-qtbase-private-devel
smplayer.spec | 2 ++
update_smplayer.sh | 1 -
2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/smplayer.spec b/smplayer.spec
index e732404..11350c7 100644
--- a/smplayer.spec
+++ b/smplayer.spec
@@ -32,6 +32,7 @@ BuildRequires: pkgconfig(Qt5WebKitWidgets)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5Xml)
BuildRequires: pkgconfig(xext)
+BuildRequires: qt5-qtbase-private-devel
# for unbundle sources
BuildRequires: qtsingleapplication-qt5-devel
BuildRequires: pkgconfig(zlib)
@@ -173,6 +174,7 @@ fi
%changelog
* Fri Jun 19 2020 Sérgio Basto <sergio(a)serjux.com> - 20.6.0-1
- Update smplayer to 20.6.0
+- Add BR qt5-qtbase-private-devel
* Thu Apr 16 2020 Leigh Scott <leigh123linux(a)gmail.com> - 20.4.2-1
- Update smplayer to 20.4.2
diff --git a/update_smplayer.sh b/update_smplayer.sh
index d519a13..568c5ca 100755
--- a/update_smplayer.sh
+++ b/update_smplayer.sh
@@ -42,7 +42,6 @@ then
echo STAGE 1
echo Press enter to push and build in rawhide; read dummy;
rfpkg push && rfpkg build --nowait
-echo Press enter to continue; read dummy;
fi
if test $stage -le 2
4 years, 5 months
[smtube/el7] Update smtube to 20.6.0
by Sérgio M. Basto
Summary of changes:
e6cc57d... Update smtube to 20.6.0 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years, 5 months