public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/pokemon-colorscripts/
@ 2022-11-05 17:08 Patrick Taylor
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Taylor @ 2022-11-05 17:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f231d14f851d5f674793f94d2f9ad918f2b1416d
Author:     Patrick J Taylor <patrick.joseph.taylor <AT> gmail <DOT> com>
AuthorDate: Sat Nov  5 17:03:14 2022 +0000
Commit:     Patrick Taylor <patrick.joseph.taylor <AT> gmail <DOT> com>
CommitDate: Sat Nov  5 17:03:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f231d14f

app-shells/pokemon-colorscripts: unkeyword 9999 for ~amd64

Additionally, allow CPython 3.11 and set REQUIRED_USE/RDEPEND.

Signed-off-by: Patrick J Taylor <patrick.joseph.taylor <AT> gmail.com>

 app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
index 7fd4da23d..55e2ba3fe 100644
--- a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
+++ b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=(python3_{8,9,10})
+PYTHON_COMPAT=(python3_{8,9,10,11})
 
 inherit git-r3 python-single-r1
 
@@ -17,9 +17,9 @@ LICENSE="MIT"
 
 SLOT="0"
 
-KEYWORDS="~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-RDEPEND=">=dev-lang/python-3.10.8_p1"
+RDEPEND="${PYTHON_DEPS}"
 
 src_prepare() {
 	default


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/pokemon-colorscripts/
@ 2022-11-05 17:08 Patrick Taylor
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Taylor @ 2022-11-05 17:08 UTC (permalink / raw
  To: gentoo-commits

commit:     e874bf810b294fe37936329e7610d0db8c84f55c
Author:     Patrick J Taylor <patrick.joseph.taylor <AT> gmail <DOT> com>
AuthorDate: Sat Nov  5 15:52:41 2022 +0000
Commit:     Patrick Taylor <patrick.joseph.taylor <AT> gmail <DOT> com>
CommitDate: Sat Nov  5 15:53:08 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e874bf81

app-shells/pokemon-colorscripts: new package, add 9999

Signed-off-by: Patrick J Taylor <patrick.joseph.taylor <AT> gmail.com>

 app-shells/pokemon-colorscripts/metadata.xml       |  8 +++++
 .../pokemon-colorscripts-9999.ebuild               | 40 ++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/app-shells/pokemon-colorscripts/metadata.xml b/app-shells/pokemon-colorscripts/metadata.xml
new file mode 100644
index 000000000..50dcf2837
--- /dev/null
+++ b/app-shells/pokemon-colorscripts/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person">
+		<email>patrick.joseph.taylor@gmail.com</email>
+		<name>Patrick J Taylor</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
new file mode 100644
index 000000000..7fd4da23d
--- /dev/null
+++ b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=(python3_{8,9,10})
+
+inherit git-r3 python-single-r1
+
+DESCRIPTION="Pokemon unicode sprites for your terminal!"
+
+HOMEPAGE="https://gitlab.com/phoneybadger/pokemon-colorscripts"
+
+EGIT_REPO_URI="https://gitlab.com/phoneybadger/pokemon-colorscripts.git"
+
+LICENSE="MIT"
+
+SLOT="0"
+
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-lang/python-3.10.8_p1"
+
+src_prepare() {
+	default
+	sed -i \
+	's#PROGRAM_DIR = os.path.dirname(PROGRAM)#PROGRAM_DIR = "/opt/pokemon-colorscripts/"#g' \
+	pokemon-colorscripts.py || die "sed failed."
+}
+
+src_install() {
+	insinto /opt/pokemon-colorscripts
+	doins -r "${S}/colorscripts"
+	doins "${S}/pokemon.json"
+
+	python_scriptinto /opt/pokemon-colorscripts
+	python_doscript "${S}/pokemon-colorscripts.py"
+
+	dosym -r /opt/pokemon-colorscripts/pokemon-colorscripts.py /usr/bin/pokemon-colorscripts
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: app-shells/pokemon-colorscripts/
  2024-05-15  1:03 [gentoo-commits] repo/proj/guru:master commit in: app-shells/pokemon-colorscripts/ Julien Roy
@ 2024-05-15  0:45 ` Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-05-15  0:45 UTC (permalink / raw
  To: gentoo-commits

commit:     68901dcc635d1c14498482588c8daaa31da40121
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed May 15 00:04:56 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 00:44:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68901dcc

app-shells/pokemon-colorscripts: enable py3.12, py3.13

Closes: https://bugs.gentoo.org/931356
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
index 4fa9fb5430..11e8ea6942 100644
--- a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
+++ b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
@@ -1,20 +1,17 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=(python3_{10,11})
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit git-r3 python-single-r1
 
 DESCRIPTION="Pokemon unicode sprites for your terminal!"
-
 HOMEPAGE="https://gitlab.com/phoneybadger/pokemon-colorscripts"
-
 EGIT_REPO_URI="https://gitlab.com/phoneybadger/pokemon-colorscripts.git"
 
 LICENSE="MIT"
-
 SLOT="0"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/pokemon-colorscripts/
@ 2024-05-15  1:03 Julien Roy
  2024-05-15  0:45 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
  0 siblings, 1 reply; 4+ messages in thread
From: Julien Roy @ 2024-05-15  1:03 UTC (permalink / raw
  To: gentoo-commits

commit:     68901dcc635d1c14498482588c8daaa31da40121
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed May 15 00:04:56 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 00:44:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68901dcc

app-shells/pokemon-colorscripts: enable py3.12, py3.13

Closes: https://bugs.gentoo.org/931356
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
index 4fa9fb5430..11e8ea6942 100644
--- a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
+++ b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild
@@ -1,20 +1,17 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=(python3_{10,11})
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit git-r3 python-single-r1
 
 DESCRIPTION="Pokemon unicode sprites for your terminal!"
-
 HOMEPAGE="https://gitlab.com/phoneybadger/pokemon-colorscripts"
-
 EGIT_REPO_URI="https://gitlab.com/phoneybadger/pokemon-colorscripts.git"
 
 LICENSE="MIT"
-
 SLOT="0"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-05-15  1:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-15  1:03 [gentoo-commits] repo/proj/guru:master commit in: app-shells/pokemon-colorscripts/ Julien Roy
2024-05-15  0:45 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
  -- strict thread matches above, loose matches on Subject: below --
2022-11-05 17:08 Patrick Taylor
2022-11-05 17:08 Patrick Taylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox