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 C5C721382C5 for ; Wed, 31 Jan 2018 01:37:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C73CAE0C79; Wed, 31 Jan 2018 01:37:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 82F20E0C79 for ; Wed, 31 Jan 2018 01:37:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A8F5D335C59 for ; Wed, 31 Jan 2018 01:37:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C75941C3 for ; Wed, 31 Jan 2018 01:37:39 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1517362570.b41e788f4fa2604d27d84f5e66d99d203edff76d.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyqt-distutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyqt-distutils/Manifest dev-python/pyqt-distutils/metadata.xml dev-python/pyqt-distutils/pyqt-distutils-0.3.0.ebuild X-VCS-Directories: dev-python/pyqt-distutils/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: b41e788f4fa2604d27d84f5e66d99d203edff76d X-VCS-Branch: master Date: Wed, 31 Jan 2018 01:37:39 +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-Archives-Salt: 9b60a3ed-79bc-4b2f-ab4b-f65b97b9e3a6 X-Archives-Hash: 1435e4594b5cea75d4eccd1deaf541f1 commit: b41e788f4fa2604d27d84f5e66d99d203edff76d Author: Anthony G. Basile gentoo org> AuthorDate: Wed Jan 31 01:35:44 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Jan 31 01:36:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b41e788f dev-python/pyqt-distutils: initial commit Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/pyqt-distutils/Manifest | 1 + dev-python/pyqt-distutils/metadata.xml | 12 +++++++++++ .../pyqt-distutils/pyqt-distutils-0.3.0.ebuild | 25 ++++++++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/pyqt-distutils/Manifest b/dev-python/pyqt-distutils/Manifest new file mode 100644 index 00000000000..6c49ef63612 --- /dev/null +++ b/dev-python/pyqt-distutils/Manifest @@ -0,0 +1 @@ +DIST pyqt-distutils-0.3.0.tar.gz 4659 BLAKE2B 2897696881c6ee18558eb24a923b6675588bd38456fc4e9aff6b1780e7c2c31576c4a7427104c0b15238bed1ad52e2f13ab316441adb06fc0ffd9cbe5052ef30 SHA512 052a1fa0e687ac9aba5fc9623c72f8fff9a25f6d19083668e900ad1ff98bdd99c66c0ac45ba5f5f0c09b76a97370ebf4a4fef9fbd266bc0312bb05567c4ae577 diff --git a/dev-python/pyqt-distutils/metadata.xml b/dev-python/pyqt-distutils/metadata.xml new file mode 100644 index 00000000000..29ad84596c7 --- /dev/null +++ b/dev-python/pyqt-distutils/metadata.xml @@ -0,0 +1,12 @@ + + + + + blueness@gentoo.org + Anthony G. Basile + + + pyqt-distutils + ColinDuquesnoy/pyqt_distutils + + diff --git a/dev-python/pyqt-distutils/pyqt-distutils-0.3.0.ebuild b/dev-python/pyqt-distutils/pyqt-distutils-0.3.0.ebuild new file mode 100644 index 00000000000..64d95f96b72 --- /dev/null +++ b/dev-python/pyqt-distutils/pyqt-distutils-0.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_5 python3_6 ) +inherit distutils-r1 + +DESCRIPTION="distutils extension to work with PyQt applications and UI files" +HOMEPAGE="https://github.com/ColinDuquesnoy/pyqt_distutils" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] +" + +RDEPEND=" + ${DEPEND} + dev-python/docopt[${PYTHON_USEDEP}] +"