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 735FB1382C5 for ; Sat, 27 Feb 2021 10:40:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1238E0907; Sat, 27 Feb 2021 10:40:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 A8362E0907 for ; Sat, 27 Feb 2021 10:40:45 +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 5592B34111D for ; Sat, 27 Feb 2021 10:40:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7CC74DC for ; Sat, 27 Feb 2021 10:40:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1614422427.a0b472c4dd1719f9ccebae5e297f40c8394150ad.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgdev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgdev/metadata.xml dev-util/pkgdev/pkgdev-9999.ebuild X-VCS-Directories: dev-util/pkgdev/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a0b472c4dd1719f9ccebae5e297f40c8394150ad X-VCS-Branch: master Date: Sat, 27 Feb 2021 10:40:42 +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: a03cdb2d-d7d8-4779-832c-779a622e108f X-Archives-Hash: a5ada1627aef2414b703dbdb63da6f67 commit: a0b472c4dd1719f9ccebae5e297f40c8394150ad Author: Sam James gentoo org> AuthorDate: Sat Feb 27 10:37:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 27 10:40:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0b472c4 dev-util/pkgdev: new package A first cut. No docs yet. Signed-off-by: Sam James gentoo.org> dev-util/pkgdev/metadata.xml | 11 +++++++++++ dev-util/pkgdev/pkgdev-9999.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/dev-util/pkgdev/metadata.xml b/dev-util/pkgdev/metadata.xml new file mode 100644 index 00000000000..cac3fc36e45 --- /dev/null +++ b/dev-util/pkgdev/metadata.xml @@ -0,0 +1,11 @@ + + + + + sam@gentoo.org + Sam James + + + pkgcore/pkgdev + + diff --git a/dev-util/pkgdev/pkgdev-9999.ebuild b/dev-util/pkgdev/pkgdev-9999.ebuild new file mode 100644 index 00000000000..bc60a9ad96a --- /dev/null +++ b/dev-util/pkgdev/pkgdev-9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..9} ) +DISTUTILS_IN_SOURCE_BUILD=1 +inherit distutils-r1 + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/pkgcore/pkgdev.git" + inherit git-r3 +else + KEYWORDS="~amd64" + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +fi + +DESCRIPTION="pkgcore-based git QA tool" +HOMEPAGE="https://github.com/pkgcore/pkgdev" + +LICENSE="BSD MIT" +SLOT="0" + +if [[ ${PV} == *9999 ]]; then + RDEPEND=" + ~dev-python/snakeoil-9999[${PYTHON_USEDEP}] + ~sys-apps/pkgcore-9999[${PYTHON_USEDEP}]" +fi