public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.20.ebuild
@ 2012-08-25 13:17 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2012-08-25 13:17 UTC (permalink / raw
  To: gentoo-commits

jer         12/08/25 13:17:14

  Modified:             ChangeLog
  Added:                libevent-2.0.20.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)

Revision  Changes    Path
1.233                dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -r1.232 -r1.233
--- ChangeLog	19 Aug 2012 19:01:02 -0000	1.232
+++ ChangeLog	25 Aug 2012 13:17:14 -0000	1.233
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.232 2012/08/19 19:01:02 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.233 2012/08/25 13:17:14 jer Exp $
+
+*libevent-2.0.20 (25 Aug 2012)
+
+  25 Aug 2012; Jeroen Roovers <jer@gentoo.org> +libevent-2.0.20.ebuild:
+  Version bump.
 
   19 Aug 2012; Raúl Porcel <armin76@gentoo.org> libevent-2.0.19.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #427126



1.1                  dev-libs/libevent/libevent-2.0.20.ebuild

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

Index: libevent-2.0.20.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v 1.1 2012/08/25 13:17:14 jer Exp $

EAPI="2"

inherit eutils libtool

MY_P="${P}-stable"

DESCRIPTION="A library to execute a function when a specific event occurs on a file descriptor"
HOMEPAGE="http://monkey.org/~provos/libevent/"
SRC_URI="mirror://sourceforge/levent/files/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+ssl static-libs test"

DEPEND="ssl? ( dev-libs/openssl )"
RDEPEND="
	${DEPEND}
	!<=dev-libs/9libs-1.0
"

S=${WORKDIR}/${MY_P}

src_prepare() {
	elibtoolize

	# don't waste time building tests/samples
	sed -i \
		-e 's|^\(SUBDIRS =.*\)sample test\(.*\)$|\1\2|' \
		Makefile.in || die "sed Makefile.in failed"
}

src_configure() {
	econf \
		$(use_enable static-libs static) \
		$(use_enable ssl openssl)
}

