diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-01-02 22:29:32 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-01-02 22:29:32 +0000 |
commit | a563c39eaaf23928be6f6a118f80c587e4348d20 (patch) | |
tree | e7cd1e1e7c08d45c20df000ba498f6e5cb11caa5 /app-crypt/shash | |
parent | Do not reference Python sitedir when Python is disabled, bug #531968. (diff) | |
download | gentoo-2-a563c39eaaf23928be6f6a118f80c587e4348d20.tar.gz gentoo-2-a563c39eaaf23928be6f6a118f80c587e4348d20.tar.bz2 gentoo-2-a563c39eaaf23928be6f6a118f80c587e4348d20.zip |
Remove old now that -r2 has complete stable keyword set.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'app-crypt/shash')
-rw-r--r-- | app-crypt/shash/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/shash/shash-0.2.6-r1.ebuild | 36 |
2 files changed, 5 insertions, 38 deletions
diff --git a/app-crypt/shash/ChangeLog b/app-crypt/shash/ChangeLog index 9ba4b337e666..262f2bbdb26a 100644 --- a/app-crypt/shash/ChangeLog +++ b/app-crypt/shash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/shash -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/ChangeLog,v 1.37 2014/11/11 10:52:16 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/ChangeLog,v 1.38 2015/01/02 22:29:32 mgorny Exp $ + + 02 Jan 2015; Michał Górny <mgorny@gentoo.org> -shash-0.2.6-r1.ebuild: + Remove old now that -r2 has complete stable keyword set. 11 Nov 2014; Agostino Sarubbo <ago@gentoo.org> shash-0.2.6-r2.ebuild: Stable for ia64, wrt bug #524820 diff --git a/app-crypt/shash/shash-0.2.6-r1.ebuild b/app-crypt/shash/shash-0.2.6-r1.ebuild deleted file mode 100644 index f0a9faa8569b..000000000000 --- a/app-crypt/shash/shash-0.2.6-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/shash-0.2.6-r1.ebuild,v 1.25 2014/01/18 05:39:58 vapier Exp $ - -inherit bash-completion eutils - -DESCRIPTION="Generate or check digests or MACs of files" -HOMEPAGE="http://mcrypt.hellug.gr/shash/" -SRC_URI="ftp://mcrypt.hellug.gr/pub/mcrypt/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="static" - -DEPEND=">=app-crypt/mhash-0.8.18-r1" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${PV}-manpage-fixes.patch - epatch "${FILESDIR}"/${P}-binary-files.patch -} - -src_compile() { - econf $(use_enable static static-link) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make install DESTDIR="${D}" || die "install failed" - dodoc AUTHORS ChangeLog INSTALL NEWS doc/sample.shashrc doc/FORMAT - dobashcompletion "${FILESDIR}"/shash.bash-completion ${PN} -} |