summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2022-02-09 22:04:27 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-02-09 23:56:13 +0100
commitb9cc8c253c798b377380d4bbe05915d264b2e55f (patch)
tree7694e12dfd22e700860b700439806d5d2d612112
parentnet-dns/ddclient: update EAPI 7 -> 8 (diff)
downloadgentoo-b9cc8c253c798b377380d4bbe05915d264b2e55f.tar.gz
gentoo-b9cc8c253c798b377380d4bbe05915d264b2e55f.tar.bz2
gentoo-b9cc8c253c798b377380d4bbe05915d264b2e55f.zip
net-dns/ddclient: drop 3.9.1-r1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r--net-dns/ddclient/ddclient-3.9.1-r1.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/net-dns/ddclient/ddclient-3.9.1-r1.ebuild b/net-dns/ddclient/ddclient-3.9.1-r1.ebuild
deleted file mode 100644
index c22af983db9b..000000000000
--- a/net-dns/ddclient/ddclient-3.9.1-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd tmpfiles
-
-DESCRIPTION="Perl client used to update dynamic DNS entries"
-HOMEPAGE="https://ddclient.net/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="examples iproute2 selinux"
-
-RDEPEND="
- acct-group/ddclient
- acct-user/ddclient
- dev-lang/perl
- dev-perl/Data-Validate-IP
- dev-perl/Digest-SHA1
- dev-perl/IO-Socket-INET6
- dev-perl/IO-Socket-SSL
- virtual/perl-Digest-SHA
- virtual/perl-JSON-PP
- iproute2? ( sys-apps/iproute2 )
- selinux? ( sec-policy/selinux-ddclient )
-"
-
-src_prepare() {
- # Remove PID setting, to reliably setup the environment for the init script
- sed -e '/^pid/d' -i sample-etc_ddclient.conf || die
-
- # Remove windows executable
- if use examples; then
- rm sample-etc_dhcpc_dhcpcd-eth0.exe || die
- fi
-
- # Use sys-apps/iproute2 instead of sys-apps/net-tools
- use iproute2 && eapply "${FILESDIR}"/${PN}-3.9.0-use_iproute2.patch
-
- default
-}
-
-src_install() {
- dobin ddclient
-
- insinto /etc/ddclient
- insopts -m 0600 -o ddclient -g ddclient
- newins sample-etc_ddclient.conf ddclient.conf
-
- newinitd "${FILESDIR}"/ddclient.initd-r6 ddclient
- systemd_newunit "${FILESDIR}"/ddclient.service-r1 ddclient.service
- newtmpfiles "${FILESDIR}"/ddclient.tmpfiles ddclient.conf
-
- dodoc Change* README* RELEASENOTE TODO UPGRADE
-
- if use examples; then
- docinto examples
- dodoc sample-*
- fi
-}
-
-pkg_postinst() {
- tmpfiles_process ddclient.conf
-}