public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2011-07-13  8:15 Tim Harder (radhermit)
  0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder (radhermit) @ 2011-07-13  8:15 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/07/13 08:15:12

  Modified:             ChangeLog
  Added:                libetpan-1.1.ebuild
  Log:
  Version bump (bug #375003). Update to EAPI 4 and add static-libs use flag.
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.87                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	2 Jul 2011 22:14:00 -0000	1.86
+++ ChangeLog	13 Jul 2011 08:15:12 -0000	1.87
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.86 2011/07/02 22:14:00 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.87 2011/07/13 08:15:12 radhermit Exp $
+
+*libetpan-1.1 (13 Jul 2011)
+
+  13 Jul 2011; Tim Harder <radhermit@gentoo.org> +libetpan-1.1.ebuild:
+  Version bump (bug #375003). Update to EAPI 4 and add static-libs use flag.
 
   02 Jul 2011; Markos Chandras <hwoarang@gentoo.org> libetpan-1.0.ebuild:
   Stable on amd64 wrt bug #373687



1.1                  net-libs/libetpan/libetpan-1.1.ebuild

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

Index: libetpan-1.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.1 2011/07/13 08:15:12 radhermit Exp $

EAPI="4"

inherit autotools eutils

DESCRIPTION="A portable, efficient middleware for different kinds of mail access."
HOMEPAGE="http://libetpan.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"

DEPEND="berkdb? ( sys-libs/db )
	gnutls? ( net-libs/gnutls )
	!gnutls? ( ssl? ( dev-libs/openssl ) )
	sasl? ( dev-libs/cyrus-sasl )
	liblockfile? ( net-libs/liblockfile )"
RDEPEND="${DEPEND}"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.0-nonnull.patch
	# respect CFLAGS - bug #373723
	sed -i -e "s/-O2 -g//" configure.ac
	eautoreconf
}

src_configure() {
	local sslconf

	if use ssl; then
		if use gnutls; then
			sslconf="--with-gnutls --without-openssl"
		else
			sslconf="--without-gnutls --with-openssl"
		fi
	else
		if use gnutls; then
			sslconf="--with-gnutls --without-openssl"
		else
			sslconf="--without-gnutls --without-openssl"
		fi
	fi

	# in Prefix emake uses SHELL=${BASH}, export CONFIG_SHELL to the same so
	# libtool recognises it as valid shell (bug #300211)
	use prefix && export CONFIG_SHELL=${BASH}
	# The configure script contains an error, in that it doesn't check the
	# argument of --enable-{debug,optim}, hence --disable-debug results in
	# --enable-debug=no, which isn't checked and debugging flags are blindly
	# injected.  So, avoid passing --disable-debug when we don't need it.
	econf \
		$(use debug && echo --enable-debug) \
		$(use_enable berkdb db) \
		$(use_with sasl) \
		$(use_enable ipv6) \
		$(use_enable liblockfile lockfile) \
		$(use_enable static-libs static) \
		${sslconf}
}

src_install() {
	default
	use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
}

pkg_postinst() {
	echo
	ewarn "The soname for libetpan has changed after libetpan-1.0."
	ewarn "If you have upgraded from that or earlier version, it is recommended to run"
	ewarn "revdep-rebuild to fix any linking errors caused by this change."
	echo
}






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2011-07-18  4:23 Tim Harder (radhermit)
  0 siblings, 0 replies; 10+ messages in thread
From: Tim Harder (radhermit) @ 2011-07-18  4:23 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/07/18 04:23:38

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  Update soname warning.
  
  (Portage version: 2.2.0_alpha45/cvs/Linux x86_64)

Revision  Changes    Path
1.89                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	17 Jul 2011 14:37:01 -0000	1.88
+++ ChangeLog	18 Jul 2011 04:23:38 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.88 2011/07/17 14:37:01 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.89 2011/07/18 04:23:38 radhermit Exp $
+
+  18 Jul 2011; Tim Harder <radhermit@gentoo.org> libetpan-1.1.ebuild:
+  Update soname warning.
 
   17 Jul 2011; Markus Meier <maekke@gentoo.org> libetpan-1.0.ebuild:
   x86 stable, bug #373687



1.2                  net-libs/libetpan/libetpan-1.1.ebuild

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

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libetpan-1.1.ebuild	13 Jul 2011 08:15:12 -0000	1.1
+++ libetpan-1.1.ebuild	18 Jul 2011 04:23:38 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.1 2011/07/13 08:15:12 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.2 2011/07/18 04:23:38 radhermit Exp $
 
 EAPI="4"
 
@@ -70,7 +70,7 @@
 
 pkg_postinst() {
 	echo
-	ewarn "The soname for libetpan has changed after libetpan-1.0."
+	ewarn "The soname for libetpan has changed after libetpan-1.1."
 	ewarn "If you have upgraded from that or earlier version, it is recommended to run"
 	ewarn "revdep-rebuild to fix any linking errors caused by this change."
 	echo






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2011-11-22 16:11 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 10+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-11-22 16:11 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/11/22 16:11:10

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  x86 stable wrt bug #391109
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.94                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	11 Aug 2011 19:03:53 -0000	1.93
+++ ChangeLog	22 Nov 2011 16:11:10 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.93 2011/08/11 19:03:53 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.94 2011/11/22 16:11:10 phajdan.jr Exp $
+
+  22 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> libetpan-1.1.ebuild:
+  x86 stable wrt bug #391109
 
   11 Aug 2011; Eray Aslan <eras@gentoo.org> -libetpan-0.57.ebuild,
   -libetpan-0.57-r1.ebuild:



1.3                  net-libs/libetpan/libetpan-1.1.ebuild

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

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libetpan-1.1.ebuild	18 Jul 2011 04:23:38 -0000	1.2
+++ libetpan-1.1.ebuild	22 Nov 2011 16:11:10 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.2 2011/07/18 04:23:38 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.3 2011/11/22 16:11:10 phajdan.jr Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2011-11-22 19:43 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2011-11-22 19:43 UTC (permalink / raw
  To: gentoo-commits

jer         11/11/22 19:43:20

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  Stable for HPPA (bug #391109).
  
  (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)

Revision  Changes    Path
1.95                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.94&r2=1.95

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	22 Nov 2011 16:11:10 -0000	1.94
+++ ChangeLog	22 Nov 2011 19:43:20 -0000	1.95
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.94 2011/11/22 16:11:10 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.95 2011/11/22 19:43:20 jer Exp $
+
+  22 Nov 2011; Jeroen Roovers <jer@gentoo.org> libetpan-1.1.ebuild:
+  Stable for HPPA (bug #391109).
 
   22 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> libetpan-1.1.ebuild:
   x86 stable wrt bug #391109



1.4                  net-libs/libetpan/libetpan-1.1.ebuild

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

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libetpan-1.1.ebuild	22 Nov 2011 16:11:10 -0000	1.3
+++ libetpan-1.1.ebuild	22 Nov 2011 19:43:20 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.3 2011/11/22 16:11:10 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.4 2011/11/22 19:43:20 jer Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2011-11-28 23:19 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 10+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-11-28 23:19 UTC (permalink / raw
  To: gentoo-commits

chainsaw    11/11/28 23:19:24

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El Lazkani & Agostino "ago" Sarubbo in bug #391109.
  
  (Portage version: 2.1.10.38/cvs/Linux x86_64)

Revision  Changes    Path
1.96                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.95&r2=1.96

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog	22 Nov 2011 19:43:20 -0000	1.95
+++ ChangeLog	28 Nov 2011 23:19:24 -0000	1.96
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.95 2011/11/22 19:43:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.96 2011/11/28 23:19:24 chainsaw Exp $
+
+  28 Nov 2011; Tony Vroon <chainsaw@gentoo.org> libetpan-1.1.ebuild:
+  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
+  Lazkani & Agostino "ago" Sarubbo in bug #391109.
 
   22 Nov 2011; Jeroen Roovers <jer@gentoo.org> libetpan-1.1.ebuild:
   Stable for HPPA (bug #391109).



1.5                  net-libs/libetpan/libetpan-1.1.ebuild

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

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libetpan-1.1.ebuild	22 Nov 2011 19:43:20 -0000	1.4
+++ libetpan-1.1.ebuild	28 Nov 2011 23:19:24 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.4 2011/11/22 19:43:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.5 2011/11/28 23:19:24 chainsaw Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2012-01-04 22:23 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2012-01-04 22:23 UTC (permalink / raw
  To: gentoo-commits

ranger      12/01/04 22:23:10

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  Marking libetpan-1.1 ppc for bug 391109
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.97                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	28 Nov 2011 23:19:24 -0000	1.96
+++ ChangeLog	4 Jan 2012 22:23:09 -0000	1.97
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.96 2011/11/28 23:19:24 chainsaw Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.97 2012/01/04 22:23:09 ranger Exp $
+
+  04 Jan 2012; Brent Baude <ranger@gentoo.org> libetpan-1.1.ebuild:
+  Marking libetpan-1.1 ppc for bug 391109
 
   28 Nov 2011; Tony Vroon <chainsaw@gentoo.org> libetpan-1.1.ebuild:
   Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El



1.6                  net-libs/libetpan/libetpan-1.1.ebuild

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

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libetpan-1.1.ebuild	28 Nov 2011 23:19:24 -0000	1.5
+++ libetpan-1.1.ebuild	4 Jan 2012 22:23:09 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.5 2011/11/28 23:19:24 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.6 2012/01/04 22:23:09 ranger Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 hppa ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2012-02-05 18:13 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2012-02-05 18:13 UTC (permalink / raw
  To: gentoo-commits

armin76     12/02/05 18:13:24

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  alpha/sparc stable wrt #391109
  
  (Portage version: 2.1.10.44/cvs/Linux ia64)

Revision  Changes    Path
1.98                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	4 Jan 2012 22:23:09 -0000	1.97
+++ ChangeLog	5 Feb 2012 18:13:24 -0000	1.98
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.97 2012/01/04 22:23:09 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.98 2012/02/05 18:13:24 armin76 Exp $
+
+  05 Feb 2012; Raúl Porcel <armin76@gentoo.org> libetpan-1.1.ebuild:
+  alpha/sparc stable wrt #391109
 
   04 Jan 2012; Brent Baude <ranger@gentoo.org> libetpan-1.1.ebuild:
   Marking libetpan-1.1 ppc for bug 391109



1.7                  net-libs/libetpan/libetpan-1.1.ebuild

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

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libetpan-1.1.ebuild	4 Jan 2012 22:23:09 -0000	1.6
+++ libetpan-1.1.ebuild	5 Feb 2012 18:13:24 -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/net-libs/libetpan/libetpan-1.1.ebuild,v 1.6 2012/01/04 22:23:09 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.7 2012/02/05 18:13:24 armin76 Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2012-03-02 21:19 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2012-03-02 21:19 UTC (permalink / raw
  To: gentoo-commits

ranger      12/03/02 21:19:21

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  Marking libetpan-1.1 ppc64 for bug 391109
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.99                 net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	5 Feb 2012 18:13:24 -0000	1.98
+++ ChangeLog	2 Mar 2012 21:19:21 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.98 2012/02/05 18:13:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.99 2012/03/02 21:19:21 ranger Exp $
+
+  02 Mar 2012; Brent Baude <ranger@gentoo.org> libetpan-1.1.ebuild:
+  Marking libetpan-1.1 ppc64 for bug 391109
 
   05 Feb 2012; Raúl Porcel <armin76@gentoo.org> libetpan-1.1.ebuild:
   alpha/sparc stable wrt #391109



1.8                  net-libs/libetpan/libetpan-1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?r1=1.7&r2=1.8

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libetpan-1.1.ebuild	5 Feb 2012 18:13:24 -0000	1.7
+++ libetpan-1.1.ebuild	2 Mar 2012 21:19:21 -0000	1.8
@@ -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/net-libs/libetpan/libetpan-1.1.ebuild,v 1.7 2012/02/05 18:13:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.8 2012/03/02 21:19:21 ranger Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2012-05-30 12:40 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 10+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-05-30 12:40 UTC (permalink / raw
  To: gentoo-commits

blueness    12/05/30 12:40:53

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  Keyword ~mips
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.100                net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	2 Mar 2012 21:19:21 -0000	1.99
+++ ChangeLog	30 May 2012 12:40:53 -0000	1.100
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.99 2012/03/02 21:19:21 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.100 2012/05/30 12:40:53 blueness Exp $
+
+  30 May 2012; Anthony G. Basile <blueness@gentoo.org> libetpan-1.1.ebuild:
+  Keyword ~mips
 
   02 Mar 2012; Brent Baude <ranger@gentoo.org> libetpan-1.1.ebuild:
   Marking libetpan-1.1 ppc64 for bug 391109



1.9                  net-libs/libetpan/libetpan-1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?r1=1.8&r2=1.9

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libetpan-1.1.ebuild	2 Mar 2012 21:19:21 -0000	1.8
+++ libetpan-1.1.ebuild	30 May 2012 12:40:53 -0000	1.9
@@ -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/net-libs/libetpan/libetpan-1.1.ebuild,v 1.8 2012/03/02 21:19:21 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.9 2012/05/30 12:40:53 blueness Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild
@ 2012-08-05 20:17 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 10+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-05 20:17 UTC (permalink / raw
  To: gentoo-commits

blueness    12/08/05 20:17:03

  Modified:             ChangeLog libetpan-1.1.ebuild
  Log:
  Keyword ~arm
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.101                net-libs/libetpan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	30 May 2012 12:40:53 -0000	1.100
+++ ChangeLog	5 Aug 2012 20:17:03 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libetpan
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.100 2012/05/30 12:40:53 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.101 2012/08/05 20:17:03 blueness Exp $
+
+  05 Aug 2012; Anthony G. Basile <blueness@gentoo.org> libetpan-1.1.ebuild:
+  Keyword ~arm
 
   30 May 2012; Anthony G. Basile <blueness@gentoo.org> libetpan-1.1.ebuild:
   Keyword ~mips



1.10                 net-libs/libetpan/libetpan-1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild?r1=1.9&r2=1.10

Index: libetpan-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libetpan-1.1.ebuild	30 May 2012 12:40:53 -0000	1.9
+++ libetpan-1.1.ebuild	5 Aug 2012 20:17:03 -0000	1.10
@@ -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/net-libs/libetpan/libetpan-1.1.ebuild,v 1.9 2012/05/30 12:40:53 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-1.1.ebuild,v 1.10 2012/08/05 20:17:03 blueness Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl static-libs"
 
 DEPEND="berkdb? ( sys-libs/db )





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

end of thread, other threads:[~2012-08-05 20:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-05 18:13 [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-1.1.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2012-08-05 20:17 Anthony G. Basile (blueness)
2012-05-30 12:40 Anthony G. Basile (blueness)
2012-03-02 21:19 Brent Baude (ranger)
2012-01-04 22:23 Brent Baude (ranger)
2011-11-28 23:19 Tony Vroon (chainsaw)
2011-11-22 19:43 Jeroen Roovers (jer)
2011-11-22 16:11 PaweA Hajdan (phajdan.jr)
2011-07-18  4:23 Tim Harder (radhermit)
2011-07-13  8:15 Tim Harder (radhermit)

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