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 A8DAA138334 for ; Tue, 24 Dec 2019 18:58:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F8A9E0D1C; Tue, 24 Dec 2019 18:58:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 30583E0D1C for ; Tue, 24 Dec 2019 18:58:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4ACCF34DB26 for ; Tue, 24 Dec 2019 18:58:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6DD837 for ; Tue, 24 Dec 2019 18:58:03 +0000 (UTC) From: "Azamat H. Hackimov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Azamat H. Hackimov" Message-ID: <1577213852.2a20070c5bd351c9423f2aa9f3e04d6ca26a7f11.winterheart@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: dev-libs/d0_blind_id/ X-VCS-Repository: proj/gamerlay X-VCS-Files: dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild dev-libs/d0_blind_id/d0_blind_id-9999.ebuild dev-libs/d0_blind_id/metadata.xml X-VCS-Directories: dev-libs/d0_blind_id/ X-VCS-Committer: winterheart X-VCS-Committer-Name: Azamat H. Hackimov X-VCS-Revision: 2a20070c5bd351c9423f2aa9f3e04d6ca26a7f11 X-VCS-Branch: master Date: Tue, 24 Dec 2019 18:58:03 +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: 37eba142-831c-4250-ad18-a64b936eaae1 X-Archives-Hash: 50f30b59b07edc223a11fb202d77374d commit: 2a20070c5bd351c9423f2aa9f3e04d6ca26a7f11 Author: Azamat H. Hackimov gmail com> AuthorDate: Tue Dec 24 18:39:00 2019 +0000 Commit: Azamat H. Hackimov gentoo ru> CommitDate: Tue Dec 24 18:57:32 2019 +0000 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=2a20070c dev-libs/d0_blind_id: in portage now Signed-off-by: Azamat H. Hackimov gmail.com> dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild | 42 ---------------------------- dev-libs/d0_blind_id/d0_blind_id-9999.ebuild | 35 ----------------------- dev-libs/d0_blind_id/metadata.xml | 8 ------ 3 files changed, 85 deletions(-) diff --git a/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild b/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild deleted file mode 100644 index 43e8bec..0000000 --- a/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -AUTOTOOLS_AUTORECONF=1 -EGIT_REPO_URI="git://git.xonotic.org/xonotic/d0_blind_id.git" - -inherit autotools-utils -[[ ${PV} == *9999* ]] && inherit git-2 - -DESCRIPTION="Blind-ID library for user identification using RSA blind signatures" -HOMEPAGE="http://git.xonotic.org/?p=xonotic/d0_blind_id.git;a=summary" -[[ ${PV} == *9999* ]] || \ -SRC_URI="mirror://github/divVerent/d0_blind_id/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -[[ ${PV} == *9999* ]] || \ -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -RDEPEND="dev-libs/gmp:0" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( d0_blind_id.txt ) - -src_prepare() { - # fix out-of-source build - sed -e 's, d0_rijndael.c, "$srcdir/d0_rijndael.c",' -i configure.ac || die - - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --enable-rijndael - --without-openssl - --without-tommath - ) - autotools-utils_src_configure -} diff --git a/dev-libs/d0_blind_id/d0_blind_id-9999.ebuild b/dev-libs/d0_blind_id/d0_blind_id-9999.ebuild deleted file mode 100644 index 4a0a637..0000000 --- a/dev-libs/d0_blind_id/d0_blind_id-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -AUTOTOOLS_AUTORECONF=1 -EGIT_REPO_URI="git://git.xonotic.org/xonotic/d0_blind_id.git" - -inherit autotools-utils -[[ ${PV} == *9999* ]] && inherit git-2 - -DESCRIPTION="Blind-ID library for user identification using RSA blind signatures" -HOMEPAGE="http://git.xonotic.org/?p=xonotic/d0_blind_id.git;a=summary" -[[ ${PV} == *9999* ]] || \ -SRC_URI="mirror://github/divVerent/d0_blind_id/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -[[ ${PV} == *9999* ]] || \ -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -RDEPEND="dev-libs/gmp:0" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( d0_blind_id.txt ) - -src_configure() { - local myeconfargs=( - --enable-rijndael - --without-openssl - --without-tommath - ) - autotools-utils_src_configure -} diff --git a/dev-libs/d0_blind_id/metadata.xml b/dev-libs/d0_blind_id/metadata.xml deleted file mode 100644 index 2cb2f08..0000000 --- a/dev-libs/d0_blind_id/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - nikoli@lavabit.com - Nikoli - -