public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mutagen/
Date: Sun, 25 Dec 2016 14:42:39 +0000 (UTC)	[thread overview]
Message-ID: <1482676786.948b9f0d6b5a27b9152824e468a6f0874a4cf1e2.polynomial-c@gentoo> (raw)

commit:     948b9f0d6b5a27b9152824e468a6f0874a4cf1e2
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 25 14:39:46 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sun Dec 25 14:39:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=948b9f0d

media-libs/mutagen: Bump to version 1.36

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/mutagen/Manifest            |  1 +
 media-libs/mutagen/mutagen-1.36.ebuild | 46 ++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/media-libs/mutagen/Manifest b/media-libs/mutagen/Manifest
index a0971cb..a0bb068 100644
--- a/media-libs/mutagen/Manifest
+++ b/media-libs/mutagen/Manifest
@@ -3,3 +3,4 @@ DIST mutagen-1.31.tar.gz 897785 SHA256 0aa011707785fe30935d8655380052a20ba8b972a
 DIST mutagen-1.34.1.tar.gz 872058 SHA256 aacd667ef1f4fa7b7c201f36b2a6eda1ead3c92331017601d8082af62a7ee461 SHA512 bd3e49b4b176611f673dfc8288def8f7f268077b231df7a4dab93d1cfb14ae4538f9c02c4157e074f3356d0883758d679893c8e4906a612bfb7c9593416cdb2a WHIRLPOOL 5c0ba1b6b1e26c5ea11f0386b4db981f4b99422ae8373e2a88ff971e706503a1e33b0b595d77e2e993279f19e5fe19813310d89d043e5103d46a4e5f96dbde4b
 DIST mutagen-1.35.1.tar.gz 883772 SHA256 49cda72ee5213e60d5d48a80187b0b17d37a6244f37751f72e480c1b1832934e SHA512 e411b86d50a7689589b7d300317dc2a2c4893efe47b66d07bdf5fe92f1d08fcc00c314e3ae1f97d706fcaae6c83c7569bb22b557af2dfc469b1d3c4f0388a260 WHIRLPOOL 6662ed461122fae69cf8844f6460ae8635cc1b7b3e5faf13f83a51d8f02bac927c8d850f727f602ba83b3be41e3c5c28b4ea2dfa2564710d525f5a699992f0e7
 DIST mutagen-1.35.tar.gz 884988 SHA256 ee106f1544e8caf688102afaca2fe95cab4caf144da06128a265a29c8c7f4619 SHA512 68a3d30300bbfbedad39f76798827b70b9dd6bbb72da3b0f537748f76b395866aeaacbb1ca9d64d11d1c97a09e5767bcac98131d62846f91172a1caf8d434a50 WHIRLPOOL 149d27c832527a2cd8986f56b50c5865320aec69bd1452ce71cb96fc47a8a0227e9b7defe05e94aa64e9d9226dd9faf3cfba6af0788f90d073346c3afd219c1b
+DIST mutagen-1.36.tar.gz 888238 SHA256 d7ee37e33b8c5893c3ebf66edac31241eb9d48e1dc7ec647bbfbc180565a4bcd SHA512 82aabebdd5df5a6e68a6e983073feced972c5cfd74711c52d12559617fd29ed0835a9067ea5b8b7be7fb34dda0b9c46b81dfa0338834eedfe7e482e2cfcc249f WHIRLPOOL 7628247a475f9b56eea972a36e7ed6aca7a9cfeaa80055f472e0b537af55a68a38cf56faabad24040ae0e82fa2d2d028e304a135d33bf274bf14a58d0f91cd27

