* [gentoo-commits] repo/gentoo:master commit in: app-backup/cachedir/
@ 2017-12-10 18:13 Justin Lecher
0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher @ 2017-12-10 18:13 UTC (permalink / raw
To: gentoo-commits
commit: 8392a9c9466f32ec5fbf9f8742a16589817a894e
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 10 16:34:51 2017 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Dec 10 18:11:30 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8392a9c9
app-backup/cachedir: New Package
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
Package-Manager: Portage-2.3.17, Repoman-2.3.6
app-backup/cachedir/Manifest | 1 +
app-backup/cachedir/cachedir-1.4.ebuild | 47 +++++++++++++++++++++++++++++++++
app-backup/cachedir/metadata.xml | 8 ++++++
3 files changed, 56 insertions(+)
diff --git a/app-backup/cachedir/Manifest b/app-backup/cachedir/Manifest
new file mode 100644
index 00000000000..3129cb786fb
--- /dev/null
+++ b/app-backup/cachedir/Manifest
@@ -0,0 +1 @@
+DIST cachedir-1.4.tar.gz 16254 BLAKE2B f70fe693d614ab90c4b235c2979e9323eb41976ea8a97c4d3107af26f411553a86e0409b354483a6e3c9af956597c9a4114dc28829cc2ed55abe7c7dd3bb8a99 SHA512 dabeb36a4b99febafbfcc3bff4de625491eee6649cac6c03ef782415cfdd519d36911bed8ae6e7bb94b0afe6279b17fd99fcb87f0c2d2e37032a76fa516dd6c7
diff --git a/app-backup/cachedir/cachedir-1.4.ebuild b/app-backup/cachedir/cachedir-1.4.ebuild
new file mode 100644
index 00000000000..ca9b3bf689b
--- /dev/null
+++ b/app-backup/cachedir/cachedir-1.4.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Tag/untag cache directories"
+HOMEPAGE="http://liw.fi/cachedir/"
+SRC_URI="http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cachedir/snapshot/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+# test deps not supporting python 3
+RESTRICT="test"
+
+RDEPEND="dev-python/cliapp[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]"
+# test? (
+# dev-util/cmdtest[${PYTHON_USEDEP}]
+# )
+# "
+
+python_prepare_all() {
+ 2to3 -w setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+src_compile() {
+ addwrite /proc/self/comm
+ distutils-r1_src_compile
+}
+
+src_test() {
+ addwrite /proc/self/comm
+ distutils-r1_src_test
+}
+
+python_test() {
+ esetup.py check
+}
diff --git a/app-backup/cachedir/metadata.xml b/app-backup/cachedir/metadata.xml
new file mode 100644
index 00000000000..b7595a302f2
--- /dev/null
+++ b/app-backup/cachedir/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>jlec@gentoo.org</email>
+ <name>Justin Lecher</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-backup/cachedir/
@ 2019-07-12 5:47 Matt Turner
0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner @ 2019-07-12 5:47 UTC (permalink / raw
To: gentoo-commits
commit: 5ff2893a6eafcc9f089216d80bf8578015f58c1b
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 05:07:09 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 05:40:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ff2893a
app-backup/cachedir: Fix license and use HTTPS
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
app-backup/cachedir/cachedir-1.4.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-backup/cachedir/cachedir-1.4.ebuild b/app-backup/cachedir/cachedir-1.4.ebuild
index fb3b02c8706..f3366e1302a 100644
--- a/app-backup/cachedir/cachedir-1.4.ebuild
+++ b/app-backup/cachedir/cachedir-1.4.ebuild
@@ -8,10 +8,10 @@ PYTHON_COMPAT=( python{2_7,3_{5,6}} )
inherit distutils-r1
DESCRIPTION="Tag/untag cache directories"
-HOMEPAGE="http://liw.fi/cachedir/"
-SRC_URI="http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cachedir/snapshot/${P}.tar.gz"
+HOMEPAGE="https://liw.fi/cachedir/"
+SRC_URI="http://git.liw.fi/${PN}/snapshot/${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-07-12 5:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-10 18:13 [gentoo-commits] repo/gentoo:master commit in: app-backup/cachedir/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2019-07-12 5:47 Matt Turner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox