commit: 290957e006da83f0c27413a3271ebd19a3e6424d Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc> AuthorDate: Thu Oct 1 01:09:21 2020 +0000 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc> CommitDate: Thu Oct 1 01:09:21 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=290957e0
net-ftp/bbftp-{client,server}: drop dead package unresolvable upstream, can't fetch Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc> net-ftp/bbftp-client/bbftp-client-3.2.1.ebuild | 43 -------------- net-ftp/bbftp-client/metadata.xml | 13 ----- net-ftp/bbftp-server/bbftp-server-3.2.1.ebuild | 54 ----------------- net-ftp/bbftp-server/files/3.2.0-deffixes.patch | 77 ------------------------- net-ftp/bbftp-server/files/bbftpd.init.d | 27 --------- net-ftp/bbftp-server/metadata.xml | 13 ----- 6 files changed, 227 deletions(-) diff --git a/net-ftp/bbftp-client/bbftp-client-3.2.1.ebuild b/net-ftp/bbftp-client/bbftp-client-3.2.1.ebuild deleted file mode 100644 index da3141fec..000000000 --- a/net-ftp/bbftp-client/bbftp-client-3.2.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Secure file transfer optimized for files larger than 2GB" -HOMEPAGE="http://doc.in2p3.fr/bbftp/" -SRC_URI="http://doc.in2p3.fr/bbftp/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="ssl" - -DEPEND="ssl? ( dev-libs/openssl:0 )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}/bbftpc" - -src_prepare() { - sed \ - -e '/@INSTALL@\|mkdir/s:${\(prefix\|mandir\|bindir\)}:${DESTDIR}${\1}:' \ - -e '/\/etc/d' \ - -i Makefile.in || die - tc-export CC - default -} - -src_configure() { - econf \ - $(use_with ssl) \ - --with-gzip \ - --without-rfio \ - --without-afs -} - -src_install() { - DOCS=( ../README ../ChangeLog ../TODO ../doc/. ) - default - doman ../doc/bbftp.1 -} diff --git a/net-ftp/bbftp-client/metadata.xml b/net-ftp/bbftp-client/metadata.xml deleted file mode 100644 index a5b1bdacc..000000000 --- a/net-ftp/bbftp-client/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>s...@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> - <longdescription> -bbFTP is a file transfer software. It implements its own transfer protocol, -which is optimized for large files (larger than 2GB) and secure as it does not -read the password in a file and encrypts the connection information. -</longdescription> -</pkgmetadata> diff --git a/net-ftp/bbftp-server/bbftp-server-3.2.1.ebuild b/net-ftp/bbftp-server/bbftp-server-3.2.1.ebuild deleted file mode 100644 index 6c1c61c30..000000000 --- a/net-ftp/bbftp-server/bbftp-server-3.2.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils toolchain-funcs - -DESCRIPTION="Secure file transfer optimized for files larger than 2GB" -HOMEPAGE="http://doc.in2p3.fr/bbftp/" -SRC_URI="http://doc.in2p3.fr/bbftp/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="pam ssl" - -DEPEND="ssl? ( dev-libs/openssl:0 )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}/bbftpd" - -PATCHES=( "${FILESDIR}"/${PV}-deffixes.patch ) - -src_prepare() { - default - sed \ - -e '/@INSTALL@\|mkdir/s:${\(prefix\|mandir\|bindir\)}:${DESTDIR}${\1}:' \ - -e '/\/etc/d' \ - -i Makefile.in - - tc-export CC -} - -src_configure() { - econf \ - $(use_with ssl) \ - $(use_with pam) \ - --with-gzip \ - --without-rfio \ - --without-afs -} - -src_install() { - DOCS=( ../README ../ChangeLog ../TODO ../doc/. ) - default - - newinitd "${FILESDIR}"/bbftpd.init.d bbftpd - doman ../doc/bbftpd.1 - if use pam; then - echo -e "#%PAM-1.0\nauth include system-auth\naccount include system-auth" >> "${T}"/bbftp.pam - insinto /etc/pam.d - newins "${T}"/bbftp.pam bbftp - fi -} diff --git a/net-ftp/bbftp-server/files/3.2.0-deffixes.patch b/net-ftp/bbftp-server/files/3.2.0-deffixes.patch deleted file mode 100644 index ad9d35c84..000000000 --- a/net-ftp/bbftp-server/files/3.2.0-deffixes.patch +++ /dev/null @@ -1,77 +0,0 @@ ---- includes/common.h 2010-01-07 12:07:45.623549385 -0800 -+++ includes/common.h.new 2010-01-07 12:10:54.585550305 -0800 -@@ -31,6 +31,18 @@ - - *****************************************************************************/ - -+/* add includes for missing definitions - bgreen 01/07/2010 */ -+#include <stddef.h> /* for definition of NULL */ -+#ifdef HAVE_STDLIB_H -+#include <stdlib.h> /* for free(), exit(), etc. */ -+#endif -+#ifdef HAVE_STRING_H -+#include <string.h> -+#endif -+#ifdef HAVE_STDIO_H -+#include <stdio.h> -+#endif -+ - /* COMPRESSION and NOCOMPRESSION : - ** Often used in routine call (more readable than 0 or 1) - */ ---- bbftpd/signals_routines.c 2004-06-30 10:38:52.000000000 -0700 -+++ bbftpd/signals_routines.c.new 2010-01-07 12:15:34.049612507 -0800 -@@ -41,6 +41,12 @@ - #if HAVE_STRING_H - # include <string.h> - #endif -+#if HAVE_STDIO_H -+# include <stdio.h> -+#endif -+#if HAVE_STDLIB_H -+#include <stdlib.h> -+#endif - - #include <daemon.h> - #include <daemon_proto.h> ---- bbftpd/bbftpd_signals.c 2005-03-29 04:55:55.000000000 -0800 -+++ bbftpd/bbftpd_signals.c.new 2010-01-07 12:18:41.923611939 -0800 -@@ -54,6 +54,12 @@ - #if HAVE_STRING_H - # include <string.h> - #endif -+#if HAVE_STDIO_H -+# include <stdio.h> -+#endif -+#if HAVE_STDLIB_H -+#include <stdlib.h> -+#endif - - #include <daemon.h> - #include <daemon_proto.h> ---- bbftpd/bbftpd_utils.c 2003-03-11 04:34:36.000000000 -0800 -+++ bbftpd/bbftpd_utils.c.new 2010-01-07 12:22:38.237550132 -0800 -@@ -31,6 +31,8 @@ - - *****************************************************************************/ - #include <stdio.h> -+#include <string.h> -+#include <stdlib.h> - - extern char *curfilename ; - extern char *realfilename ; ---- bbftpd/signals_routines.c 2004-06-30 10:38:52.000000000 -0700 -+++ bbftpd/signals_routines.c.new 2010-01-07 12:24:12.840550139 -0800 -@@ -41,6 +41,12 @@ - #if HAVE_STRING_H - # include <string.h> - #endif -+#if HAVE_STDIO_H -+# include <stdio.h> -+#endif -+#if HAVE_STDLIB_H -+# include <stdlib.h> -+#endif - - #include <daemon.h> - #include <daemon_proto.h> diff --git a/net-ftp/bbftp-server/files/bbftpd.init.d b/net-ftp/bbftp-server/files/bbftpd.init.d deleted file mode 100644 index c78ed6642..000000000 --- a/net-ftp/bbftp-server/files/bbftpd.init.d +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# Based on opensm script from openfabrics.org, -# Copyright (c) 2006 Mellanox Technologies. All rights reserved. -# Distributed under the terms of the GNU General Public License v2 - -depend() { - after net # ip net seems to be needed to perform management. -} - -prog=/usr/bin/bbftpd -pidfile=/var/run/bbftpd.pid - -start() { - ebegin "Starting bbftpd" - start-stop-daemon --start --pidfile $pidfile --exec $prog -- -b $OPTIONS - eend $? -} - -stop() { - ebegin "Stopping bbftpd" - start-stop-daemon --stop --pidfile $pidfile --exec $prog - eend $? -} - diff --git a/net-ftp/bbftp-server/metadata.xml b/net-ftp/bbftp-server/metadata.xml deleted file mode 100644 index a5b1bdacc..000000000 --- a/net-ftp/bbftp-server/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>s...@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> - <longdescription> -bbFTP is a file transfer software. It implements its own transfer protocol, -which is optimized for large files (larger than 2GB) and secure as it does not -read the password in a file and encrypts the connection information. -</longdescription> -</pkgmetadata>