public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/picard/
Date: Wed, 12 Jan 2022 09:43:40 +0000 (UTC)	[thread overview]
Message-ID: <1641980619.de53ccb58e5a65a6a31aa869e96a88cc15625c8b.fordfrog@gentoo> (raw)

commit:     de53ccb58e5a65a6a31aa869e96a88cc15625c8b
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 12 09:43:31 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 09:43:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de53ccb5

media-sound/picard: bump to 2.7.2

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-sound/picard/Manifest            |  1 +
 media-sound/picard/picard-2.7.2.ebuild | 63 ++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/media-sound/picard/Manifest b/media-sound/picard/Manifest
index fdd701f6ba36..ede2f360c809 100644
--- a/media-sound/picard/Manifest
+++ b/media-sound/picard/Manifest
@@ -1,3 +1,4 @@
 DIST picard-2.6.4.tar.gz 4319362 BLAKE2B 78768b4a8a22c51c118ba03a9e97ba6c4bec9180e5739867b5756170083930a942a0a1ceaeb74bbe724af3ca392b92139cbc4acdde9556e9031be16a968a0240 SHA512 5f44f91f9f44cb17ecd27e204b75c83b776a2c55e2a6e42f96018c83f4073d92f028ef74006d6acbe42b1ed374543a65e177f34c561bfdf13ded1085515bf353
 DIST picard-2.7.1.tar.gz 4884448 BLAKE2B b9f5ac2b6205aadbb707dcaee2dc6c89c333568d8fc6ca85da3fe8f9d308d0a54076d17b3f14be52e0154767c4f24ee2fd89d9df909ce1c74b9fc57c970ff0b1 SHA512 e3cffc538bdb7bf851e378b5ce7d4155fd6a2c13e77c42eb4c10a6cd129d45bb0c52d295bc209694fd89eadd60b0f04eb2d7c9eedbcec0a03ab00b7ee1f4e0be
+DIST picard-2.7.2.tar.gz 4887243 BLAKE2B 5e2e42c5b46249e85abd8bfb33b6cf69d75e15335b3abc14e08249bc6ffc122aa776f5e053e169f31c2f9596b52a525e9aacdc7bd09363179ef318162590d95e SHA512 0840f2560bb8624598bf9493736a14bb9f43ec5150640ecd7a992ea74d9336c75166f3aa3ab1c901731aeb12dfd9288d37def872417b055429c46830970f05eb
 DIST picard-2.7.tar.gz 4868049 BLAKE2B 87f04056843623f81165bdae181699125d5aa8e41e5da47d645026bb1b3ee4a70edeeef0399f3230584026caf8f014cfe27b5d9f3f2e6b71a8e2de48a832655a SHA512 b88d2cc24a9b6a01e6bb1a54f93bb8ec62c901fe9ff352641ea402b5e091d71241665b067fd12bbf77cf219b951db9a570400adda82fa9da9406f9cfa6aee4e5

diff --git a/media-sound/picard/picard-2.7.2.ebuild b/media-sound/picard/picard-2.7.2.ebuild
new file mode 100644
index 000000000000..accbc2910dfb
--- /dev/null
+++ b/media-sound/picard/picard-2.7.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_SINGLE_IMPL=1
+
+inherit distutils-r1 xdg
+
+if [[ ${PV} = *9999* ]]; then
+	EGIT_REPO_URI="https://github.com/metabrainz/picard"
+	inherit git-r3
+else
+	SRC_URI="https://musicbrainz.osuosl.org/pub/musicbrainz/${PN}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-release-${PV}"
+fi
+
+DESCRIPTION="Cross-platform music tagger"
+HOMEPAGE="https://picard.musicbrainz.org"
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="discid fingerprints nls"
+
+BDEPEND="
+	nls? ( dev-qt/linguist-tools:5 )
+"
+RDEPEND="
+	$(python_gen_cond_dep '
+		dev-python/fasteners[${PYTHON_USEDEP}]
+		dev-python/PyQt5[declarative,gui,network,widgets,${PYTHON_USEDEP}]
+		dev-python/python-dateutil[${PYTHON_USEDEP}]
+		dev-python/pyyaml[${PYTHON_USEDEP}]
+		media-libs/mutagen[${PYTHON_USEDEP}]
+		discid? ( dev-python/python-discid[${PYTHON_USEDEP}] )
+	')
+	fingerprints? ( media-libs/chromaprint[tools] )
+"
+
+distutils_enable_tests pytest
+
+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[@]}
+}


             reply	other threads:[~2022-01-12  9:43 UTC|newest]

