From 418459f7de9eb29d6db8b61681f39c467d9600e1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 8 Oct 2023 18:03:40 +0100 Subject: gentoo auto-resync : 08:10:2023 - 18:03:40 --- app-backup/ccollect/Manifest | 2 +- app-backup/ccollect/ccollect-0.8-r1.ebuild | 77 +++++++++++++++++++++++++++++ app-backup/ccollect/ccollect-0.8.ebuild | 78 ------------------------------ 3 files changed, 78 insertions(+), 79 deletions(-) create mode 100644 app-backup/ccollect/ccollect-0.8-r1.ebuild delete mode 100644 app-backup/ccollect/ccollect-0.8.ebuild (limited to 'app-backup/ccollect') diff --git a/app-backup/ccollect/Manifest b/app-backup/ccollect/Manifest index a8ea7866b7f9..3061782a0bf1 100644 --- a/app-backup/ccollect/Manifest +++ b/app-backup/ccollect/Manifest @@ -1,3 +1,3 @@ DIST ccollect-0.8.tar.bz2 60376 BLAKE2B e3580aa6d1438b106c372e5b4abc77b9e19a8e057b93cfbd5882b3e9a899d5fa02c31c030c933c6e3e254687423cc51d0d86787365d40e4f5635aab3aa6dd954 SHA512 dc4b2a8687c636938154f8a4a4048c3f0ef13f6d6e3f6e66d8dcc8f544f3a390a98a8dbfb3ba2ba9019decbec5d628f07461dd3f803e14b2203972936ebf96f3 -EBUILD ccollect-0.8.ebuild 2212 BLAKE2B 3d8f1fa55b5cb5f67ffed1fd23078f9fa860c5536b72be8511410b7ddd301739b77a0dbb64cbcb18c2c4b2f3f508732810464f4fc4dd20d7afd6d99186cb2db7 SHA512 c9b3cc3ded77b4c32367c58b8a8a26dbbafead1c2f278ecb0e3a2774d281a851c83ad6ee1c3ec7f4b5e7f211c34aad2437ac124301b874e3405731c592037e90 +EBUILD ccollect-0.8-r1.ebuild 2209 BLAKE2B c0fcc2f9e198064de9f2d60d53a5c92ca53abf81f08b22cb0f13d35e6169c547e8d1d645ee3aba64d85c13c5c3f3ad9bf8059fbcd6942c6cfe9a14bf9799b69d SHA512 0fb265043da59e9d03eafa6b67b35dea8c4cb35b71bd501a61c62b961030803a8a96f687cecc501eb3082d20fe91009e2e11cf96058f54b32064c90510b2143e MISC metadata.xml 168 BLAKE2B 2e0e000b4c3b6ca04c12903fdbe278415c05a822623c52e9aa95cbbf3d50bcb1246b7edbda7d2f6b559af8950c6374e6e0a69b76319964cfe686bf50b0604a57 SHA512 4dcf45d1809e8390a2d8155c8ebfe0dd610203e392aeab0ccd8a10f42cc8532a4925eff32b35e7a6c35598a4efd288229034ec0732299dbd8cfa0acff705fed3 diff --git a/app-backup/ccollect/ccollect-0.8-r1.ebuild b/app-backup/ccollect/ccollect-0.8-r1.ebuild new file mode 100644 index 000000000000..442fc37d3d95 --- /dev/null +++ b/app-backup/ccollect/ccollect-0.8-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Pseudo incremental backup with different exclude lists using hardlinks and rsync" +HOMEPAGE="https://www.nico.schottelius.org/software/ccollect/" +SRC_URI="https://www.nico.schottelius.org/software/${PN}/download/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 ~hppa ppc ~sparc x86" +IUSE="doc examples" +# tests need ssh-access +RESTRICT="test" + +RDEPEND="net-misc/rsync" +BDEPEND=" + doc? ( + >=app-text/asciidoc-8.1.0 + app-text/docbook-xsl-stylesheets + app-text/docbook-xml-dtd:4.2 + dev-libs/libxslt + )" + +src_compile() { + use doc && emake XSL="${BROOT}"/usr/share/sgml/docbook/xsl-stylesheets/html/docbook.xsl documentation +} + +src_install() { + dobin ccollect.sh + dosym ccollect.sh /usr/bin/ccollect + + local i + for i in add_source analyse_logs archive_config check_config \ + delete_source list_intervals logwrapper stats; do + newbin tools/ccollect_${i}.sh ccollect_${i} + done + + insinto /usr/share/${PN}/tools + doins tools/config-pre* tools/{gnu-du-backup-size-compare,report_success}.sh + + pushd doc/changes >/dev/null || die + for i in * ; do + newdoc ${i} NEWS-${i} + done + popd >/dev/null || die + + if use doc; then + doman doc/man/*.1 + + find doc/ \( -iname '*.1' -o -iname '*.text' \) -delete || die + HTML_DOCS=( doc/{*.htm{,l},man} ) + fi + einstalldocs + + if use examples ; then + docinto examples + dodoc -r conf/. + fi +} + +pkg_postinst() { + ewarn "If you're upgrading from 0.6.x or less, you'll have to" + ewarn "upgrade your existing configuration as follows:" + ewarn "1. Make the scripts in ${EROOT}/usr/share/ccollect/scripts executable" + ewarn "2. Run all config-pre-\$VER-to-\$VER.sh in ${EROOT}/usr/share/ccollect/scripts" + ewarn " ascending order, where \$VER is greater or equal than the version" + ewarn " you upgraded from." + ewarn "Example:" + ewarn " You upgraded from 0.5, thus you have to run:" + ewarn " ${EROOT}/usr/share/ccollect/tools/config-pre-0.6-to-0.6.sh" + ewarn " ${EROOT}/usr/share/ccollect/tools/config-pre-0.7-to-0.7.sh" + + elog "Please note that many tools are now installed directly to ${EROOT}/usr/bin" + elog "as recommended by upstream." +} diff --git a/app-backup/ccollect/ccollect-0.8.ebuild b/app-backup/ccollect/ccollect-0.8.ebuild deleted file mode 100644 index 4ece2b179dff..000000000000 --- a/app-backup/ccollect/ccollect-0.8.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Pseudo incremental backup with different exclude lists using hardlinks and rsync" -HOMEPAGE="https://www.nico.schottelius.org/software/ccollect/" -SRC_URI="https://www.nico.schottelius.org/software/${PN}/download/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~hppa ppc ~sparc x86" -IUSE="doc examples" - -DEPEND=" - doc? ( - >=app-text/asciidoc-8.1.0 - app-text/docbook-xsl-stylesheets - app-text/docbook-xml-dtd:4.2 - dev-libs/libxslt - )" -RDEPEND="net-misc/rsync" - -# tests need ssh-access -RESTRICT="test" - -src_compile() { - use doc && emake XSL=/usr/share/sgml/docbook/xsl-stylesheets/html/docbook.xsl documentation -} - -src_install() { - dobin ccollect.sh - dosym ccollect.sh /usr/bin/ccollect - - local i - for i in add_source analyse_logs archive_config check_config \ - delete_source list_intervals logwrapper stats; do - newbin tools/ccollect_${i}.sh ccollect_${i} - done - - insinto /usr/share/${PN}/tools - doins tools/config-pre* tools/{gnu-du-backup-size-compare,report_success}.sh - - pushd doc/changes >/dev/null || die - for i in * ; do - newdoc ${i} NEWS-${i} - done - popd >/dev/null || die - - if use doc; then - doman doc/man/*.1 - - find doc/ \( -iname '*.1' -o -iname '*.text' \) -delete || die - HTML_DOCS=( doc/{*.htm{,l},man} ) - fi - einstalldocs - - if use examples ; then - docinto examples - dodoc -r conf/. - fi -} - -pkg_postinst() { - ewarn "If you're upgrading from 0.6.x or less, you'll have to" - ewarn "upgrade your existing configuration as follows:" - ewarn "1. Make the scripts in ${EROOT%/}/usr/share/ccollect/scripts executable" - ewarn "2. Run all config-pre-\$VER-to-\$VER.sh in ${EROOT%/}/usr/share/ccollect/scripts" - ewarn " ascending order, where \$VER is greater or equal than the version" - ewarn " you upgraded from." - ewarn "Example:" - ewarn " You upgraded from 0.5, thus you have to run:" - ewarn " ${EROOT%/}/usr/share/ccollect/tools/config-pre-0.6-to-0.6.sh" - ewarn " ${EROOT%/}/usr/share/ccollect/tools/config-pre-0.7-to-0.7.sh" - - elog "Please note that many tools are now installed directly to ${EROOT%/}/usr/bin" - elog "as recommended by upstream." -} -- cgit v1.2.3