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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7FA9A158003 for ; Fri, 10 Feb 2023 20:59:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C54F1E0729; Fri, 10 Feb 2023 20:59:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AE682E0729 for ; Fri, 10 Feb 2023 20:59:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED04E340DB1 for ; Fri, 10 Feb 2023 20:59:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CBAA21 for ; Fri, 10 Feb 2023 20:59:45 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1676062783.978fa6173198a24ca5d3fd6a5f4d1e02a643d51a.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/elsw/Manifest app-portage/elsw/elsw-0.0.0.ebuild app-portage/elsw/elsw-9999.ebuild app-portage/elsw/metadata.xml X-VCS-Directories: app-portage/elsw/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 978fa6173198a24ca5d3fd6a5f4d1e02a643d51a X-VCS-Branch: master Date: Fri, 10 Feb 2023 20:59:45 +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: f818d38f-afc6-41a2-a3d8-117f41bd36e4 X-Archives-Hash: 923f1d69556412e40613ab0cb285aed5 commit: 978fa6173198a24ca5d3fd6a5f4d1e02a643d51a Author: Maciej Barć gentoo org> AuthorDate: Fri Feb 10 20:35:32 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Feb 10 20:59:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978fa617 app-portage/elsw: new package; add 0.0.0 and live Signed-off-by: Maciej Barć gentoo.org> app-portage/elsw/Manifest | 1 + app-portage/elsw/elsw-0.0.0.ebuild | 25 +++++++++++++++++++++++++ app-portage/elsw/elsw-9999.ebuild | 25 +++++++++++++++++++++++++ app-portage/elsw/metadata.xml | 18 ++++++++++++++++++ 4 files changed, 69 insertions(+) diff --git a/app-portage/elsw/Manifest b/app-portage/elsw/Manifest new file mode 100644 index 000000000000..aabbe62737bd --- /dev/null +++ b/app-portage/elsw/Manifest @@ -0,0 +1 @@ +DIST elsw-0.0.0.tar.gz 9857 BLAKE2B 8948b41bd163c393c735f08e94440905cca93078d8eefbb7b7136542a54a3139baaa4b40725667239fd249d9f569ececaf13631162502e3f58e5b288fdf1ae4f SHA512 9e0323ebdc01e6e2af2e021f2bfae2f977567697600167860de7a95d8c80e3119214524a6514114747bdebd269bf68d14f2e0369765d7fea62ae0adaf060e94c diff --git a/app-portage/elsw/elsw-0.0.0.ebuild b/app-portage/elsw/elsw-0.0.0.ebuild new file mode 100644 index 000000000000..521be8e3f793 --- /dev/null +++ b/app-portage/elsw/elsw-0.0.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 + +DESCRIPTION="Tool providing a nice way to view the Portage world file" +HOMEPAGE="https://gitlab.com/xgqt/python-elsw/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git" +else + SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2+" +SLOT="0" + +DOCS=( README.md ) diff --git a/app-portage/elsw/elsw-9999.ebuild b/app-portage/elsw/elsw-9999.ebuild new file mode 100644 index 000000000000..521be8e3f793 --- /dev/null +++ b/app-portage/elsw/elsw-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 + +DESCRIPTION="Tool providing a nice way to view the Portage world file" +HOMEPAGE="https://gitlab.com/xgqt/python-elsw/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git" +else + SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2+" +SLOT="0" + +DOCS=( README.md ) diff --git a/app-portage/elsw/metadata.xml b/app-portage/elsw/metadata.xml new file mode 100644 index 000000000000..f00e22ceac50 --- /dev/null +++ b/app-portage/elsw/metadata.xml @@ -0,0 +1,18 @@ + + + + + + xgqt@gentoo.org + Maciej Barć + + + + xgqt@riseup.net + Maciej Barć + + https://gitlab.com/xgqt/python-elsw/-/issues/ + xgqt/python-elsw + elsw + +