mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-17 14:49:30 -07:00
sys-apps/etckeeper: Remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.1
This commit is contained in:
@@ -1,4 +1,2 @@
|
||||
DIST etckeeper-1.18.1.tar.gz 56366 SHA256 80adee6e17bfc41359ffb85a401d9a510ae25956950adbfdd07a0bda36d99e9b SHA512 5b5019d3f8c22ee0486c9102d7dbdc7e86921d432df49c15733e5ed23651c2be87b52e295208be691ef1e44a515d960fcf4f812eaca17f2806e2f5055222ca35 WHIRLPOOL 890b38f761f49a5a4713fa850bc18e09688ed8fb04d9b41f3727f868448fb1ba1ecf92750df777fc6011a3f88abeb8756105fbdc60ebf6fd3e693360764fb27c
|
||||
DIST etckeeper-1.18.4.tar.gz 67499 SHA256 a8f28c24d2c296db861fd5f1e95e6c9aa924eed19a331487cf42687f49123600 SHA512 fa1d8eda9037be7933fd5be6ea4b5dfb77d6858ffab4ae4dad838d5c6ec066cb254c700732bfa0becd388b952b2b216bd7027cf3a67f806048e6cb3aa9c276c3 WHIRLPOOL df03d41ffbc86c94a2c1a62d50751e117ae7fe52d8551c752e2b53cae34685a3dd0f088d08ed8ac1545aeac0ec16bc3900b8e0d97c95c0da4cfb52ace7b59607
|
||||
DIST etckeeper-1.18.5.tar.gz 68041 SHA256 a4ddb313037c6861efbc24a55ed8e66cd98591e190aedf2657c8a1071f821889 SHA512 6a0ff1dd2dcc665da8a68bf48ea5bb12c9ae1f1a8737f3bcec47f9d055602e469b69a4ceed9a2042b89492a98c17f2065596f5e65fc228734de1aad7db3a12c1 WHIRLPOOL 6fea65228add2ff3dfe29438d2dd4cde9562e8c0a69ed7ce2c07ac929d7109af3f96dc3d85bfdaceead716394bb80fd0b7206b5cfc3e408e922e215c03985b8e
|
||||
DIST etckeeper-1.18.6.tar.gz 73487 SHA256 7db1a2b48c011b5e04ec95af559de8d1d243bdcdf6cd591b3b0b46d1f21e9602 SHA512 a5a3a4677f31cf1d010ab40ed37ce602c71c2e8ebf2273bf8be6dc8209f603ae0fc6a2c0d5d60d9a9d9aa4f3e7b7c0037534890cbc67b38132e5f654abcda04c WHIRLPOOL 41805cff70804abe574831ec1bb2bc4e2e5079ff97c777f2597f8af4f6e972009312b5f1760a0c17e0db0f150266b94cdc1f49afb8e15401d8c57ad540112324
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit eutils prefix python-r1
|
||||
|
||||
DESCRIPTION="A collection of tools to let /etc be stored in a repository"
|
||||
HOMEPAGE="https://etckeeper.branchable.com/"
|
||||
SRC_URI="https://github.com/joeyh/etckeeper/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
SLOT="0"
|
||||
IUSE="bazaar cron"
|
||||
REQUIRED_USE="bazaar? ( ${PYTHON_REQUIRED_USE} )"
|
||||
|
||||
VCS_DEPEND="dev-vcs/git
|
||||
dev-vcs/mercurial
|
||||
dev-vcs/darcs"
|
||||
DEPEND="bazaar? ( dev-vcs/bzr )"
|
||||
RDEPEND="${DEPEND}
|
||||
app-portage/portage-utils
|
||||
cron? ( virtual/cron )
|
||||
bazaar? ( ${PYTHON_DEPS} )
|
||||
!bazaar? ( || ( ${VCS_DEPEND} ) )"
|
||||
|
||||
src_prepare(){
|
||||
epatch "${FILESDIR}"/${PN}-1.18.3-gentoo.patch
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
:
|
||||
}
|
||||
|
||||
src_install(){
|
||||
emake DESTDIR="${ED}" install
|
||||
|
||||
bzr_install() {
|
||||
${PYTHON} ./${PN}-bzr/__init__.py install --root="${ED}" ||
|
||||
die "bzr support installation failed!"
|
||||
}
|
||||
use bazaar && python_foreach_impl bzr_install
|
||||
|
||||
if use prefix; then
|
||||
doenvd "${FILESDIR}"/99${PN}
|
||||
eprefixify "${ED%/}"/etc/env.d/99${PN}
|
||||
fi
|
||||
|
||||
dodoc doc/README.mdwn
|
||||
docinto examples
|
||||
newdoc "${FILESDIR}"/bashrc-r1 bashrc
|
||||
|
||||
if use cron ; then
|
||||
exeinto /etc/cron.daily
|
||||
newexe debian/cron.daily etckeeper
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst(){
|
||||
elog "${PN} supports the following VCS: ${VCS_DEPEND}"
|
||||
elog " dev-vcs/bzr"
|
||||
elog "This ebuild just ensures at least one is installed!"
|
||||
elog "For dev-vcs/bzr you need to enable 'bazaar' useflag."
|
||||
elog
|
||||
elog "You may want to adjust your /etc/portage/bashrc"
|
||||
elog "see the example file in /usr/share/doc/${PF}/examples"
|
||||
elog
|
||||
elog "To initialise your etc-dir as a repository run:"
|
||||
elog "${PN} init -d /etc"
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit eutils prefix python-r1
|
||||
|
||||
DESCRIPTION="A collection of tools to let /etc be stored in a repository"
|
||||
HOMEPAGE="https://etckeeper.branchable.com/"
|
||||
SRC_URI="https://github.com/joeyh/etckeeper/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
SLOT="0"
|
||||
IUSE="bazaar cron"
|
||||
REQUIRED_USE="bazaar? ( ${PYTHON_REQUIRED_USE} )"
|
||||
|
||||
VCS_DEPEND="dev-vcs/git
|
||||
dev-vcs/mercurial
|
||||
dev-vcs/darcs"
|
||||
DEPEND="bazaar? ( dev-vcs/bzr )"
|
||||
RDEPEND="${DEPEND}
|
||||
app-portage/portage-utils
|
||||
cron? ( virtual/cron )
|
||||
bazaar? ( ${PYTHON_DEPS} )
|
||||
!bazaar? ( || ( ${VCS_DEPEND} ) )"
|
||||
|
||||
src_prepare(){
|
||||
epatch "${FILESDIR}"/${PN}-1.18.3-gentoo.patch
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
:
|
||||
}
|
||||
|
||||
src_install(){
|
||||
emake DESTDIR="${ED}" install
|
||||
|
||||
bzr_install() {
|
||||
${PYTHON} ./${PN}-bzr/__init__.py install --root="${ED}" ||
|
||||
die "bzr support installation failed!"
|
||||
}
|
||||
use bazaar && python_foreach_impl bzr_install
|
||||
|
||||
if use prefix; then
|
||||
doenvd "${FILESDIR}"/99${PN}
|
||||
eprefixify "${ED%/}"/etc/env.d/99${PN}
|
||||
fi
|
||||
|
||||
dodoc doc/README.mdwn
|
||||
docinto examples
|
||||
newdoc "${FILESDIR}"/bashrc-r1 bashrc
|
||||
|
||||
if use cron ; then
|
||||
exeinto /etc/cron.daily
|
||||
newexe debian/cron.daily etckeeper
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst(){
|
||||
elog "${PN} supports the following VCS: ${VCS_DEPEND}"
|
||||
elog " dev-vcs/bzr"
|
||||
elog "This ebuild just ensures at least one is installed!"
|
||||
elog "For dev-vcs/bzr you need to enable 'bazaar' useflag."
|
||||
elog
|
||||
elog "You may want to adjust your /etc/portage/bashrc"
|
||||
elog "see the example file in /usr/share/doc/${PF}/examples"
|
||||
elog
|
||||
elog "To initialise your etc-dir as a repository run:"
|
||||
elog "${PN} init -d /etc"
|
||||
}
|
||||
Reference in New Issue
Block a user