* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2023-02-10 20:59 Maciej Barć
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Barć @ 2023-02-10 20:59 UTC (permalink / raw
To: gentoo-commits
commit: 978fa6173198a24ca5d3fd6a5f4d1e02a643d51a
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 10 20:35:32 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> 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ć <xgqt <AT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+ <maintainer type="project">
+ <email>xgqt@gentoo.org</email>
+ <name>Maciej Barć</name>
+ </maintainer>
+ <upstream>
+ <maintainer status="active">
+ <email>xgqt@riseup.net</email>
+ <name>Maciej Barć</name>
+ </maintainer>
+ <bugs-to>https://gitlab.com/xgqt/python-elsw/-/issues/</bugs-to>
+ <remote-id type="gitlab">xgqt/python-elsw</remote-id>
+ <remote-id type="pypi">elsw</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2023-02-10 21:07 Maciej Barć
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Barć @ 2023-02-10 21:07 UTC (permalink / raw
To: gentoo-commits
commit: 95e4b956a9b7884d7751abf5e32b4a30331f35d7
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 10 21:06:41 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Feb 10 21:06:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95e4b956
app-portage/elsw: fix metadata - project -> person
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-portage/elsw/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-portage/elsw/metadata.xml b/app-portage/elsw/metadata.xml
index f00e22ceac50..a434c9d8d886 100644
--- a/app-portage/elsw/metadata.xml
+++ b/app-portage/elsw/metadata.xml
@@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="project">
+ <maintainer type="person">
<email>xgqt@gentoo.org</email>
<name>Maciej Barć</name>
</maintainer>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2023-02-12 21:17 Maciej Barć
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Barć @ 2023-02-12 21:17 UTC (permalink / raw
To: gentoo-commits
commit: fa48df41e498acd9229d013dc0bb6f542a7619d2
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 12 20:35:26 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 21:16:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa48df41
app-portage/elsw: add missing dependencies
Closes: https://bugs.gentoo.org/894072
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-portage/elsw/{elsw-0.0.0.ebuild => elsw-0.0.0-r1.ebuild} | 5 +++++
app-portage/elsw/elsw-9999.ebuild | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/app-portage/elsw/elsw-0.0.0.ebuild b/app-portage/elsw/elsw-0.0.0-r1.ebuild
similarity index 86%
rename from app-portage/elsw/elsw-0.0.0.ebuild
rename to app-portage/elsw/elsw-0.0.0-r1.ebuild
index 521be8e3f793..1ef0d754ee2d 100644
--- a/app-portage/elsw/elsw-0.0.0.ebuild
+++ b/app-portage/elsw/elsw-0.0.0-r1.ebuild
@@ -22,4 +22,9 @@ fi
LICENSE="GPL-2+"
SLOT="0"
+RDEPEND="
+ dev-python/colorama[${PYTHON_USEDEP}]
+ sys-apps/portage[${PYTHON_USEDEP}]
+"
+
DOCS=( README.md )
diff --git a/app-portage/elsw/elsw-9999.ebuild b/app-portage/elsw/elsw-9999.ebuild
index 521be8e3f793..1ef0d754ee2d 100644
--- a/app-portage/elsw/elsw-9999.ebuild
+++ b/app-portage/elsw/elsw-9999.ebuild
@@ -22,4 +22,9 @@ fi
LICENSE="GPL-2+"
SLOT="0"
+RDEPEND="
+ dev-python/colorama[${PYTHON_USEDEP}]
+ sys-apps/portage[${PYTHON_USEDEP}]
+"
+
DOCS=( README.md )
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2023-03-16 18:52 Michał Górny
0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2023-03-16 18:52 UTC (permalink / raw
To: gentoo-commits
commit: e668b009ae3b38a32f708600758473805b58fd33
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 16:16:20 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 18:50:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e668b009
app-portage/elsw: Sync the live ebuild
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-portage/elsw/elsw-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-portage/elsw/elsw-9999.ebuild b/app-portage/elsw/elsw-9999.ebuild
index 1ef0d754ee2d..bf24610ad3e1 100644
--- a/app-portage/elsw/elsw-9999.ebuild
+++ b/app-portage/elsw/elsw-9999.ebuild
@@ -15,7 +15,7 @@ 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"
+ inherit pypi
KEYWORDS="~amd64 ~x86"
fi
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2023-04-03 19:12 Arthur Zamarin
0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2023-04-03 19:12 UTC (permalink / raw
To: gentoo-commits
commit: 732f9175649ff0f48ca5658b6b2610512b2c2084
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 3 19:12:38 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 3 19:12:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732f9175
app-portage/elsw: Keyword 0.0.0-r1 arm, #903741
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-portage/elsw/elsw-0.0.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-portage/elsw/elsw-0.0.0-r1.ebuild b/app-portage/elsw/elsw-0.0.0-r1.ebuild
index 6c1e1bf0d3a6..0510c6a791a6 100644
--- a/app-portage/elsw/elsw-0.0.0-r1.ebuild
+++ b/app-portage/elsw/elsw-0.0.0-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999* ]] ; then
EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git"
else
inherit pypi
- KEYWORDS="amd64 ~x86"
+ KEYWORDS="amd64 ~arm ~x86"
fi
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2023-04-03 19:16 Arthur Zamarin
0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2023-04-03 19:16 UTC (permalink / raw
To: gentoo-commits
commit: 75326ad6f9e3a1e5622a3579ac7076587bd7035b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 3 19:16:23 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 3 19:16:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75326ad6
app-portage/elsw: Keyword 0.0.0-r1 arm64, #903741
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-portage/elsw/elsw-0.0.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-portage/elsw/elsw-0.0.0-r1.ebuild b/app-portage/elsw/elsw-0.0.0-r1.ebuild
index 0510c6a791a6..1e0d5bf49807 100644
--- a/app-portage/elsw/elsw-0.0.0-r1.ebuild
+++ b/app-portage/elsw/elsw-0.0.0-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999* ]] ; then
EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git"
else
inherit pypi
- KEYWORDS="amd64 ~arm ~x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~x86"
fi
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2023-04-04 7:49 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2023-04-04 7:49 UTC (permalink / raw
To: gentoo-commits
commit: 946a17e1c119af8893639800989c8f7361209f34
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 4 07:49:35 2023 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Apr 4 07:49:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946a17e1
app-portage/elsw: Keyword 0.0.0-r1 riscv, #903741
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-portage/elsw/elsw-0.0.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-portage/elsw/elsw-0.0.0-r1.ebuild b/app-portage/elsw/elsw-0.0.0-r1.ebuild
index 1e0d5bf49807..1091938d70d0 100644
--- a/app-portage/elsw/elsw-0.0.0-r1.ebuild
+++ b/app-portage/elsw/elsw-0.0.0-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999* ]] ; then
EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git"
else
inherit pypi
- KEYWORDS="amd64 ~arm ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
fi
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2024-01-20 20:45 Maciej Barć
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Barć @ 2024-01-20 20:45 UTC (permalink / raw
To: gentoo-commits
commit: a5d0528c073bcf7c9668da7a1320f02fbdf3ca22
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 20 18:55:50 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 20:45:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5d0528c
app-portage/elsw: bump to 1.0.0
Bug: https://bugs.gentoo.org/894072
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-portage/elsw/Manifest | 1 +
app-portage/elsw/elsw-1.0.0.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/app-portage/elsw/Manifest b/app-portage/elsw/Manifest
index aabbe62737bd..b924bb9e7892 100644
--- a/app-portage/elsw/Manifest
+++ b/app-portage/elsw/Manifest
@@ -1 +1,2 @@
DIST elsw-0.0.0.tar.gz 9857 BLAKE2B 8948b41bd163c393c735f08e94440905cca93078d8eefbb7b7136542a54a3139baaa4b40725667239fd249d9f569ececaf13631162502e3f58e5b288fdf1ae4f SHA512 9e0323ebdc01e6e2af2e021f2bfae2f977567697600167860de7a95d8c80e3119214524a6514114747bdebd269bf68d14f2e0369765d7fea62ae0adaf060e94c
+DIST elsw-1.0.0.tar.gz 9793 BLAKE2B 63e61eebda9fde9d6f1eeabca917038308fc4c91464424cca167ce37c3c4beb6c2eb2f61673ddc1519acf38820ec4ad44b31d3246727a4d039b958e5d04222ee SHA512 a85a0b76b74335f2107e78a9e70f8f07a8af3543a021f3b1b9c63e64f7884888b43dbe387f6be12ee15dfa58a25102d1c3c63945d5cace3cdc8a7c612b65fc60
diff --git a/app-portage/elsw/elsw-1.0.0.ebuild b/app-portage/elsw/elsw-1.0.0.ebuild
new file mode 100644
index 000000000000..f476f0d0e3b2
--- /dev/null
+++ b/app-portage/elsw/elsw-1.0.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} )
+
+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
+ inherit pypi
+
+ KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+RDEPEND="
+ dev-python/colorama[${PYTHON_USEDEP}]
+ sys-apps/portage[${PYTHON_USEDEP}]
+"
+
+DOCS=( README.md )
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2024-01-20 20:45 Maciej Barć
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Barć @ 2024-01-20 20:45 UTC (permalink / raw
To: gentoo-commits
commit: b9c15a1d7aee31a4a16980b65d9949db6940a1a1
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 20 18:25:04 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 20:45:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9c15a1d
app-portage/elsw: tweaks; py 3.12;
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-portage/elsw/elsw-9999.ebuild | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/app-portage/elsw/elsw-9999.ebuild b/app-portage/elsw/elsw-9999.ebuild
index bf24610ad3e1..f476f0d0e3b2 100644
--- a/app-portage/elsw/elsw-9999.ebuild
+++ b/app-portage/elsw/elsw-9999.ebuild
@@ -1,22 +1,24 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
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
+if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
+
EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git"
else
inherit pypi
- KEYWORDS="~amd64 ~x86"
+
+ KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
fi
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2024-02-27 23:57 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-02-27 23:57 UTC (permalink / raw
To: gentoo-commits
commit: ba81b58f6f3ec1f0f2f2ce57d84601c4e5490351
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 27 23:57:28 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 27 23:57:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba81b58f
app-portage/elsw: Stabilize 1.0.0 amd64, #925652
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-portage/elsw/elsw-1.0.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-portage/elsw/elsw-1.0.0.ebuild b/app-portage/elsw/elsw-1.0.0.ebuild
index f476f0d0e3b2..52a97ab63bb9 100644
--- a/app-portage/elsw/elsw-1.0.0.ebuild
+++ b/app-portage/elsw/elsw-1.0.0.ebuild
@@ -18,7 +18,7 @@ if [[ "${PV}" == *9999* ]] ; then
else
inherit pypi
- KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
fi
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/
@ 2024-03-10 0:29 Maciej Barć
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Barć @ 2024-03-10 0:29 UTC (permalink / raw
To: gentoo-commits
commit: b1e2cff7a466990e14162dcf4a48d82901ecdc1f
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 9 20:40:05 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Mar 10 00:29:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e2cff7
app-portage/elsw: drop old 0.0.0-r1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-portage/elsw/Manifest | 1 -
app-portage/elsw/elsw-0.0.0-r1.ebuild | 30 ------------------------------
2 files changed, 31 deletions(-)
diff --git a/app-portage/elsw/Manifest b/app-portage/elsw/Manifest
index b924bb9e7892..ac9e40b9cad3 100644
--- a/app-portage/elsw/Manifest
+++ b/app-portage/elsw/Manifest
@@ -1,2 +1 @@
-DIST elsw-0.0.0.tar.gz 9857 BLAKE2B 8948b41bd163c393c735f08e94440905cca93078d8eefbb7b7136542a54a3139baaa4b40725667239fd249d9f569ececaf13631162502e3f58e5b288fdf1ae4f SHA512 9e0323ebdc01e6e2af2e021f2bfae2f977567697600167860de7a95d8c80e3119214524a6514114747bdebd269bf68d14f2e0369765d7fea62ae0adaf060e94c
DIST elsw-1.0.0.tar.gz 9793 BLAKE2B 63e61eebda9fde9d6f1eeabca917038308fc4c91464424cca167ce37c3c4beb6c2eb2f61673ddc1519acf38820ec4ad44b31d3246727a4d039b958e5d04222ee SHA512 a85a0b76b74335f2107e78a9e70f8f07a8af3543a021f3b1b9c63e64f7884888b43dbe387f6be12ee15dfa58a25102d1c3c63945d5cace3cdc8a7c612b65fc60
diff --git a/app-portage/elsw/elsw-0.0.0-r1.ebuild b/app-portage/elsw/elsw-0.0.0-r1.ebuild
deleted file mode 100644
index 1091938d70d0..000000000000
--- a/app-portage/elsw/elsw-0.0.0-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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
- inherit pypi
- KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
-fi
-
-LICENSE="GPL-2+"
-SLOT="0"
-
-RDEPEND="
- dev-python/colorama[${PYTHON_USEDEP}]
- sys-apps/portage[${PYTHON_USEDEP}]
-"
-
-DOCS=( README.md )
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-03-10 0:29 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-10 0:29 [gentoo-commits] repo/gentoo:master commit in: app-portage/elsw/ Maciej Barć
-- strict thread matches above, loose matches on Subject: below --
2024-02-27 23:57 Sam James
2024-01-20 20:45 Maciej Barć
2024-01-20 20:45 Maciej Barć
2023-04-04 7:49 Jakov Smolić
2023-04-03 19:16 Arthur Zamarin
2023-04-03 19:12 Arthur Zamarin
2023-03-16 18:52 Michał Górny
2023-02-12 21:17 Maciej Barć
2023-02-10 21:07 Maciej Barć
2023-02-10 20:59 Maciej Barć
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox