public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-ftp/yafc: metadata.xml ChangeLog yafc-1.1.2.ebuild
@ 2011-04-04 18:07 Dane Smith (c1pher)
  0 siblings, 0 replies; 2+ messages in thread
From: Dane Smith (c1pher) @ 2011-04-04 18:07 UTC (permalink / raw
  To: gentoo-commits

c1pher      11/04/04 18:07:18

  Modified:             metadata.xml ChangeLog
  Added:                yafc-1.1.2.ebuild
  Log:
  net-ftp/yafc: New upstream. Version bump. Add proxy maintainer. Closes bugs 275795, 350277, 352401.
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-ftp/yafc/metadata.xml

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

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/yafc/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml	15 May 2007 14:03:32 -0000	1.2
+++ metadata.xml	4 Apr 2011 18:07:18 -0000	1.3
@@ -3,6 +3,11 @@
 <pkgmetadata>
 <herd>no-herd</herd>
 <maintainer>
-<email>maintainer-needed@gentoo.org</email>
+	<email>c1pher@gentoo.org</email>
+	<name>Dane Smith</name>
+</maintainer>
+<maintainer>
+	<email>page@cubata.homelinux.net</email>
+	<name>Carles Pagès</name>
 </maintainer>
 </pkgmetadata>



1.38                 net-ftp/yafc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	5 Aug 2010 17:11:33 -0000	1.37
+++ ChangeLog	4 Apr 2011 18:07:18 -0000	1.38
@@ -1,6 +1,16 @@
 # ChangeLog for net-ftp/yafc
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v 1.37 2010/08/05 17:11:33 ssuominen Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v 1.38 2011/04/04 18:07:18 c1pher Exp $
+
+*yafc-1.1.2 (04 Apr 2011)
+
+  04 Apr 2011; Dane Smith <c1pher@gentoo.org> +yafc-1.1.2.ebuild,
+  metadata.xml:
+  Version bump. Add proxy maintainer Carles Pagès, who is now
+  maintaining the new upstream since the old one has had no development
+  since
+  2005. Upsteam fixes to bug 350277 and bug 352401. Local fix for
+  kerebos support wrt bug 275795. 
 
   05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> yafc-1.1.1-r1.ebuild:
   Remove built_with_use check for app-crypt/mit-krb5 because krb4 support



1.1                  net-ftp/yafc/yafc-1.1.2.ebuild

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

Index: yafc-1.1.2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/yafc-1.1.2.ebuild,v 1.1 2011/04/04 18:07:18 c1pher Exp $

EAPI=2
inherit eutils

DESCRIPTION="Console ftp client with a lot of nifty features"
HOMEPAGE="http://yafc.sourceforge.net/"
SRC_URI="http://github.com/downloads/cpages/yafc/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="readline kerberos socks5"

DEPEND="readline? ( >=sys-libs/readline-6 )
	kerberos? ( virtual/krb5 )
	socks5? ( net-proxy/dante )"
RDEPEND="${DEPEND}
	>=net-misc/openssh-3"

src_configure() {
	local myconf=""

	if use kerberos; then
		if has_version app-crypt/heimdal; then
			myconf="${myconf} --with-krb5=/usr/ --with-krb4=no --with-gssapi=/usr"
		elif has_version app-crypt/mit-krb5; then
			myconf="${myconf} --with-krb5=/usr/ --with-krb4=no --with-gssapi=/usr"
		else
			ewarn "No supported kerberos providers detected"
			myconf="${myconf} --without-krb4 --without-krb5"
		fi
	else
		myconf="${myconf} --without-krb4 --without-krb5"
	fi

	use socks5 && myconf="${myconf} --with-socks5=/usr" \
		|| myconf="${myconf} --with-socks5=no"

	use readline && myconf="${myconf} --with-readline=/usr" \
		|| myconf="${myconf} --with-readline=no"

	econf \
		$(use_with readline) \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc BUGS NEWS README THANKS TODO *.sample || die
}






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

* [gentoo-commits] gentoo-x86 commit in net-ftp/yafc: metadata.xml ChangeLog yafc-1.1.2.ebuild
@ 2011-04-29 15:13 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-04-29 15:13 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/04/29 15:13:37

  Added:                metadata.xml ChangeLog yafc-1.1.2.ebuild
  Log:
  Restore latest ebuild. Shouldn't have removed this.
  
  (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  net-ftp/yafc/metadata.xml

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




1.40                 net-ftp/yafc/ChangeLog

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




1.3                  net-ftp/yafc/yafc-1.1.2.ebuild

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







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

end of thread, other threads:[~2011-04-29 15:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-04 18:07 [gentoo-commits] gentoo-x86 commit in net-ftp/yafc: metadata.xml ChangeLog yafc-1.1.2.ebuild Dane Smith (c1pher)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-29 15:13 Samuli Suominen (ssuominen)

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