diff options
author | Hans Fernhout <hfern@fernhout.info> | 2020-05-25 15:32:21 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-06-16 09:02:50 +0300 |
commit | 511d8d12300c84523b2808113fda4e6a66e50237 (patch) | |
tree | 28574b937fa8ef85178310ba69408585d29373b8 /app-crypt/envchain | |
parent | dev-python/qscintilla-python: add 2.11.5 (diff) | |
download | gentoo-511d8d12300c84523b2808113fda4e6a66e50237.tar.gz gentoo-511d8d12300c84523b2808113fda4e6a66e50237.tar.bz2 gentoo-511d8d12300c84523b2808113fda4e6a66e50237.zip |
app-crypt/envchain: version bump to 1.0.1
Closes: https://bugs.gentoo.org/696414
Changes are:
- v1.0.1: this release has some bugfixes
- keyword ~x86 added: tested and works fine
- EAPI 7: which required no other changes
- packages was up for grabs: added myself as proxy maintainer
Signed-off-by: Jahannes Willem Fernhout <hfern@fernhout.info>
Closes: https://github.com/gentoo/gentoo/pull/15961
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-crypt/envchain')
-rw-r--r-- | app-crypt/envchain/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/envchain/envchain-1.0.1.ebuild | 23 | ||||
-rw-r--r-- | app-crypt/envchain/metadata.xml | 27 |
3 files changed, 41 insertions, 10 deletions
diff --git a/app-crypt/envchain/Manifest b/app-crypt/envchain/Manifest index 1d8fb6571275..28f23dc492ce 100644 --- a/app-crypt/envchain/Manifest +++ b/app-crypt/envchain/Manifest @@ -1 +1,2 @@ DIST envchain-1.0.0.tar.gz 8252 BLAKE2B 5b4e07421d47eede180ddbd1968090050ec4b25e887d235f2714604ed0d4439f1a36b72f0d277c53e3b9f010ee9c6bb61f598daec330641384c21b00802feadd SHA512 0c7e129509fa60adbbedd995c30a11e981171b85dfce60385a0fd4a3d8264f1a2d65300f882e45075556490dfff0255eb6a6688066455809653b81e83d29c514 +DIST envchain-1.0.1.tar.gz 8604 BLAKE2B 6273eac40cf2a9eaf0704ee81d23b6e72cd296232f378bf5e5b15cdfb29a91bd394201724491e3a7104017b2416084d16e07b3634e5abe382e05eec52e388410 SHA512 ac2bca6e53f46c10978d55b2924595988ed6d76a9969691f01c1a57d17e5e8e2abd21653cba996aad31408bb029e8ba00818100c60f5b089b84c70eaf20a2c75 diff --git a/app-crypt/envchain/envchain-1.0.1.ebuild b/app-crypt/envchain/envchain-1.0.1.ebuild new file mode 100644 index 000000000000..2fbc68f9cb3b --- /dev/null +++ b/app-crypt/envchain/envchain-1.0.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Save environment variables in a secret vault" +HOMEPAGE="https://github.com/sorah/envchain" +SRC_URI="https://github.com/sorah/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + sys-libs/readline:0= + app-crypt/libsecret" + +RDEPEND="${DEPEND}" + +src_install() { + emake DESTDIR="${D}/usr" install +} diff --git a/app-crypt/envchain/metadata.xml b/app-crypt/envchain/metadata.xml index 103ed877db34..da51982cb6e3 100644 --- a/app-crypt/envchain/metadata.xml +++ b/app-crypt/envchain/metadata.xml @@ -1,14 +1,21 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - Set environment variables with OS X keychain or D-Bus secret service. - Envchain allows you to save credentials in a secure vault to use as - environment variables only when you need them. - </longdescription> - <upstream> - <remote-id type="github">sorah/envchain</remote-id> - <bugs-to>https://github.com/sorah/envchain/issues</bugs-to> - </upstream> + <maintainer type="person"> + <email>hfern@fernhout.info</email> + <name>Hans Fernhout</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <longdescription lang="en"> + Set environment variables with OS X keychain or D-Bus secret service. + Envchain allows you to save credentials in a secure vault to use as + environment variables only when you need them. + </longdescription> + <upstream> + <remote-id type="github">sorah/envchain</remote-id> + <bugs-to>https://github.com/sorah/envchain/issues</bugs-to> + </upstream> </pkgmetadata> |