]> git.draconx.ca Git - gentoo-fixes.git/commitdiff
media-sound/picard: Bump to 2.1.3.
authorNick Bowler <nbowler@draconx.ca>
Thu, 16 May 2019 23:20:50 +0000 (19:20 -0400)
committerNick Bowler <nbowler@draconx.ca>
Thu, 16 May 2019 23:20:50 +0000 (19:20 -0400)
media-sound/picard/Manifest
media-sound/picard/picard-2.1.3.ebuild [new file with mode: 0644]

index 732b14b40600c4b4cfa6c29f08ac7a4cd14694b6..dc3ec17677e20f9a2593582c94ca348d053d84ab 100644 (file)
@@ -1,4 +1,6 @@
 DIST picard-2.0.4.tar.gz 2759058 BLAKE2B e8a2a5aed7b8c99e31c1765906481432d310fd41fa01a611c7d82b182468cf4bfeb5a5aaab74c96c0971f21af3ba690537212c29c75433296cab6a1a409edf6d SHA512 cdc5f1ddeb84705fc792fb77a6d0ba06a5baf812799054ac0fd4959dfe788009f25b6f89ad0c28720f1c7c85af61534ca4f1e9e8efd6ec3cc78578d0f0b3ab32
 DIST picard-2.1.2.tar.gz 2988580 BLAKE2B aea7d3627e72c183cdfa70a7cf1f5c35a45418ca475c995c026cd07d404991b64fb114b92cffddeaa35708494ae71c4e8ae40dc53a3336d102d01e79f4acc3de SHA512 54da8a05ab1af91400e4d03719c5de8ae8263885d124c1197ca9e013a46558f8b191e1261f40eb0101ac7de54074b6faeaf4f0a3150b6f78ec98503b2b95ea6b
+DIST picard-2.1.3.tar.gz 2995390 BLAKE2B dcb81cad62aba7915aeff321775452cef70819194a76530eb96a0a7b0009f7185d7652f77d07bb795b24939a3feb56b73a59d7377574b2c8f09f406ca7a88d81 SHA512 f082216a1a669ba689725c93859116e8a56991861219adb0e7c6ed4e5d621055268652820688de762f55b8672f19ff01afe5ac1ab7f79a640ea381272de9516f
 EBUILD picard-2.0.4.ebuild 2098 BLAKE2B 272f8d7e8b2f1c1c6345f32586a3ed130a09fba378b6445788d2e7121db3a7fd6ba03f6f79d6324257ea58765ec5f55b6a8862ef16d6b1e0342a715afdb8459c SHA512 2ffa8b5a5fad7ac65920ef41b5c61e59e9c5da77fc8e3eeced74c01669401a99ad6a5069b0c478d67824b2347b47bb8f3a75232883da16a05d53a1dad03d24bc
 EBUILD picard-2.1.2.ebuild 2100 BLAKE2B a67d0aeec7f317dfe15642971aa85aa35a390e0fc39eda0cfa1ebdd972d63b1b608d4f863d1ee5619708e2e42dfac3e873e6b5d9de2bee0d8204a3b737b11cca SHA512 743956ead6e3b482eb9450f51633c6f6e54e3d474efa4f71aac774cee6d96024481a92eb45004795f3b36c014b62f146a158b2dc147cd6ef003b6d7cb408b9f2
+EBUILD picard-2.1.3.ebuild 2100 BLAKE2B a67d0aeec7f317dfe15642971aa85aa35a390e0fc39eda0cfa1ebdd972d63b1b608d4f863d1ee5619708e2e42dfac3e873e6b5d9de2bee0d8204a3b737b11cca SHA512 743956ead6e3b482eb9450f51633c6f6e54e3d474efa4f71aac774cee6d96024481a92eb45004795f3b36c014b62f146a158b2dc147cd6ef003b6d7cb408b9f2
diff --git a/media-sound/picard/picard-2.1.3.ebuild b/media-sound/picard/picard-2.1.3.ebuild
new file mode 100644 (file)
index 0000000..e12df59
--- /dev/null
@@ -0,0 +1,83 @@
+# Copyright © 2018-2019 Nick Bowler
+# License GPLv2+: GNU General Public License version 2 or later.
+# This is free software: you are free to change and redistribute it.
+# There is NO WARRANTY, to the extent permitted by law.
+#
+# This a modified version of the original ebuild from Gentoo GNU/Linux,
+# covered by the following copyright and permission notice:
+#
+#   Copyright 1999-2018 Gentoo Foundation
+#   Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6} )
+DISTUTILS_SINGLE_IMPL=1
+DISABLE_AUTOFORMATTING=true
+
+inherit distutils-r1 gnome2-utils readme.gentoo-r1 xdg-utils
+
+DESCRIPTION="A cross-platform music tagger"
+HOMEPAGE="https://picard.musicbrainz.org"
+SRC_URI="https://github.com/metabrainz/$PN/archive/release-$PV.tar.gz -> $P.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="nls"
+
+RDEPEND="dev-python/PyQt5[declarative,gui,network,widgets,${PYTHON_USEDEP}]
+       >=media-libs/mutagen-1.38"
+DEPEND="$RDEPEND
+       nls? ( dev-qt/linguist-tools:5 )"
+
+RESTRICT="test" # doesn't work with ebuilds
+
+S=$WORKDIR/$PN-release-$PV
+
+python_compile() {
+       local build_args=(
+               --disable-autoupdate
+       )
+       if ! use nls; then
+               build_args+=( --disable-locales )
+       fi
+       distutils-r1_python_compile ${build_args[@]}
+}
+
+python_install() {
+       local install_args=(
+               --disable-autoupdate
+               --skip-build
+       )
+       if ! use nls; then
+               install_args+=( --disable-locales )
+       fi
+       distutils-r1_python_install ${install_args[@]}
+}
+
+python_install_all() {
+       distutils-r1_python_install_all
+
+       local DOC_CONTENTS="Install optional package media-libs/chromaprint[tools] to enable
+calculation and lookup of AcoustID fingerprints.
+
+Install optional package dev-python/python-discid to enable
+calculation and lookup of compact disc identifiers (disc IDs).
+
+If you are upgrading Picard and it does not start, try removing
+Picard's settings:
+       rm ~/.config/MusicBrainz/Picard.conf"
+       readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+       readme.gentoo_print_elog
+       xdg_desktop_database_update
+       gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+       xdg_desktop_database_update
+       gnome2_icon_cache_update
+}