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 CBB171382C5 for ; Thu, 20 May 2021 13:37:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A22DE089A; Thu, 20 May 2021 13:37:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D846E088A for ; Thu, 20 May 2021 13:37:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 15551335D30 for ; Thu, 20 May 2021 13:37:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF539787 for ; Thu, 20 May 2021 13:37:14 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1621517831.b8395a3a43a63205a4ed228ab064c079f2d88c4f.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-vlc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-vlc/Manifest dev-python/python-vlc/metadata.xml dev-python/python-vlc/python-vlc-3.0.12118.ebuild X-VCS-Directories: dev-python/python-vlc/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: b8395a3a43a63205a4ed228ab064c079f2d88c4f X-VCS-Branch: master Date: Thu, 20 May 2021 13:37:14 +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: 77888f07-6339-4f43-b89a-803b6deca434 X-Archives-Hash: b44c473c0e0cd7dcee1905d00070ae3d commit: b8395a3a43a63205a4ed228ab064c079f2d88c4f Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu May 20 13:06:44 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu May 20 13:37:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8395a3a dev-python/python-vlc: import from ::guru basic runtime testing confirms this works with py3.10 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/python-vlc/Manifest | 1 + dev-python/python-vlc/metadata.xml | 9 +++++++++ dev-python/python-vlc/python-vlc-3.0.12118.ebuild | 21 +++++++++++++++++++++ 3 files changed, 31 insertions(+) diff --git a/dev-python/python-vlc/Manifest b/dev-python/python-vlc/Manifest new file mode 100644 index 00000000000..539fd9789f5 --- /dev/null +++ b/dev-python/python-vlc/Manifest @@ -0,0 +1 @@ +DIST python-vlc-3.0.12118.tar.gz 148685 BLAKE2B 356963caea1a14fdc9d5ba814fc442fd8d93fe327ebea7fd51ede52d29aaf7b72af3e9d6de9a7e1372515694738fbeda49c698793fecd80a47ab5f51b01f3d08 SHA512 d84e373b77b763c169fa4c2ffcdec979fca44cc40e873865b6a55d79481f2b01711fee48f8ab7ca2506ed73a72b970b6fd410f121c24120640ddc0ef5efbd05b diff --git a/dev-python/python-vlc/metadata.xml b/dev-python/python-vlc/metadata.xml new file mode 100644 index 00000000000..651e2156c25 --- /dev/null +++ b/dev-python/python-vlc/metadata.xml @@ -0,0 +1,9 @@ + + + + + + andrewammerlaan@gentoo.org + Andrew Ammerlaan + + diff --git a/dev-python/python-vlc/python-vlc-3.0.12118.ebuild b/dev-python/python-vlc/python-vlc-3.0.12118.ebuild new file mode 100644 index 00000000000..154fb58abe2 --- /dev/null +++ b/dev-python/python-vlc/python-vlc-3.0.12118.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python ctypes-based bindings for libvlc" +HOMEPAGE="https://github.com/oaubert/python-vlc + https://wiki.videolan.org/Python_bindings/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + media-video/vlc +"