Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, sys-auth/pam_chroot/
Date: Tue, 05 Nov 2019 22:21:18
Message-Id: 1572992327.fbb3d738f2819deb1d7010015226b07ddd2ba12e.mgorny@gentoo
1 commit: fbb3d738f2819deb1d7010015226b07ddd2ba12e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 5 22:18:47 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 5 22:18:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb3d738
7
8 sys-auth/pam_chroot: Remove last-rited pkg
9
10 Bug: https://bugs.gentoo.org/696252
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 profiles/package.mask | 1 -
14 sys-auth/pam_chroot/Manifest | 1 -
15 sys-auth/pam_chroot/metadata.xml | 8 -------
16 sys-auth/pam_chroot/pam_chroot-0.9.2.ebuild | 36 -----------------------------
17 4 files changed, 46 deletions(-)
18
19 diff --git a/profiles/package.mask b/profiles/package.mask
20 index c06b69dd237..b57d8acec6a 100644
21 --- a/profiles/package.mask
22 +++ b/profiles/package.mask
23 @@ -424,7 +424,6 @@ net-proxy/ratproxy
24 net-wireless/airsnort
25 sys-apps/hwdata-redhat
26 sys-auth/pam-afs-session
27 -sys-auth/pam_chroot
28 sys-auth/pam_require
29
30 # Michał Górny <mgorny@g.o> (2019-10-04)
31
32 diff --git a/sys-auth/pam_chroot/Manifest b/sys-auth/pam_chroot/Manifest
33 deleted file mode 100644
34 index fd77f039550..00000000000
35 --- a/sys-auth/pam_chroot/Manifest
36 +++ /dev/null
37 @@ -1 +0,0 @@
38 -DIST pam_chroot-0.9.2.tar.bz2 15657 BLAKE2B 50c8ea57f4f634cb387411ef9233b0b3912f292896f3fe7d2df5b5d5e18aeabef228bc1c26312832d5f95de6d2c037075c7ef327c93da6c0b71378bb9974239d SHA512 5aaabb7ed64944885bb2fd3b8a5f641b1ae3c4fbd0e1e5f130abf298f4089b780a53caf60af86e1082a00fb53ff6f9cae5d2838a740919f65152201bae2bee55
39
40 diff --git a/sys-auth/pam_chroot/metadata.xml b/sys-auth/pam_chroot/metadata.xml
41 deleted file mode 100644
42 index 6e423105838..00000000000
43 --- a/sys-auth/pam_chroot/metadata.xml
44 +++ /dev/null
45 @@ -1,8 +0,0 @@
46 -<?xml version="1.0" encoding="UTF-8"?>
47 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
48 -<pkgmetadata>
49 - <!-- maintainer-needed -->
50 - <upstream>
51 - <remote-id type="sourceforge">pam-chroot</remote-id>
52 - </upstream>
53 -</pkgmetadata>
54
55 diff --git a/sys-auth/pam_chroot/pam_chroot-0.9.2.ebuild b/sys-auth/pam_chroot/pam_chroot-0.9.2.ebuild
56 deleted file mode 100644
57 index 98818623471..00000000000
58 --- a/sys-auth/pam_chroot/pam_chroot-0.9.2.ebuild
59 +++ /dev/null
60 @@ -1,36 +0,0 @@
61 -# Copyright 1999-2019 Gentoo Authors
62 -# Distributed under the terms of the GNU General Public License v2
63 -
64 -EAPI=0
65 -
66 -inherit toolchain-funcs pam flag-o-matic eutils
67 -
68 -DESCRIPTION="Linux-PAM module that allows a user to be chrooted in auth, account, or session"
69 -HOMEPAGE="https://sourceforge.net/projects/pam-chroot/"
70 -SRC_URI="mirror://sourceforge/pam-chroot/${P}.tar.bz2"
71 -
72 -LICENSE="GPL-2"
73 -SLOT="0"
74 -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
75 -IUSE=""
76 -
77 -DEPEND="sys-libs/pam"
78 -RDEPEND="${DEPEND}"
79 -
80 -doecho() {
81 - echo "$@"
82 - "$@" || die
83 -}
84 -
85 -src_compile() {
86 - # using the Makefile would require patching it to work properly, so
87 - # rather simply re-create it here.
88 - doecho $(tc-getCC) ${LDFLAGS} -shared -fPIC ${CFLAGS} ${PN}.c -o ${PN}.so -lpam
89 -}
90 -
91 -src_install() {
92 - dopammod pam_chroot.so
93 - dopamsecurity . chroot.conf
94 -
95 - dodoc CREDITS README.history TROUBLESHOOTING options || die "dodoc failed"
96 -}