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: Tue, 05 Oct 2021 04:09:05
Message-Id: 1633406932.2c12ebe0782722ba274045eb033f457242664734.sam@gentoo
1 commit: 2c12ebe0782722ba274045eb033f457242664734
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 5 04:08:38 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 5 04:08:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c12ebe0
7
8 app-crypt/libmd: add 1.0.4
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-crypt/libmd/Manifest | 1 +
13 app-crypt/libmd/libmd-1.0.4.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/app-crypt/libmd/Manifest b/app-crypt/libmd/Manifest
17 index f3a9a3d4ff7..907624d3255 100644
18 --- a/app-crypt/libmd/Manifest
19 +++ b/app-crypt/libmd/Manifest
20 @@ -1 +1,2 @@
21 DIST libmd-1.0.3.tar.xz 258584 BLAKE2B 35b732800a4b0a7b8d0a88eeff5e7e80fe55ab5ed05b7a7a1ffe866e156cc6dc6daca95f865a56297857b10b1bdfc9815b5bf0b198e8284f217498265c08fcc9 SHA512 f4b5a86bea7b9fac9f7f173032ee436d1e7141f760c1a114a785d31644edbf6802fe8193cc4cf3b5c66d38963be919c05055780bdf6bf5a47927690490ff5966
22 +DIST libmd-1.0.4.tar.xz 264472 BLAKE2B ddc2da74635f5cc009c66a58ae82b83e6e0930e18af8a6b0ecec7cbf378246707b493a99fb97d3491d0d626a0d5ef068baea6a3ba2ec311c5a1516ba5b4e2fd5 SHA512 731553ecc5e0e1eb228cced8fccd531fe31fb5c7627ca30013d287e1aeb8222959cf7498fbb7414bbabb967b25d4e8b0edd54fc47f6ccf55fc91087db0725ce3
23
24 diff --git a/app-crypt/libmd/libmd-1.0.4.ebuild b/app-crypt/libmd/libmd-1.0.4.ebuild
25 new file mode 100644
26 index 00000000000..f8676be7451
27 --- /dev/null
28 +++ b/app-crypt/libmd/libmd-1.0.4.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit autotools multilib-minimal
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 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +
45 +src_prepare() {
46 + default
47 + eautoreconf
48 +}
49 +
50 +multilib_src_configure() {
51 + ECONF_SOURCE="${S}" econf
52 +}
53 +
54 +multilib_src_install_all() {
55 + einstalldocs
56 + find "${ED}" -type f -name '*.la' -delete || die
57 +}