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.14.ebuild ChangeLog
@ 2010-02-05  7:06 Torsten Veller (tove)
  0 siblings, 0 replies; 7+ messages in thread
From: Torsten Veller (tove) @ 2010-02-05  7:06 UTC (permalink / raw
  To: gentoo-commits

tove        10/02/05 07:06:41

  Modified:             ChangeLog
  Added:                fetchmail-6.3.14.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc62/cvs/Linux x86_64)

Revision  Changes    Path
1.176                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.176&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.176&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.175&r2=1.176

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog	30 Oct 2009 10:16:51 -0000	1.175
+++ ChangeLog	5 Feb 2010 07:06:41 -0000	1.176
@@ -1,6 +1,11 @@
 # ChangeLog for net-mail/fetchmail
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.175 2009/10/30 10:16:51 tove Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.176 2010/02/05 07:06:41 tove Exp $
+
+*fetchmail-6.3.14 (05 Feb 2010)
+
+  05 Feb 2010; Torsten Veller <tove@gentoo.org> +fetchmail-6.3.14.ebuild:
+  Version bump
 
   30 Oct 2009; Torsten Veller <tove@gentoo.org> fetchmail-6.3.13.ebuild:
   Run --with-ssl before --with-kerberos. Kerberos requires ssl. Heimdal is



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

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

Index: fetchmail-6.3.14.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.1 2010/02/05 07:06:41 tove Exp $

EAPI=2

inherit multilib 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/com_err )
	dev-lang/python[tk?]"
DEPEND="${RDEPEND}
	nls? ( sys-devel/gettext )"

RESTRICT=test

pkg_setup() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
}

src_prepare() {
	# this patch fixes bug #34788 (ticho@gentoo.org 2004-09-03)
	epatch "${FILESDIR}"/${PN}-6.2.5-broken-headers.patch

	# dont compile during src_install
	: > "${S}"/py-compile
}

src_configure() {
#	PYTHON=: \
		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) \
		${myconf} || die "Configuration failed."
}

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

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

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

	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() {
	python_version
	python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/fetchmailconf.py

	if ! has_version dev-lang/python[tk] ; then
		elog "Reinstall ${CATEGORY}/${PN} with USE=tk"
		elog "if you want to use fetchmailconf."
	fi

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

pkg_postrm() {
	python_version
	python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages
}






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.14.ebuild ChangeLog
@ 2010-03-04 13:43 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-03-04 13:43 UTC (permalink / raw
  To: gentoo-commits

fauli       10/03/04 13:43:39

  Modified:             fetchmail-6.3.14.ebuild ChangeLog
  Log:
  stable x86, security bug 307761
  (Portage version: 2.1.7.17/cvs/Linux i686)

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

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

Index: fetchmail-6.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fetchmail-6.3.14.ebuild	5 Feb 2010 07:06:41 -0000	1.1
+++ fetchmail-6.3.14.ebuild	4 Mar 2010 13:43:38 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.1 2010/02/05 07:06:41 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.2 2010/03/04 13:43:38 fauli Exp $
 
 EAPI=2
 
@@ -12,7 +12,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 )



1.177                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.177&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.177&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.176&r2=1.177

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog	5 Feb 2010 07:06:41 -0000	1.176
+++ ChangeLog	4 Mar 2010 13:43:38 -0000	1.177
@@ -1,6 +1,10 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.176 2010/02/05 07:06:41 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.177 2010/03/04 13:43:38 fauli Exp $
+
+  04 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
+  fetchmail-6.3.14.ebuild:
+  stable x86, security bug 307761
 
 *fetchmail-6.3.14 (05 Feb 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.14.ebuild ChangeLog
@ 2010-03-04 19:39 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-03-04 19:39 UTC (permalink / raw
  To: gentoo-commits

armin76     10/03/04 19:39:37

  Modified:             fetchmail-6.3.14.ebuild ChangeLog
  Log:
  alpha/arm/ia64/s390/sh/sparc stable wrt #307761
  (Portage version: 2.1.7.17/cvs/Linux ia64)

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

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

Index: fetchmail-6.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fetchmail-6.3.14.ebuild	4 Mar 2010 13:43:38 -0000	1.2
+++ fetchmail-6.3.14.ebuild	4 Mar 2010 19:39:37 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.2 2010/03/04 13:43:38 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.3 2010/03/04 19:39:37 armin76 Exp $
 
 EAPI=2
 
@@ -12,7 +12,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 )



1.178                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.178&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.178&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.177&r2=1.178

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	4 Mar 2010 13:43:38 -0000	1.177
+++ ChangeLog	4 Mar 2010 19:39:37 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.177 2010/03/04 13:43:38 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.178 2010/03/04 19:39:37 armin76 Exp $
+
+  04 Mar 2010; Raúl Porcel <armin76@gentoo.org> fetchmail-6.3.14.ebuild:
+  alpha/arm/ia64/s390/sh/sparc stable wrt #307761
 
   04 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
   fetchmail-6.3.14.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.14.ebuild ChangeLog
@ 2010-03-05  8:01 Torsten Veller (tove)
  0 siblings, 0 replies; 7+ messages in thread
From: Torsten Veller (tove) @ 2010-03-05  8:01 UTC (permalink / raw
  To: gentoo-commits

tove        10/03/05 08:01:26

  Modified:             fetchmail-6.3.14.ebuild ChangeLog
  Log:
  Stable on amd64 (#307761)
  (Portage version: 2.2_rc64/cvs/Linux x86_64)

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

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

Index: fetchmail-6.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fetchmail-6.3.14.ebuild	4 Mar 2010 19:39:37 -0000	1.3
+++ fetchmail-6.3.14.ebuild	5 Mar 2010 08:01:26 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.3 2010/03/04 19:39:37 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.4 2010/03/05 08:01:26 tove Exp $
 
 EAPI=2
 
@@ -12,7 +12,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 )



1.179                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.179&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.179&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.178&r2=1.179

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	4 Mar 2010 19:39:37 -0000	1.178
+++ ChangeLog	5 Mar 2010 08:01:26 -0000	1.179
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.178 2010/03/04 19:39:37 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.179 2010/03/05 08:01:26 tove Exp $
+
+  05 Mar 2010; Torsten Veller <tove@gentoo.org> fetchmail-6.3.14.ebuild:
+  Stable on amd64 (#307761)
 
   04 Mar 2010; Raúl Porcel <armin76@gentoo.org> fetchmail-6.3.14.ebuild:
   alpha/arm/ia64/s390/sh/sparc stable wrt #307761






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.14.ebuild ChangeLog
@ 2010-03-08 19:44 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2010-03-08 19:44 UTC (permalink / raw
  To: gentoo-commits

ranger      10/03/08 19:44:58

  Modified:             fetchmail-6.3.14.ebuild ChangeLog
  Log:
  Marking fetchmail-6.3.14 ppc64 for bug 307761
  (Portage version: 2.1.7.17/cvs/Linux ppc64)

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

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

Index: fetchmail-6.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fetchmail-6.3.14.ebuild	5 Mar 2010 08:01:26 -0000	1.4
+++ fetchmail-6.3.14.ebuild	8 Mar 2010 19:44:57 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.4 2010/03/05 08:01:26 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.5 2010/03/08 19:44:57 ranger Exp $
 
 EAPI=2
 
@@ -12,7 +12,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 )



1.180                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.180&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.180&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.179&r2=1.180

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- ChangeLog	5 Mar 2010 08:01:26 -0000	1.179
+++ ChangeLog	8 Mar 2010 19:44:57 -0000	1.180
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.179 2010/03/05 08:01:26 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.180 2010/03/08 19:44:57 ranger Exp $
+
+  08 Mar 2010; Brent Baude <ranger@gentoo.org> fetchmail-6.3.14.ebuild:
+  Marking fetchmail-6.3.14 ppc64 for bug 307761
 
   05 Mar 2010; Torsten Veller <tove@gentoo.org> fetchmail-6.3.14.ebuild:
   Stable on amd64 (#307761)






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.14.ebuild ChangeLog
@ 2010-03-09 22:12 Joseph Jezak (josejx)
  0 siblings, 0 replies; 7+ messages in thread
From: Joseph Jezak (josejx) @ 2010-03-09 22:12 UTC (permalink / raw
  To: gentoo-commits

josejx      10/03/09 22:12:44

  Modified:             fetchmail-6.3.14.ebuild ChangeLog
  Log:
  Marked ppc stable for bug #307761.
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

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

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

Index: fetchmail-6.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fetchmail-6.3.14.ebuild	8 Mar 2010 19:44:57 -0000	1.5
+++ fetchmail-6.3.14.ebuild	9 Mar 2010 22:12:43 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.5 2010/03/08 19:44:57 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.6 2010/03/09 22:12:43 josejx Exp $
 
 EAPI=2
 
@@ -12,7 +12,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 )



1.181                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.181&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.181&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.180&r2=1.181

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	8 Mar 2010 19:44:57 -0000	1.180
+++ ChangeLog	9 Mar 2010 22:12:43 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.180 2010/03/08 19:44:57 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.181 2010/03/09 22:12:43 josejx Exp $
+
+  09 Mar 2010; Joseph Jezak <josejx@gentoo.org> fetchmail-6.3.14.ebuild:
+  Marked ppc stable for bug #307761.
 
   08 Mar 2010; Brent Baude <ranger@gentoo.org> fetchmail-6.3.14.ebuild:
   Marking fetchmail-6.3.14 ppc64 for bug 307761






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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.14.ebuild ChangeLog
@ 2010-03-10 11:08 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-03-10 11:08 UTC (permalink / raw
  To: gentoo-commits

jer         10/03/10 11:08:13

  Modified:             fetchmail-6.3.14.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #307761).
  (Portage version: 2.2_rc66/cvs/Linux i686)

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

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

Index: fetchmail-6.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fetchmail-6.3.14.ebuild	9 Mar 2010 22:12:43 -0000	1.6
+++ fetchmail-6.3.14.ebuild	10 Mar 2010 11:08:12 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.6 2010/03/09 22:12:43 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.14.ebuild,v 1.7 2010/03/10 11:08:12 jer Exp $
 
 EAPI=2
 
@@ -12,7 +12,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 )



1.182                net-mail/fetchmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.182&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.182&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.181&r2=1.182

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog	9 Mar 2010 22:12:43 -0000	1.181
+++ ChangeLog	10 Mar 2010 11:08:12 -0000	1.182
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.181 2010/03/09 22:12:43 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.182 2010/03/10 11:08:12 jer Exp $
+
+  10 Mar 2010; Jeroen Roovers <jer@gentoo.org> fetchmail-6.3.14.ebuild:
+  Stable for HPPA (bug #307761).
 
   09 Mar 2010; Joseph Jezak <josejx@gentoo.org> fetchmail-6.3.14.ebuild:
   Marked ppc stable for bug #307761.






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

end of thread, other threads:[~2010-03-10 11:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-04 13:43 [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.14.ebuild ChangeLog Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-10 11:08 Jeroen Roovers (jer)
2010-03-09 22:12 Joseph Jezak (josejx)
2010-03-08 19:44 Brent Baude (ranger)
2010-03-05  8:01 Torsten Veller (tove)
2010-03-04 19:39 Raul Porcel (armin76)
2010-02-05  7:06 Torsten Veller (tove)

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