About to propose RetroArch for reviewing
by David Demelier
Hello all,
As some of you remember, I've told a few months ago my attempt to port
RetroArch to Fedora in RPM Fusion repositories.
The port is complete and almost ready to be included [1].
RetroArch is a fully featured frontend for libretro cores, an effort to
create a convenient all-in-one emulators launcher within the same
framework.
RetroArch depends on ffmpeg to record videos and some other cores do
the same (e.g. libretro-ppsspp).
A few questions before I ask for reviewing:
1. RetroArch uses libretro cores that are dynamically loaded, I've
actually used the /usr/libexec/libretro directory but I wonder if I
should use /usr/lib64/libretro (from %{_libdir} RPM macro) instead?
2. RetroArch has no real “installation procedure” so packagers are
mostly free for setting directories to use, I've separated into two
different ones:
- /usr/share/libretro for core information (*_libretro.info)
- /usr/share/retroarch for the RetroArch application (database,
assets, cheats, cursors, ...)
Are you okay for this or do you prefer using /usr/share/libretro for
everything?
Regards,
[1]: https://copr.fedorainfracloud.org/coprs/markand/RetroArch
--
6 years, 9 months
RPM Fusion update report 2018-01-30
by noreply@rpmfusion.org
RPM Fusion update report
------------------------
Section free:
-------------
Fedora 25
-------------
Pushed to testing:
Pushed to stable:
Fedora 26
-------------
Pushed to testing:
smplayer-18.2.0-1.fc26
Pushed to stable:
devedeng-4.8.12-1.fc26
xmltv-0.5.70-1.fc26
yle-dl-2.26-2.fc26
Fedora 27
-------------
Pushed to testing:
smplayer-18.2.0-1.fc27
Pushed to stable:
devedeng-4.8.12-1.fc27
libva-intel-driver-1.8.3-3.fc27
xmltv-0.5.70-1.fc27
xpra-codecs-freeworld-2.2.2-1.fc27
yle-dl-2.26-2.fc27
EL 6
-------------
Pushed to testing:
Pushed to stable:
EL 7
-------------
Pushed to testing:
smplayer-18.2.0-1.el7
Pushed to stable:
mythtv-29.0-9.20180111.77.g771115f47d.el7
mythweb-29.0-1.el7
Section nonfree:
-------------
Fedora 25
-------------
Pushed to testing:
Pushed to stable:
Fedora 26
-------------
Pushed to testing:
nvidia-kmod-390.25-1.fc26
nvidia-modprobe-390.25-1.fc26
nvidia-persistenced-390.25-1.fc26
nvidia-settings-390.25-1.fc26
nvidia-xconfig-390.25-1.fc26
xorg-x11-drv-nvidia-390.25-1.fc26
Pushed to stable:
Fedora 27
-------------
Pushed to testing:
nvidia-kmod-390.25-1.fc27
nvidia-modprobe-390.25-1.fc27
nvidia-persistenced-390.25-1.fc27
nvidia-settings-390.25-1.fc27
nvidia-xconfig-390.25-1.fc27
xorg-x11-drv-nvidia-390.25-1.fc27
Pushed to stable:
EL 6
-------------
Pushed to testing:
Pushed to stable:
EL 7
-------------
Pushed to testing:
Pushed to stable:
Theses packages will be available in main mirror in few minutes. Wait for local mirrors to sync
Please report any issue to https://bugzilla.rpmfusion.org
6 years, 9 months
Re: [vidcutter] Add RR mpv-libs
by Nicolas Chauvet
2018-01-29 13:32 GMT+01:00 Martin Gansser <martinkg(a)rpmfusion.org>:
> commit 46e1b30df1b0765864d0051b3acedec84533d4e4
> Author: Martin Gansser <martinkg(a)fedoraproject.org>
> Date: Mon Jan 29 13:32:03 2018 +0100
>
> Add RR mpv-libs
>
> vidcutter.spec | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
> ---
> diff --git a/vidcutter.spec b/vidcutter.spec
> index 50d5767..572acf2 100644
> --- a/vidcutter.spec
> +++ b/vidcutter.spec
> @@ -2,7 +2,7 @@
>
> Name: vidcutter
> Version: 5.0.5
> -Release: 1%{?dist}
> +Release: 2%{?dist}
> Summary: The simplest + fastest video cutter & joiner
> License: GPLv3+
> Url: http://vidcutter.ozmartians.com
> @@ -12,11 +12,13 @@ BuildRequires: python3-devel
> BuildRequires: python3-setuptools
> BuildRequires: mpv-libs-devel
> BuildRequires: desktop-file-utils
> +
> Requires: python3-qt5
> Requires: ffmpeg
> Requires: python3-pyopengl
> Requires: mediainfo
> Requires: hicolor-icon-theme
> +Requires: mpv-libs
@Martin
Why do you think you need that for mpv-libs ? It already have the libs
as a dependency
rpm -qR vidcutter
[...]
libmpv.so.1()(64bit)
Thx
6 years, 9 months
FFmpeg 3.5 support now in Kodi
by Michael Cronenworth
Hello,
Rawhide now has kodi-17.6-4.fc28, which features ffmpeg-3.5 support.
Please test this against video files, addons, and music files.
Thanks,
Michael
6 years, 10 months
Re: [kodi] ffmpeg-3.5 support
by Sérgio Basto
On Wed, 2018-01-24 at 18:39 +0100, Michael Cronenworth wrote:
> diff --git a/kodi.spec b/kodi.spec
> index 1691e9c..5faf34c 100644
> --- a/kodi.spec
> +++ b/kodi.spec
> @@ -4,11 +4,22 @@
> # use the line below for pre-releases
> #global DIRVERSION %{version}%{PRERELEASE}
> %global _hardened_build 1
> -%global _with_dvd 0
> +
> +%if (0%{?fedora} > 27)
> +#Rawhide has stopped defining this correctly
> +%global python_sitelib %(%{__python} -c "from distutils.sysconfig
> import get_python_lib; print(get_python_lib())")
> +%endif
I think you don't need this scriptlet you may use python2_sitelib
instead
> +# We support hte following options:
> +# --with,
> +# * dvd - Include optical drive support and DVD decryption
> +#
> +# Default: Do not ship DVD decryption for legal reasons
> +%bcond_with dvd 0
Should be only:
%bcond_with dvd
If we want included dvd by default you may use:
%bcond_without dvd
%bcond_with dvd ( means that if we use --with dvd will work )
%bcond_without dvd ( means that if we use --without dvd will work )
> @@ -406,7 +409,7 @@ fi
>
> %files eventclients
> %license copying.txt LICENSE.GPL
> -%python_sitelib/kodi
> +%{python_sitelib}/kodi
you may use python2_sitelib instead (I guess)
best regards,
--
Sérgio M. B.
6 years, 10 months
Re: [yle-dl] Epoch back to 2.26 as python-pyamf isn't available in
fedora
by Sergio
Hi. (20180101)
Could you rebuild the new yle-dl version in rpmfusion?
Current version is no longer functional.
That is why I pushed to stable branches
Moreover changelog , don't mention any new dep and was minor version update
Sent from my AndroidEm 24/01/2018 12:54, Dominik 'Rathann' Mierzejewski <dominik(a)greysector.net> escreveu:
>
> On Wednesday, 24 January 2018 at 01:36, Sérgio Basto wrote:
> > On Tue, 2018-01-23 at 23:45 +0100, Dominik 'Rathann' Mierzejewski
> > wrote:
> > > On Tuesday, 23 January 2018 at 19:40, Leigh Scott wrote:
> > > > commit a03126f4974ef9d73d3447b1bfe8478d462d8d48
> > > > Author: leigh123linux <leigh123linux(a)googlemail.com>
> > > > Date: Tue Jan 23 18:40:47 2018 +0000
> > > >
> > > > Epoch back to 2.26 as python-pyamf isn't available in fedora
> > >
> > > [...]
> > > > %changelog
> > > > +* Tue Jan 23 2018 Leigh Scott <leigh123linux(a)googlemail.com> -
> > > > 1:2.26-2
> > > > +- Epoch back to 2.26 as python-pyamf isn't available in fedora
> > > > +
> > > > * Mon Jan 01 2018 Sérgio Basto <sergio(a)serjux.com> - 2.30-1
> > > > - Update to 2.30
> > >
> > > Ouch... Sérgio, you didn't test your own update? You should be more
> > > careful in the future.
> >
> > Sometimes I fail but not often, I don't understand the big deal around
> > this subject, I already replied and assume the error on IRC , but the
> > complaining user didn't reply to me...
>
> The big deal is that you pushed an update with broken dependencies not
> only to rawhide, but also to stable branches without testing it.
>
> > A tool that just work in Finnish, someone ask me to update, I update
> > it.
>
> If someone asked you to jump off a cliff, would you do it?
>
> > Furthermore run "pip2 install -U PyAMF --user" fix it , which seems to
> > me an easy fix.
>
> Which "fixes" it only for that particular user. The package was still
> broken.
>
> > Do you understand anything which is write in this page [1]?
> > [1] https://areena.yle.fi/1-4206263
>
> No, but Google Translate does. You shouldn't touch packages which
> you're unable to test.
>
> Regards,
> Dominik
> --
> Fedora https://getfedora.org | RPMFusion http://rpmfusion.org
> There should be a science of discontent. People need hard times and
> oppression to develop psychic muscles.
> -- from "Collected Sayings of Muad'Dib" by the Princess Irulan
> _______________________________________________
> rpmfusion-developers mailing list -- rpmfusion-developers(a)lists.rpmfusion.org
> To unsubscribe send an email to rpmfusion-developers-leave(a)lists.rpmfusion.org
6 years, 10 months
Re: [yle-dl] Epoch back to 2.26 as python-pyamf isn't available in
fedora
by Dominik 'Rathann' Mierzejewski
On Tuesday, 23 January 2018 at 19:40, Leigh Scott wrote:
> commit a03126f4974ef9d73d3447b1bfe8478d462d8d48
> Author: leigh123linux <leigh123linux(a)googlemail.com>
> Date: Tue Jan 23 18:40:47 2018 +0000
>
> Epoch back to 2.26 as python-pyamf isn't available in fedora
[...]
> %changelog
> +* Tue Jan 23 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 1:2.26-2
> +- Epoch back to 2.26 as python-pyamf isn't available in fedora
> +
> * Mon Jan 01 2018 Sérgio Basto <sergio(a)serjux.com> - 2.30-1
> - Update to 2.30
Ouch... Sérgio, you didn't test your own update? You should be more
careful in the future.
Regards,
Dominik
--
Fedora https://getfedora.org | RPMFusion http://rpmfusion.org
There should be a science of discontent. People need hard times and
oppression to develop psychic muscles.
-- from "Collected Sayings of Muad'Dib" by the Princess Irulan
6 years, 10 months
RPM Fusion update report 2018-01-23
by noreply@rpmfusion.org
RPM Fusion update report
------------------------
Section free:
-------------
Fedora 25
-------------
Pushed to testing:
Pushed to stable:
Fedora 26
-------------
Pushed to testing:
freshplayerplugin-0.3.9-1.fc26
mythtv-29.0-9.20180111.77.g771115f47d.fc26
qt5-qtwebengine-freeworld-5.10.0-1.fc26
transcode-1.1.7-22.fc26
vdr-xineliboutput-2.1.0-1.20180118gitcdd6595.fc26
Pushed to stable:
motion-4.1.1-1.fc26
mp4tools-3.5-4.fc26
shotcut-18.01-1.fc26
smplayer-18.1.0-1.fc26
tvheadend-4.2.5-1.fc26
vlc-3.0.0-0.48.git20180109.rc5.fc26
xine-lib-1.2.9-1.fc26
xvst-3.0-1.20171201git14dee45.fc26
Fedora 27
-------------
Pushed to testing:
VirtualBox-5.2.6-2.fc27
VirtualBox-kmod-5.2.6-2.fc27
freshplayerplugin-0.3.9-1.fc27
gstreamer1-plugins-ugly-1.12.4-3.fc27
mythtv-29.0-9.20180111.77.g771115f47d.fc27
transcode-1.1.7-22.fc27
vdr-xineliboutput-2.1.0-1.20180118gitcdd6595.fc27
Pushed to stable:
motion-4.1.1-1.fc27
mp4tools-3.5-4.fc27
shotcut-18.01-1.fc27
smplayer-18.1.0-1.fc27
tvheadend-4.2.5-1.fc27
vlc-3.0.0-0.48.git20180109.rc5.fc27
xine-lib-1.2.9-1.fc27
xvst-3.0-1.20171201git14dee45.fc27
EL 6
-------------
Pushed to testing:
Pushed to stable:
xine-lib-1.2.9-1.el6
EL 7
-------------
Pushed to testing:
mythtv-29.0-6.20171226.71.g339b08e467.el7
mythtv-29.0-9.20180111.77.g771115f47d.el7
Pushed to stable:
buildsys-build-rpmfusion-20-104
mythweb-29.0-1.el7
smplayer-18.1.0-1.el7
xine-lib-1.2.9-1.el7
Section nonfree:
-------------
Fedora 25
-------------
Pushed to testing:
Pushed to stable:
Fedora 26
-------------
Pushed to testing:
lpf-flash-plugin-28.0.0.137-1.fc26
nvidia-340xx-kmod-340.106-1.fc26
unrar-5.5.8-1.fc26
xorg-x11-drv-nvidia-340xx-340.106-1.fc26
yapeSDL-0.70.2-2.fc26
Pushed to stable:
lpf-spotify-client-1.0.70.399-1.fc26
Fedora 27
-------------
Pushed to testing:
dwarffortress-0.44.05-1.fc27
lpf-flash-plugin-28.0.0.137-1.fc27
nvidia-340xx-kmod-340.106-1.fc27
unrar-5.5.8-1.fc27
xorg-x11-drv-nvidia-340xx-340.106-1.fc27
yapeSDL-0.70.2-2.fc27
Pushed to stable:
lpf-spotify-client-1.0.70.399-1.fc27
EL 6
-------------
Pushed to testing:
Pushed to stable:
EL 7
-------------
Pushed to testing:
Pushed to stable:
nvidia-kmod-384.111-1.el7
xorg-x11-drv-nvidia-384.111-1.el7
Theses packages will be available in main mirror in few minutes. Wait for local mirrors to sync
Please report any issue to https://bugzilla.rpmfusion.org
6 years, 10 months