diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-06-13 00:10:54 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-06-13 00:10:54 +0000 |
commit | 0ff6a20a0bae0b265056fc93f4dc166e6083973e (patch) | |
tree | 1c4d9f444bc462ffbdd950c7e67b6eea9c76a117 /app-crypt/hashalot | |
parent | Fixed DEPEND/RDEPEND bug. (diff) | |
download | historical-0ff6a20a0bae0b265056fc93f4dc166e6083973e.tar.gz historical-0ff6a20a0bae0b265056fc93f4dc166e6083973e.tar.bz2 historical-0ff6a20a0bae0b265056fc93f4dc166e6083973e.zip |
version bump. Thank to Alessandro Di Marco <dmr@gmx.it> in bug #53591
Diffstat (limited to 'app-crypt/hashalot')
-rw-r--r-- | app-crypt/hashalot/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/hashalot/Manifest | 6 | ||||
-rw-r--r-- | app-crypt/hashalot/files/digest-hashalot-0.3 | 1 | ||||
-rw-r--r-- | app-crypt/hashalot/hashalot-0.3.ebuild | 29 |
4 files changed, 40 insertions, 3 deletions
diff --git a/app-crypt/hashalot/ChangeLog b/app-crypt/hashalot/ChangeLog index 2df5b90e9749..e6cb17aa2f4f 100644 --- a/app-crypt/hashalot/ChangeLog +++ b/app-crypt/hashalot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-crypt/hashalot # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashalot/ChangeLog,v 1.13 2004/06/11 17:48:58 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashalot/ChangeLog,v 1.14 2004/06/13 00:10:54 dragonheart Exp $ + +*hashalot-0.3 (13 Jun 2004) + + 13 Jun 2004; Daniel Black <dragonheart@gentoo.org> +hashalot-0.3.ebuild: + version bump. Thank to Alessandro Di Marco <dmr@gmx.it> in bug #53591 11 Jun 2004; Gustavo Zacarias <gustavoz@gentoo.org> hashalot-0.2.0.ebuild: Stable on sparc diff --git a/app-crypt/hashalot/Manifest b/app-crypt/hashalot/Manifest index 921dbd2126db..0b699f94a354 100644 --- a/app-crypt/hashalot/Manifest +++ b/app-crypt/hashalot/Manifest @@ -1,6 +1,8 @@ -MD5 8765cbf516d94aedcf9b97fe389f8a3e ChangeLog 1878 +MD5 809475ac1130ee3d1ff8af17b4f898ca ChangeLog 2058 MD5 2d6f196fa719f83c812d8c71ab7cab96 hashalot-0.1.0.ebuild 516 -MD5 b7a12c488b5d977ee0f66cd910c43337 hashalot-0.2.0.ebuild 497 MD5 1652522405f5936eb29776ef8d5ffa5b metadata.xml 310 +MD5 b7a12c488b5d977ee0f66cd910c43337 hashalot-0.2.0.ebuild 497 +MD5 864bcd2a79447b8ac9ddb6483dbaba66 hashalot-0.3.ebuild 659 MD5 d6246fcf94994932fe9833e67abc7931 files/digest-hashalot-0.1.0 65 MD5 5d200800acbba240ce3762c3c0aa0d65 files/digest-hashalot-0.2.0 65 +MD5 953187b11e11507c234b05f48ad8d953 files/digest-hashalot-0.3 63 diff --git a/app-crypt/hashalot/files/digest-hashalot-0.3 b/app-crypt/hashalot/files/digest-hashalot-0.3 new file mode 100644 index 000000000000..824f731c29c6 --- /dev/null +++ b/app-crypt/hashalot/files/digest-hashalot-0.3 @@ -0,0 +1 @@ +MD5 5756530afbfb962983416d458bfb1fa3 hashalot-0.3.tar.gz 80284 diff --git a/app-crypt/hashalot/hashalot-0.3.ebuild b/app-crypt/hashalot/hashalot-0.3.ebuild new file mode 100644 index 000000000000..44a8c8ac36fa --- /dev/null +++ b/app-crypt/hashalot/hashalot-0.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashalot/hashalot-0.3.ebuild,v 1.1 2004/06/13 00:10:54 dragonheart Exp $ + +DESCRIPTION="CryptoAPI utils" +HOMEPAGE="http://www.kerneli.org/" +SRC_URI="http://www.paranoiacs.org/~sluskyb/hacks/hashalot/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~sparc ~mips ~alpha ~arm ~ia64 ~amd64" +IUSE="" +RDEPEND="virtual/glibc" + +DEPEND="sys-apps/gawk + sys-apps/grep + virtual/glibc + sys-devel/gcc" + + +src_test() { + cd ${S} + make check-TESTS +} + +src_install() { + emake DESTDIR=${D} || die "install error" +} + |