diff --git a/multimedia/sound/clementine/actions.py b/multimedia/sound/clementine/actions.py index b5f7a83b20..101176788e 100644 --- a/multimedia/sound/clementine/actions.py +++ b/multimedia/sound/clementine/actions.py @@ -2,19 +2,22 @@ # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt +# See the file https://www.gnu.org/licenses/gpl-3.0.txt from pisi.actionsapi import shelltools from pisi.actionsapi import cmaketools from pisi.actionsapi import pisitools from pisi.actionsapi import get +j = "-DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DUSE_SYSTEM_TAGLIB=ON \ + -DENABLE_VK=ON \ + " + def setup(): shelltools.system("sed -i 's|Exec=clementine %U|Exec=clementine|g' dist/clementine.desktop") - cmaketools.configure(" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release \ - -DENABLE_VK=ON") + cmaketools.configure(j) def build(): cmaketools.make() @@ -22,4 +25,5 @@ def build(): def install(): cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("Changelog", "COPYING") + pisitools.dodoc("Changelog", "COPYING", "README*") + diff --git a/multimedia/sound/clementine/pspec.xml b/multimedia/sound/clementine/pspec.xml index 62aa11395d..8b87dd4faf 100644 --- a/multimedia/sound/clementine/pspec.xml +++ b/multimedia/sound/clementine/pspec.xml @@ -1,72 +1,70 @@ - + clementine - http://www.clementine-player.org/ + https://www.clementine-player.org/ PisiLinux Community admins@pisilinux.org GPLv2 GPLv3 - clementine app:gui A cross-platform music player based on Amarok 1.4 Clementine is a modern music player and library organiser. Clementine is a port of Amarok 1.4, with some features rewritten to take advantage of Qt4. - https://github.com/clementine-player/Clementine/archive/3b76fa62752f25b445ee2a71f02c0c9d7581735a.zip + + https://github.com/clementine-player/Clementine/archive/1.4.0rc1-320-g3a4d7f3a3.tar.gz + cmake + ccache gst-libav - qt5-svg-devel - qt5-base-devel - qt5-webkit-devel - qt5-x11extras-devel - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - qt5-qdbusviewer - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qca2-qt5-devel glew-devel - icon-theme-hicolor boost-devel - pulseaudio-libs-devel - libmygpo-qt-devel fftw3-devel libmtp-devel ffmpeg-devel taglib-devel + qt5-linguist + qt5-sql-odbc + qt5-sql-mysql libgpod-devel + qt5-svg-devel + qt5-base-devel libplist-devel libqjson-devel protobuf-devel mesa-glu-devel - liblastfm-devel - libechonest-devel - google-sparsehash - libchromaprint-devel - gstreamer-devel - libimobiledevice-devel - gst-plugins-base-devel - gst-plugins-bad-devel - gst-plugins-ugly - gst-plugins-good - libkvkontakte-devel crypto++-devel alsa-lib-devel + qt5-sql-sqlite + qca2-qt5-devel + qt5-qdbusviewer + liblastfm-devel + gstreamer-devel + qt5-webkit-devel + gst-plugins-ugly + gst-plugins-good + libechonest-devel + libmygpo-qt-devel + google-sparsehash + icon-theme-hicolor desktop-file-utils + qt5-designer-devel + qt5-sql-postgresql + libkvkontakte-devel + qt5-x11extras-devel + qt5-assistant-devel + libchromaprint-devel + pulseaudio-libs-devel + gst-plugins-bad-devel + libimobiledevice-devel + gst-plugins-base-devel libcdio-paranoia-devel - - - - - + @@ -89,10 +87,10 @@ crypto++ alsa-lib qt5-base - qt5-x11extras + gstreamer liblastfm libmygpo-qt - gstreamer + qt5-x11extras libchromaprint pulseaudio-libs gst-plugins-base @@ -104,6 +102,13 @@ + + 2020-09-22 + 1.4.0_rc1 + Rebuild from git. + Mustafa Cinasal + muscnsl@gmail.com + 2020-03-08 1.3.1 @@ -139,7 +144,7 @@ Mustafa Cinasal muscnsl@gmail.com - + 2018-02-22 1.3.1 Rebuild. diff --git a/multimedia/sound/libsoxr/actions.py b/multimedia/sound/libsoxr/actions.py index 9b59cf32ed..455dbf03ca 100755 --- a/multimedia/sound/libsoxr/actions.py +++ b/multimedia/sound/libsoxr/actions.py @@ -2,37 +2,36 @@ # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt +# See the file https://www.gnu.org/licenses/gpl-3.0.txt -from pisi.actionsapi import autotools +from pisi.actionsapi import shelltools from pisi.actionsapi import cmaketools from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools from pisi.actionsapi import get def setup(): - shelltools.system("mkdir build_") - shelltools.cd("build_") + shelltools.system("mkdir build_") + shelltools.cd("build_") - shelltools.system("cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DBUILD_EXAMPLES='OFF' \ - -DBUILD_SHARED_LIBS='ON' \ - -DWITH_AVFFT='OFF' \ - -DWITH_LSR_BINDINGS='ON' \ - -DWITH_PFFFT='ON' \ - -DWITH_OPENMP='ON'") + shelltools.system("cmake .. \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_EXAMPLES='OFF' \ + -DBUILD_SHARED_LIBS='ON' \ + -DWITH_AVFFT='OFF' \ + -DWITH_LSR_BINDINGS='ON' \ + -DWITH_PFFFT='ON' \ + -DWITH_OPENMP='ON'") def build(): - shelltools.cd("build_") - cmaketools.make() + shelltools.cd("build_") + cmaketools.make() def install(): - shelltools.cd("build_") - autotools.rawInstall("DESTDIR=%s" %get.installDIR()) - - shelltools.cd("..") - pisitools.dodoc("AUTHORS", "COPYING.LGPL", "LICENCE", "NEWS", "README") + shelltools.cd("build_") + autotools.rawInstall("DESTDIR=%s" %get.installDIR()) + + shelltools.cd("..") + pisitools.dodoc("AUTHORS", "COPYING.LGPL", "LICENCE", "NEWS", "README") diff --git a/multimedia/sound/libsoxr/pspec.xml b/multimedia/sound/libsoxr/pspec.xml index 2de8e63697..a60c616890 100755 --- a/multimedia/sound/libsoxr/pspec.xml +++ b/multimedia/sound/libsoxr/pspec.xml @@ -1,59 +1,57 @@ - + libsoxr - http://sourceforge.net/p/soxr/wiki/Home/ + https://sourceforge.net/p/soxr/wiki/Home/ Mathias Freire mathiasfreire45@gmail.com - GPL - library + GPL + library The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio - https://sourceforge.net/projects/soxr/files/soxr-0.1.3-Source.tar.xz - - cmake - + https://sourceforge.net/projects/soxr/files/soxr-0.1.3-Source.tar.xz + + cmake + - + libsoxr - - libgcc - libgomp - + + libgcc + libgomp + /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - libsoxr-devel - Header files for libsoxr. - - libsoxr - - - /usr/include - /usr/lib/pkgconfig - + /usr/lib + /usr/share/doc + /usr/share/man + - + + libsoxr-devel + Header files for libsoxr. + + libsoxr + + + /usr/include + /usr/lib/pkgconfig + + + + 2020-01-14 - 0.1.3 - First release. - Idris Kalp - idriskalp@gmail.com + 0.1.3 + First release. + Idris Kalp + idriskalp@gmail.com - -