* [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
@ 2016-01-31 17:08 Michael Palimaka
0 siblings, 0 replies; 7+ messages in thread
From: Michael Palimaka @ 2016-01-31 17:08 UTC (permalink / raw
To: gentoo-commits
commit: 640daca112fc0ffa908d42aea8140d880eb07399
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 31 17:08:07 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jan 31 17:08:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=640daca1
net-ftp/yafc: remove proxied maintainer at their request
Package-Manager: portage-2.2.27
net-ftp/yafc/metadata.xml | 8 --------
1 file changed, 8 deletions(-)
diff --git a/net-ftp/yafc/metadata.xml b/net-ftp/yafc/metadata.xml
index dd47575..ae861ee 100644
--- a/net-ftp/yafc/metadata.xml
+++ b/net-ftp/yafc/metadata.xml
@@ -1,14 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>page@cubata.homelinux.net</email>
- <name>Carles Pagès</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
<use>
<flag name="ssh">Build with SFTP support</flag>
</use>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
@ 2016-02-02 11:54 Ian Delaney
0 siblings, 0 replies; 7+ messages in thread
From: Ian Delaney @ 2016-02-02 11:54 UTC (permalink / raw
To: gentoo-commits
commit: ebafa0a6afa5bda4d7ff98d835bc00377d757b66
Author: Nicholas Vinson <nvinson234 <AT> gmail <DOT> com>
AuthorDate: Sun Jan 31 19:00:05 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 31 19:16:13 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebafa0a6
net-ftp/yafc: Version bump to 1.3.7
Fixes bug #573462
Package-Manager: portage-2.2.27
net-ftp/yafc/Manifest | 1 +
net-ftp/yafc/yafc-1.3.7.ebuild | 46 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/net-ftp/yafc/Manifest b/net-ftp/yafc/Manifest
index 33667fd..f190c4b 100644
--- a/net-ftp/yafc/Manifest
+++ b/net-ftp/yafc/Manifest
@@ -1 +1,2 @@
DIST yafc-1.2.6.tar.xz 367408 SHA256 96bd46c4dbfbff5d83cb0cec0809b2d1d73c66aff6b30fdd44a291267325b617 SHA512 155339f04eb17e63383e35573497e4838a09ac6f6608c07e8639b0e163c755c40a426f0ade941efd8ba774c6b577358dac6fd18c56bbea7d1fec57b00cb05d35 WHIRLPOOL 673ebaba7e816f3901b696004dddfa0727344aec3f6a4edd86f8dd69058d1dcbe607334a942974e7b8180519292961ce44dc5b656024eb6aa73120f9cec41947
+DIST yafc-1.3.7.tar.xz 363692 SHA256 4b3ebf62423f21bdaa2449b66d15e8d0bb04215472cb63a31d473c3c3912c1e0 SHA512 2547cf3d6f1918a5cd2d3bc29455311d48fcd7dbccfdc8ae4ce08d1fd63cfabae07b70ebf005206a61937bd5b686e19d3af095f876616a5ac4b0593e90cd39c5 WHIRLPOOL e9f0f39de54131b8fb237cda99463ff9cc8badb4cd902fced1cb3024c9379f5db1972d5ed3df58787b5f81f8d5c01a5683af06aba16bd5319574a29677465873
diff --git a/net-ftp/yafc/yafc-1.3.7.ebuild b/net-ftp/yafc/yafc-1.3.7.ebuild
new file mode 100644
index 0000000..255b46a
--- /dev/null
+++ b/net-ftp/yafc/yafc-1.3.7.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit bash-completion-r1 eutils
+
+DESCRIPTION="Console ftp client with a lot of nifty features"
+HOMEPAGE="http://www.yafc-ftp.com/"
+SRC_URI="http://www.yafc-ftp.com/downloads/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
+IUSE="ipv6 readline kerberos socks5 ssh"
+
+DEPEND="dev-libs/openssl:0
+ readline? ( >=sys-libs/readline-6 )
+ kerberos? ( virtual/krb5 )
+ socks5? ( net-proxy/dante )
+ ssh? ( net-libs/libssh )"
+RDEPEND="${DEPEND}"
+
+DOCS=( BUGS NEWS README THANKS TODO )
+
+src_prepare() {
+ epatch_user
+}
+
+src_configure() {
+ export ac_cv_ipv6=$(usex ipv6)
+ econf \
+ $(use_with readline readline /usr) \
+ $(use_with socks5 socks /usr) \
+ $(use_with socks5 socks5 /usr) \
+ $(use_with kerberos krb5) \
+ $(use_with ssh) \
+ --with-bash-completion="$(get_bashcompdir)" \
+ --without-krb4
+}
+
+src_install() {
+ default
+ dodoc -r samples
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
@ 2016-02-02 11:54 Ian Delaney
0 siblings, 0 replies; 7+ messages in thread
From: Ian Delaney @ 2016-02-02 11:54 UTC (permalink / raw
To: gentoo-commits
commit: f03915c98ecf6e5d90e46767bd57d361aaed7697
Author: Nicholas Vinson <nvinson234 <AT> gmail <DOT> com>
AuthorDate: Mon Feb 1 01:30:10 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Mon Feb 1 01:33:57 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f03915c9
net-ftp/yafc: Fix QA and dependency issues
- Added libbsd as a dependency
- removed '--without-krb4' configure option
- changed README to README.md
Package-Manager: portage-2.2.27
net-ftp/yafc/yafc-1.3.7.ebuild | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/net-ftp/yafc/yafc-1.3.7.ebuild b/net-ftp/yafc/yafc-1.3.7.ebuild
index 255b46a..a1ffde9 100644
--- a/net-ftp/yafc/yafc-1.3.7.ebuild
+++ b/net-ftp/yafc/yafc-1.3.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -16,13 +16,15 @@ KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
IUSE="ipv6 readline kerberos socks5 ssh"
DEPEND="dev-libs/openssl:0
+ sys-libs/ncurses:*
+ dev-libs/libbsd
readline? ( >=sys-libs/readline-6 )
kerberos? ( virtual/krb5 )
socks5? ( net-proxy/dante )
ssh? ( net-libs/libssh )"
RDEPEND="${DEPEND}"
-DOCS=( BUGS NEWS README THANKS TODO )
+DOCS=( BUGS NEWS README.md THANKS TODO )
src_prepare() {
epatch_user
@@ -36,8 +38,7 @@ src_configure() {
$(use_with socks5 socks5 /usr) \
$(use_with kerberos krb5) \
$(use_with ssh) \
- --with-bash-completion="$(get_bashcompdir)" \
- --without-krb4
+ --with-bash-completion="$(get_bashcompdir)"
}
src_install() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
@ 2016-02-21 15:09 Ian Delaney
0 siblings, 0 replies; 7+ messages in thread
From: Ian Delaney @ 2016-02-21 15:09 UTC (permalink / raw
To: gentoo-commits
commit: b7ff82cb892a63a12d91af30c3f967d1af092cd9
Author: Nicholas Vinson <nvinson234 <AT> gmail <DOT> com>
AuthorDate: Sun Feb 21 14:58:17 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 14:58:17 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ff82cb
net-ftp/yafc: Removing yafc-1.2.6
This is an outdated version. Version 1.3.7 is now in the tree.
Package-Manager: portage-2.2.27
net-ftp/yafc/Manifest | 1 -
net-ftp/yafc/yafc-1.2.6.ebuild | 46 ------------------------------------------
2 files changed, 47 deletions(-)
diff --git a/net-ftp/yafc/Manifest b/net-ftp/yafc/Manifest
index f190c4b..08e888a 100644
--- a/net-ftp/yafc/Manifest
+++ b/net-ftp/yafc/Manifest
@@ -1,2 +1 @@
-DIST yafc-1.2.6.tar.xz 367408 SHA256 96bd46c4dbfbff5d83cb0cec0809b2d1d73c66aff6b30fdd44a291267325b617 SHA512 155339f04eb17e63383e35573497e4838a09ac6f6608c07e8639b0e163c755c40a426f0ade941efd8ba774c6b577358dac6fd18c56bbea7d1fec57b00cb05d35 WHIRLPOOL 673ebaba7e816f3901b696004dddfa0727344aec3f6a4edd86f8dd69058d1dcbe607334a942974e7b8180519292961ce44dc5b656024eb6aa73120f9cec41947
DIST yafc-1.3.7.tar.xz 363692 SHA256 4b3ebf62423f21bdaa2449b66d15e8d0bb04215472cb63a31d473c3c3912c1e0 SHA512 2547cf3d6f1918a5cd2d3bc29455311d48fcd7dbccfdc8ae4ce08d1fd63cfabae07b70ebf005206a61937bd5b686e19d3af095f876616a5ac4b0593e90cd39c5 WHIRLPOOL e9f0f39de54131b8fb237cda99463ff9cc8badb4cd902fced1cb3024c9379f5db1972d5ed3df58787b5f81f8d5c01a5683af06aba16bd5319574a29677465873
diff --git a/net-ftp/yafc/yafc-1.2.6.ebuild b/net-ftp/yafc/yafc-1.2.6.ebuild
deleted file mode 100644
index 3d89d53..0000000
--- a/net-ftp/yafc/yafc-1.2.6.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit bash-completion-r1 eutils
-
-DESCRIPTION="Console ftp client with a lot of nifty features"
-HOMEPAGE="http://www.yafc-ftp.com/"
-SRC_URI="http://www.yafc-ftp.com/upload/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
-IUSE="ipv6 readline kerberos socks5 ssh"
-
-DEPEND="dev-libs/openssl:0
- readline? ( >=sys-libs/readline-6 )
- kerberos? ( virtual/krb5 )
- socks5? ( net-proxy/dante )
- ssh? ( net-libs/libssh )"
-RDEPEND="${DEPEND}"
-
-DOCS=( BUGS NEWS README THANKS TODO )
-
-src_prepare() {
- epatch_user
-}
-
-src_configure() {
- export ac_cv_ipv6=$(usex ipv6)
- econf \
- $(use_with readline readline /usr) \
- $(use_with socks5 socks /usr) \
- $(use_with socks5 socks5 /usr) \
- $(use_with kerberos krb5) \
- $(use_with ssh) \
- --with-bash-completion="$(get_bashcompdir)" \
- --without-krb4
-}
-
-src_install() {
- default
- dodoc -r samples
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
@ 2016-10-09 16:19 Pacho Ramos
0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos @ 2016-10-09 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 8fb36b13c96f92cd003e804015e1426dab01d471
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 9 15:51:42 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct 9 16:18:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb36b13
net-ftp/yafc: Support libressl (#565396)
Package-Manager: portage-2.3.1
net-ftp/yafc/yafc-1.3.7.ebuild | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/net-ftp/yafc/yafc-1.3.7.ebuild b/net-ftp/yafc/yafc-1.3.7.ebuild
index a1ffde9..947a709 100644
--- a/net-ftp/yafc/yafc-1.3.7.ebuild
+++ b/net-ftp/yafc/yafc-1.3.7.ebuild
@@ -13,16 +13,19 @@ SRC_URI="http://www.yafc-ftp.com/downloads/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
-IUSE="ipv6 readline kerberos socks5 ssh"
+IUSE="ipv6 libressl kerberos readline socks5 ssh"
-DEPEND="dev-libs/openssl:0
+RDEPEND="
sys-libs/ncurses:*
dev-libs/libbsd
- readline? ( >=sys-libs/readline-6 )
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
kerberos? ( virtual/krb5 )
+ readline? ( >=sys-libs/readline-6:0= )
socks5? ( net-proxy/dante )
- ssh? ( net-libs/libssh )"
-RDEPEND="${DEPEND}"
+ ssh? ( net-libs/libssh )
+"
+DEPEND="${RDEPEND}"
DOCS=( BUGS NEWS README.md THANKS TODO )
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
@ 2021-04-19 19:12 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-19 19:12 UTC (permalink / raw
To: gentoo-commits
commit: fe717395745b2d02b81f2eaaf170415e5f29d8a2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 18:55:52 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 19:12:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe717395
net-ftp/yafc: port to EAPI 7
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-ftp/yafc/yafc-1.3.7.ebuild | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/net-ftp/yafc/yafc-1.3.7.ebuild b/net-ftp/yafc/yafc-1.3.7.ebuild
index 450630a1654..b5da3d97096 100644
--- a/net-ftp/yafc/yafc-1.3.7.ebuild
+++ b/net-ftp/yafc/yafc-1.3.7.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
-inherit bash-completion-r1 epatch
+inherit bash-completion-r1
DESCRIPTION="Console ftp client with a lot of nifty features"
HOMEPAGE="http://www.yafc-ftp.com/"
@@ -12,13 +12,12 @@ SRC_URI="http://www.yafc-ftp.com/downloads/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
-IUSE="ipv6 libressl kerberos readline socks5 ssh"
+IUSE="ipv6 kerberos readline socks5 ssh"
RDEPEND="
sys-libs/ncurses:*
dev-libs/libbsd
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
kerberos? ( virtual/krb5 )
readline? ( >=sys-libs/readline-6:0= )
socks5? ( net-proxy/dante )
@@ -28,10 +27,6 @@ DEPEND="${RDEPEND}"
DOCS=( BUGS NEWS README.md THANKS TODO )
-src_prepare() {
- epatch_user
-}
-
src_configure() {
export ac_cv_ipv6=$(usex ipv6)
econf \
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/
@ 2024-09-16 13:28 Petr Vaněk
0 siblings, 0 replies; 7+ messages in thread
From: Petr Vaněk @ 2024-09-16 13:28 UTC (permalink / raw
To: gentoo-commits
commit: 08ee848861903962f1d5f7a4f44cfe80cdbd7588
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 16 12:57:56 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Mon Sep 16 13:28:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ee8488
net-ftp/yafc: drop 1.3.7-r1
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
net-ftp/yafc/Manifest | 1 -
net-ftp/yafc/yafc-1.3.7-r1.ebuild | 44 ---------------------------------------
2 files changed, 45 deletions(-)
diff --git a/net-ftp/yafc/Manifest b/net-ftp/yafc/Manifest
index a1dc2ee3f4c1..ad12a87754f5 100644
--- a/net-ftp/yafc/Manifest
+++ b/net-ftp/yafc/Manifest
@@ -1,2 +1 @@
DIST yafc-1.3.7.tar.gz 237011 BLAKE2B 0a74ff408c52fb35ac5f2e4738bfb7480b3de2339a0c0d1b67534736926c202ad4dbe1dd875c0b84aaa07ca844e24629e3b030daddb392f419fdbd377d4d7b6f SHA512 820a0de1073f3340e36480dfb43908314200f00046762ed1e2735963ea25a541ea0b6b1b662a16117d2a3ce1e235554d7673c989f25a1b97d362028db5986f3f
-DIST yafc-1.3.7.tar.xz 363692 BLAKE2B deeda22d997ee7f3dd04626cdac352ec43f5e47c66029d59f474c43f7ccfba4ed8cbf886fc6ac7a684b8828d30baa02ee880978c891c34337607d88a42582db1 SHA512 2547cf3d6f1918a5cd2d3bc29455311d48fcd7dbccfdc8ae4ce08d1fd63cfabae07b70ebf005206a61937bd5b686e19d3af095f876616a5ac4b0593e90cd39c5
diff --git a/net-ftp/yafc/yafc-1.3.7-r1.ebuild b/net-ftp/yafc/yafc-1.3.7-r1.ebuild
deleted file mode 100644
index 7cf07d591fc7..000000000000
--- a/net-ftp/yafc/yafc-1.3.7-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit bash-completion-r1
-
-DESCRIPTION="Console ftp client with a lot of nifty features"
-HOMEPAGE="http://www.yafc-ftp.com/"
-SRC_URI="http://www.yafc-ftp.com/downloads/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
-IUSE="ipv6 kerberos readline socks5 ssh"
-
-RDEPEND="
- sys-libs/ncurses:=
- dev-libs/libbsd
- dev-libs/openssl:0=
- kerberos? ( virtual/krb5 )
- readline? ( >=sys-libs/readline-6:0= )
- socks5? ( net-proxy/dante )
- ssh? ( net-libs/libssh )
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( BUGS NEWS README.md THANKS TODO )
-
-src_configure() {
- export ac_cv_ipv6=$(usex ipv6)
- econf \
- $(use_with readline readline /usr) \
- $(use_with socks5 socks /usr) \
- $(use_with socks5 socks5 /usr) \
- $(use_with kerberos krb5) \
- $(use_with ssh) \
- --with-bash-completion="$(get_bashcompdir)"
-}
-
-src_install() {
- default
- dodoc -r samples
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-09-16 13:28 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-09 16:19 [gentoo-commits] repo/gentoo:master commit in: net-ftp/yafc/ Pacho Ramos
-- strict thread matches above, loose matches on Subject: below --
2024-09-16 13:28 Petr Vaněk
2021-04-19 19:12 Sam James
2016-02-21 15:09 Ian Delaney
2016-02-02 11:54 Ian Delaney
2016-02-02 11:54 Ian Delaney
2016-01-31 17:08 Michael Palimaka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox