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 A19DF1382DE for ; Tue, 28 Jun 2016 21:41:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B05C614002; Tue, 28 Jun 2016 21:41:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C3C514002 for ; Tue, 28 Jun 2016 21:41:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5AED8340DF0 for ; Tue, 28 Jun 2016 21:41:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A577D2428 for ; Tue, 28 Jun 2016 21:41:01 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1467149924.aab1c58653908468c8182326c1775ae57e38f00d.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libu2f-server/Manifest app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild app-crypt/libu2f-server/metadata.xml X-VCS-Directories: app-crypt/libu2f-server/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: aab1c58653908468c8182326c1775ae57e38f00d X-VCS-Branch: master Date: Tue, 28 Jun 2016 21:41:01 +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-Archives-Salt: e96c2441-fd27-4c74-ac90-4645fec0c697 X-Archives-Hash: 1dada4e0b8ce54e1dce6e265662864a0 commit: aab1c58653908468c8182326c1775ae57e38f00d Author: Göktürk Yüksek gentoo org> AuthorDate: Fri Jun 17 02:36:44 2016 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Tue Jun 28 21:38:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab1c586 app-crypt/libu2f-server: initial commit of U2F server library in C Package-Manager: portage-2.2.28 app-crypt/libu2f-server/Manifest | 1 + app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 45 ++++++++++++++++++++++ app-crypt/libu2f-server/metadata.xml | 12 ++++++ 3 files changed, 58 insertions(+) diff --git a/app-crypt/libu2f-server/Manifest b/app-crypt/libu2f-server/Manifest new file mode 100644 index 0000000..99e0f4f --- /dev/null +++ b/app-crypt/libu2f-server/Manifest @@ -0,0 +1 @@ +DIST libu2f-server-1.0.1.tar.xz 268648 SHA256 a618f59051209d6d70c24cf42d64c9b67bd7dd5946b6dbd2c649181d7e8f1f6e SHA512 51020722f49f787c793808b667e91923bde46e9137bfe5065106f83bcdb678e8d11cca12cb605d9622cafc15a9794c9080cf08e2a704293a791ab6f27ac47f47 WHIRLPOOL a8f4a50be8c9c09446ac6517e9e7a6609c0306aedeb683f911f89ac63a16cee2b88d7b551a1a8e20182a3c7cfa72ee86ce1d5105256e42c19affb2ad201139ea diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild new file mode 100644 index 0000000..e05b3ea --- /dev/null +++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools eutils multilib-minimal + +DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library" +HOMEPAGE="https://developers.yubico.com/libu2f-server/" +SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs test" + +RDEPEND=" + dev-libs/openssl:0=[${MULTILIB_USEDEP}] + dev-libs/hidapi[${MULTILIB_USEDEP}] + dev-libs/json-c[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND} + virtual/pkgconfig + test? ( dev-libs/check[${MULTILIB_USEDEP}] ) +" + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + myeconfargs=( + --disable-h2a # tarball already contains the manpage + $(use_enable static-libs static) + ) + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_install_all() { + default + prune_libtool_files +} diff --git a/app-crypt/libu2f-server/metadata.xml b/app-crypt/libu2f-server/metadata.xml new file mode 100644 index 0000000..2d0a0e3 --- /dev/null +++ b/app-crypt/libu2f-server/metadata.xml @@ -0,0 +1,12 @@ + + + + + shirk+gentoo@bitspin.org + René Köcher + + + gokturk@gentoo.org + Göktürk Yüksek + +