summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2024-06-22 21:52:09 +0200
committerConrad Kostecki <conikost@gentoo.org>2024-06-22 22:00:14 +0200
commit58f930517392d95fc8df13f3b3fe2a4851359eb4 (patch)
tree5562aa354f5194543f81656d6b521ba5e4e19af5 /net-dns/ddclient
parentmedia-sound/teamspeak-client: fix qa EmptyGlobalAssignment (diff)
downloadgentoo-58f930517392d95fc8df13f3b3fe2a4851359eb4.tar.gz
gentoo-58f930517392d95fc8df13f3b3fe2a4851359eb4.tar.bz2
gentoo-58f930517392d95fc8df13f3b3fe2a4851359eb4.zip
net-dns/ddclient: drop 3.11.1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-dns/ddclient')
-rw-r--r--net-dns/ddclient/Manifest1
-rw-r--r--net-dns/ddclient/ddclient-3.11.1.ebuild89
2 files changed, 0 insertions, 90 deletions
diff --git a/net-dns/ddclient/Manifest b/net-dns/ddclient/Manifest
index 73efc46f6784..56587389a3d2 100644
--- a/net-dns/ddclient/Manifest
+++ b/net-dns/ddclient/Manifest
@@ -1,2 +1 @@
-DIST ddclient-3.11.1.tar.gz 277452 BLAKE2B f496443b972cfed0623eae3a4056b4315cc085e3358189f0846bedaeda53912ec43949da5c4505cc749bf0dea247702e5c2415f06b27dc6549739833a39c8365 SHA512 e823ce54f94e268d62c52e2e13f32e5549b0f91721c876e0bfde2f948ac60d6346fb633b96eda410174c9f039c9c67034efdec7826f249f85c5890e33b3279b0
DIST ddclient-3.11.2.tar.gz 278314 BLAKE2B 5e60d8ab0889fbfe03cf182faf025b84faa6a5c278d0c0c1fd45c0bab88828bc3ebacdadac44d1cbd71202f1eff79a7ae0ffcb668992ad54f71e36f8c2f74333 SHA512 b0d275f5ccc36cd8b532b6176de885696ff189dbdffa71bc63e9fa6db2aaf4ab5ff3290c251e318f05b2163c546dcc785eb3582388d9fb70e8439e35e5cbcd7f
diff --git a/net-dns/ddclient/ddclient-3.11.1.ebuild b/net-dns/ddclient/ddclient-3.11.1.ebuild
deleted file mode 100644
index cb205a5469cd..000000000000
--- a/net-dns/ddclient/ddclient-3.11.1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools optfeature systemd tmpfiles
-
-DESCRIPTION="Perl client used to update dynamic DNS entries"
-HOMEPAGE="https://ddclient.net/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/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 selinux test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- acct-group/ddclient
- acct-user/ddclient
- dev-lang/perl
- net-misc/curl
- dev-perl/Digest-SHA1
- virtual/perl-Digest-SHA
- virtual/perl-JSON-PP
- selinux? ( sec-policy/selinux-ddclient )
-"
-
-BDEPEND="
- test? (
- dev-perl/HTTP-Daemon
- dev-perl/HTTP-Daemon-SSL
- dev-perl/Plack
- dev-perl/Test-MockModule
- dev-perl/Test-Warnings
- )
-"
-
-src_prepare() {
- default
-
- # Remove PID setting, to reliably setup the environment for the init script
- sed -e '/^pid/d' -i ddclient.conf.in || die
-
- # Disable 'get_ip_from_if.pl' test, as it fails with network-sandbox
- # Don't create cache directory, as it's created by init script / tmpfiles
- sed -e '/get_ip_from_if.pl/d' -e '/MKDIR_P/d' -i Makefile.am || die
-
- # Remove windows executable
- if use examples; then
- rm sample-etc_dhcpc_dhcpcd-eth0.exe || die
- fi
-
- eautoreconf
-}
-
-src_install() {
- default
-
- newinitd "${FILESDIR}"/ddclient.initd-r7 ddclient
- systemd_newunit "${FILESDIR}"/ddclient.service-r2 ddclient.service
- newtmpfiles "${FILESDIR}"/ddclient.tmpfiles-r1 ddclient.conf
-
- if use examples; then
- docinto examples
- dodoc sample-*
- fi
-
- einstalldocs
-}
-
-pkg_postinst() {
- if [[ ${REPLACING_VERSIONS} ]]; then
- for v in ${REPLACING_VERSIONS}; do
- if ver_test "${v}" -lt 3.10.0; then
- if [ -f "${EROOT}/etc/ddclient/ddclient.conf" ]; then
- cp /etc/ddclient/ddclient.conf /etc/ddclient.conf || die
- ewarn "Your DDClient configuration has been copied from"
- ewarn "'/etc/ddclient/ddclient.conf' to '/etc/ddclient.conf'."
- ewarn "Please check your configuration."
- fi
- break
- fi
- done
- fi
-
- optfeature "using iproute2 instead if ifconfig." sys-apps/iproute2
- tmpfiles_process ddclient.conf
-}