diff options
author | Jonas Stein <jstein@gentoo.org> | 2020-06-17 01:34:00 +0200 |
---|---|---|
committer | Jonas Stein <jstein@gentoo.org> | 2020-06-17 01:34:28 +0200 |
commit | 068d2ca35598ae6cc0f4eaafb3fbe83726e361ac (patch) | |
tree | b12f01a0ba5b193a96c2e981c667be814e2e51c2 /app-arch | |
parent | dev-python/pylint-2.5.3: Version bump (diff) | |
download | gentoo-068d2ca35598ae6cc0f4eaafb3fbe83726e361ac.tar.gz gentoo-068d2ca35598ae6cc0f4eaafb3fbe83726e361ac.tar.bz2 gentoo-068d2ca35598ae6cc0f4eaafb3fbe83726e361ac.zip |
app-arch/stenc: Version bump to 1.0.8
Bump the version, update SRC_URI and prepare the ebuild for a live
ebuild.
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Jonas Stein <jstein@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/stenc/Manifest | 1 | ||||
-rw-r--r-- | app-arch/stenc/metadata.xml | 4 | ||||
-rw-r--r-- | app-arch/stenc/stenc-1.0.8.ebuild | 31 |
3 files changed, 34 insertions, 2 deletions
diff --git a/app-arch/stenc/Manifest b/app-arch/stenc/Manifest index d86dd1de357a..8c8f20c3fed1 100644 --- a/app-arch/stenc/Manifest +++ b/app-arch/stenc/Manifest @@ -1 +1,2 @@ DIST stenc-1.0.7.tar.gz 107096 BLAKE2B 678be2fea4eb3db5cf84a70243fd61dcb574627bacb59b2f9af682e2e0851d41187565b4706313c98bb5b297f865b1424bc47c52f15efa2a2e8b2c7413b09009 SHA512 84cb0114c969e1a5122a8621d2c136663ee2a2d9aae1d455631c1d4555e947f4841004b74a1f63b800be713cfae637c19ea34adf40f0bc81f1c56a555a27ba31 +DIST stenc-1.0.8.tar.gz 29297 BLAKE2B 269310fb7a9063eb3b367dfec534096201003e6178a31aeb73aa7a73ed0473d4a606634ac9cf7377d17240dee074345efa49fc907d9487f573a75ec44c3454f6 SHA512 4fd882861d248cf59cde1782833bd3e4f7e01e8b6c00424c55f26454a620510b22de0d42f2d7f6c4e67c2b277776a174fe687756a75f410026fda55554f9dc87 diff --git a/app-arch/stenc/metadata.xml b/app-arch/stenc/metadata.xml index 8dabb18f4782..a07372b0e98c 100644 --- a/app-arch/stenc/metadata.xml +++ b/app-arch/stenc/metadata.xml @@ -6,8 +6,8 @@ <name>Jonas Stein</name> </maintainer> <upstream> - <bugs-to>mailto:jcoleman1981@live.com</bugs-to> - <remote-id type="sourceforge">stenc</remote-id> + <bugs-to>https://github.com/scsitape/stenc/issues</bugs-to> + <remote-id type="github">scsitape/stenc</remote-id> </upstream> <longdescription>SCSI Tape Encryption Manager - Manages encryption on LTO tape drives with hardware-based encryption (LTO-4 and later). diff --git a/app-arch/stenc/stenc-1.0.8.ebuild b/app-arch/stenc/stenc-1.0.8.ebuild new file mode 100644 index 000000000000..1f9c5860f701 --- /dev/null +++ b/app-arch/stenc/stenc-1.0.8.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/scsitape/stenc.git" + S="${WORKDIR}/${P}/src" +else + SRC_URI="https://github.com/scsitape/stenc/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="SCSI Tape Encryption Manager enables AES support for LTO drives." +HOMEPAGE="https://github.com/scsitape/stenc/" + +LICENSE="GPL-2" +SLOT="0" + +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eautoreconf +} |