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 D06B8138334 for ; Fri, 26 Apr 2019 19:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C94B5E090F; Fri, 26 Apr 2019 19:50:21 +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 9B133E090F for ; Fri, 26 Apr 2019 19:50:21 +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 340A3342992 for ; Fri, 26 Apr 2019 19:50:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCC30503 for ; Fri, 26 Apr 2019 19:50:12 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1556308204.80ed857db41f7fffe7091fcd3a1931ff977fada5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/scdrand/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/scdrand/Manifest app-crypt/scdrand/metadata.xml app-crypt/scdrand/scdrand-0.3.4.ebuild X-VCS-Directories: app-crypt/scdrand/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 80ed857db41f7fffe7091fcd3a1931ff977fada5 X-VCS-Branch: master Date: Fri, 26 Apr 2019 19:50:12 +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: 64907d28-1910-468d-86f9-05d5a3a013d8 X-Archives-Hash: ee21020efd00e49534fb7dddb20c0a2f commit: 80ed857db41f7fffe7091fcd3a1931ff977fada5 Author: Michał Górny gentoo org> AuthorDate: Tue Apr 23 20:24:28 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 26 19:50:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80ed857d app-crypt/scdrand: Initial ebuild for 0.3.4 Initial ebuild for scdrand, the tool to feed kernel's random thingy from smartcard (e.g. Nitrokey). Signed-off-by: Michał Górny gentoo.org> app-crypt/scdrand/Manifest | 1 + app-crypt/scdrand/metadata.xml | 8 ++++++++ app-crypt/scdrand/scdrand-0.3.4.ebuild | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/app-crypt/scdrand/Manifest b/app-crypt/scdrand/Manifest new file mode 100644 index 00000000000..a91e0fbfebd --- /dev/null +++ b/app-crypt/scdrand/Manifest @@ -0,0 +1 @@ +DIST scdtools-0.3.4.tar.gz 254227 BLAKE2B d2959d1be860b4809f4b20b5b3e2b06534bb49220b6818b4ac9c8e73751c31dfa4a6c0200cc6bbb33d4a627f0d55b1c3cefda3def6a78bde925a0c58d9c0429a SHA512 ff25f6360c9bd73e63cefd8fe37103dc1ef2528d87ddf7c1006e913c921e78569ff6f12096d1407bfabf626e73376f13e25f606f8c45cba79803689176801b73 diff --git a/app-crypt/scdrand/metadata.xml b/app-crypt/scdrand/metadata.xml new file mode 100644 index 00000000000..0319eec4c8b --- /dev/null +++ b/app-crypt/scdrand/metadata.xml @@ -0,0 +1,8 @@ + + + + + mgorny@gentoo.org + Michał Górny + + diff --git a/app-crypt/scdrand/scdrand-0.3.4.ebuild b/app-crypt/scdrand/scdrand-0.3.4.ebuild new file mode 100644 index 00000000000..a440b78d218 --- /dev/null +++ b/app-crypt/scdrand/scdrand-0.3.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P=scdtools-${PV} +DESCRIPTION="Feed kernel entropy pool from smartcard's TRNG" +HOMEPAGE="https://incenp.org/dvlpt/scdtools.html" +SRC_URI="https://incenp.org/files/softs/scdtools/$(ver_cut 1-2)/${MY_P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/libgcrypt:= + dev-libs/libassuan:= + dev-libs/libgpg-error:=" +RDEPEND="${DEPEND} + app-crypt/gnupg" + +S=${WORKDIR}/${MY_P} + +src_compile() { + emake -C lib + emake -C src scdrand +} + +src_test() { :; } + +src_install() { + emake DESTDIR="${D}" -C man man_MANS="scdrand.1" install + emake DESTDIR="${D}" -C src bin_PROGRAMS="scdrand" install +}