public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.5-r1.ebuild ChangeLog
@ 2012-12-14 21:45 Alon Bar-Lev (alonbl)
  0 siblings, 0 replies; 2+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-14 21:45 UTC (permalink / raw
  To: gentoo-commits

alonbl      12/12/14 21:45:32

  Modified:             ChangeLog
  Added:                nettle-2.5-r1.ebuild
  Log:
  bug#405525 add support for USE static-libs
  
  (Portage version: 2.2.0_alpha148/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.71                 dev-libs/nettle/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	20 Oct 2012 16:40:22 -0000	1.70
+++ ChangeLog	14 Dec 2012 21:45:31 -0000	1.71
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.70 2012/10/20 16:40:22 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.71 2012/12/14 21:45:31 alonbl Exp $
+
+*nettle-2.5-r1 (14 Dec 2012)
+
+  14 Dec 2012;  <alonbl@gentoo.org> +files/nettle-2.5-static-libs.patch,
+  +nettle-2.5-r1.ebuild:
+  bug#405525 add support for USE static-libs
 
   20 Oct 2012; Raúl Porcel <armin76@gentoo.org> nettle-2.5.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #433235



1.1                  dev-libs/nettle/nettle-2.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: nettle-2.5-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild,v 1.1 2012/12/14 21:45:31 alonbl Exp $

EAPI="4"

inherit eutils autotools

DESCRIPTION="Low-level cryptographic library"
HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/"
SRC_URI="http://www.lysator.liu.se/~nisse/archive/${P}.tar.gz"

LICENSE="|| ( LGPL-3 LGPL-2.1 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="static-libs +gmp"

DEPEND="gmp? ( dev-libs/gmp )"
RDEPEND="${DEPEND}"

src_prepare() {
	sed -e "/CFLAGS=/s: -ggdb3::" -i configure.ac || die
	epatch "${FILESDIR}"/${PN}-2.5-missing-libm-link.patch
	sed -i -e 's/solaris\*)/sunldsolaris*)/' configure.ac || die
	epatch "${FILESDIR}/${P}-static-libs.patch"
	eautoreconf
}

src_configure() {
	# --disable-openssl bug #427526
	econf \
		$(use_enable static-libs static) \
		$(use_enable gmp public-key) \
		--disable-openssl
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.5-r1.ebuild ChangeLog
@ 2012-12-14 22:35 Alon Bar-Lev (alonbl)
  0 siblings, 0 replies; 2+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-14 22:35 UTC (permalink / raw
  To: gentoo-commits

alonbl      12/12/14 22:35:13

  Modified:             nettle-2.5-r1.ebuild ChangeLog
  Log:
  Fix ar detection per bug#438160 by Sean McGovern
  
  (Portage version: 2.2.0_alpha148/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  dev-libs/nettle/nettle-2.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild?r1=1.1&r2=1.2

Index: nettle-2.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nettle-2.5-r1.ebuild	14 Dec 2012 21:45:31 -0000	1.1
+++ nettle-2.5-r1.ebuild	14 Dec 2012 22:35:13 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild,v 1.1 2012/12/14 21:45:31 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.5-r1.ebuild,v 1.2 2012/12/14 22:35:13 alonbl Exp $
 
 EAPI="4"
 
@@ -23,6 +23,7 @@
 	epatch "${FILESDIR}"/${PN}-2.5-missing-libm-link.patch
 	sed -i -e 's/solaris\*)/sunldsolaris*)/' configure.ac || die
 	epatch "${FILESDIR}/${P}-static-libs.patch"
+	epatch "${FILESDIR}/${P}-build-ar.patch"
 	eautoreconf
 }
 



1.72                 dev-libs/nettle/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	14 Dec 2012 21:45:31 -0000	1.71
+++ ChangeLog	14 Dec 2012 22:35:13 -0000	1.72
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/nettle
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.71 2012/12/14 21:45:31 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.72 2012/12/14 22:35:13 alonbl Exp $
+
+  14 Dec 2012;  <alonbl@gentoo.org> +files/nettle-2.5-build-ar.patch,
+  nettle-2.5-r1.ebuild:
+  Fix ar detection per bug#438160 by Sean McGovern
 
 *nettle-2.5-r1 (14 Dec 2012)
 





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-12-14 22:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-14 21:45 [gentoo-commits] gentoo-x86 commit in dev-libs/nettle: nettle-2.5-r1.ebuild ChangeLog Alon Bar-Lev (alonbl)
  -- strict thread matches above, loose matches on Subject: below --
2012-12-14 22:35 Alon Bar-Lev (alonbl)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox