public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-03-14 17:47 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2013-03-14 17:47 UTC (permalink / raw
  To: gentoo-commits

jer         13/03/14 17:47:42

  Modified:             ChangeLog
  Added:                lftp-4.4.5.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.394                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.394&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.394&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.393&r2=1.394

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.393
retrieving revision 1.394
diff -u -r1.393 -r1.394
--- ChangeLog	27 Feb 2013 15:26:20 -0000	1.393
+++ ChangeLog	14 Mar 2013 17:47:42 -0000	1.394
@@ -1,6 +1,11 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.393 2013/02/27 15:26:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.394 2013/03/14 17:47:42 jer Exp $
+
+*lftp-4.4.5 (14 Mar 2013)
+
+  14 Mar 2013; Jeroen Roovers <jer@gentoo.org> +lftp-4.4.5.ebuild:
+  Version bump.
 
 *lftp-4.4.4 (27 Feb 2013)
 



1.1                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.1 2013/03/14 17:47:42 jer Exp $

EAPI=5
inherit autotools eutils libtool

DESCRIPTION="A sophisticated ftp/sftp/http/https/torrent client and file transfer program"
HOMEPAGE="http://lftp.yar.ru/"
SRC_URI="ftp://ftp.yars.free.net/pub/source/${PN}/${P}.tar.xz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"

IUSE="gnutls nls socks5 +ssl"
LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )
IUSE+=" ${LFTP_LINGUAS[@]/#/linguas_}"

RDEPEND="
	dev-libs/expat
	>=sys-libs/ncurses-5.1
	socks5? (
		>=net-proxy/dante-1.1.12
		virtual/pam )
	ssl? (
		gnutls? ( >=net-libs/gnutls-1.2.3 )
		!gnutls? ( >=dev-libs/openssl-0.9.6 )
	)
	>=sys-libs/readline-5.1
"

DEPEND="
	${RDEPEND}
	=sys-devel/libtool-2*
	app-arch/xz-utils
	dev-lang/perl
	nls? ( sys-devel/gettext )
	virtual/pkgconfig
"

DOCS=(
	BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README  README.debug-levels
	README.dnssec  README.modules THANKS TODO
)

src_prepare() {
	epatch \
		"${FILESDIR}/${PN}-4.0.2.91-lafile.patch" \
		"${FILESDIR}/${PN}-4.3.5-autopoint.patch" \
		"${FILESDIR}/${PN}-4.3.8-gets.patch"
	eautoreconf
	elibtoolize # for Darwin bundles
}

src_configure() {
	local myconf=""

	if use ssl && use gnutls ; then
		myconf="${myconf} --without-openssl"
	elif use ssl && ! use gnutls ; then
		myconf="${myconf} --without-gnutls --with-openssl=${EPREFIX}/usr"
	else
		myconf="${myconf} --without-gnutls --without-openssl"
	fi

	use socks5 && myconf="${myconf} --with-socksdante=${EPREFIX}/usr" \
		|| myconf="${myconf} --without-socksdante"

	econf \
		$(use_enable nls) \
		${myconf} \
		--enable-packager-mode \
		--sysconfdir="${EPREFIX}"/etc/${PN} \
		--with-modules \
		--without-included-regex
}





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-14 16:22 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-14 16:22 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/14 16:22:38

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lftp-4.4.5.ebuild	14 Mar 2013 17:47:42 -0000	1.1
+++ lftp-4.4.5.ebuild	14 Apr 2013 16:22:37 -0000	1.2
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.1 2013/03/14 17:47:42 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.2 2013/04/14 16:22:37 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.396                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.396&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.396&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.395&r2=1.396

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.395
retrieving revision 1.396
diff -u -r1.395 -r1.396
--- ChangeLog	12 Apr 2013 16:23:52 -0000	1.395
+++ ChangeLog	14 Apr 2013 16:22:37 -0000	1.396
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.395 2013/04/12 16:23:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.396 2013/04/14 16:22:37 ago Exp $
+
+  14 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for ppc, wrt bug #465700
 
 *lftp-4.4.5-r1 (12 Apr 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-14 21:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-14 21:26 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/14 21:26:16

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lftp-4.4.5.ebuild	14 Apr 2013 16:22:37 -0000	1.2
+++ lftp-4.4.5.ebuild	14 Apr 2013 21:26:16 -0000	1.3
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.2 2013/04/14 16:22:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.3 2013/04/14 21:26:16 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.397                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.397&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.397&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.396&r2=1.397

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.396
retrieving revision 1.397
diff -u -r1.396 -r1.397
--- ChangeLog	14 Apr 2013 16:22:37 -0000	1.396
+++ ChangeLog	14 Apr 2013 21:26:16 -0000	1.397
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.396 2013/04/14 16:22:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.397 2013/04/14 21:26:16 ago Exp $
+
+  14 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for ppc64, wrt bug #465700
 
   14 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
   Stable for ppc, wrt bug #465700





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-15  8:51 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-15  8:51 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/15 08:51:28

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lftp-4.4.5.ebuild	14 Apr 2013 21:26:16 -0000	1.3
+++ lftp-4.4.5.ebuild	15 Apr 2013 08:51:28 -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.3 2013/04/14 21:26:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.4 2013/04/15 08:51:28 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.398                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.398&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.398&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.397&r2=1.398

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.397
retrieving revision 1.398
diff -u -r1.397 -r1.398
--- ChangeLog	14 Apr 2013 21:26:16 -0000	1.397
+++ ChangeLog	15 Apr 2013 08:51:28 -0000	1.398
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.397 2013/04/14 21:26:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.398 2013/04/15 08:51:28 ago Exp $
+
+  15 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for x86, wrt bug #465700
 
   14 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
   Stable for ppc64, wrt bug #465700





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-15  9:15 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2013-04-15  9:15 UTC (permalink / raw
  To: gentoo-commits

jer         13/04/15 09:15:53

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #465700).
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.5                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lftp-4.4.5.ebuild	15 Apr 2013 08:51:28 -0000	1.4
+++ lftp-4.4.5.ebuild	15 Apr 2013 09:15:53 -0000	1.5
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.4 2013/04/15 08:51:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.5 2013/04/15 09:15:53 jer Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.399                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.399&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.399&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.398&r2=1.399

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.398
retrieving revision 1.399
diff -u -r1.398 -r1.399
--- ChangeLog	15 Apr 2013 08:51:28 -0000	1.398
+++ ChangeLog	15 Apr 2013 09:15:53 -0000	1.399
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.398 2013/04/15 08:51:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.399 2013/04/15 09:15:53 jer Exp $
+
+  15 Apr 2013; Jeroen Roovers <jer@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for HPPA (bug #465700).
 
   15 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
   Stable for x86, wrt bug #465700





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-16 18:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-16 18:09 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/16 18:09:24

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lftp-4.4.5.ebuild	15 Apr 2013 09:15:53 -0000	1.5
+++ lftp-4.4.5.ebuild	16 Apr 2013 18:09:24 -0000	1.6
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.5 2013/04/15 09:15:53 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.6 2013/04/16 18:09:24 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.400                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.400&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.400&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.399&r2=1.400

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.399
retrieving revision 1.400
diff -u -r1.399 -r1.400
--- ChangeLog	15 Apr 2013 09:15:53 -0000	1.399
+++ ChangeLog	16 Apr 2013 18:09:24 -0000	1.400
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.399 2013/04/15 09:15:53 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.400 2013/04/16 18:09:24 ago Exp $
+
+  16 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for arm, wrt bug #465700
 
   15 Apr 2013; Jeroen Roovers <jer@gentoo.org> lftp-4.4.5.ebuild:
   Stable for HPPA (bug #465700).





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-18  8:10 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-18  8:10 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/18 08:10:14

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- lftp-4.4.5.ebuild	16 Apr 2013 18:09:24 -0000	1.6
+++ lftp-4.4.5.ebuild	18 Apr 2013 08:10:14 -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.6 2013/04/16 18:09:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.7 2013/04/18 08:10:14 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.401                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.401&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.401&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.400&r2=1.401

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.400
retrieving revision 1.401
diff -u -r1.400 -r1.401
--- ChangeLog	16 Apr 2013 18:09:24 -0000	1.400
+++ ChangeLog	18 Apr 2013 08:10:14 -0000	1.401
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.400 2013/04/16 18:09:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.401 2013/04/18 08:10:14 ago Exp $
+
+  18 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for alpha, wrt bug #465700
 
   16 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
   Stable for arm, wrt bug #465700





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-18 14:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-18 14:17 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/18 14:17:14

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- lftp-4.4.5.ebuild	18 Apr 2013 08:10:14 -0000	1.7
+++ lftp-4.4.5.ebuild	18 Apr 2013 14:17:14 -0000	1.8
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.7 2013/04/18 08:10:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.8 2013/04/18 14:17:14 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.402                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.402&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.402&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.401&r2=1.402

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.401
retrieving revision 1.402
diff -u -r1.401 -r1.402
--- ChangeLog	18 Apr 2013 08:10:14 -0000	1.401
+++ ChangeLog	18 Apr 2013 14:17:14 -0000	1.402
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.401 2013/04/18 08:10:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.402 2013/04/18 14:17:14 ago Exp $
+
+  18 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for ia64, wrt bug #465700
 
   18 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
   Stable for alpha, wrt bug #465700





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-18 18:24 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 11+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2013-04-18 18:24 UTC (permalink / raw
  To: gentoo-commits

nimiux      13/04/18 18:24:19

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for amd64 wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.9                  net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- lftp-4.4.5.ebuild	18 Apr 2013 14:17:14 -0000	1.8
+++ lftp-4.4.5.ebuild	18 Apr 2013 18:24:19 -0000	1.9
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.8 2013/04/18 14:17:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.9 2013/04/18 18:24:19 nimiux Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.403                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.403&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.403&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.402&r2=1.403

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.402
retrieving revision 1.403
diff -u -r1.402 -r1.403
--- ChangeLog	18 Apr 2013 14:17:14 -0000	1.402
+++ ChangeLog	18 Apr 2013 18:24:19 -0000	1.403
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.402 2013/04/18 14:17:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.403 2013/04/18 18:24:19 nimiux Exp $
+
+  18 Apr 2013; Chema Alonso <nimiux@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for amd64 wrt bug #465700
 
   18 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
   Stable for ia64, wrt bug #465700





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-22 14:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-22 14:58 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/22 14:58:01

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- lftp-4.4.5.ebuild	18 Apr 2013 18:24:19 -0000	1.9
+++ lftp-4.4.5.ebuild	22 Apr 2013 14:58:01 -0000	1.10
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.9 2013/04/18 18:24:19 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.10 2013/04/22 14:58:01 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.404                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.404&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.404&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.403&r2=1.404

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.403
retrieving revision 1.404
diff -u -r1.403 -r1.404
--- ChangeLog	18 Apr 2013 18:24:19 -0000	1.403
+++ ChangeLog	22 Apr 2013 14:58:01 -0000	1.404
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.403 2013/04/18 18:24:19 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.404 2013/04/22 14:58:01 ago Exp $
+
+  22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for s390, wrt bug #465700
 
   18 Apr 2013; Chema Alonso <nimiux@gentoo.org> lftp-4.4.5.ebuild:
   Stable for amd64 wrt bug #465700





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

* [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog
@ 2013-04-22 17:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-22 17:09 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/22 17:09:34

  Modified:             lftp-4.4.5.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #465700
  
  (Portage version: 2.1.11.55/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 net-ftp/lftp/lftp-4.4.5.ebuild

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

Index: lftp-4.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- lftp-4.4.5.ebuild	22 Apr 2013 14:58:01 -0000	1.10
+++ lftp-4.4.5.ebuild	22 Apr 2013 17:09:34 -0000	1.11
@@ -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-ftp/lftp/lftp-4.4.5.ebuild,v 1.10 2013/04/22 14:58:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.5.ebuild,v 1.11 2013/04/22 17:09:34 ago Exp $
 
 EAPI=5
 inherit autotools eutils libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 IUSE="gnutls nls socks5 +ssl"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )



1.405                net-ftp/lftp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.405&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.405&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.404&r2=1.405

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.404
retrieving revision 1.405
diff -u -r1.404 -r1.405
--- ChangeLog	22 Apr 2013 14:58:01 -0000	1.404
+++ ChangeLog	22 Apr 2013 17:09:34 -0000	1.405
@@ -1,6 +1,9 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.404 2013/04/22 14:58:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.405 2013/04/22 17:09:34 ago Exp $
+
+  22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
+  Stable for sparc, wrt bug #465700
 
   22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> lftp-4.4.5.ebuild:
   Stable for s390, wrt bug #465700





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

end of thread, other threads:[~2013-04-22 17:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-14 21:26 [gentoo-commits] gentoo-x86 commit in net-ftp/lftp: lftp-4.4.5.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-04-22 17:09 Agostino Sarubbo (ago)
2013-04-22 14:58 Agostino Sarubbo (ago)
2013-04-18 18:24 JosA MarAa Alonso (nimiux)
2013-04-18 14:17 Agostino Sarubbo (ago)
2013-04-18  8:10 Agostino Sarubbo (ago)
2013-04-16 18:09 Agostino Sarubbo (ago)
2013-04-15  9:15 Jeroen Roovers (jer)
2013-04-15  8:51 Agostino Sarubbo (ago)
2013-04-14 16:22 Agostino Sarubbo (ago)
2013-03-14 17:47 Jeroen Roovers (jer)

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