diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2014-10-17 20:11:57 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2014-10-17 20:11:57 +0000 |
commit | a3abf31d4187129d460aadabd6d92784cce7003c (patch) | |
tree | bea73bbecc65ae0c5b77f7f2f31f051d31e2fe0b /net-misc/openntpd | |
parent | all stable (bug #525118) (diff) | |
download | gentoo-2-a3abf31d4187129d460aadabd6d92784cce7003c.tar.gz gentoo-2-a3abf31d4187129d460aadabd6d92784cce7003c.tar.bz2 gentoo-2-a3abf31d4187129d460aadabd6d92784cce7003c.zip |
remove old
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'net-misc/openntpd')
-rw-r--r-- | net-misc/openntpd/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/openntpd/files/openntpd.service-20080406-r3 | 10 | ||||
-rw-r--r-- | net-misc/openntpd/openntpd-20080406-r7.ebuild | 97 | ||||
-rw-r--r-- | net-misc/openntpd/openntpd-20080406-r8.ebuild | 102 |
4 files changed, 6 insertions, 210 deletions
diff --git a/net-misc/openntpd/ChangeLog b/net-misc/openntpd/ChangeLog index aadfc44772c0..d1249052ca9c 100644 --- a/net-misc/openntpd/ChangeLog +++ b/net-misc/openntpd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/openntpd # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.124 2014/10/17 20:09:19 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.125 2014/10/17 20:11:57 ottxor Exp $ + + 17 Oct 2014; Christoph Junghans <ottxor@gentoo.org> + -files/openntpd.service-20080406-r3, -openntpd-20080406-r7.ebuild, + -openntpd-20080406-r8.ebuild: + remove old 17 Oct 2014; Christoph Junghans <ottxor@gentoo.org> openntpd-20080406-r9.ebuild: diff --git a/net-misc/openntpd/files/openntpd.service-20080406-r3 b/net-misc/openntpd/files/openntpd.service-20080406-r3 deleted file mode 100644 index ffe15af6cd0c..000000000000 --- a/net-misc/openntpd/files/openntpd.service-20080406-r3 +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=OpenNTP Daemon -After=network.target - -[Service] -Type=simple -ExecStart=/usr/sbin/ntpd -s -d - -[Install] -WantedBy=multi-user.target diff --git a/net-misc/openntpd/openntpd-20080406-r7.ebuild b/net-misc/openntpd/openntpd-20080406-r7.ebuild deleted file mode 100644 index 6f2f31634c38..000000000000 --- a/net-misc/openntpd/openntpd-20080406-r7.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r7.ebuild,v 1.11 2014/04/06 14:50:23 vapier Exp $ - -EAPI=5 - -inherit autotools eutils toolchain-funcs systemd user - -MY_P="${P/-/_}p" -DEB_VER="6" -DESCRIPTION="Lightweight NTP server ported from OpenBSD" -HOMEPAGE="http://www.openntpd.org/" -SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${MY_P}.orig.tar.gz - mirror://debian/pool/main/${PN:0:1}/${PN}/${MY_P}-${DEB_VER}.debian.tar.gz" - -LICENSE="BSD GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="ssl selinux" - -RDEPEND="ssl? ( dev-libs/openssl ) - selinux? ( sec-policy/selinux-ntp ) - !<=net-misc/ntp-4.2.0-r2 - !net-misc/ntp[-openntpd]" -DEPEND="${RDEPEND} - virtual/yacc" - -S="${WORKDIR}/${MY_P/_/-}" - -pkg_setup() { - export NTP_HOME="${NTP_HOME:=/var/lib/openntpd/chroot}" - enewgroup ntp - enewuser ntp -1 -1 "${NTP_HOME}" ntp - - # make sure user has correct HOME as flipng between - # the standard ntp pkg and this one was possible in - # the past - if [[ $(egethome ntp) != ${NTP_HOME} ]]; then - ewarn "From this version on, the homedir of the ntp user cannot be changed" - ewarn "dynamically after the installation. For homedir different from" - ewarn "/var/lib/openntpd/chroot set NTP_HOME in your make.conf and re-emerge." - esethome ntp "${NTP_HOME}" - fi -} - -src_prepare() { - sed -i '/NTPD_USER/s:_ntp:ntp:' ntpd.h || die - - epatch "${WORKDIR}"/debian/patches/*.patch - epatch "${FILESDIR}/${P}-pidfile.patch" - epatch "${FILESDIR}/${P}-signal.patch" - epatch "${FILESDIR}/${P}-dns-timeout.patch" - sed -i 's:debian:gentoo:g' ntpd.conf || die - eautoreconf # deb patchset touches .ac files and such -} - -src_configure() { - econf \ - --disable-strip \ - $(use_with !ssl builtin-arc4random) \ - AR="$(type -p $(tc-getAR))" -} - -src_install() { - default - - newinitd "${FILESDIR}/${PN}.init.d-${PV}-r6" ntpd - newconfd "${FILESDIR}/${PN}.conf.d-${PV}-r6" ntpd - - systemd_newunit "${FILESDIR}/${PN}.service-${PV}-r3" ntpd.service -} - -pkg_config() { - einfo "Setting up chroot for ntp in ${NTP_HOME}" - # remove localtime file from previous installations - rm -f "${EROOT}${NTP_HOME}"etc/localtime - mkdir -p "${EROOT}${NTP_HOME}"etc - if ! ln "${EROOT}"etc/localtime "${EROOT}${NTP_HOME}"etc/localtime ; then - cp "${EROOT}"etc/localtime "${EROOT}${NTP_HOME}"etc/localtime || die - einfo "We could not create a hardlink from /etc/localtime to ${NTP_HOME}etc/localtime," - einfo "so please run 'emerge --config =${CATEGORY}/${PF}' whenever you changed" - einfo "your timezone." - fi - chown -R root:root "${EROOT}${NTP_HOME}" || die -} - -pkg_postinst() { - pkg_config - - [[ -f ${EROOT}var/log/ntpd.log ]] && \ - ewarn "There is an orphaned logfile '${EROOT}var/log/ntpd.log', please remove it!" -} - -pkg_postrm() { - # remove localtime file from previous installations - rm -f "${EROOT}${NTP_HOME}"etc/localtime -} diff --git a/net-misc/openntpd/openntpd-20080406-r8.ebuild b/net-misc/openntpd/openntpd-20080406-r8.ebuild deleted file mode 100644 index 03cea65c676b..000000000000 --- a/net-misc/openntpd/openntpd-20080406-r8.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.10 2014/08/02 18:09:25 ago Exp $ - -EAPI=5 - -inherit autotools eutils toolchain-funcs systemd user - -MY_P="${P/-/_}p" -DEB_VER="6" -DESCRIPTION="Lightweight NTP server ported from OpenBSD" -HOMEPAGE="http://www.openntpd.org/" -SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${MY_P}.orig.tar.gz - mirror://debian/pool/main/${PN:0:1}/${PN}/${MY_P}-${DEB_VER}.debian.tar.gz" - -LICENSE="BSD GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd" -IUSE="ssl selinux" - -RDEPEND="ssl? ( dev-libs/openssl ) - selinux? ( sec-policy/selinux-ntp ) - !<=net-misc/ntp-4.2.0-r2 - !net-misc/ntp[-openntpd]" -DEPEND="${RDEPEND} - virtual/yacc" - -S="${WORKDIR}/${MY_P/_/-}" - -pkg_setup() { - export NTP_HOME="${NTP_HOME:=/var/lib/openntpd/chroot}" - enewgroup ntp - enewuser ntp -1 -1 "${NTP_HOME}" ntp - - # make sure user has correct HOME as flipng between - # the standard ntp pkg and this one was possible in - # the past - if [[ $(egethome ntp) != ${NTP_HOME} ]]; then - ewarn "From this version on, the homedir of the ntp user cannot be changed" - ewarn "dynamically after the installation. For homedir different from" - ewarn "/var/lib/openntpd/chroot set NTP_HOME in your make.conf and re-emerge." - esethome ntp "${NTP_HOME}" - fi -} - -src_prepare() { - sed -i '/NTPD_USER/s:_ntp:ntp:' ntpd.h || die - - epatch "${WORKDIR}"/debian/patches/*.patch - epatch "${FILESDIR}/${P}-pidfile.patch" - epatch "${FILESDIR}/${P}-signal.patch" - epatch "${FILESDIR}/${P}-dns-timeout.patch" - sed -i 's:debian:gentoo:g' ntpd.conf || die - eautoreconf # deb patchset touches .ac files and such -} - -src_configure() { - econf \ - --disable-strip \ - $(use_with !ssl builtin-arc4random) \ - AR="$(type -p $(tc-getAR))" -} - -src_install() { - default - rmdir "${ED}"/{var/empty,var} - - newinitd "${FILESDIR}/${PN}.init.d-${PV}-r6" ntpd - newconfd "${FILESDIR}/${PN}.conf.d-${PV}-r6" ntpd - - systemd_newunit "${FILESDIR}/${PN}.service-${PV}-r3" ntpd.service -} - -pkg_config() { - einfo "Setting up chroot for ntp in ${NTP_HOME}" - # remove localtime file from previous installations - rm -f "${EROOT%/}${NTP_HOME}"/etc/localtime - mkdir -p "${EROOT%/}${NTP_HOME}"/etc - if ! ln "${EROOT%/}"/etc/localtime "${EROOT%/}${NTP_HOME}"/etc/localtime ; then - cp "${EROOT%/}"/etc/localtime "${EROOT%/}${NTP_HOME}"/etc/localtime || die - einfo "We could not create a hardlink from /etc/localtime to ${NTP_HOME}/etc/localtime," - einfo "so please run 'emerge --config =${CATEGORY}/${PF}' whenever you changed" - einfo "your timezone." - fi - chown -R root:root "${EROOT%/}${NTP_HOME}" || die -} - -pkg_postinst() { - pkg_config - - [[ -f ${EROOT}var/log/ntpd.log ]] && \ - ewarn "There is an orphaned logfile '${EROOT}var/log/ntpd.log', please remove it!" - - # bug #226491, remove <=openntpd-20080406-r7 trash - rm -f "${EROOT%/}${NTP_HOME}"etc/localtime - rmdir "${EROOT%/}${NTP_HOME}"etc -} - -pkg_postrm() { - # remove localtime file from previous installations - rm -f "${EROOT%/}${NTP_HOME}"/etc/localtime -} |