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.26-r2.ebuild ChangeLog
@ 2013-10-06  8:42 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2013-10-06  8:42 UTC (permalink / raw
  To: gentoo-commits

pacho       13/10/06 08:42:13

  Modified:             ChangeLog
  Added:                fetchmail-6.3.26-r2.ebuild
  Log:
  Add unit file (#487070)
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.263                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog	6 Aug 2013 13:09:33 -0000	1.262
+++ ChangeLog	6 Oct 2013 08:42:13 -0000	1.263
@@ -1,6 +1,12 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.262 2013/08/06 13:09:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.263 2013/10/06 08:42:13 pacho Exp $
+
+*fetchmail-6.3.26-r2 (06 Oct 2013)
+
+  06 Oct 2013; Pacho Ramos <pacho@gentoo.org> +fetchmail-6.3.26-r2.ebuild,
+  +files/fetchmail.conf, +files/fetchmail.service:
+  Add unit file (#487070)
 
   06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> fetchmail-6.3.26-r1.ebuild:
   Stable for s390, wrt bug #477574



1.1                  net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild

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

Index: fetchmail-6.3.26-r2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.1 2013/10/06 08:42:13 pacho Exp $

EAPI=5
PYTHON_COMPAT=( python2_{6,7} )
PYTHON_REQ_USE="tk"

inherit python-single-r1 user systemd toolchain-funcs autotools 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 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="ssl nls kerberos hesiod tk socks"
REQUIRED_USE="tk? ( ${PYTHON_REQUIRED_USE} )"

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 )
	tk? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}
	sys-devel/flex
	nls? ( sys-devel/gettext )"

DOCS="FAQ FEATURES NEWS NOTES README README.NTLM README.SSL* TODO"

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

	use tk && python-single-r1_pkg_setup
}

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

	epatch "${FILESDIR}"/${P}-python-optional.patch
	epatch "${FILESDIR}"/${P}-tests.patch
	eautoreconf
}

src_configure() {
	use tk || export PYTHON=:

	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_compile() {
	emake AR="$(tc-getAR)"
}

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

	default

	dohtml *.html

	newinitd "${FILESDIR}"/fetchmail.initd fetchmail
	newconfd "${FILESDIR}"/fetchmail.confd fetchmail
	systemd_dounit "${FILESDIR}"/${PN}.service
	systemd_dotmpfilesd "${FILESDIR}"/${PN}.conf

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

	use tk && python_optimize
}

pkg_postinst() {
	if [[ -z ${REPLACING_VERSIONS} ]]; then
		elog "Please see /etc/conf.d/fetchmail if you want to adjust"
		elog "the polling delay used by the fetchmail init script."
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.26-r2.ebuild ChangeLog
@ 2013-11-26 22:16 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2013-11-26 22:16 UTC (permalink / raw
  To: gentoo-commits

pacho       13/11/26 22:16:06

  Modified:             fetchmail-6.3.26-r2.ebuild ChangeLog
  Log:
  x86 stable, bug #487744
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild

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

Index: fetchmail-6.3.26-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fetchmail-6.3.26-r2.ebuild	14 Nov 2013 10:26:00 -0000	1.3
+++ fetchmail-6.3.26-r2.ebuild	26 Nov 2013 22:16:06 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.3 2013/11/14 10:26:00 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.4 2013/11/26 22:16:06 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{6,7} )
@@ -14,7 +14,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"
 REQUIRED_USE="tk? ( ${PYTHON_REQUIRED_USE} )"
 



1.266                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -r1.265 -r1.266
--- ChangeLog	14 Nov 2013 10:26:00 -0000	1.265
+++ ChangeLog	26 Nov 2013 22:16:06 -0000	1.266
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.265 2013/11/14 10:26:00 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.266 2013/11/26 22:16:06 pacho Exp $
+
+  26 Nov 2013; Pacho Ramos <pacho@gentoo.org> fetchmail-6.3.26-r2.ebuild:
+  x86 stable, bug #487744
 
   14 Nov 2013; Chema Alonso <nimiux@gentoo.org> fetchmail-6.3.26-r2.ebuild:
   Stable for amd64 wrt bug #487744





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.26-r2.ebuild ChangeLog
@ 2013-12-21 16:24 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-21 16:24 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/21 16:24:01

  Modified:             fetchmail-6.3.26-r2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #487744
  
  (Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild

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

Index: fetchmail-6.3.26-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fetchmail-6.3.26-r2.ebuild	17 Dec 2013 12:03:51 -0000	1.6
+++ fetchmail-6.3.26-r2.ebuild	21 Dec 2013 16:24:01 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.6 2013/12/17 12:03:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.7 2013/12/21 16:24:01 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{6,7} )
@@ -14,7 +14,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"
 REQUIRED_USE="tk? ( ${PYTHON_REQUIRED_USE} )"
 



1.269                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -r1.268 -r1.269
--- ChangeLog	17 Dec 2013 12:03:51 -0000	1.268
+++ ChangeLog	21 Dec 2013 16:24:01 -0000	1.269
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.268 2013/12/17 12:03:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.269 2013/12/21 16:24:01 ago Exp $
+
+  21 Dec 2013; Agostino Sarubbo <ago@gentoo.org> fetchmail-6.3.26-r2.ebuild:
+  Stable for ppc, wrt bug #487744
 
   17 Dec 2013; Raúl Porcel <armin76@gentoo.org> fetchmail-6.3.26-r2.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #487744





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.26-r2.ebuild ChangeLog
@ 2014-10-23 19:56 Mike Frysinger (vapier)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger (vapier) @ 2014-10-23 19:56 UTC (permalink / raw
  To: gentoo-commits

vapier      14/10/23 19:56:28

  Modified:             fetchmail-6.3.26-r2.ebuild ChangeLog
  Log:
  Update HOMEPAGE.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.9                  net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild

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

Index: fetchmail-6.3.26-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- fetchmail-6.3.26-r2.ebuild	22 Dec 2013 13:21:52 -0000	1.8
+++ fetchmail-6.3.26-r2.ebuild	23 Oct 2014 19:56:28 -0000	1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.8 2013/12/22 13:21:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.9 2014/10/23 19:56:28 vapier Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{6,7} )
@@ -9,7 +9,7 @@
 inherit python-single-r1 user systemd toolchain-funcs autotools eutils
 
 DESCRIPTION="the legendary remote-mail retrieval and forwarding utility"
-HOMEPAGE="http://fetchmail.berlios.de"
+HOMEPAGE="http://www.fetchmail.info/"
 SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-2 public-domain"



1.272                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.271
retrieving revision 1.272
diff -u -r1.271 -r1.272
--- ChangeLog	25 Jan 2014 19:03:09 -0000	1.271
+++ ChangeLog	23 Oct 2014 19:56:28 -0000	1.272
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.271 2014/01/25 19:03:09 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.272 2014/10/23 19:56:28 vapier Exp $
+
+  23 Oct 2014; Mike Frysinger <vapier@gentoo.org> fetchmail-6.3.26-r2.ebuild:
+  Update HOMEPAGE.
 
   25 Jan 2014; Tim Harder <radhermit@gentoo.org> -fetchmail-6.3.24.ebuild,
   -fetchmail-6.3.26.ebuild, -fetchmail-6.3.26-r1.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.26-r2.ebuild ChangeLog
@ 2015-02-23 20:09 Michal Gorny (mgorny)
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Gorny (mgorny) @ 2015-02-23 20:09 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/02/23 20:09:54

  Modified:             fetchmail-6.3.26-r2.ebuild ChangeLog
  Log:
  Update SRC_URI. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/49 by mm1ke.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.10                 net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild

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

Index: fetchmail-6.3.26-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- fetchmail-6.3.26-r2.ebuild	23 Oct 2014 19:56:28 -0000	1.9
+++ fetchmail-6.3.26-r2.ebuild	23 Feb 2015 20:09:54 -0000	1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.9 2014/10/23 19:56:28 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.10 2015/02/23 20:09:54 mgorny Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_{6,7} )
@@ -10,7 +10,7 @@
 
 DESCRIPTION="the legendary remote-mail retrieval and forwarding utility"
 HOMEPAGE="http://www.fetchmail.info/"
-SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
@@ -26,6 +26,7 @@
 	socks? ( net-proxy/dante )
 	tk? ( ${PYTHON_DEPS} )"
 DEPEND="${RDEPEND}
+	app-arch/xz-utils
 	sys-devel/flex
 	nls? ( sys-devel/gettext )"
 



1.273                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.272
retrieving revision 1.273
diff -u -r1.272 -r1.273
--- ChangeLog	23 Oct 2014 19:56:28 -0000	1.272
+++ ChangeLog	23 Feb 2015 20:09:54 -0000	1.273
@@ -1,6 +1,10 @@
 # ChangeLog for net-mail/fetchmail
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.272 2014/10/23 19:56:28 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.273 2015/02/23 20:09:54 mgorny Exp $
+
+  23 Feb 2015; Michał Górny <mgorny@gentoo.org> fetchmail-6.3.26-r2.ebuild:
+  Update SRC_URI. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/49
+  by mm1ke.
 
   23 Oct 2014; Mike Frysinger <vapier@gentoo.org> fetchmail-6.3.26-r2.ebuild:
   Update HOMEPAGE.





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

* [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.26-r2.ebuild ChangeLog
@ 2015-04-08 18:18 Michal Gorny (mgorny)
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08 18:18 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 18:18:33

  Modified:             fetchmail-6.3.26-r2.ebuild ChangeLog
  Log:
  Drop old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.11                 net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild

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

Index: fetchmail-6.3.26-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- fetchmail-6.3.26-r2.ebuild	23 Feb 2015 20:09:54 -0000	1.10
+++ fetchmail-6.3.26-r2.ebuild	8 Apr 2015 18:18:33 -0000	1.11
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.10 2015/02/23 20:09:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild,v 1.11 2015/04/08 18:18:33 mgorny Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python2_{6,7} )
+PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="tk"
 
 inherit python-single-r1 user systemd toolchain-funcs autotools eutils



1.274                net-mail/fetchmail/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
retrieving revision 1.273
retrieving revision 1.274
diff -u -r1.273 -r1.274
--- ChangeLog	23 Feb 2015 20:09:54 -0000	1.273
+++ ChangeLog	8 Apr 2015 18:18:33 -0000	1.274
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/fetchmail
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.273 2015/02/23 20:09:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.274 2015/04/08 18:18:33 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org> fetchmail-6.3.26-r2.ebuild:
+  Drop old Python implementations
 
   23 Feb 2015; Michał Górny <mgorny@gentoo.org> fetchmail-6.3.26-r2.ebuild:
   Update SRC_URI. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/49





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

end of thread, other threads:[~2015-04-08 18:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-08 18:18 [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.26-r2.ebuild ChangeLog Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2015-02-23 20:09 Michal Gorny (mgorny)
2014-10-23 19:56 Mike Frysinger (vapier)
2013-12-21 16:24 Agostino Sarubbo (ago)
2013-11-26 22:16 Pacho Ramos (pacho)
2013-10-06  8:42 Pacho Ramos (pacho)

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