Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libmd/
Date: Fri, 05 Feb 2021 12:33:49
Message-Id: 1612528378.1b9fc10207aed19de3b52846e783b7d1f1ff32ca.sam@gentoo
1 commit: 1b9fc10207aed19de3b52846e783b7d1f1ff32ca
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 5 12:32:58 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 5 12:32:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b9fc102
7
8 app-crypt/libmd: cleanup old
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-crypt/libmd/Manifest | 1 -
14 app-crypt/libmd/libmd-1.0.1.ebuild | 26 --------------------------
15 2 files changed, 27 deletions(-)
16
17 diff --git a/app-crypt/libmd/Manifest b/app-crypt/libmd/Manifest
18 index 37ae0ca0001..f3a9a3d4ff7 100644
19 --- a/app-crypt/libmd/Manifest
20 +++ b/app-crypt/libmd/Manifest
21 @@ -1,2 +1 @@
22 -DIST libmd-1.0.1.tar.xz 257372 BLAKE2B e954ab6b1247952abcf6964d8d714c2a47a644e206a455db547a0159a97ebbc323cf1258a24c744cea3106f267f1a319a689fe545b672580f4e134d96cc7cb3d SHA512 6f343101f9ad8f927d862e6bae948d35ba596ecfd375c255fefb86efc621cf6e9de3597770ad66e0a48e8f4ea018df78debb571ea6746a7457d8900fec87069b
23 DIST libmd-1.0.3.tar.xz 258584 BLAKE2B 35b732800a4b0a7b8d0a88eeff5e7e80fe55ab5ed05b7a7a1ffe866e156cc6dc6daca95f865a56297857b10b1bdfc9815b5bf0b198e8284f217498265c08fcc9 SHA512 f4b5a86bea7b9fac9f7f173032ee436d1e7141f760c1a114a785d31644edbf6802fe8193cc4cf3b5c66d38963be919c05055780bdf6bf5a47927690490ff5966
24
25 diff --git a/app-crypt/libmd/libmd-1.0.1.ebuild b/app-crypt/libmd/libmd-1.0.1.ebuild
26 deleted file mode 100644
27 index 0966fdfe751..00000000000
28 --- a/app-crypt/libmd/libmd-1.0.1.ebuild
29 +++ /dev/null
30 @@ -1,26 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit multilib
36 -
37 -DESCRIPTION="Message Digest functions from BSD systems"
38 -HOMEPAGE="https://www.hadrons.org/software/libmd/"
39 -SRC_URI="https://archive.hadrons.org/software/libmd/${P}.tar.xz"
40 -
41 -LICENSE="|| ( BSD BSD-2 ISC BEER-WARE public-domain )"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
44 -IUSE="static-libs"
45 -
46 -src_configure() {
47 - econf $(use_enable static-libs static)
48 -}
49 -
50 -src_install() {
51 - default
52 -
53 - if ! use static-libs; then
54 - rm "${ED}"/usr/$(get_libdir)/libmd.la || die
55 - fi
56 -}