diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-01-01 21:45:58 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-01-01 23:00:35 +0100 |
commit | a8985eb11290e7827b5b6fd9c8759642e854c2e4 (patch) | |
tree | ce30e1947758354f66124814f9a9a46bbb7b2adb /app-crypt | |
parent | dev-util/catfish: Bump to 1.4.12 (diff) | |
download | gentoo-a8985eb11290e7827b5b6fd9c8759642e854c2e4.tar.gz gentoo-a8985eb11290e7827b5b6fd9c8759642e854c2e4.tar.bz2 gentoo-a8985eb11290e7827b5b6fd9c8759642e854c2e4.zip |
app-crypt/argon2: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/argon2/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/argon2/argon2-20171227-r1.ebuild | 40 |
2 files changed, 0 insertions, 41 deletions
diff --git a/app-crypt/argon2/Manifest b/app-crypt/argon2/Manifest index 2f970b45cb31..cc1597d7b377 100644 --- a/app-crypt/argon2/Manifest +++ b/app-crypt/argon2/Manifest @@ -1,2 +1 @@ -DIST argon2-20171227.tar.gz 1503745 BLAKE2B 70171ce1b446974e18e6f7077f436c6b78f29fd3eb075314014219280fd984e51b00137d901175da5fcb8a8472df0cbb16ff0333a2f2f098e52d3e0ea496e2cc SHA512 9c9e1a3905e61ac6913d1e073c104477e419ddd0506adc4487e88e98d19165ed8901fe8bb11246ed0cc71b3523c190da9692d5926642f86be09c3e67510afe4d DIST argon2-20190702.tar.gz 1505307 BLAKE2B fa9c3dde7b39c8d797a3d6b52992ebfe35f5eba1c7d7b3aa02c440edc36a3f5186cacee2e39e27ed7c6356dc1970dac0e8198d6f2065eb63ff77f9dfb2937cf8 SHA512 0a4cb89e8e63399f7df069e2862ccd05308b7652bf4ab74372842f66bcc60776399e0eaf979a7b7e31436b5e6913fe5b0a6949549d8c82ebd06e0629b106e85f diff --git a/app-crypt/argon2/argon2-20171227-r1.ebuild b/app-crypt/argon2/argon2-20171227-r1.ebuild deleted file mode 100644 index e8a9219e21b1..000000000000 --- a/app-crypt/argon2/argon2-20171227-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Password hashing software that won the Password Hashing Competition (PHC)" -HOMEPAGE="https://github.com/P-H-C/phc-winner-argon2" -SRC_URI="https://github.com/P-H-C/phc-winner-argon2/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( Apache-2.0 CC0-1.0 )" -SLOT="0/1" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86" -IUSE="static-libs" - -S="${WORKDIR}/phc-winner-${P}" - -DOCS=( argon2-specs.pdf CHANGELOG.md README.md ) - -src_prepare() { - default - if ! use static-libs; then - sed -i -e 's/LIBRARIES = \$(LIB_SH) \$(LIB_ST)/LIBRARIES = \$(LIB_SH)/' Makefile || die "sed failed!" - fi - sed -i -e 's/-O3 //' -e 's/-g //' -e "s/-march=\$(OPTTARGET) /${CFLAGS} /" -e 's/CFLAGS += -march=\$(OPTTARGET)//' Makefile || die "sed failed" - - sed -i -e "s/lib\/@HOST_MULTIARCH@/$(get_libdir)/" -e "s/@UPSTREAM_VER@/${PV}/" lib${PN}.pc || die - - tc-export CC -} - -src_install() { - emake DESTDIR="${ED}" LIBRARY_REL="$(get_libdir)" install - einstalldocs - doman man/${PN}.1 - - insinto /usr/$(get_libdir)/pkgconfig - doins lib${PN}.pc -} |