summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2015-04-12 06:16:14 +0000
committerJeroen Roovers <jer@gentoo.org>2015-04-12 06:16:14 +0000
commitccf0387865ef5fd5fe006c82a80f1a34ee962999 (patch)
tree838069dd46ea2476fa5066b2327685faef9f5687
parentVersion bump (bug #487994). (diff)
downloadgentoo-2-ccf0387865ef5fd5fe006c82a80f1a34ee962999.tar.gz
gentoo-2-ccf0387865ef5fd5fe006c82a80f1a34ee962999.tar.bz2
gentoo-2-ccf0387865ef5fd5fe006c82a80f1a34ee962999.zip
Version bump.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A792A613)
-rw-r--r--net-misc/apt-cacher-ng/ChangeLog10
-rw-r--r--net-misc/apt-cacher-ng/apt-cacher-ng-0.7.27.ebuild104
-rw-r--r--net-misc/apt-cacher-ng/apt-cacher-ng-0.8.1.ebuild (renamed from net-misc/apt-cacher-ng/apt-cacher-ng-0.8.0.ebuild)11
3 files changed, 13 insertions, 112 deletions
diff --git a/net-misc/apt-cacher-ng/ChangeLog b/net-misc/apt-cacher-ng/ChangeLog
index 9de2e636785e..23039d019734 100644
--- a/net-misc/apt-cacher-ng/ChangeLog
+++ b/net-misc/apt-cacher-ng/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/apt-cacher-ng
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/apt-cacher-ng/ChangeLog,v 1.50 2014/10/22 07:53:20 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/apt-cacher-ng/ChangeLog,v 1.51 2015/04/12 06:16:14 jer Exp $
+
+*apt-cacher-ng-0.8.1 (12 Apr 2015)
+
+ 12 Apr 2015; Jeroen Roovers <jer@gentoo.org> -apt-cacher-ng-0.7.27.ebuild,
+ -apt-cacher-ng-0.8.0.ebuild, +apt-cacher-ng-0.8.1.ebuild:
+ Version bump.
*apt-cacher-ng-0.8.0-r1 (22 Oct 2014)
diff --git a/net-misc/apt-cacher-ng/apt-cacher-ng-0.7.27.ebuild b/net-misc/apt-cacher-ng/apt-cacher-ng-0.7.27.ebuild
deleted file mode 100644
index 984b8813b3d6..000000000000
--- a/net-misc/apt-cacher-ng/apt-cacher-ng-0.7.27.ebuild
+++ /dev/null
@@ -1,104 +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/apt-cacher-ng/apt-cacher-ng-0.7.27.ebuild,v 1.1 2014/07/18 14:24:39 jer Exp $
-
-EAPI=5
-inherit cmake-utils eutils user
-
-DESCRIPTION="Yet another implementation of an HTTP proxy for Debian/Ubuntu software packages written in C++"
-HOMEPAGE="
- http://www.unix-ag.uni-kl.de/~bloch/acng/
- http://packages.qa.debian.org/a/apt-cacher-ng.html
-"
-LICENSE="BSD-4 ZLIB public-domain"
-SLOT="0"
-SRC_URI="mirror://debian/pool/main/a/${PN}/${PN}_${PV}.orig.tar.xz"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="doc fuse tcpd"
-
-COMMON_DEPEND="
- app-arch/bzip2
- app-arch/xz-utils
- sys-libs/zlib
-"
-DEPEND="
- ${COMMON_DEPEND}
- dev-util/cmake
-"
-RDEPEND="
- ${COMMON_DEPEND}
- dev-lang/perl
- fuse? ( sys-fs/fuse )
- tcpd? ( sys-apps/tcp-wrappers )
-"
-
-pkg_setup() {
- # add new user & group for daemon
- enewgroup ${PN}
- enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_configure(){
- mycmakeargs="-DCMAKE_INSTALL_PREFIX=/usr"
- if use fuse; then
- mycmakeargs="-DHAVE_FUSE_26=yes ${mycmakeargs}"
- else
- mycmakeargs="-DHAVE_FUSE_26=no ${mycmakeargs}"
- fi
- if use tcpd; then
- mycmakeargs="-DHAVE_LIBWRAP=yes ${mycmakeargs}"
- else
- mycmakeargs="-DHAVE_LIBWRAP=no ${mycmakeargs}"
- fi
-
- cmake-utils_src_configure
-}
-
-src_install() {
- pushd ${CMAKE_BUILD_DIR}
- dosbin ${PN}
- if use fuse; then
- dobin acngfs
- fi
- popd
-
- newinitd "${FILESDIR}"/initd ${PN}
- newconfd "${FILESDIR}"/confd ${PN}
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}"/logrotate ${PN}
-
- doman doc/man/${PN}*
- if use fuse; then
- doman doc/man/acngfs*
- fi
-
- # Documentation
- dodoc README TODO VERSION INSTALL ChangeLog
- if use doc; then
- dodoc doc/*.pdf
- dohtml doc/html/*
- docinto examples/conf
- dodoc conf/*
- fi
-
- # perl daily cron script
- dosbin expire-caller.pl
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/cron.daily ${PN}
-
- # default configuration
- insinto /etc/${PN}
- newins conf/acng.conf ${PN}.conf
- doins $( echo conf/* | sed 's|conf/acng.conf||g' )
-
- dodir /var/cache/${PN}
- dodir /var/log/${PN}
- # Some directories must exists
- keepdir /var/log/${PN}
- fowners -R ${PN}:${PN} \
- /etc/${PN} \
- /var/log/${PN} \
- /var/cache/${PN}
-}
diff --git a/net-misc/apt-cacher-ng/apt-cacher-ng-0.8.0.ebuild b/net-misc/apt-cacher-ng/apt-cacher-ng-0.8.1.ebuild
index 8a6104cb9455..e0156a969c3c 100644
--- a/net-misc/apt-cacher-ng/apt-cacher-ng-0.8.0.ebuild
+++ b/net-misc/apt-cacher-ng/apt-cacher-ng-0.8.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/apt-cacher-ng/apt-cacher-ng-0.8.0.ebuild,v 1.3 2014/10/22 07:53:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/apt-cacher-ng/apt-cacher-ng-0.8.1.ebuild,v 1.1 2015/04/12 06:16:14 jer Exp $
EAPI=5
inherit cmake-utils eutils toolchain-funcs user
@@ -80,7 +80,7 @@ src_install() {
fi
popd
- newinitd "${FILESDIR}"/initd ${PN}
+ newinitd "${FILESDIR}"/initd-r1 ${PN}
newconfd "${FILESDIR}"/confd ${PN}
insinto /etc/logrotate.d
@@ -110,11 +110,10 @@ src_install() {
newins conf/acng.conf ${PN}.conf
doins $( echo conf/* | sed 's|conf/acng.conf||g' )
- dodir /var/log/${PN}
+ keepdir /var/log/${PN}
# Some directories must exists
keepdir /var/log/${PN}
fowners -R ${PN}:${PN} \
/etc/${PN} \
- /var/log/${PN} \
- /var/cache/${PN}
+ /var/log/${PN}
}