src_test() {
	emake -C test check | tee "${T}"/tests
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc README ChangeLog
	if ! use static-libs; then
		rm -f "${D}"/usr/lib*/libevent*.la
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.20.ebuild
@ 2012-10-11 14:59 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2012-10-11 14:59 UTC (permalink / raw
  To: gentoo-commits

jer         12/10/11 14:59:46

  Modified:             ChangeLog libevent-2.0.20.ebuild
  Log:
  Stable for HPPA (bug #437766).
  
  (Portage version: 2.2.0_alpha137/cvs/Linux x86_64)

Revision  Changes    Path
1.238                dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -r1.237 -r1.238
--- ChangeLog	10 Oct 2012 18:27:15 -0000	1.237
+++ ChangeLog	11 Oct 2012 14:59:46 -0000	1.238
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.237 2012/10/10 18:27:15 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.238 2012/10/11 14:59:46 jer Exp $
+
+  11 Oct 2012; Jeroen Roovers <jer@gentoo.org> libevent-2.0.20.ebuild:
+  Stable for HPPA (bug #437766).
 
   10 Oct 2012; Anthony G. Basile <blueness@gentoo.org> libevent-2.0.20.ebuild:
   stable arm ppc ppc64, bug #437766



1.4                  dev-libs/libevent/libevent-2.0.20.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?r1=1.3&r2=1.4

Index: libevent-2.0.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libevent-2.0.20.ebuild	10 Oct 2012 10:20:07 -0000	1.3
+++ libevent-2.0.20.ebuild	11 Oct 2012 14:59:46 -0000	1.4
@@ -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/libevent/libevent-2.0.20.ebuild,v 1.3 2012/10/10 10:20:07 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v 1.4 2012/10/11 14:59:46 jer Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+ssl static-libs test"
 
 DEPEND="ssl? ( dev-libs/openssl )"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.20.ebuild
@ 2012-10-17  2:59 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-10-17  2:59 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/10/17 02:59:51

  Modified:             ChangeLog libevent-2.0.20.ebuild
  Log:
  x86 stable wrt bug #437766
  
  (Portage version: 2.1.11.9/cvs/Linux i686)

Revision  Changes    Path
1.240                dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -r1.239 -r1.240
--- ChangeLog	15 Oct 2012 11:47:19 -0000	1.239
+++ ChangeLog	17 Oct 2012 02:59:51 -0000	1.240
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.239 2012/10/15 11:47:19 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.240 2012/10/17 02:59:51 phajdan.jr Exp $
+
+  17 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> libevent-2.0.20.ebuild:
+  x86 stable wrt bug #437766
 
   15 Oct 2012; Jeroen Roovers <jer@gentoo.org> libevent-2.1.1.ebuild:
   Readd ~x64-freebsd. Install more docs.



1.5                  dev-libs/libevent/libevent-2.0.20.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?r1=1.4&r2=1.5

Index: libevent-2.0.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libevent-2.0.20.ebuild	11 Oct 2012 14:59:46 -0000	1.4
+++ libevent-2.0.20.ebuild	17 Oct 2012 02:59:51 -0000	1.5
@@ -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/libevent/libevent-2.0.20.ebuild,v 1.4 2012/10/11 14:59:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v 1.5 2012/10/17 02:59:51 phajdan.jr Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+ssl static-libs test"
 
 DEPEND="ssl? ( dev-libs/openssl )"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.20.ebuild
@ 2012-10-20 16:39 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2012-10-20 16:39 UTC (permalink / raw
  To: gentoo-commits

armin76     12/10/20 16:39:16

  Modified:             ChangeLog libevent-2.0.20.ebuild
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #437766
  
  (Portage version: 2.1.11.16/cvs/Linux ia64)

Revision  Changes    Path
1.241                dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -r1.240 -r1.241
--- ChangeLog	17 Oct 2012 02:59:51 -0000	1.240
+++ ChangeLog	20 Oct 2012 16:39:16 -0000	1.241
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.240 2012/10/17 02:59:51 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.241 2012/10/20 16:39:16 armin76 Exp $
+
+  20 Oct 2012; Raúl Porcel <armin76@gentoo.org> libevent-2.0.20.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #437766
 
   17 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> libevent-2.0.20.ebuild:
   x86 stable wrt bug #437766



1.6                  dev-libs/libevent/libevent-2.0.20.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?r1=1.5&r2=1.6

Index: libevent-2.0.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libevent-2.0.20.ebuild	17 Oct 2012 02:59:51 -0000	1.5
+++ libevent-2.0.20.ebuild	20 Oct 2012 16:39:16 -0000	1.6
@@ -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/libevent/libevent-2.0.20.ebuild,v 1.5 2012/10/17 02:59:51 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v 1.6 2012/10/20 16:39:16 armin76 Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+ssl static-libs test"
 
 DEPEND="ssl? ( dev-libs/openssl )"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.20.ebuild
@ 2012-11-16 22:15 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-16 22:15 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/16 22:15:02

  Modified:             ChangeLog libevent-2.0.20.ebuild
  Log:
  Stable for amd64, wrt bug #437766
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.242                dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.241
retrieving revision 1.242
diff -u -r1.241 -r1.242
--- ChangeLog	20 Oct 2012 16:39:16 -0000	1.241
+++ ChangeLog	16 Nov 2012 22:15:02 -0000	1.242
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.241 2012/10/20 16:39:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.242 2012/11/16 22:15:02 ago Exp $
+
+  16 Nov 2012; Agostino Sarubbo <ago@gentoo.org> libevent-2.0.20.ebuild:
+  Stable for amd64, wrt bug #437766
 
   20 Oct 2012; Raúl Porcel <armin76@gentoo.org> libevent-2.0.20.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #437766



1.7                  dev-libs/libevent/libevent-2.0.20.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild?r1=1.6&r2=1.7

Index: libevent-2.0.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libevent-2.0.20.ebuild	20 Oct 2012 16:39:16 -0000	1.6
+++ libevent-2.0.20.ebuild	16 Nov 2012 22:15:02 -0000	1.7
@@ -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/libevent/libevent-2.0.20.ebuild,v 1.6 2012/10/20 16:39:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.20.ebuild,v 1.7 2012/11/16 22:15:02 ago Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+ssl static-libs test"
 
 DEPEND="ssl? ( dev-libs/openssl )"





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

end of thread, other threads:[~2012-11-16 22:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-25 13:17 [gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.20.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2012-10-11 14:59 Jeroen Roovers (jer)
2012-10-17  2:59 PaweA Hajdan (phajdan.jr)
2012-10-20 16:39 Raul Porcel (armin76)
2012-11-16 22:15 Agostino Sarubbo (ago)

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