Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libscrypt/
Date: Sat, 01 Jul 2017 20:31:21
Message-Id: 1498941071.e110875860a7c3560553b9a769d9a9815fdfc3da.alonbl@gentoo
1 commit: e110875860a7c3560553b9a769d9a9815fdfc3da
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 1 19:59:39 2017 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 1 20:31:11 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1108758
7
8 app-crypt/libscrypt: cleanup
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-crypt/libscrypt/Manifest | 1 -
13 app-crypt/libscrypt/libscrypt-1.19.ebuild | 28 ----------------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/app-crypt/libscrypt/Manifest b/app-crypt/libscrypt/Manifest
17 index c767d0c8b83..d1841cd9bb3 100644
18 --- a/app-crypt/libscrypt/Manifest
19 +++ b/app-crypt/libscrypt/Manifest
20 @@ -1,2 +1 @@
21 -DIST libscrypt-1.19.tar.gz 18208 SHA256 8f398677b2b43e21423b800156b3379f3cb0d314e70eec2eb2e83a012bce854f SHA512 decf4fe6eb83d6a9ddd71cd9b9f4f9232bbadc8a7dc4c62aa737b162fdb97a18e6a8b3ac314c0900830b151c1b77a8dc00ffd0e47e47c425490ee4c43a21a735 WHIRLPOOL 877bcc095fedabf023bdd1eb921625889afdaf20512ee93135b602d75b12686317efe2e63b5f115efb7d846f2a021cab84a0ce5791bcaa1abb931710895bbcfc
22 DIST libscrypt-1.20.tar.gz 18451 SHA256 6074add2170b7d00e080fe3a58d3dec76850a4f272d488f5e8cc3c4acb6d8e21 SHA512 c7db096c740681c328d4c156372147331c0441906c1f17656a8ddd8345348091295749c4e3105bf26106f826327acac9bda97efec4ce50ac56d64f903c59e9af WHIRLPOOL 5d854936f955fbc08ec7d31e89396d3198ea58cac326ea8ceaedcc360e412cefc9e75b49a959870924cabe79ccf14453209cf450ff0256873c1de744f65706ac
23
24 diff --git a/app-crypt/libscrypt/libscrypt-1.19.ebuild b/app-crypt/libscrypt/libscrypt-1.19.ebuild
25 deleted file mode 100644
26 index 64e1cfc987a..00000000000
27 --- a/app-crypt/libscrypt/libscrypt-1.19.ebuild
28 +++ /dev/null
29 @@ -1,28 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit flag-o-matic multilib toolchain-funcs
36 -
37 -DESCRIPTION="Shared library to impliment the scrypt algorithm"
38 -HOMEPAGE="https://github.com/technion/libscrypt"
39 -SRC_URI="https://github.com/technion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="BSD-2"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
44 -IUSE=""
45 -
46 -DEPEND=""
47 -RDEPEND="${DEPEND}"
48 -
49 -src_compile() {
50 - export PREFIX=/usr
51 - export LIBDIR=${PREFIX}/$(get_libdir)
52 - export CC=$(tc-getCC)
53 - export CFLAGS="$CFLAGS -fPIC"
54 - export LDFLAGS="$LDFLAGS -Wl,-soname,libscrypt.so.0 -Wl,--version-script=libscrypt.version"
55 - export CFLAGS_EXTRA=
56 - emake
57 -}