diff --git a/media-libs/mutagen/mutagen-1.36.ebuild b/media-libs/mutagen/mutagen-1.36.ebuild
new file mode 100644
index 00000000..84e85f0
--- /dev/null
+++ b/media-libs/mutagen/mutagen-1.36.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Audio metadata tag reader and writer implemented in pure Python"
+HOMEPAGE="https://bitbucket.org/lazka/mutagen https://pypi.python.org/pypi/mutagen"
+SRC_URI="https://bitbucket.org/lazka/${PN}/downloads/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+# TODO: Missing support for >=dev-python/eyeD3-0.7 API
+# test? ( >=dev-python/eyeD3-0.7 )
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+python_compile_all() {
+	use doc && emake -C docs
+}
+
+src_test() {
+	# tests/test_flac.py uses temp files with a constant path.
+	# If we had multiple python implementations, we would hit a race.
+	distutils-r1_src_test
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	local DOCS=( NEWS README.rst )
+	use doc && local HTML_DOCS=( docs/_build/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2016-12-25 14:42 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-25 14:42 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-28 11:26 [gentoo-commits] repo/gentoo:master commit in: media-libs/mutagen/ Sam James
2024-06-27 21:28 Petr Vaněk
2023-11-24 17:04 Arthur Zamarin
2023-10-04 18:32 Arthur Zamarin
2023-10-04 10:48 Sam James
2023-10-04  8:21 Sam James
2023-10-04  8:21 Sam James
2023-10-04  8:21 Sam James
2023-09-04  2:48 Michał Górny
2023-06-06 16:12 Michał Górny
2022-11-29  9:07 Miroslav Šulc
2022-11-25 10:49 Arthur Zamarin
2022-11-25  9:44 Arthur Zamarin
2022-11-25  9:26 Sam James
2022-11-25  9:26 Sam James
2022-11-25  9:13 Arthur Zamarin
2022-10-26  3:26 Michał Górny
2022-10-26  3:26 Michał Górny
2022-05-31 10:20 Sam James
2021-11-07  1:37 Sam James
2021-11-07  1:34 Sam James
2021-11-04 17:09 Sam James
2021-08-24 21:02 Marek Szuba
2021-08-19 21:30 Michał Górny
2021-05-25 16:05 Michał Górny
2021-05-25 16:05 Michał Górny
2020-12-22 13:23 Miroslav Šulc
2020-12-22  0:23 Sam James
2020-12-10  2:16 Matt Turner
2020-11-23 16:39 Sergei Trofimovich
2020-11-18 15:07 Agostino Sarubbo
2020-11-17 18:55 Agostino Sarubbo
2020-11-12  0:35 Thomas Deutschmann
2020-11-08 10:29 Sam James
2020-10-09 11:47 Miroslav Šulc
2020-09-24  6:55 Agostino Sarubbo
2020-09-23 10:29 Agostino Sarubbo
2020-09-23 10:24 Agostino Sarubbo
2020-09-20 22:40 Thomas Deutschmann
2020-09-20  9:36 Michał Górny
2020-03-05  1:31 Sebastian Pipping
2020-01-26 13:04 Andreas Sturmlechner
2020-01-17 10:30 Agostino Sarubbo
2020-01-17 10:28 Agostino Sarubbo
2020-01-17  9:31 Agostino Sarubbo
2020-01-17  8:09 Sergei Trofimovich
2020-01-17  8:07 Sergei Trofimovich
2020-01-16 18:14 Sergei Trofimovich
2020-01-14 14:48 Agostino Sarubbo
2019-12-03  5:06 Andreas Sturmlechner
2019-12-03  5:06 Andreas Sturmlechner
2019-12-03  0:14 Aaron Bauman
2019-07-29 19:23 Sergei Trofimovich
2019-05-06 18:04 Tobias Klausmann
2019-04-28 22:06 Thomas Deutschmann
2019-04-07 21:16 Sergei Trofimovich
2019-04-05 19:03 Sergei Trofimovich
2018-12-27  8:57 Tim Harder
2018-12-13  6:48 Tim Harder
2018-11-07 23:28 Sergei Trofimovich
2018-11-07 22:59 Sergei Trofimovich
2018-05-13 23:41 Aaron Bauman
2018-05-13 22:06 Thomas Deutschmann
2018-02-03  9:15 Tim Harder
2017-11-10 13:17 Lars Wendler
2017-11-10 13:17 Lars Wendler
2017-08-18 14:57 Tim Harder
2017-08-18 14:57 Tim Harder
2017-06-04 11:30 Sergei Trofimovich
2017-05-12 14:55 Agostino Sarubbo
2017-04-30 10:38 Jeroen Roovers
2017-03-08 11:05 Lars Wendler
2017-03-08 11:05 Lars Wendler
2017-02-27 15:48 Lars Wendler
2017-02-27 15:48 Lars Wendler
2017-01-30 20:53 Lars Wendler
2017-01-30 20:53 Lars Wendler
2017-01-29 19:15 Fabian Groffen
2017-01-26 23:36 Lars Wendler
2017-01-03 19:29 Tobias Klausmann
2016-12-25 14:42 Lars Wendler
2016-11-17 18:08 Lars Wendler
2016-11-17 18:08 Lars Wendler
2016-11-03  0:24 Tim Harder
2016-08-19 10:17 Lars Wendler
2016-08-19 10:17 Lars Wendler
2016-08-08  4:21 Tim Harder
2016-07-20 12:58 Lars Wendler
2016-05-25 11:54 Tobias Klausmann
2016-05-03 11:00 Lars Wendler
2016-05-03 11:00 Lars Wendler
2015-09-20  9:55 Justin Lecher
2015-08-25  8:10 Justin Lecher

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=1482676786.948b9f0d6b5a27b9152824e468a6f0874a4cf1e2.polynomial-c@gentoo \
    --to=polynomial-c@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