public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-06-07  5:28 Eray Aslan (eras)
  0 siblings, 0 replies; 8+ messages in thread
From: Eray Aslan (eras) @ 2011-06-07  5:28 UTC (permalink / raw
  To: gentoo-commits

eras        11/06/07 05:28:13

  Modified:             ChangeLog
  Added:                fetchmail-6.3.20.ebuild
  Log:
  Version bump - security bug #369403
  
  (Portage version: 2.1.10/cvs/Linux x86_64)

Revision  Changes    Path
1.208                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog	28 May 2011 13:26:31 -0000	1.207
+++ ChangeLog	7 Jun 2011 05:28:13 -0000	1.208
@@ -1,6 +1,11 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.207 2011/05/28 13:26:31 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.208 2011/06/07 05:28:13 eras Exp $
+
+*fetchmail-6.3.20 (07 Jun 2011)
+
+  07 Jun 2011; Eray Aslan <eras@gentoo.org> +fetchmail-6.3.20.ebuild:
+  Version bump - security bug #369403
 
   28 May 2011; Eray Aslan <eras@gentoo.org> -fetchmail-6.3.17.ebuild,
   -fetchmail-6.3.17-r1.ebuild, -fetchmail-6.3.18.ebuild:



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

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

Index: fetchmail-6.3.20.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.1 2011/06/07 05:28:13 eras Exp $

EAPI=3

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

inherit python eutils

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"
IUSE="ssl nls kerberos hesiod tk"

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_FreeBSD? ( sys-libs/e2fsprogs-libs )"
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() {
	# dont compile during src_install
	: > "${S}"/py-compile
}

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

src_install() {
	# dir for pidfile
	keepdir /var/run/${PN} || die
	fowners ${PN}:${PN} /var/run/${PN} || die

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

	emake DESTDIR="${D}" install || die

	dohtml *.html

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

	newinitd "${FILESDIR}"/fetchmail.new fetchmail || die
	newconfd "${FILESDIR}"/conf.d-fetchmail fetchmail || die

	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: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-06-07 14:30 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-06-07 14:30 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/06/07 14:30:05

  Modified:             ChangeLog fetchmail-6.3.20.ebuild
  Log:
  ppc/ppc64 stable wrt #369403
  
  (Portage version: 2.2.0_alpha36/cvs/Linux x86_64)

Revision  Changes    Path
1.209                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog	7 Jun 2011 05:28:13 -0000	1.208
+++ ChangeLog	7 Jun 2011 14:30:05 -0000	1.209
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.208 2011/06/07 05:28:13 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.209 2011/06/07 14:30:05 xarthisius Exp $
+
+  07 Jun 2011; Kacper Kowalik <xarthisius@gentoo.org> fetchmail-6.3.20.ebuild:
+  ppc/ppc64 stable wrt #369403
 
 *fetchmail-6.3.20 (07 Jun 2011)
 



1.2                  net-mail/fetchmail/fetchmail-6.3.20.ebuild

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

Index: fetchmail-6.3.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fetchmail-6.3.20.ebuild	7 Jun 2011 05:28:13 -0000	1.1
+++ fetchmail-6.3.20.ebuild	7 Jun 2011 14:30:05 -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-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.1 2011/06/07 05:28:13 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.2 2011/06/07 14:30:05 xarthisius Exp $
 
 EAPI=3
 
@@ -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"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="ssl nls kerberos hesiod tk"
 
 RDEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-06-07 17:02 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2011-06-07 17:02 UTC (permalink / raw
  To: gentoo-commits

jer         11/06/07 17:02:04

  Modified:             ChangeLog fetchmail-6.3.20.ebuild
  Log:
  Stable for HPPA (bug #369403).
  
  (Portage version: 2.2.0_alpha38/cvs/Linux x86_64)

Revision  Changes    Path
1.210                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog	7 Jun 2011 14:30:05 -0000	1.209
+++ ChangeLog	7 Jun 2011 17:02:03 -0000	1.210
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.209 2011/06/07 14:30:05 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.210 2011/06/07 17:02:03 jer Exp $
+
+  07 Jun 2011; Jeroen Roovers <jer@gentoo.org> fetchmail-6.3.20.ebuild:
+  Stable for HPPA (bug #369403).
 
   07 Jun 2011; Kacper Kowalik <xarthisius@gentoo.org> fetchmail-6.3.20.ebuild:
   ppc/ppc64 stable wrt #369403



1.3                  net-mail/fetchmail/fetchmail-6.3.20.ebuild

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

Index: fetchmail-6.3.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fetchmail-6.3.20.ebuild	7 Jun 2011 14:30:05 -0000	1.2
+++ fetchmail-6.3.20.ebuild	7 Jun 2011 17:02:03 -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-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.2 2011/06/07 14:30:05 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.3 2011/06/07 17:02:03 jer Exp $
 
 EAPI=3
 
@@ -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"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="ssl nls kerberos hesiod tk"
 
 RDEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-06-07 18:40 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-06-07 18:40 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/06/07 18:40:04

  Modified:             ChangeLog fetchmail-6.3.20.ebuild
  Log:
  Stable on amd64 wrt bug #369403
  
  (Portage version: 2.1.9.49/cvs/Linux x86_64)

Revision  Changes    Path
1.211                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog	7 Jun 2011 17:02:03 -0000	1.210
+++ ChangeLog	7 Jun 2011 18:40:04 -0000	1.211
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.210 2011/06/07 17:02:03 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.211 2011/06/07 18:40:04 hwoarang Exp $
+
+  07 Jun 2011; Markos Chandras <hwoarang@gentoo.org> fetchmail-6.3.20.ebuild:
+  Stable on amd64 wrt bug #369403
 
   07 Jun 2011; Jeroen Roovers <jer@gentoo.org> fetchmail-6.3.20.ebuild:
   Stable for HPPA (bug #369403).



1.4                  net-mail/fetchmail/fetchmail-6.3.20.ebuild

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

Index: fetchmail-6.3.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fetchmail-6.3.20.ebuild	7 Jun 2011 17:02:03 -0000	1.3
+++ fetchmail-6.3.20.ebuild	7 Jun 2011 18:40:04 -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-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.3 2011/06/07 17:02:03 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.4 2011/06/07 18:40:04 hwoarang Exp $
 
 EAPI=3
 
@@ -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"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="ssl nls kerberos hesiod tk"
 
 RDEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-06-08  9:21 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 8+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-06-08  9:21 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/06/08 09:21:22

  Modified:             ChangeLog fetchmail-6.3.20.ebuild
  Log:
  x86 stable wrt security bug #369403
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.212                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog	7 Jun 2011 18:40:04 -0000	1.211
+++ ChangeLog	8 Jun 2011 09:21:22 -0000	1.212
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.211 2011/06/07 18:40:04 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.212 2011/06/08 09:21:22 phajdan.jr Exp $
+
+  08 Jun 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> fetchmail-6.3.20.ebuild:
+  x86 stable wrt security bug #369403
 
   07 Jun 2011; Markos Chandras <hwoarang@gentoo.org> fetchmail-6.3.20.ebuild:
   Stable on amd64 wrt bug #369403



1.5                  net-mail/fetchmail/fetchmail-6.3.20.ebuild

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

Index: fetchmail-6.3.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fetchmail-6.3.20.ebuild	7 Jun 2011 18:40:04 -0000	1.4
+++ fetchmail-6.3.20.ebuild	8 Jun 2011 09:21:22 -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-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.4 2011/06/07 18:40:04 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.5 2011/06/08 09:21:22 phajdan.jr Exp $
 
 EAPI=3
 
@@ -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"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="ssl nls kerberos hesiod tk"
 
 RDEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-06-11 12:12 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2011-06-11 12:12 UTC (permalink / raw
  To: gentoo-commits

maekke      11/06/11 12:12:50

  Modified:             ChangeLog fetchmail-6.3.20.ebuild
  Log:
  arm stable, bug #369403
  
  (Portage version: 2.1.10/cvs/Linux i686)

Revision  Changes    Path
1.213                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog	8 Jun 2011 09:21:22 -0000	1.212
+++ ChangeLog	11 Jun 2011 12:12:49 -0000	1.213
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.212 2011/06/08 09:21:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.213 2011/06/11 12:12:49 maekke Exp $
+
+  11 Jun 2011; Markus Meier <maekke@gentoo.org> fetchmail-6.3.20.ebuild:
+  arm stable, bug #369403
 
   08 Jun 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> fetchmail-6.3.20.ebuild:
   x86 stable wrt security bug #369403



1.6                  net-mail/fetchmail/fetchmail-6.3.20.ebuild

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

Index: fetchmail-6.3.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fetchmail-6.3.20.ebuild	8 Jun 2011 09:21:22 -0000	1.5
+++ fetchmail-6.3.20.ebuild	11 Jun 2011 12:12:49 -0000	1.6
@@ -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-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.5 2011/06/08 09:21:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.6 2011/06/11 12:12:49 maekke Exp $
 
 EAPI=3
 
@@ -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"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="ssl nls kerberos hesiod tk"
 
 RDEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-06-12 11:49 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2011-06-12 11:49 UTC (permalink / raw
  To: gentoo-commits

armin76     11/06/12 11:49:59

  Modified:             ChangeLog fetchmail-6.3.20.ebuild
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #369403
  
  (Portage version: 2.1.10/cvs/Linux ia64)

Revision  Changes    Path
1.214                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -r1.213 -r1.214
--- ChangeLog	11 Jun 2011 12:12:49 -0000	1.213
+++ ChangeLog	12 Jun 2011 11:49:58 -0000	1.214
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.213 2011/06/11 12:12:49 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.214 2011/06/12 11:49:58 armin76 Exp $
+
+  12 Jun 2011; Raúl Porcel <armin76@gentoo.org> fetchmail-6.3.20.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #369403
 
   11 Jun 2011; Markus Meier <maekke@gentoo.org> fetchmail-6.3.20.ebuild:
   arm stable, bug #369403



1.7                  net-mail/fetchmail/fetchmail-6.3.20.ebuild

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

Index: fetchmail-6.3.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fetchmail-6.3.20.ebuild	11 Jun 2011 12:12:49 -0000	1.6
+++ fetchmail-6.3.20.ebuild	12 Jun 2011 11:49:58 -0000	1.7
@@ -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-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.6 2011/06/11 12:12:49 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.20.ebuild,v 1.7 2011/06/12 11:49:58 armin76 Exp $
 
 EAPI=3
 
@@ -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"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 IUSE="ssl nls kerberos hesiod tk"
 
 RDEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild
@ 2011-11-06 20:09 Eray Aslan (eras)
  0 siblings, 0 replies; 8+ messages in thread
From: Eray Aslan (eras) @ 2011-11-06 20:09 UTC (permalink / raw
  To: gentoo-commits

eras        11/11/06 20:09:40

  Modified:             ChangeLog
  Removed:              fetchmail-6.3.20.ebuild
  Log:
  remove old
  
  (Portage version: 2.1.10.32/cvs/Linux x86_64)

Revision  Changes    Path
1.223                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog	27 Aug 2011 11:30:50 -0000	1.222
+++ ChangeLog	6 Nov 2011 20:09:40 -0000	1.223
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.222 2011/08/27 11:30:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.223 2011/11/06 20:09:40 eras Exp $
+
+  06 Nov 2011; Eray Aslan <eras@gentoo.org> -fetchmail-6.3.20.ebuild:
+  remove old
 
   27 Aug 2011; Raúl Porcel <armin76@gentoo.org> fetchmail-6.3.21.ebuild:
   alpha/arm/ia64/s390/sh/sparc stable wrt #380453






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

end of thread, other threads:[~2011-11-06 20:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-07 14:30 [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.20.ebuild Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2011-11-06 20:09 Eray Aslan (eras)
2011-06-12 11:49 Raul Porcel (armin76)
2011-06-11 12:12 Markus Meier (maekke)
2011-06-08  9:21 PaweA Hajdan (phajdan.jr)
2011-06-07 18:40 Markos Chandras (hwoarang)
2011-06-07 17:02 Jeroen Roovers (jer)
2011-06-07  5:28 Eray Aslan (eras)

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