* [gentoo-commits] repo/gentoo:master commit in: media-gfx/netpaint/
@ 2020-06-25 6:17 Patrice Clement
0 siblings, 0 replies; 2+ messages in thread
From: Patrice Clement @ 2020-06-25 6:17 UTC (permalink / raw
To: gentoo-commits
commit: 9ec66d490fdb2b0e87b8adb985b61e014cb2232f
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 25 06:17:21 2020 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Jun 25 06:17:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec66d49
media-gfx/netpaint: new ebuild.
NetPaint is a cursed-based drawing tool, akin to the good old Paint on
Windows or GIMP on Linux. Very fun to play with!
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
media-gfx/netpaint/Manifest | 1 +
media-gfx/netpaint/metadata.xml | 12 +++++++++++
media-gfx/netpaint/netpaint-1.1.2.ebuild | 36 ++++++++++++++++++++++++++++++++
3 files changed, 49 insertions(+)
diff --git a/media-gfx/netpaint/Manifest b/media-gfx/netpaint/Manifest
new file mode 100644
index 00000000000..d0d25bc2d29
--- /dev/null
+++ b/media-gfx/netpaint/Manifest
@@ -0,0 +1 @@
+DIST netpaint-1.1.2.tar.gz 427241 BLAKE2B 7884dadf63849bf45caf84bc009da818bdf3277660411c486b32333bf0caf9e0e03ab6f56f77add68456896e4d16520b803c51e19c4dc6b01ef1227f0bd90a28 SHA512 f998714fe176c84074aaa710e2950c83d5c3ac0819e69c6bbbd93e19f6415a66f8ef21e0799d3112a7c468c1a99383a878ac1837157b079089aaf072c664ee53
diff --git a/media-gfx/netpaint/metadata.xml b/media-gfx/netpaint/metadata.xml
new file mode 100644
index 00000000000..b09023bbc39
--- /dev/null
+++ b/media-gfx/netpaint/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>monsieurp@gentoo.org</email>
+ <name>Patrice Clement</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>shell-tools@gentoo.org</email>
+ <name>Gentoo Shell Tools Project</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/media-gfx/netpaint/netpaint-1.1.2.ebuild b/media-gfx/netpaint/netpaint-1.1.2.ebuild
new file mode 100644
index 00000000000..36c3bcd4fe2
--- /dev/null
+++ b/media-gfx/netpaint/netpaint-1.1.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="curses-based drawing tool"
+HOMEPAGE="https://github.com/SyntheticDreams/NetPaint"
+SRC_URI="https://github.com/SyntheticDreams/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+MY_PN="NetPaint"
+MY_P="${MY_PN}-${PV}"
+
+RDEPEND="
+ dev-python/urwid[${PYTHON_USEDEP}]
+ dev-python/pillow[${PYTHON_USEDEP}]"
+
+DEPEND="
+ ${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ default
+ mv netpaint.py netpaint || die
+ sed -e 's#netpaint\.py#netpaint#g;' \
+ -i setup.py || die "can't patch setup.py"
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/netpaint/
@ 2021-06-01 13:14 Sam James
0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2021-06-01 13:14 UTC (permalink / raw
To: gentoo-commits
commit: d70f744013ced961b7e1aaa8ac6ae7b67ebb4dc4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 1 13:14:05 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 13:14:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d70f7440
media-gfx/netpaint: add Python 3.9
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-gfx/netpaint/netpaint-1.1.2.ebuild | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/media-gfx/netpaint/netpaint-1.1.2.ebuild b/media-gfx/netpaint/netpaint-1.1.2.ebuild
index 46c0f02e9d4..e44b6241f74 100644
--- a/media-gfx/netpaint/netpaint-1.1.2.ebuild
+++ b/media-gfx/netpaint/netpaint-1.1.2.ebuild
@@ -1,32 +1,28 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
inherit distutils-r1
+MY_PN="NetPaint"
+MY_P="${MY_PN}-${PV}"
+
DESCRIPTION="curses-based drawing tool"
HOMEPAGE="https://github.com/SyntheticDreams/NetPaint"
SRC_URI="https://github.com/SyntheticDreams/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-MY_PN="NetPaint"
-MY_P="${MY_PN}-${PV}"
-
RDEPEND="
dev-python/urwid[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]"
-
-DEPEND="
- ${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-S="${WORKDIR}/${MY_P}"
+DEPEND="${RDEPEND}"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-06-01 13:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-01 13:14 [gentoo-commits] repo/gentoo:master commit in: media-gfx/netpaint/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2020-06-25 6:17 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox