diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-01-22 18:28:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-01-22 18:28:23 +0000 |
commit | dd9b5c096e4407851b5c2075d70cbc3ac4b9277d (patch) | |
tree | be6fee616480275787b818d2141973e5d30fc01d /app-crypt/sgeps | |
parent | Drop unneded arm patch (diff) | |
download | gentoo-2-dd9b5c096e4407851b5c2075d70cbc3ac4b9277d.tar.gz gentoo-2-dd9b5c096e4407851b5c2075d70cbc3ac4b9277d.tar.bz2 gentoo-2-dd9b5c096e4407851b5c2075d70cbc3ac4b9277d.zip |
Initial import of the sgeps script, thanks to Enrico Tagliavini for writing the ebuild.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/sgeps')
-rw-r--r-- | app-crypt/sgeps/ChangeLog | 11 | ||||
-rw-r--r-- | app-crypt/sgeps/metadata.xml | 13 | ||||
-rw-r--r-- | app-crypt/sgeps/sgeps-0_pre10.ebuild | 35 |
3 files changed, 59 insertions, 0 deletions
diff --git a/app-crypt/sgeps/ChangeLog b/app-crypt/sgeps/ChangeLog new file mode 100644 index 000000000000..a2751111aabc --- /dev/null +++ b/app-crypt/sgeps/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-crypt/sgeps +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/sgeps/ChangeLog,v 1.1 2010/01/22 18:28:23 flameeyes Exp $ + +*sgeps-0_pre10 (22 Jan 2010) + + 22 Jan 2010; Diego E. Pettenò <flameeyes@gentoo.org> + +sgeps-0_pre10.ebuild, +metadata.xml: + Initial import of the sgeps script, thanks to Enrico Tagliavini for + writing the ebuild. + diff --git a/app-crypt/sgeps/metadata.xml b/app-crypt/sgeps/metadata.xml new file mode 100644 index 000000000000..ea6f2d3662c5 --- /dev/null +++ b/app-crypt/sgeps/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>flameeyes@gentoo.org</email> + </maintainer> + <maintainer> + <email>enrico.tagliavini@gmail.com</email> + <name>Enrico Tagliavini</name> + <description>Proxied co-maintainer</description> + </maintainer> +</pkgmetadata> diff --git a/app-crypt/sgeps/sgeps-0_pre10.ebuild b/app-crypt/sgeps/sgeps-0_pre10.ebuild new file mode 100644 index 000000000000..753418259ab0 --- /dev/null +++ b/app-crypt/sgeps/sgeps-0_pre10.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/sgeps/sgeps-0_pre10.ebuild,v 1.1 2010/01/22 18:28:23 flameeyes Exp $ + +EAPI=2 + +DESCRIPTION="simple GnuPG-encrypted password store written in perl" +HOMEPAGE="http://roland.entierement.nu/blog/2010/01/22/simple-gnupg-encrypted-password-store.html" +SRC_URI="mirror://gentoo/${P}.pl.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="app-crypt/gnupg + dev-lang/perl + virtual/perl-Storable + virtual/perl-File-Temp + virtual/perl-Getopt-Long + dev-perl/Config-Simple" +DEPEND="" + +src_install() { + newbin "${WORKDIR}/${P}.pl" "${PN}" || die "newbin failed" +} + +pkg_postinst() { + elog "To make use of sgeps, remember to create a configuration file as" + elog " ~/.config/sgeps.conf with these values:" + elog "" + elog "store = ~/somewhere/safe" + elog "keyid = 012345678" + elog "" +} |