public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Louis Sautier" <sbraz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymediainfo/
Date: Thu,  4 Apr 2019 15:55:27 +0000 (UTC)	[thread overview]
Message-ID: <1554393318.c84e8439be0e1e4bd6a46b13966185791c8e44b9.sbraz@gentoo> (raw)

commit:     c84e8439be0e1e4bd6a46b13966185791c8e44b9
Author:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  4 15:53:06 2019 +0000
Commit:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Thu Apr  4 15:55:18 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84e8439

dev-python/pymediainfo: bump to 4.0

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>

 dev-python/pymediainfo/Manifest               |  1 +
 dev-python/pymediainfo/pymediainfo-4.0.ebuild | 48 +++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/dev-python/pymediainfo/Manifest b/dev-python/pymediainfo/Manifest
index e3caf135c29..12e0f47c733 100644
--- a/dev-python/pymediainfo/Manifest
+++ b/dev-python/pymediainfo/Manifest
@@ -1,3 +1,4 @@
 DIST pymediainfo-2.3.0.tar.gz 423912 BLAKE2B 2108627d7eb661a4329b46abdf6821c7f9af6d3817455edf884d3d96af534424ae434e28c061deca699e967913c40b609f72ffe38316811d4c7b09008de0bde2 SHA512 6ca616ac92f4e8ab71d8edcdd1208dc3dcf9a13f7c3dd2d401a4997c95222b4e559786678826f75b631c4c46913c9cb390126a5468714a7c417638d3a4468d32
 DIST pymediainfo-3.0.tar.gz 425428 BLAKE2B b56fa94f41096aff143d57c8f4175ce251d270e1d94f8464800eea2c4a5a952a466b962c646b0449d81ce2dd394c7bab1293eb358a33742631e51aead49e893b SHA512 b6828065f8d4907e94a299e4b3d550b1aad6dfa335b5eaae73e51a9b9052a8c494960b95473b49c10bb4407d3f48db07c2457b2937464317d64997c380571bcd
 DIST pymediainfo-3.1.tar.gz 430689 BLAKE2B 2abb8197ab8890617cb0cebf15001fefc5837c886c110f66852be56db6a2df851ec13b7dc76db40723cc920bf44ca87286446f451dc5c51b8998ee332a23cad8 SHA512 a2fd04977236190c18e62da9ec0110d9de9f31acaae448b40ce56f66d925d9e0e0d2015f7824d359ebbd8ec749c0ff812ee4ef776333319827759c4c4fe708ab
+DIST pymediainfo-4.0.tar.gz 432284 BLAKE2B 1159f48f28f0a3473327830e56a27fcd14dc9d9dceeac6f90d52a048229d87e97d3b88ef865eefe454c8cebf55148981b2e88127e863682e00992d56c2906048 SHA512 988f0d8a212bc5893925bd96a5b41a1a2c8e9508c747e7aa1106f3a065ad5707a7ed9de71264d74ba6637a2b8efbdeeed3677d779167bb90f643d40f81c5a74e

diff --git a/dev-python/pymediainfo/pymediainfo-4.0.ebuild b/dev-python/pymediainfo/pymediainfo-4.0.ebuild
new file mode 100644
index 00000000000..6ea54279636
--- /dev/null
+++ b/dev-python/pymediainfo/pymediainfo-4.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="A wrapper around the mediainfo library"
+HOMEPAGE="https://github.com/sbraz/pymediainfo"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	media-libs/libmediainfo
+"
+BDEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	doc? (
+		dev-python/alabaster[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+	)
+	test? (
+		${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+python_compile_all() {
+	if use doc; then
+		sphinx-build docs docs/_build/html || die
+		HTML_DOCS=( docs/_build/html/. )
+	fi
+}
+
+python_test() {
+	# Skip a test which requires network access
+	pytest -vv tests/test_pymediainfo.py -k "not MediaInfoURLTest" \
+		|| die "tests failed with ${EPYTHON}"
+}


             reply	other threads:[~2019-04-04 15:55 UTC|newest]

Thread overview: 61+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-04 15:55 Louis Sautier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-09 13:19 [gentoo-commits] repo/gentoo:master commit in: dev-python/pymediainfo/ Louis Sautier
2023-11-29 11:38 Michał Górny
2023-11-29 11:32 Michał Górny
2023-11-29 11:15 Michał Górny
2023-10-29 16:31 Louis Sautier
2023-06-03 17:45 Michał Górny
2023-02-26 20:14 Louis Sautier
2022-12-31 12:37 Michał Górny
2022-12-31 12:11 Sam James
2022-12-31 10:51 Arthur Zamarin
2022-11-26  0:32 Louis Sautier
2021-11-09 10:38 Michał Górny
2021-06-15  8:33 Michał Górny
2021-06-15  7:07 Agostino Sarubbo
2021-06-15  5:25 Sam James
2021-05-09 14:13 Louis Sautier
2021-05-03 16:53 Sam James
2021-05-03 16:51 Sam James
2021-05-01 22:18 Louis Sautier
2021-05-01 22:18 Louis Sautier
2021-04-11 13:20 Louis Sautier
2021-04-11 13:20 Louis Sautier
2020-11-23 23:28 Louis Sautier
2020-11-23 23:28 Louis Sautier
2020-11-20  0:25 Louis Sautier
2020-11-20  0:25 Louis Sautier
2020-11-07 18:14 Louis Sautier
2020-09-21 17:48 Michał Górny
2020-09-12  1:42 Louis Sautier
2020-09-04 23:38 Louis Sautier
2020-04-29 22:35 Louis Sautier
2020-03-28 18:03 Michał Górny
2019-09-18 13:45 Louis Sautier
2019-09-18 13:45 Louis Sautier
2019-04-04 15:55 Louis Sautier
2019-03-05 13:06 Louis Sautier
2018-11-08 11:05 Louis Sautier
2018-11-08 11:05 Louis Sautier
2018-07-17 19:21 Louis Sautier
2018-06-20 20:32 Louis Sautier
2018-06-18 10:34 Louis Sautier
2018-06-07  7:33 Michał Górny
2018-05-15 19:20 Michał Górny
2018-05-15 19:20 Michał Górny
2017-11-08 22:48 Patrice Clement
2017-11-08 22:48 Patrice Clement
2017-03-21 23:11 Patrice Clement
2017-03-21 23:11 Patrice Clement
2016-07-21 15:57 Patrice Clement
2016-07-21 15:57 Patrice Clement
2016-05-05 22:08 Patrice Clement
2016-05-05 22:08 Patrice Clement
2016-05-05  8:06 Ian Delaney
2016-05-05  8:06 Ian Delaney
2016-05-01 13:02 Ian Delaney
2016-05-01 13:02 Ian Delaney
2016-04-17 11:10 Patrice Clement
2016-04-17 11:10 Patrice Clement
2016-02-06 12:38 Ian Delaney
2015-12-21 23:43 Patrice Clement

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=1554393318.c84e8439be0e1e4bd6a46b13966185791c8e44b9.sbraz@gentoo \
    --to=sbraz@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