Thread overview: 120+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-12  9:43 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-17  9:39 [gentoo-commits] repo/gentoo:master commit in: media-sound/picard/ Miroslav Šulc
2024-09-04  9:52 Miroslav Šulc
2024-08-28  8:33 Miroslav Šulc
2024-08-14 10:03 Miroslav Šulc
2024-07-30  9:48 Miroslav Šulc
2024-07-29 13:27 Arthur Zamarin
2024-07-29 10:38 Sam James
2024-06-27  9:29 Miroslav Šulc
2024-02-27 10:44 Miroslav Šulc
2024-02-26 18:29 Jakov Smolić
2024-02-26 18:29 Jakov Smolić
2024-01-26  8:16 Miroslav Šulc
2023-12-28  9:39 Miroslav Šulc
2023-12-28  9:35 Miroslav Šulc
2023-12-28  9:31 Miroslav Šulc
2023-12-06 15:30 Arthur Zamarin
2023-12-06 12:39 Miroslav Šulc
2023-12-06 12:37 Miroslav Šulc
2023-10-14  8:45 Sam James
2023-10-12  8:12 Miroslav Šulc
2023-09-16 12:36 Miroslav Šulc
2023-09-16 12:25 Sam James
2023-09-16 12:25 Sam James
2023-09-13  7:57 Miroslav Šulc
2023-08-27  6:38 Miroslav Šulc
2023-08-26 13:47 Arthur Zamarin
2023-08-26 13:45 Sam James
2023-08-17  5:16 Miroslav Šulc
2023-07-27  6:32 Miroslav Šulc
2023-07-27  6:32 Miroslav Šulc
2023-06-03  3:23 Sam James
2023-01-09  7:16 Miroslav Šulc
2023-01-08 17:00 Arthur Zamarin
2023-01-08 17:00 Arthur Zamarin
2022-12-26  7:57 Miroslav Šulc
2022-12-24 10:25 Sam James
2022-12-24 10:12 Arthur Zamarin
2022-12-07  8:07 Miroslav Šulc
2022-11-24  7:28 Miroslav Šulc
2022-09-24  5:06 Miroslav Šulc
2022-09-23  7:04 Agostino Sarubbo
2022-09-22  8:05 Jakov Smolić
2022-08-22  2:53 Miroslav Šulc
2022-08-13  4:05 Miroslav Šulc
2022-08-12 11:55 Agostino Sarubbo
2022-08-09  7:43 Agostino Sarubbo
2022-07-08 11:09 Miroslav Šulc
2022-07-08  8:55 Miroslav Šulc
2022-07-08  6:45 Agostino Sarubbo
2022-07-08  6:43 Agostino Sarubbo
2022-07-08  4:03 Miroslav Šulc
2022-06-27  3:36 Miroslav Šulc
2022-06-26  8:47 Agostino Sarubbo
2022-06-26  8:46 Agostino Sarubbo
2022-06-08  7:15 Miroslav Šulc
2022-05-26  4:57 Miroslav Šulc
2022-02-14 18:17 Miroslav Šulc
2022-02-14 11:42 Jakov Smolić
2022-02-14 11:04 Jakov Smolić
2022-01-23 10:07 Miroslav Šulc
2022-01-22 18:59 Sam James
2022-01-22 10:03 Jakov Smolić
2022-01-14  9:01 Miroslav Šulc
2021-12-22 23:05 Sam James
2021-12-22  9:17 Miroslav Šulc
2021-12-17  6:37 Miroslav Šulc
2021-11-09  8:00 Miroslav Šulc
2021-11-09  5:34 Sam James
2021-11-08 19:32 Sam James
2021-10-08  8:01 Miroslav Šulc
2021-09-28 21:24 Miroslav Šulc
2021-09-28 21:16 Sam James
2021-09-28 21:16 Sam James
2021-08-28 17:49 Louis Sautier
2021-06-12  9:48 Miroslav Šulc
2021-06-12  1:18 Sam James
2021-06-12  1:18 Sam James
2021-05-12  6:33 Miroslav Šulc
2021-04-30 14:05 Miroslav Šulc
2020-10-09 12:00 Miroslav Šulc
2020-09-24  6:59 Agostino Sarubbo
2020-09-05  6:56 Miroslav Šulc
2020-08-30  8:05 Miroslav Šulc
2020-08-26 14:23 Miroslav Šulc
2020-08-23 16:19 Miroslav Šulc
2020-08-23 16:05 Miroslav Šulc
2020-08-23 15:50 Miroslav Šulc
2020-08-23 15:50 Miroslav Šulc
2020-07-24 11:54 Sam James
2020-03-12 15:36 Sebastian Pipping
2019-12-05  7:54 Pacho Ramos
2019-11-20 13:23 Agostino Sarubbo
2019-11-20 11:16 Agostino Sarubbo
2019-08-06 14:05 Pacho Ramos
2019-02-14 18:37 Andreas Sturmlechner
2019-01-17 21:23 Mikle Kolyada
2019-01-09  1:36 Thomas Deutschmann
2018-12-13 10:19 Andreas Sturmlechner
2018-10-01 18:13 Andreas Sturmlechner
2018-09-28 11:45 Mikle Kolyada
2018-05-14  1:36 Andreas Sturmlechner
2018-05-13 23:41 Aaron Bauman
2018-05-13 22:06 Thomas Deutschmann
2018-04-03 21:44 Andreas Sturmlechner
2018-04-03 21:44 Andreas Sturmlechner
2018-03-30 19:09 Andreas Sturmlechner
2018-03-22 13:14 Andreas Sturmlechner
2018-03-22 12:46 Andreas Sturmlechner
2018-03-17  7:01 Matt Turner
2018-03-07  0:58 Andreas Sturmlechner
2018-02-27 21:42 Andreas Sturmlechner
2017-11-24  0:55 Andreas Sturmlechner
2017-10-30  1:11 Manuel Rüger
2017-10-23 19:51 Thomas Deutschmann
2017-06-03 21:11 David Seifert
2017-05-25 16:50 Alexis Ballier
2017-04-17  7:26 Andreas Sturmlechner
2017-01-04 15:29 Agostino Sarubbo
2016-12-20 14:04 Tobias Klausmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1641980619.de53ccb58e5a65a6a31aa869e96a88cc15625c8b.fordfrog@gentoo \
    --to=fordfrog@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox