From 71deace00d1a2b091313fe137ab7092418c6f87c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 10 Feb 2020 21:05:55 +0000 Subject: gentoo resync : 10.02.2020 --- media-sound/exaile/Manifest | 2 +- media-sound/exaile/exaile-4.0.0-r1.ebuild | 80 +++++++++++++++++++++++++++++++ media-sound/exaile/exaile-4.0.0.ebuild | 78 ------------------------------ 3 files changed, 81 insertions(+), 79 deletions(-) create mode 100644 media-sound/exaile/exaile-4.0.0-r1.ebuild delete mode 100644 media-sound/exaile/exaile-4.0.0.ebuild (limited to 'media-sound/exaile') diff --git a/media-sound/exaile/Manifest b/media-sound/exaile/Manifest index 09f5a6d0bee7..ec9c4ba4a860 100644 --- a/media-sound/exaile/Manifest +++ b/media-sound/exaile/Manifest @@ -1,3 +1,3 @@ DIST exaile-4.0.0.tar.gz 3635774 BLAKE2B 91a5a0a4b8f3c55ec1c8f6487f30bbc8193b1e8b861bbc4bf3cba18dcef91c8a58c937e7a581378eec9da518565826c35e55b7ab157b7ee4634d36cd71a85c4e SHA512 50ab8ec7a65dc431f2bc71a302d21e59ac3d5939b89a90ec161527e1d5c0b80b8c396f8f323b2959e0b807f577e021863fe423bf26a8f7165a6dd112afca6e45 -EBUILD exaile-4.0.0.ebuild 1809 BLAKE2B b799a034b2784190ed920d3c03cc6986be811b0d738b3ad67e632cb01edbb5f398b741d04d947c4808de4c28ea76972ce1139da89c9908e9a0638f688473ef16 SHA512 f8a6621eb7829c469db9f2cb4aa7e3860bb19c2ea664c10934b0c4438b868f9a3f0d7dd29f9e8ad1e831b9121464d8de635f7c4006d3c006d3b507913d1defac +EBUILD exaile-4.0.0-r1.ebuild 1887 BLAKE2B 4c36fd07e82e075504e1684c1e8e82f97d5a5a6a148d6a79ba018845c7b4252eba654fd921e4887e89264a837e5e79de82ecc2b994ce018b26d8df5711767e28 SHA512 657b04678257dcb8f1cf287ff630ffe20b67fc5a2cf771c265105e3b8abec2ad6422658af4eba03a0954d2952bda1bce98ee12c4728685c3bf1226b687da3489 MISC metadata.xml 465 BLAKE2B 1524388af85ca2f4b928ad4670fa8cc2a86a69f51d72c0dc0a755ca22a05ec95587bab11cfa9f10c9f65cd9a4b08c91ec1fb445f69f9163f54b4a86e2fb99746 SHA512 4185b5a40189086940aa0139e953f39d0af627af73ef2c34f77727e7b8ce596f6f69350531cc7b85cbea4968b7b4413f923f9eda61738a8e1c1dee3b85809942 diff --git a/media-sound/exaile/exaile-4.0.0-r1.ebuild b/media-sound/exaile/exaile-4.0.0-r1.ebuild new file mode 100644 index 000000000000..5fefb08686f1 --- /dev/null +++ b/media-sound/exaile/exaile-4.0.0-r1.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="sqlite" +inherit python-single-r1 xdg-utils + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/exaile/exaile.git" +else + SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV/_/-}/${PN}-${PV/_/}.tar.gz" + KEYWORDS="amd64 ~sparc x86" + S="${WORKDIR}/${PN}-${PV/_/}" +fi + +DESCRIPTION="GTK+ based media player aiming to be similar to Amarok" +HOMEPAGE="https://www.exaile.org/" + +LICENSE="GPL-2 GPL-3" +SLOT="0" +IUSE="cddb libnotify nls scrobbler" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + >=media-libs/gst-plugins-base-1.6:1.0 + >=media-libs/gst-plugins-good-1.4:1.0 + media-plugins/gst-plugins-meta:1.0 + >=x11-libs/gtk+-3.10:3[introspection] + cddb? ( dev-python/cddb-py ) + libnotify? ( >=x11-libs/libnotify-0.7[introspection] ) + $(python_gen_cond_dep ' + dev-python/bsddb3[${PYTHON_MULTI_USEDEP}] + dev-python/dbus-python[${PYTHON_MULTI_USEDEP}] + dev-python/gst-python:1.0[${PYTHON_MULTI_USEDEP}] + dev-python/pycairo[${PYTHON_MULTI_USEDEP}] + >=dev-python/pygobject-3.13.2:3[${PYTHON_MULTI_USEDEP}] + >=media-libs/mutagen-1.10[${PYTHON_MULTI_USEDEP}] + scrobbler? ( dev-python/pylast[${PYTHON_MULTI_USEDEP}] ) + ') +" +BDEPEND=" + nls? ( + dev-util/intltool + sys-devel/gettext + ) +" + +RESTRICT="test" #315589 + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_compile() { + use nls && emake locale +} + +src_install() { + emake \ + PREFIX=/usr \ + LIBINSTALLDIR=/usr/$(get_libdir) \ + DESTDIR="${D}" \ + install$(use nls || echo _no_locale) + + python_optimize "${D}/usr/$(get_libdir)/${PN}" + python_optimize "${D}/usr/share/${PN}" +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} diff --git a/media-sound/exaile/exaile-4.0.0.ebuild b/media-sound/exaile/exaile-4.0.0.ebuild deleted file mode 100644 index 57c248e3ab85..000000000000 --- a/media-sound/exaile/exaile-4.0.0.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="sqlite" -inherit python-single-r1 xdg-utils - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/exaile/exaile.git" -else - SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV/_/-}/${PN}-${PV/_/}.tar.gz" - KEYWORDS="amd64 ~sparc x86" - S="${WORKDIR}/${PN}-${PV/_/}" -fi - -DESCRIPTION="GTK+ based media player aiming to be similar to Amarok" -HOMEPAGE="https://www.exaile.org/" - -LICENSE="GPL-2 GPL-3" -SLOT="0" -IUSE="cddb libnotify nls scrobbler" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-python/bsddb3[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/gst-python:1.0[${PYTHON_USEDEP}] - dev-python/pycairo[${PYTHON_USEDEP}] - >=dev-python/pygobject-3.13.2:3[${PYTHON_USEDEP}] - >=media-libs/gst-plugins-base-1.6:1.0 - >=media-libs/gst-plugins-good-1.4:1.0 - >=media-libs/mutagen-1.10[${PYTHON_USEDEP}] - media-plugins/gst-plugins-meta:1.0 - >=x11-libs/gtk+-3.10:3[introspection] - cddb? ( dev-python/cddb-py ) - libnotify? ( >=x11-libs/libnotify-0.7[introspection] ) - scrobbler? ( dev-python/pylast[${PYTHON_USEDEP}] ) -" -BDEPEND=" - nls? ( - dev-util/intltool - sys-devel/gettext - ) -" - -RESTRICT="test" #315589 - -pkg_setup() { - python-single-r1_pkg_setup -} - -src_compile() { - use nls && emake locale -} - -src_install() { - emake \ - PREFIX=/usr \ - LIBINSTALLDIR=/usr/$(get_libdir) \ - DESTDIR="${D}" \ - install$(use nls || echo _no_locale) - - python_optimize "${D}/usr/$(get_libdir)/${PN}" - python_optimize "${D}/usr/share/${PN}" -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} -- cgit v1.2.3