From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 20EA5138A1A for ; Mon, 2 Feb 2015 17:06:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9AF0E0885; Mon, 2 Feb 2015 17:06:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67EE7E0885 for ; Mon, 2 Feb 2015 17:06:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 137E234065F for ; Mon, 2 Feb 2015 17:06:06 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2279) id 6D07A10E84; Mon, 2 Feb 2015 17:06:04 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-misc/i2pd: metadata.xml i2pd-9999.ebuild i2pd-0.5.0.ebuild i2pd-0.6.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: metadata.xml i2pd-9999.ebuild i2pd-0.5.0.ebuild i2pd-0.6.0.ebuild ChangeLog X-VCS-Directories: net-misc/i2pd X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150202170604.6D07A10E84@oystercatcher.gentoo.org> Date: Mon, 2 Feb 2015 17:06:04 +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: 19939361-f279-47c3-89e1-46627d0ddf6e X-Archives-Hash: 4841e278164bf6ab614091647ad38253 mgorny 15/02/02 17:06:04 Modified: metadata.xml i2pd-9999.ebuild i2pd-0.5.0.ebuild i2pd-0.6.0.ebuild ChangeLog Log: Use cpu_flags_x86_aes, bug #538556. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!) Revision Changes Path 1.2 net-misc/i2pd/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/metadata.xml?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/metadata.xml?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/metadata.xml?r1=1.1&r2=1.2 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/i2pd/metadata.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- metadata.xml 8 Jan 2015 22:44:46 -0000 1.1 +++ metadata.xml 2 Feb 2015 17:06:04 -0000 1.2 @@ -10,9 +10,6 @@ Anthony G. Basile - - Enable support for the AES-NI instruction set - Compile with hardening on vanilla compilers/linkers 1.2 net-misc/i2pd/i2pd-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-9999.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-9999.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-9999.ebuild?r1=1.1&r2=1.2 Index: i2pd-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-9999.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- i2pd-9999.ebuild 8 Jan 2015 22:44:46 -0000 1.1 +++ i2pd-9999.ebuild 2 Feb 2015 17:06:04 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-9999.ebuild,v 1.1 2015/01/08 22:44:46 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-9999.ebuild,v 1.2 2015/02/02 17:06:04 mgorny Exp $ EAPI=5 inherit eutils systemd user git-2 cmake-multilib @@ -12,7 +12,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="aesni i2p-hardening library static" +IUSE="cpu_flags_x86_aes i2p-hardening library static" RDEPEND="!static? ( >=dev-libs/boost-1.46[threads] ) !static? ( dev-libs/crypto++ ) @@ -32,7 +32,7 @@ multilib_src_configure() { mycmakeargs=( - $(cmake-utils_use_with aesni AESNI) + $(cmake-utils_use_with cpu_flags_x86_aes AESNI) $(cmake-utils_use_with i2p-hardening HARDENING) $(cmake-utils_use_with library LIBRARY) $(cmake-utils_use_with static STATIC) 1.2 net-misc/i2pd/i2pd-0.5.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-0.5.0.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-0.5.0.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-0.5.0.ebuild?r1=1.1&r2=1.2 Index: i2pd-0.5.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-0.5.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- i2pd-0.5.0.ebuild 8 Jan 2015 22:44:46 -0000 1.1 +++ i2pd-0.5.0.ebuild 2 Feb 2015 17:06:04 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-0.5.0.ebuild,v 1.1 2015/01/08 22:44:46 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-0.5.0.ebuild,v 1.2 2015/02/02 17:06:04 mgorny Exp $ EAPI=5 inherit eutils systemd user cmake-utils @@ -11,7 +11,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="aesni i2p-hardening static" +IUSE="cpu_flags_x86_aes i2p-hardening static" RDEPEND="!static? ( >=dev-libs/boost-1.46[threads] ) !static? ( dev-libs/crypto++ )" @@ -29,7 +29,7 @@ src_configure() { mycmakeargs=( - $(cmake-utils_use_with aesni AESNI) + $(cmake-utils_use_with cpu_flags_x86_aes AESNI) $(cmake-utils_use_with i2p-hardening HARDENING) $(cmake-utils_use_with static STATIC) -D WITH_LIBRARY=OFF 1.2 net-misc/i2pd/i2pd-0.6.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-0.6.0.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-0.6.0.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/i2pd-0.6.0.ebuild?r1=1.1&r2=1.2 Index: i2pd-0.6.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-0.6.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- i2pd-0.6.0.ebuild 8 Jan 2015 22:44:46 -0000 1.1 +++ i2pd-0.6.0.ebuild 2 Feb 2015 17:06:04 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-0.6.0.ebuild,v 1.1 2015/01/08 22:44:46 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/i2pd-0.6.0.ebuild,v 1.2 2015/02/02 17:06:04 mgorny Exp $ EAPI=5 inherit eutils systemd user cmake-utils @@ -11,7 +11,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="aesni i2p-hardening static" +IUSE="cpu_flags_x86_aes i2p-hardening static" RDEPEND="!static? ( >=dev-libs/boost-1.46[threads] ) !static? ( dev-libs/crypto++ )" @@ -29,7 +29,7 @@ src_configure() { mycmakeargs=( - $(cmake-utils_use_with aesni AESNI) + $(cmake-utils_use_with cpu_flags_x86_aes AESNI) $(cmake-utils_use_with i2p-hardening HARDENING) $(cmake-utils_use_with static STATIC) -DWITH_LIBRARY=OFF 1.3 net-misc/i2pd/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/i2pd/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/i2pd/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 8 Jan 2015 22:47:37 -0000 1.2 +++ ChangeLog 2 Feb 2015 17:06:04 -0000 1.3 @@ -1,6 +1,10 @@ # ChangeLog for net-misc/i2pd -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/ChangeLog,v 1.2 2015/01/08 22:47:37 blueness Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/i2pd/ChangeLog,v 1.3 2015/02/02 17:06:04 mgorny Exp $ + + 02 Feb 2015; Michał Górny i2pd-0.5.0.ebuild, + i2pd-0.6.0.ebuild, i2pd-9999.ebuild, metadata.xml: + Use cpu_flags_x86_aes, bug #538556. 07 Jan 2015; Francisco Blas Izquierdo Riera (klondike) i2pd-0.6.0.ebuild: Remove library USE as it doesn't work the expected way