From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7C61C1382C5 for ; Sat, 2 Jan 2021 21:09:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56C60E0841; Sat, 2 Jan 2021 21:09:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFA57E0841 for ; Sat, 2 Jan 2021 21:08:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 33212340C96 for ; Sat, 2 Jan 2021 21:08:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99ED83FB for ; Sat, 2 Jan 2021 21:08:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609621732.6899b67bc4ad650c1dcb1e652914f523a94bfac0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libmd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libmd/Manifest app-crypt/libmd/libmd-1.0.3.ebuild X-VCS-Directories: app-crypt/libmd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6899b67bc4ad650c1dcb1e652914f523a94bfac0 X-VCS-Branch: master Date: Sat, 2 Jan 2021 21:08:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f4382864-59bc-4582-9df6-e2405507fcfe X-Archives-Hash: 3f1317646cc09fa2e4f984a57194d1b2 commit: 6899b67bc4ad650c1dcb1e652914f523a94bfac0 Author: Sam James gentoo org> AuthorDate: Sat Jan 2 21:00:16 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 2 21:08:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6899b67b app-crypt/libmd: bump to 1.0.3 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> app-crypt/libmd/Manifest | 1 + app-crypt/libmd/libmd-1.0.3.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/app-crypt/libmd/Manifest b/app-crypt/libmd/Manifest index f23ee39aa19..37ae0ca0001 100644 --- a/app-crypt/libmd/Manifest +++ b/app-crypt/libmd/Manifest @@ -1 +1,2 @@ DIST libmd-1.0.1.tar.xz 257372 BLAKE2B e954ab6b1247952abcf6964d8d714c2a47a644e206a455db547a0159a97ebbc323cf1258a24c744cea3106f267f1a319a689fe545b672580f4e134d96cc7cb3d SHA512 6f343101f9ad8f927d862e6bae948d35ba596ecfd375c255fefb86efc621cf6e9de3597770ad66e0a48e8f4ea018df78debb571ea6746a7457d8900fec87069b +DIST libmd-1.0.3.tar.xz 258584 BLAKE2B 35b732800a4b0a7b8d0a88eeff5e7e80fe55ab5ed05b7a7a1ffe866e156cc6dc6daca95f865a56297857b10b1bdfc9815b5bf0b198e8284f217498265c08fcc9 SHA512 f4b5a86bea7b9fac9f7f173032ee436d1e7141f760c1a114a785d31644edbf6802fe8193cc4cf3b5c66d38963be919c05055780bdf6bf5a47927690490ff5966 diff --git a/app-crypt/libmd/libmd-1.0.3.ebuild b/app-crypt/libmd/libmd-1.0.3.ebuild new file mode 100644 index 00000000000..55fdb75b7ca --- /dev/null +++ b/app-crypt/libmd/libmd-1.0.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib + +DESCRIPTION="Message Digest functions from BSD systems" +HOMEPAGE="https://www.hadrons.org/software/libmd/" +SRC_URI="https://archive.hadrons.org/software/libmd/${P}.tar.xz" + +LICENSE="|| ( BSD BSD-2 ISC BEER-WARE public-domain )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +src_configure() { + econf --disable-static +} + +src_install() { + default + + rm "${ED}"/usr/$(get_libdir)/libmd.la || die +}