public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-08-30 17:27 Tim Harder (radhermit)
  0 siblings, 0 replies; 8+ messages in thread
From: Tim Harder (radhermit) @ 2012-08-30 17:27 UTC (permalink / raw
  To: gentoo-commits

radhermit    12/08/30 17:27:23

  Modified:             ChangeLog
  Added:                fetchmail-6.3.22.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)

Revision  Changes    Path
1.226                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.226&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.226&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.225&r2=1.226

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.225
retrieving revision 1.226
diff -u -r1.225 -r1.226
--- ChangeLog	16 Jun 2012 11:06:27 -0000	1.225
+++ ChangeLog	30 Aug 2012 17:27:23 -0000	1.226
@@ -1,6 +1,11 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.225 2012/06/16 11:06:27 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.226 2012/08/30 17:27:23 radhermit Exp $
+
+*fetchmail-6.3.22 (30 Aug 2012)
+
+  30 Aug 2012; Tim Harder <radhermit@gentoo.org> +fetchmail-6.3.22.ebuild:
+  Version bump.
 
   16 Jun 2012; Fabian Groffen <grobian@gentoo.org> fetchmail-6.3.21.ebuild:
   Added Prefix keywords, fixed for Prefix



1.1                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.1 2012/08/30 17:27:23 radhermit Exp $

EAPI=4

PYTHON_DEPEND="tk? 2"
PYTHON_USE_WITH_OPT="tk"
PYTHON_USE_WITH="tk"

inherit python user

DESCRIPTION="the legendary remote-mail retrieval and forwarding utility"
HOMEPAGE="http://fetchmail.berlios.de"
SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"

LICENSE="GPL-2 public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="ssl nls kerberos hesiod tk socks"

RDEPEND="hesiod? ( net-dns/hesiod )
	ssl? ( >=dev-libs/openssl-0.9.6 )
	kerberos? ( virtual/krb5 >=dev-libs/openssl-0.9.6 )
	nls? ( virtual/libintl )
	!elibc_glibc? ( sys-libs/e2fsprogs-libs )
	socks? ( net-proxy/dante )"
DEPEND="${RDEPEND}
	sys-devel/flex
	nls? ( sys-devel/gettext )"

pkg_setup() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
	if use tk; then
		python_set_active_version 2
		python_pkg_setup
	fi
}

src_prepare() {
	# don't compile during src_install
	: > "${S}"/py-compile
}

src_configure() {
	if use tk ; then
		export PYTHON=$(PYTHON -a)
	else
		export PYTHON=:
	fi
	econf \
		--enable-RPA \
		--enable-NTLM \
		--enable-SDPS \
		$(use_enable nls) \
		$(use_with ssl ssl "${EPREFIX}/usr") \
		$(use kerberos && echo "--with-ssl=${EPREFIX}/usr") \
		$(use_with kerberos gssapi) \
		$(use_with kerberos kerberos5) \
		$(use_with hesiod) \
		$(use_with socks)
}

