Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvsd/
Date: Sun, 03 Jun 2018 02:59:22
Message-Id: 1527994735.f3902a07d03a60f8a2d52f28cc04f39cab2badf7.bman@gentoo
1 commit: f3902a07d03a60f8a2d52f28cc04f39cab2badf7
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 00:34:38 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 02:58:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3902a07
7
8 dev-vcs/cvsd: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-vcs/cvsd/Manifest | 1 -
13 dev-vcs/cvsd/cvsd-1.0.7.ebuild | 45 ------------------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-vcs/cvsd/Manifest b/dev-vcs/cvsd/Manifest
17 index 27048f510a6..b8eb5a2a108 100644
18 --- a/dev-vcs/cvsd/Manifest
19 +++ b/dev-vcs/cvsd/Manifest
20 @@ -1,2 +1 @@
21 DIST cvsd-1.0.17.tar.gz 247026 BLAKE2B 82162d74bf63f8eae2141c07f97bbe31a51ee8aeabcf097b2a6aa33a1dfd65aaf6c48017bc11bd6494dac8e9f4f12d9905d1f27fe11361e14910925455ee06d4 SHA512 beea48a288ff580e6cc7fdcd1997b7af01e7ea1b1c185006c92cd7758e7e557d2b1b4fc820bd03b787ebc74b5fa9ef661584d2c523480cf6418f452f5f929c9d
22 -DIST cvsd-1.0.7.tar.gz 193964 BLAKE2B 0eb91bf9e7c47920c14d1290df0572af96432e33a98ca5f3f21fc5b1e4ecd257c47cefda372dd891b6f6088a21650fde92863dd338f847486606456ae40e75b6 SHA512 6ffc3d554e43d50c0fa4861b3f6cc6c696298d882074f017da80068f7afbca3361e5d88fbd13fcadf930afee2df8d6a0777710bc0f992dd208b7674595cc8ea1
23
24 diff --git a/dev-vcs/cvsd/cvsd-1.0.7.ebuild b/dev-vcs/cvsd/cvsd-1.0.7.ebuild
25 deleted file mode 100644
26 index d82be30964c..00000000000
27 --- a/dev-vcs/cvsd/cvsd-1.0.7.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=0
34 -
35 -inherit eutils user
36 -
37 -DESCRIPTION="CVS pserver daemon"
38 -HOMEPAGE="http://ch.tudelft.nl/~arthur/cvsd/"
39 -SRC_URI="http://ch.tudelft.nl/~arthur/cvsd/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 ppc ~sparc x86"
44 -IUSE="tcpd"
45 -
46 -DEPEND="tcpd? ( >=sys-apps/tcp-wrappers-7.6 )"
47 -RDEPEND="${DEPEND}
48 - >=dev-lang/perl-5.8.0
49 - >=dev-vcs/cvs-1.11.6"
50 -
51 -pkg_setup() {
52 - enewgroup cvsd
53 - enewuser cvsd -1 -1 /var/lib/cvsd cvsd
54 -}
55 -
56 -src_compile() {
57 - econf $(use_with tcpd libwrap) || die "econf failed"
58 - emake || die "emake failed"
59 -}
60 -
61 -src_install() {
62 - make DESTDIR="${D}" install || die "make install failed"
63 - dosed 's:^Repos:# Repos:g' /etc/cvsd/cvsd.conf
64 - keepdir /var/lib/cvsd
65 -
66 - dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README TODO
67 -
68 - newinitd "${FILESDIR}"/cvsd.rc6 ${PN}
69 -}
70 -
71 -pkg_postinst() {
72 - elog "To configure cvsd please read the README in "
73 - elog "/usr/share/doc/${PF}/"
74 -}