* [gentoo-commits] proj/betagarden:master commit in: app-crypt/onetime/
@ 2011-08-12 13:34 Sebastian Pipping
0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping @ 2011-08-12 13:34 UTC (permalink / raw
To: gentoo-commits
commit: 0ffebb727926d770f822591153951f51178a45a7
Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
AuthorDate: Fri Aug 12 13:21:08 2011 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Aug 12 13:21:08 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=0ffebb72
app-crypt/onetime: 1.111
---
app-crypt/onetime/onetime-1.111.ebuild | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/app-crypt/onetime/onetime-1.111.ebuild b/app-crypt/onetime/onetime-1.111.ebuild
new file mode 100644
index 0000000..a52faad
--- /dev/null
+++ b/app-crypt/onetime/onetime-1.111.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+PYTHON_DEPEND="2"
+
+inherit python
+
+DESCRIPTION="An Encoder/Decoder Using The 'One-Time Pad' Method"
+HOMEPAGE="http://www.red-bean.com/onetime/"
+SRC_URI="http://www.red-bean.com/${PN}/${P}.tar.gz"
+
+LICENSE="CC-PD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+src_compile() {
+ :
+}
+
+src_install() {
+ dobin onetime || die
+ dodoc README || die
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/onetime/
@ 2015-09-22 10:44 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2015-09-22 10:44 UTC (permalink / raw
To: gentoo-commits
commit: 329945a1cf9a7505a8d79d2035b7f35f5d5a983f
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 22 10:17:01 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Sep 22 10:17:01 2015 +0000
URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=329945a1
app-crypt/onetime: Clean old and move to new python eclass
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
app-crypt/onetime/onetime-1.111.ebuild | 29 ----------------------
app-crypt/onetime/onetime-1.115.ebuild | 29 ----------------------
.../{onetime-1.110.ebuild => onetime-1.81.ebuild} | 19 ++++++++------
3 files changed, 11 insertions(+), 66 deletions(-)
diff --git a/app-crypt/onetime/onetime-1.111.ebuild b/app-crypt/onetime/onetime-1.111.ebuild
deleted file mode 100644
index 9f2631f..0000000
--- a/app-crypt/onetime/onetime-1.111.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-PYTHON_DEPEND="2"
-
-inherit python
-
-DESCRIPTION="An Encoder/Decoder Using The 'One-Time Pad' Method"
-HOMEPAGE="http://www.red-bean.com/onetime/"
-SRC_URI="http://www.red-bean.com/${PN}/${P}.tar.gz"
-
-LICENSE="CC-PD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_compile() {
- :
-}
-
-src_install() {
- dobin onetime || die
- dodoc README || die
-}
diff --git a/app-crypt/onetime/onetime-1.115.ebuild b/app-crypt/onetime/onetime-1.115.ebuild
deleted file mode 100644
index 9f2631f..0000000
--- a/app-crypt/onetime/onetime-1.115.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-PYTHON_DEPEND="2"
-
-inherit python
-
-DESCRIPTION="An Encoder/Decoder Using The 'One-Time Pad' Method"
-HOMEPAGE="http://www.red-bean.com/onetime/"
-SRC_URI="http://www.red-bean.com/${PN}/${P}.tar.gz"
-
-LICENSE="CC-PD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_compile() {
- :
-}
-
-src_install() {
- dobin onetime || die
- dodoc README || die
-}
diff --git a/app-crypt/onetime/onetime-1.110.ebuild b/app-crypt/onetime/onetime-1.81.ebuild
similarity index 59%
rename from app-crypt/onetime/onetime-1.110.ebuild
rename to app-crypt/onetime/onetime-1.81.ebuild
index 9f2631f..ce33ba7 100644
--- a/app-crypt/onetime/onetime-1.110.ebuild
+++ b/app-crypt/onetime/onetime-1.81.ebuild
@@ -1,11 +1,12 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI="3"
-PYTHON_DEPEND="2"
+EAPI=5
-inherit python
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-r1
DESCRIPTION="An Encoder/Decoder Using The 'One-Time Pad' Method"
HOMEPAGE="http://www.red-bean.com/onetime/"
@@ -16,14 +17,16 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND=""
-RDEPEND=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}"
+DEPEND="${DEPEND}"
src_compile() {
:
}
src_install() {
- dobin onetime || die
- dodoc README || die
+ python_foreach_impl python_doscript ${PN}
+ dodoc README
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/onetime/
@ 2011-10-27 18:02 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2011-10-27 18:02 UTC (permalink / raw
To: gentoo-commits
commit: a413bfdba7a47b1a81dd11b281ff599fae155a68
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 14:05:49 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 14:05:49 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=a413bfdb
Removed no-herd from herd tag in metadata.xml
(Portage version: 2.2.0_alpha71/git/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 70EB7916)
---
app-crypt/onetime/ChangeLog | 7 +++++++
app-crypt/onetime/metadata.xml | 1 -
2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/app-crypt/onetime/ChangeLog b/app-crypt/onetime/ChangeLog
new file mode 100644
index 0000000..ef7b907
--- /dev/null
+++ b/app-crypt/onetime/ChangeLog
@@ -0,0 +1,7 @@
+# ChangeLog for app-crypt/onetime
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 27 Oct 2011; Justin Lecher <jlec@gentoo.org> metadata.xml:
+ Removed no-herd from herd tag in metadata.xml
+
diff --git a/app-crypt/onetime/metadata.xml b/app-crypt/onetime/metadata.xml
index 328fbd1..16bcc9f 100644
--- a/app-crypt/onetime/metadata.xml
+++ b/app-crypt/onetime/metadata.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>no-herd</herd>
<maintainer>
<email>sping@gentoo.org</email>
<name>Sebastian Pipping</name>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/onetime/
@ 2011-08-30 19:49 Sebastian Pipping
0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping @ 2011-08-30 19:49 UTC (permalink / raw
To: gentoo-commits
commit: 213794e940be13ac8c5554aebd33803cb05e433c
Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
AuthorDate: Tue Aug 30 19:48:37 2011 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 19:49:20 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=213794e9
app-crypt/onetime: 1.115
---
app-crypt/onetime/onetime-1.115.ebuild | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/app-crypt/onetime/onetime-1.115.ebuild b/app-crypt/onetime/onetime-1.115.ebuild
new file mode 100644
index 0000000..a52faad
--- /dev/null
+++ b/app-crypt/onetime/onetime-1.115.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+PYTHON_DEPEND="2"
+
+inherit python
+
+DESCRIPTION="An Encoder/Decoder Using The 'One-Time Pad' Method"
+HOMEPAGE="http://www.red-bean.com/onetime/"
+SRC_URI="http://www.red-bean.com/${PN}/${P}.tar.gz"
+
+LICENSE="CC-PD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+src_compile() {
+ :
+}
+
+src_install() {
+ dobin onetime || die
+ dodoc README || die
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-crypt/onetime/
@ 2011-05-23 0:23 Sebastian Pipping
0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping @ 2011-05-23 0:23 UTC (permalink / raw
To: gentoo-commits
commit: 8bb6123f3e8a937bc1a67c8c955466acb8a477a4
Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
AuthorDate: Mon May 23 00:23:03 2011 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon May 23 00:23:03 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=8bb6123f
app-crypt/onetime: 1.110
---
app-crypt/onetime/metadata.xml | 9 +++++++++
app-crypt/onetime/onetime-1.110.ebuild | 29 +++++++++++++++++++++++++++++
2 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/app-crypt/onetime/metadata.xml b/app-crypt/onetime/metadata.xml
new file mode 100644
index 0000000..328fbd1
--- /dev/null
+++ b/app-crypt/onetime/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>sping@gentoo.org</email>
+ <name>Sebastian Pipping</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-crypt/onetime/onetime-1.110.ebuild b/app-crypt/onetime/onetime-1.110.ebuild
new file mode 100644
index 0000000..a52faad
--- /dev/null
+++ b/app-crypt/onetime/onetime-1.110.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+PYTHON_DEPEND="2"
+
+inherit python
+
+DESCRIPTION="An Encoder/Decoder Using The 'One-Time Pad' Method"
+HOMEPAGE="http://www.red-bean.com/onetime/"
+SRC_URI="http://www.red-bean.com/${PN}/${P}.tar.gz"
+
+LICENSE="CC-PD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+src_compile() {
+ :
+}
+
+src_install() {
+ dobin onetime || die
+ dodoc README || die
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-09-22 10:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-12 13:34 [gentoo-commits] proj/betagarden:master commit in: app-crypt/onetime/ Sebastian Pipping
-- strict thread matches above, loose matches on Subject: below --
2015-09-22 10:44 Justin Lecher
2011-10-27 18:02 Justin Lecher
2011-08-30 19:49 Sebastian Pipping
2011-05-23 0:23 Sebastian Pipping
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox