From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 63459158086 for ; Sat, 9 Oct 2021 06:44:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26570E088B; Sat, 9 Oct 2021 06:44:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 04FF5E088C for ; Sat, 9 Oct 2021 06:44:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E125D343078 for ; Sat, 9 Oct 2021 06:44:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C76BB145 for ; Sat, 9 Oct 2021 06:44:04 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1633739549.c715442646adfc62835694354960fa9358b210e9.arthurzam@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pymp4/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pymp4/Manifest dev-python/pymp4/metadata.xml dev-python/pymp4/pymp4-1.2.0.ebuild X-VCS-Directories: dev-python/pymp4/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: c715442646adfc62835694354960fa9358b210e9 X-VCS-Branch: master Date: Sat, 9 Oct 2021 06:44:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 43206686-353d-4ddc-8966-82918d568b10 X-Archives-Hash: 62cff36cb9a0363f26d0f6cf13bbd2cc commit: c715442646adfc62835694354960fa9358b210e9 Author: Alessandro Barbieri gmail com> AuthorDate: Sat Oct 9 00:23:32 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Oct 9 00:32:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7154426 dev-python/pymp4: initial import Signed-off-by: Alessandro Barbieri gmail.com> dev-python/pymp4/Manifest | 1 + dev-python/pymp4/metadata.xml | 13 +++++++++++++ dev-python/pymp4/pymp4-1.2.0.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/pymp4/Manifest b/dev-python/pymp4/Manifest new file mode 100644 index 000000000..883fdc25e --- /dev/null +++ b/dev-python/pymp4/Manifest @@ -0,0 +1 @@ +DIST pymp4-1.2.0.tar.gz 13969 BLAKE2B ccbf3664a410162662117307add90bc7c8ab060e633c8acf0cf96607d0ad193618af28eba48a467f380af1e39a4ce3596f0da2a341c94e764c8ef9582dd47cb6 SHA512 307b0d454f56eb185abea1213640e888880c505388e3869cc92be462b2d37dd9244e4b23984c535f84791ed067873e1454e7d89b8109763d44b6d3188658aff4 diff --git a/dev-python/pymp4/metadata.xml b/dev-python/pymp4/metadata.xml new file mode 100644 index 000000000..590cf7c71 --- /dev/null +++ b/dev-python/pymp4/metadata.xml @@ -0,0 +1,13 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + https://github.com/beardypig/pymp4/issues + beardypig/pymp4 + pymp4 + + diff --git a/dev-python/pymp4/pymp4-1.2.0.ebuild b/dev-python/pymp4/pymp4-1.2.0.ebuild new file mode 100644 index 000000000..808858d00 --- /dev/null +++ b/dev-python/pymp4/pymp4-1.2.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A Python MP4 Parser and toolkit" +HOMEPAGE=" + https://github.com/beardypig/pymp4 + https://pypi.org/project/pymp4 +" +SRC_URI="https://github.com/beardypig/pymp4/archive/${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64" +LICENSE="Apache-2.0" +SLOT="0" + +RDEPEND="dev-python/construct[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest