From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/ddclient/
Date: Tue, 23 Jan 2024 23:35:29 +0000 (UTC) [thread overview]
Message-ID: <1706052895.0766db716a680daeea4d8b35c485f8fdab2c415a.conikost@gentoo> (raw)
commit: 0766db716a680daeea4d8b35c485f8fdab2c415a
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 23 23:34:46 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Jan 23 23:34:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0766db71
net-dns/ddclient: drop 3.10.0
Closes: https://bugs.gentoo.org/893484
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-dns/ddclient/Manifest | 1 -
net-dns/ddclient/ddclient-3.10.0.ebuild | 93 ---------------------------------
2 files changed, 94 deletions(-)
diff --git a/net-dns/ddclient/Manifest b/net-dns/ddclient/Manifest
index d85a27e87164..73efc46f6784 100644
--- a/net-dns/ddclient/Manifest
+++ b/net-dns/ddclient/Manifest
@@ -1,3 +1,2 @@
-DIST ddclient-3.10.0.tar.gz 275494 BLAKE2B abb2d313ae7c459305916b47f7c6e28a6a1ac9ce141b7e1ba64cb4b646191eff17cb0a89e2ee14a9e406cf0e5d319b2c144874a050679528c9b085a5f239a6aa SHA512 4740a96813e47e7989d61253ac8a69c6e0f70dd3c61a05227b03d973d9a024d17d6a31c16d633ade48a3fc58f0c79b8a0da8a4ec3369d852a2417e86e9971a05
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.10.0.ebuild b/net-dns/ddclient/ddclient-3.10.0.ebuild
deleted file mode 100644
index 8e6a10b1e7c1..000000000000
--- a/net-dns/ddclient/ddclient-3.10.0.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2022 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
- dev-perl/Digest-SHA1
- dev-perl/IO-Socket-INET6
- dev-perl/IO-Socket-SSL
- 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
-
- # Fix version number, otherwise a test will fail
- sed -e 's/3.10.0_2/3.10.0/g' -i configure.ac || die
-
- # 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
-}
next reply other threads:[~2024-01-23 23:35 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-23 23:35 Conrad Kostecki [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-01 4:41 [gentoo-commits] repo/gentoo:master commit in: net-dns/ddclient/ Sam James
2025-03-01 4:41 Sam James
2025-03-01 4:41 Sam James
2025-03-01 4:41 Sam James
2025-03-01 4:41 Sam James
2025-01-27 21:55 Conrad Kostecki
2024-06-22 20:01 Conrad Kostecki
2024-01-24 6:35 Sam James
2024-01-24 6:28 Sam James
2024-01-24 6:16 Sam James
2024-01-24 6:16 Sam James
2024-01-24 6:16 Sam James
2024-01-24 6:16 Sam James
2023-12-23 21:51 Conrad Kostecki
2023-12-13 19:29 Arthur Zamarin
2023-12-13 19:29 Arthur Zamarin
2023-12-13 0:37 Sam James
2023-12-13 0:37 Sam James
2023-12-13 0:37 Sam James
2023-12-13 0:37 Sam James
2023-11-12 0:24 Conrad Kostecki
2022-12-10 19:06 Sam James
2022-12-10 18:17 Arthur Zamarin
2022-12-10 17:47 Sam James
2022-12-10 17:45 Sam James
2022-11-11 23:24 Conrad Kostecki
2022-11-10 0:10 Conrad Kostecki
2022-11-10 0:10 Conrad Kostecki
2022-10-31 23:46 Conrad Kostecki
2022-10-10 22:01 Conrad Kostecki
2022-10-04 20:34 Conrad Kostecki
2021-12-03 19:35 Sam James
2021-12-02 2:50 Yixun Lan
2020-12-06 18:45 Sam James
2020-10-11 20:17 Conrad Kostecki
2020-09-23 20:20 Conrad Kostecki
2020-08-05 19:48 Conrad Kostecki
2020-08-05 14:17 Agostino Sarubbo
2020-08-05 13:53 Agostino Sarubbo
2020-08-01 9:01 Sergei Trofimovich
2020-07-31 2:38 Sam James
2020-05-13 0:35 Aaron W. Swenson
2020-05-11 11:36 Aaron W. Swenson
2020-02-04 18:09 Conrad Kostecki
2019-12-24 14:43 Mikle Kolyada
2019-12-15 18:03 Agostino Sarubbo
2019-12-15 14:15 Agostino Sarubbo
2019-12-15 14:07 Agostino Sarubbo
2019-12-15 13:43 Agostino Sarubbo
2019-12-15 13:36 Sergei Trofimovich
2019-10-12 10:36 Andreas Sturmlechner
2019-10-12 9:15 Joonas Niilola
2019-04-17 12:21 Mikle Kolyada
2019-03-19 2:03 Thomas Deutschmann
2019-03-13 23:24 Sergei Trofimovich
2019-03-02 15:37 Mikle Kolyada
2019-02-28 15:07 Mikle Kolyada
2019-02-27 8:20 Sergei Trofimovich
2019-02-27 7:55 Sergei Trofimovich
2019-02-24 12:55 Aaron W. Swenson
2019-02-22 20:17 Sergei Trofimovich
2018-12-08 12:09 Mikle Kolyada
2018-11-07 22:46 Sergei Trofimovich
2018-10-29 1:01 Matt Turner
2018-10-18 7:52 Tobias Klausmann
2018-10-15 19:03 Sergei Trofimovich
2018-10-15 18:43 Sergei Trofimovich
2018-10-14 22:35 Sergei Trofimovich
2018-10-14 1:44 Thomas Deutschmann
2018-09-04 9:48 Aaron Swenson
2016-04-11 20:29 Patrice Clement
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1706052895.0766db716a680daeea4d8b35c485f8fdab2c415a.conikost@gentoo \
--to=conikost@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox