Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/ftpbase/, net-ftp/ftpbase/files/
Date: Tue, 24 Aug 2021 07:04:18
Message-Id: 1629788648.c83c5db8d1af1860e31d078d75b9dc0caf152b7f.conikost@gentoo
1 commit: c83c5db8d1af1860e31d078d75b9dc0caf152b7f
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 22 21:21:20 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 24 07:04:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c83c5db8
7
8 net-ftp/ftpbase: drop old version
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 net-ftp/ftpbase/files/ftp-pamd | 17 ----------------
14 net-ftp/ftpbase/ftpbase-0.01-r4.ebuild | 36 ----------------------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/net-ftp/ftpbase/files/ftp-pamd b/net-ftp/ftpbase/files/ftp-pamd
18 deleted file mode 100644
19 index 34b7912a0b4..00000000000
20 --- a/net-ftp/ftpbase/files/ftp-pamd
21 +++ /dev/null
22 @@ -1,17 +0,0 @@
23 -# Provided by ftpbase (dont remove this line!)
24 -# Standard pam.d file for ftp service packages.
25 -
26 -auth required pam_listfile.so item=user sense=deny file=/etc/ftpusers onerr=succeed
27 -auth required pam_stack.so service=system-auth
28 -
29 -# If this is enabled, anonymous logins will fail because the 'ftp' user does
30 -# not have a "valid" shell, as listed in /etc/shells.
31 -#
32 -# If you enable this, it is recommended that you do *not* give the 'ftp'
33 -# user a real shell. Instead, give the 'ftp' user /bin/false for a shell and
34 -# add /bin/false to /etc/shells.
35 -# auth required pam_shells.so
36 -
37 -account required pam_stack.so service=system-auth
38 -
39 -session required pam_stack.so service=system-auth
40
41 diff --git a/net-ftp/ftpbase/ftpbase-0.01-r4.ebuild b/net-ftp/ftpbase/ftpbase-0.01-r4.ebuild
42 deleted file mode 100644
43 index dc3a2253a33..00000000000
44 --- a/net-ftp/ftpbase/ftpbase-0.01-r4.ebuild
45 +++ /dev/null
46 @@ -1,36 +0,0 @@
47 -# Copyright 1999-2021 Gentoo Authors
48 -# Distributed under the terms of the GNU General Public License v2
49 -
50 -EAPI=7
51 -
52 -inherit pam
53 -
54 -DESCRIPTION="FTP layout package"
55 -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
56 -SRC_URI=""
57 -
58 -LICENSE="GPL-2"
59 -SLOT="0"
60 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86"
61 -IUSE="pam"
62 -
63 -DEPEND="pam? ( sys-libs/pam )
64 - !<net-ftp/proftpd-1.2.10-r6
65 - !<net-ftp/pure-ftpd-1.0.20-r2
66 - !<net-ftp/vsftpd-2.0.3-r1"
67 -RDEPEND="
68 - acct-group/ftp
69 - acct-user/ftp"
70 -
71 -S=${WORKDIR}
72 -
73 -src_install() {
74 - # The ftpusers file is a list of people who are NOT allowed
75 - # to use the ftp service.
76 - insinto /etc
77 - doins "${FILESDIR}/ftpusers"
78 -
79 - if use pam; then
80 - newpamd "${FILESDIR}"/ftp-pamd-include ftp
81 - fi
82 -}