src_install() {
	# fetchmail's homedir (holds fetchmail's .fetchids)
	keepdir /var/lib/${PN}
	fowners ${PN}:${PN} /var/lib/${PN}
	fperms 700 /var/lib/${PN}

	emake DESTDIR="${D}" install

	dohtml *.html

	dodoc FAQ FEATURES NEWS NOTES README README.NTLM README.SSL* TODO

	newinitd "${FILESDIR}"/fetchmail.initd fetchmail
	newconfd "${FILESDIR}"/fetchmail.confd fetchmail

	docinto contrib
	local f
	for f in contrib/* ; do
		[ -f "${f}" ] && dodoc "${f}"
	done
}

pkg_postinst() {
	use tk && python_mod_optimize fetchmailconf.py

	elog "Please see /etc/conf.d/fetchmail if you want to adjust"
	elog "the polling delay used by the fetchmail init script."
}

pkg_postrm() {
	use tk && python_mod_cleanup fetchmailconf.py
}





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-09-04 15:45 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2012-09-04 15:45 UTC (permalink / raw
  To: gentoo-commits

jer         12/09/04 15:45:27

  Modified:             fetchmail-6.3.22.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #431284).
  
  (Portage version: 2.2.0_alpha124/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fetchmail-6.3.22.ebuild	30 Aug 2012 17:27:23 -0000	1.1
+++ fetchmail-6.3.22.ebuild	4 Sep 2012 15:45:26 -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/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.1 2012/08/30 17:27:23 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.2 2012/09/04 15:45:26 jer Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl nls kerberos hesiod tk socks"
 
 RDEPEND="hesiod? ( net-dns/hesiod )



1.228                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.228&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.228&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.227&r2=1.228

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -r1.227 -r1.228
--- ChangeLog	30 Aug 2012 17:32:34 -0000	1.227
+++ ChangeLog	4 Sep 2012 15:45:26 -0000	1.228
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.227 2012/08/30 17:32:34 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.228 2012/09/04 15:45:26 jer Exp $
+
+  04 Sep 2012; Jeroen Roovers <jer@gentoo.org> fetchmail-6.3.22.ebuild:
+  Stable for HPPA (bug #431284).
 
   30 Aug 2012; Tim Harder <radhermit@gentoo.org> fetchmail-6.3.21.ebuild:
   Inherit user eclass and add quotes to appease repoman.





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-09-06 16:00 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-09-06 16:00 UTC (permalink / raw
  To: gentoo-commits

ago         12/09/06 16:00:55

  Modified:             fetchmail-6.3.22.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #431284
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fetchmail-6.3.22.ebuild	4 Sep 2012 15:45:26 -0000	1.2
+++ fetchmail-6.3.22.ebuild	6 Sep 2012 16:00:55 -0000	1.3
@@ -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-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.2 2012/09/04 15:45:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.3 2012/09/06 16:00:55 ago Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl nls kerberos hesiod tk socks"
 
 RDEPEND="hesiod? ( net-dns/hesiod )



1.229                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.229&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.229&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.228&r2=1.229

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.228
retrieving revision 1.229
diff -u -r1.228 -r1.229
--- ChangeLog	4 Sep 2012 15:45:26 -0000	1.228
+++ ChangeLog	6 Sep 2012 16:00:55 -0000	1.229
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.228 2012/09/04 15:45:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.229 2012/09/06 16:00:55 ago Exp $
+
+  06 Sep 2012; Agostino Sarubbo <ago@gentoo.org> fetchmail-6.3.22.ebuild:
+  Stable for amd64, wrt bug #431284
 
   04 Sep 2012; Jeroen Roovers <jer@gentoo.org> fetchmail-6.3.22.ebuild:
   Stable for HPPA (bug #431284).





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-09-13  7:20 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 8+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-09-13  7:20 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/09/13 07:20:56

  Modified:             fetchmail-6.3.22.ebuild ChangeLog
  Log:
  x86 stable wrt bug #431284
  
  (Portage version: 2.1.11.9/cvs/Linux i686)

Revision  Changes    Path
1.4                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fetchmail-6.3.22.ebuild	6 Sep 2012 16:00:55 -0000	1.3
+++ fetchmail-6.3.22.ebuild	13 Sep 2012 07:20:56 -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/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.3 2012/09/06 16:00:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.4 2012/09/13 07:20:56 phajdan.jr Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl nls kerberos hesiod tk socks"
 
 RDEPEND="hesiod? ( net-dns/hesiod )



1.230                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.230&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.230&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.229&r2=1.230

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -r1.229 -r1.230
--- ChangeLog	6 Sep 2012 16:00:55 -0000	1.229
+++ ChangeLog	13 Sep 2012 07:20:56 -0000	1.230
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.229 2012/09/06 16:00:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.230 2012/09/13 07:20:56 phajdan.jr Exp $
+
+  13 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> fetchmail-6.3.22.ebuild:
+  x86 stable wrt bug #431284
 
   06 Sep 2012; Agostino Sarubbo <ago@gentoo.org> fetchmail-6.3.22.ebuild:
   Stable for amd64, wrt bug #431284





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-09-14 18:49 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2012-09-14 18:49 UTC (permalink / raw
  To: gentoo-commits

maekke      12/09/14 18:49:08

  Modified:             fetchmail-6.3.22.ebuild ChangeLog
  Log:
  arm stable, bug #431284
  
  (Portage version: 2.1.11.13/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fetchmail-6.3.22.ebuild	13 Sep 2012 07:20:56 -0000	1.4
+++ fetchmail-6.3.22.ebuild	14 Sep 2012 18:49:07 -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/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.4 2012/09/13 07:20:56 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.5 2012/09/14 18:49:07 maekke Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl nls kerberos hesiod tk socks"
 
 RDEPEND="hesiod? ( net-dns/hesiod )



1.231                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.231&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.231&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.230&r2=1.231

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.230
retrieving revision 1.231
diff -u -r1.230 -r1.231
--- ChangeLog	13 Sep 2012 07:20:56 -0000	1.230
+++ ChangeLog	14 Sep 2012 18:49:07 -0000	1.231
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.230 2012/09/13 07:20:56 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.231 2012/09/14 18:49:07 maekke Exp $
+
+  14 Sep 2012; Markus Meier <maekke@gentoo.org> fetchmail-6.3.22.ebuild:
+  arm stable, bug #431284
 
   13 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> fetchmail-6.3.22.ebuild:
   x86 stable wrt bug #431284





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-09-23 17:33 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-09-23 17:33 UTC (permalink / raw
  To: gentoo-commits

armin76     12/09/23 17:33:08

  Modified:             fetchmail-6.3.22.ebuild ChangeLog
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #431284
  
  (Portage version: 2.1.11.16/cvs/Linux ia64)

Revision  Changes    Path
1.6                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fetchmail-6.3.22.ebuild	14 Sep 2012 18:49:07 -0000	1.5
+++ fetchmail-6.3.22.ebuild	23 Sep 2012 17:33:07 -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/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.5 2012/09/14 18:49:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.6 2012/09/23 17:33:07 armin76 Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl nls kerberos hesiod tk socks"
 
 RDEPEND="hesiod? ( net-dns/hesiod )



1.232                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.232&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.232&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.231&r2=1.232

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.231
retrieving revision 1.232
diff -u -r1.231 -r1.232
--- ChangeLog	14 Sep 2012 18:49:07 -0000	1.231
+++ ChangeLog	23 Sep 2012 17:33:07 -0000	1.232
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.231 2012/09/14 18:49:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.232 2012/09/23 17:33:07 armin76 Exp $
+
+  23 Sep 2012; Raúl Porcel <armin76@gentoo.org> fetchmail-6.3.22.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #431284
 
   14 Sep 2012; Markus Meier <maekke@gentoo.org> fetchmail-6.3.22.ebuild:
   arm stable, bug #431284





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-09-26 16:00 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-09-26 16:00 UTC (permalink / raw
  To: gentoo-commits

xarthisius    12/09/26 16:00:06

  Modified:             fetchmail-6.3.22.ebuild ChangeLog
  Log:
  ppc64 stable wrt #431284
  
  (Portage version: 2.2.0_alpha131/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fetchmail-6.3.22.ebuild	23 Sep 2012 17:33:07 -0000	1.6
+++ fetchmail-6.3.22.ebuild	26 Sep 2012 16:00:06 -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-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.6 2012/09/23 17:33:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.7 2012/09/26 16:00:06 xarthisius Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl nls kerberos hesiod tk socks"
 
 RDEPEND="hesiod? ( net-dns/hesiod )



1.233                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -r1.232 -r1.233
--- ChangeLog	23 Sep 2012 17:33:07 -0000	1.232
+++ ChangeLog	26 Sep 2012 16:00:06 -0000	1.233
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.232 2012/09/23 17:33:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.233 2012/09/26 16:00:06 xarthisius Exp $
+
+  26 Sep 2012; Kacper Kowalik <xarthisius@gentoo.org> fetchmail-6.3.22.ebuild:
+  ppc64 stable wrt #431284
 
   23 Sep 2012; Raúl Porcel <armin76@gentoo.org> fetchmail-6.3.22.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #431284





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog
@ 2012-10-05 15:53 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-10-05 15:53 UTC (permalink / raw
  To: gentoo-commits

ranger      12/10/05 15:53:15

  Modified:             fetchmail-6.3.22.ebuild ChangeLog
  Log:
  Marking fetchmail-6.3.22 ppc for bug 431284
  
  (Portage version: 2.1.10.65/cvs/Linux ppc64)

Revision  Changes    Path
1.8                  net-mail/fetchmail/fetchmail-6.3.22.ebuild

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

Index: fetchmail-6.3.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- fetchmail-6.3.22.ebuild	26 Sep 2012 16:00:06 -0000	1.7
+++ fetchmail-6.3.22.ebuild	5 Oct 2012 15:53:15 -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-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.7 2012/09/26 16:00:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.22.ebuild,v 1.8 2012/10/05 15:53:15 ranger Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl nls kerberos hesiod tk socks"
 
 RDEPEND="hesiod? ( net-dns/hesiod )



1.234                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.234&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.234&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.233&r2=1.234

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog	26 Sep 2012 16:00:06 -0000	1.233
+++ ChangeLog	5 Oct 2012 15:53:15 -0000	1.234
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.233 2012/09/26 16:00:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.234 2012/10/05 15:53:15 ranger Exp $
+
+  05 Oct 2012; Brent Baude <ranger@gentoo.org> fetchmail-6.3.22.ebuild:
+  Marking fetchmail-6.3.22 ppc for bug 431284
 
   26 Sep 2012; Kacper Kowalik <xarthisius@gentoo.org> fetchmail-6.3.22.ebuild:
   ppc64 stable wrt #431284





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

end of thread, other threads:[~2012-10-05 15:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-14 18:49 [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.22.ebuild ChangeLog Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2012-10-05 15:53 Brent Baude (ranger)
2012-09-26 16:00 Kacper Kowalik (xarthisius)
2012-09-23 17:33 Raul Porcel (armin76)
2012-09-13  7:20 PaweA Hajdan (phajdan.jr)
2012-09-06 16:00 Agostino Sarubbo (ago)
2012-09-04 15:45 Jeroen Roovers (jer)
2012-08-30 17:27 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