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-dns/ddclient/
Date: Tue, 04 Feb 2020 18:09:17
Message-Id: 1580838500.81a9bedc595cf273a5f5f52f356c0fe3a8b522a6.conikost@gentoo
1 commit: 81a9bedc595cf273a5f5f52f356c0fe3a8b522a6
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 4 15:23:21 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 4 17:48:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a9bedc
7
8 net-dns/ddclient: drop old version
9
10 Package-Manager: Portage-2.3.87, Repoman-2.3.20
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 net-dns/ddclient/ddclient-3.9.0-r2.ebuild | 65 -------------------------------
14 1 file changed, 65 deletions(-)
15
16 diff --git a/net-dns/ddclient/ddclient-3.9.0-r2.ebuild b/net-dns/ddclient/ddclient-3.9.0-r2.ebuild
17 deleted file mode 100644
18 index fda20180e5e..00000000000
19 --- a/net-dns/ddclient/ddclient-3.9.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,65 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit systemd user
28 -
29 -DESCRIPTION="Perl client used to update dynamic DNS entries"
30 -HOMEPAGE="https://sourceforge.net/projects/ddclient/"
31 -SRC_URI="mirror://sourceforge/ddclient/${P}.tar.gz"
32 -
33 -KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86"
34 -LICENSE="GPL-2+"
35 -SLOT="0"
36 -IUSE="examples iproute2"
37 -
38 -RDEPEND="
39 - dev-lang/perl
40 - dev-perl/Data-Validate-IP
41 - dev-perl/Digest-SHA1
42 - dev-perl/IO-Socket-INET6
43 - dev-perl/IO-Socket-SSL
44 - virtual/perl-Digest-SHA
45 - virtual/perl-JSON-PP
46 - iproute2? ( sys-apps/iproute2 )
47 -"
48 -
49 -pkg_setup() {
50 - enewgroup ddclient
51 - enewuser ddclient -1 -1 -1 ddclient
52 -}
53 -
54 -src_prepare() {
55 - # Remove PID setting, to reliably setup the environment for the init script
56 - sed -e '/^pid/d' -i sample-etc_ddclient.conf || die
57 -
58 - # Remove windows executable
59 - if use examples; then
60 - rm sample-etc_dhcpc_dhcpcd-eth0.exe || die
61 - fi
62 -
63 - # Use sys-apps/iproute2 instead of sys-apps/net-tools
64 - use iproute2 && eapply "${FILESDIR}"/${P}-use_iproute2.patch
65 -
66 - default
67 -}
68 -
69 -src_install() {
70 - dobin ddclient
71 -
72 - insinto /etc/ddclient
73 - insopts -m 0600 -o ddclient -g ddclient
74 - newins sample-etc_ddclient.conf ddclient.conf
75 -
76 - newinitd "${FILESDIR}"/ddclient.initd-r6 ddclient
77 - systemd_newunit "${FILESDIR}"/ddclient.service-r1 ddclient.service
78 - systemd_newtmpfilesd "${FILESDIR}"/ddclient.tmpfiles ddclient.conf
79 -
80 - dodoc Change* README* RELEASENOTE TODO UPGRADE
81 -
82 - if use examples; then
83 - docinto examples
84 - dodoc sample-*
85 - fi
86 -}