From b426a5cef3f0ebe3389686a1c145a834d3a1e120 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 9 Sep 2022 10:40:04 +0100 Subject: gentoo auto-resync : 09:09:2022 - 10:40:04 --- app-backup/Manifest.gz | Bin 8354 -> 8358 bytes app-backup/backuppc/Manifest | 2 +- app-backup/backuppc/backuppc-4.4.0-r1.ebuild | 188 +++++++++++++++++++++++++++ app-backup/backuppc/backuppc-4.4.0.ebuild | 187 -------------------------- 4 files changed, 189 insertions(+), 188 deletions(-) create mode 100644 app-backup/backuppc/backuppc-4.4.0-r1.ebuild delete mode 100644 app-backup/backuppc/backuppc-4.4.0.ebuild (limited to 'app-backup') diff --git a/app-backup/Manifest.gz b/app-backup/Manifest.gz index e09dd9439710..013b3e0346a9 100644 Binary files a/app-backup/Manifest.gz and b/app-backup/Manifest.gz differ diff --git a/app-backup/backuppc/Manifest b/app-backup/backuppc/Manifest index b6c12e93dfe7..0443e14dc0fe 100644 --- a/app-backup/backuppc/Manifest +++ b/app-backup/backuppc/Manifest @@ -10,5 +10,5 @@ AUX backuppc.service 231 BLAKE2B 948543a9fc9accff40868e930680c4eb9c0ff89c2912540 DIST BackupPC-3.3.1.tar.gz 556461 BLAKE2B 91477196506291fb542a266aca4182ad727758ccf8379c135dcd5147d42b5f1f58d094473430fee64f67e0fc75e077fdf92bfcdaf2313dd53480737666746160 SHA512 b6bb9de3103c5062098d80755055b7461ae9133a4a46a66b3d0af89d081086571694db1898e7d85880defa15b030bad522812116ae5361c0fbde90b877d139c6 DIST BackupPC-4.4.0.tar.gz 657309 BLAKE2B db977b73b09e1b2a051e38ecc94567cb516e2b11eca79c23bb0c4eef508e78cbbc984aaee4c84dc4ecd0524d849195c14dfe395ff97f77b6c7cf8adff152d75e SHA512 0c88447ab000c4a452034d5d8a074cd56801c7b38b0886e686e446c73ecfd0a40f0aa08703f76d16c31b24aec85c10c4ed1815d0cb67be5a1d66e5caeb3de418 EBUILD backuppc-3.3.1-r6.ebuild 5448 BLAKE2B 473a11c0a125b5d87badb514f25aff1e991d09a580e2953ba9073bba7c01a9817c7a698e06590ec227a01cb82bd791b2e0c5515ae988b343c9301ae980fc8dee SHA512 ed152a7f3a236b4326dd3c2da17e963c328c835617a6c259069c40fd8a3e15038d2f4898ad7ffa513cea381c2aef08704b5ea0d5aa8869c28237712086fde7f2 -EBUILD backuppc-4.4.0.ebuild 5053 BLAKE2B a05902c107dc4d85a81ce049f15e62f5c5bb552d9c92971ef1171fd01caffadd3692ca65956e4ef0dac50990135056cb50adca88781a1ac1b57efbaf0daccbbf SHA512 d21eee9b0aad9cea01dc59632c4cd5e902bb93020444b6885fc5d99dd64e2442fa701a955d7759266cd67b288dd5a5fd022c310d3ea6efab7ccd70c4acdf4783 +EBUILD backuppc-4.4.0-r1.ebuild 5100 BLAKE2B 9e4b84f5d341892f1c03fd92db40036e1f52b9346140502ab88b790090dd38ab65767d29c9ab60b78155911ffaebce685a123bf8f6ec2989a056bdaf3417de68 SHA512 31453e810fdbc6ed24666de62d629ee8a8c4f9cf7c86a8ac56fc0beddf88963cb97bec7908286601927df12479c8ab8ed2abb852dac3fe8e0bf9cd4d69cf899c MISC metadata.xml 539 BLAKE2B c702c033b6ffe694fc3297d786adc3078d89d882eb88a4524411f202eabd14bf95ad7b31ad122e7249a038cd96f511c288c07fa192bb4e56e5edef43e4131675 SHA512 8f96ed324e67f5548f9dbd0b9a56206a902fc8e0cc0feccaf6e7a29d76050c8568f97fbee5a394ecfb121e54e133fe93afd2c26d33af68a9766f4726a1696354 diff --git a/app-backup/backuppc/backuppc-4.4.0-r1.ebuild b/app-backup/backuppc/backuppc-4.4.0-r1.ebuild new file mode 100644 index 000000000000..3d1f23482625 --- /dev/null +++ b/app-backup/backuppc/backuppc-4.4.0-r1.ebuild @@ -0,0 +1,188 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P="BackupPC-${PV}" +MY_PN="BackupPC" + +inherit depend.apache systemd + +DESCRIPTION="High-performance backups to a server's disk" +HOMEPAGE="https://backuppc.github.io/backuppc/index.html" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="rss samba" + +DEPEND=" + acct-group/backuppc + acct-user/backuppc + app-admin/apache-tools + app-admin/makepasswd + dev-lang/perl +" + +# The CGI modules are handled in ${RDEPEND}. +APACHE_MODULES="apache2_modules_alias," # RedirectMatch +APACHE_MODULES+="apache2_modules_authn_core," # AuthType +APACHE_MODULES+="apache2_modules_authz_core," # Require +APACHE_MODULES+="apache2_modules_authz_host," # Require host +APACHE_MODULES+="apache2_modules_authz_user" # Require valid-user + +# Older versions of mod_perl think they're compatible with apache-2.4, +# so we require the new one explicitly. +RDEPEND=" + ${DEPEND} + app-arch/par2cmdline + dev-perl/Archive-Zip + dev-perl/CGI + dev-perl/File-RsyncP + dev-perl/libwww-perl + dev-perl/BackupPC-XS + net-misc/rsync-bpc + virtual/mta + virtual/perl-IO-Compress + www-apache/mod_perl + www-apache/mpm_itk + || ( + >=www-servers/apache-2.4[${APACHE_MODULES},apache2_modules_cgi] + >=www-servers/apache-2.4[${APACHE_MODULES},apache2_modules_cgid] + ) + rss? ( dev-perl/XML-RSS ) + samba? ( net-fs/samba )" + +CGIDIR="${EROOT}/usr/lib/backuppc/htdocs" +CONFDIR="${EROOT}/etc/${MY_PN}" +DATADIR="${EROOT}/var/lib/backuppc" +DOCDIR="${EROOT}/usr/share/doc/${PF}" +LOGDIR="${EROOT}/var/log/BackupPC" +need_apache2_4 + +src_prepare() { + default + + # Fix docs location using the marker that we've patched in. + sed "s+__DOCDIR__+${DOCDIR}+" -i lib/BackupPC/CGI/View.pm || die +} + +src_install() { + local myconf + if use samba ; then + myconf=( + --bin-path smbclient=$(type -p smbclient) + --bin-path nmblookup=$(type -p nmblookup) + ) + fi + + /usr/bin/env perl ./configure.pl \ + --batch \ + --bin-path perl=$(type -p perl) \ + --bin-path tar=$(type -p tar) \ + --bin-path rsync=$(type -p rsync) \ + --bin-path ping=$(type -p ping) \ + --bin-path df=$(type -p df) \ + --bin-path ssh=$(type -p ssh) \ + --bin-path sendmail=$(type -p sendmail) \ + --bin-path hostname=$(type -p hostname) \ + --bin-path gzip=$(type -p gzip) \ + --bin-path bzip2=$(type -p bzip2) \ + --config-dir "${CONFDIR}" \ + --install-dir /usr \ + --data-dir "${DATADIR}" \ + --hostname 127.0.0.1 \ + --uid-ignore \ + --dest-dir "${D}" \ + --html-dir "${CGIDIR}"/image \ + --html-dir-url /image \ + --cgi-dir "${CGIDIR}" \ + --fhs \ + ${myconf[@]} || die "failed the configure.pl script" + + ebegin "Installing documentation" + + pod2man \ + -errors=none \ + --section=8 \ + --center="BackupPC manual" \ + "${S}"/doc/BackupPC.pod backuppc.8 \ + || die "failed to generate man page" + + doman backuppc.8 + + # Place the documentation in the correct location + dodoc "${ED}/usr/share/doc/BackupPC/BackupPC.html" + dodoc "${ED}/usr/share/doc/BackupPC/BackupPC.pod" + rm -rf "${ED}/usr/share/doc" || die + + eend 0 + + # Setup directories + dodir "${CONFDIR}/pc" + + keepdir "${CONFDIR}" + keepdir "${CONFDIR}/pc" + keepdir "${DATADIR}"/{trash,pool,pc,cpool} + keepdir "${LOGDIR}" + + ebegin "Setting up init.d/conf.d/systemd scripts" + newinitd "${S}"/systemd/init.d/gentoo-backuppc backuppc + newconfd "${S}"/systemd/init.d/gentoo-backuppc.conf backuppc + systemd_dounit "${FILESDIR}/${PN}.service" + + insinto "${APACHE_MODULES_CONFDIR}" + doins "${FILESDIR}"/99_backuppc.conf + + # Make sure that the ownership is correct + chown -R backuppc:backuppc "${D}${CONFDIR}" || die + chown -R backuppc:backuppc "${D}${DATADIR}" || die + chown -R backuppc:backuppc "${D}${LOGDIR}" || die + + eend 0 +} + +pkg_postinst() { + elog "Installation finished, you may now start using BackupPC." + elog + elog "- Read the documentation in ${EROOT}/usr/share/doc/${PF}/BackupPC.html" + elog " Please pay special attention to the security section." + elog + elog "- You can launch backuppc by running:" + elog + elog " # /etc/init.d/backuppc start" + elog + elog "- To enable the GUI, first edit ${EROOT}/etc/conf.d/apache2 and add," + elog + elog " \"-D BACKUPPC -D PERL -D MPM_ITK\"" + elog + elog " to the APACHE2_OPTS line." + elog + elog " Then you must edit ${EROOT}/etc/apache2/modules.d/00_mpm_itk.conf" + elog " and adjust the values of LimitUIDRange/LimitGIDRange to include" + elog " the UID and GID of the backuppc user." + elog + elog " Finally, start apache:" + elog + elog " # /etc/init.d/apache2 start" + elog + elog " The web interface should now be running on," + elog + elog " http://127.0.0.1:8080/" + elog + + # Generate a new password if there's no auth file + if [[ ! -f "${CONFDIR}/users.htpasswd" ]]; then + adminuser="backuppc" + adminpass=$(makepasswd --chars=12) + htpasswd -bc "${CONFDIR}/users.htpasswd" ${adminuser} ${adminpass} + + elog "" + elog "- Created admin user ${adminuser} with password ${adminpass}" + elog " To add new users, run: " + elog "" + elog " # htpasswd ${CONFDIR}/users.htpasswd newUser" + fi +} diff --git a/app-backup/backuppc/backuppc-4.4.0.ebuild b/app-backup/backuppc/backuppc-4.4.0.ebuild deleted file mode 100644 index 08a7cffd4284..000000000000 --- a/app-backup/backuppc/backuppc-4.4.0.ebuild +++ /dev/null @@ -1,187 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_P="BackupPC-${PV}" - -inherit depend.apache systemd - -DESCRIPTION="High-performance backups to a server's disk" -HOMEPAGE="https://backuppc.github.io/backuppc/index.html" -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="rss samba" - -DEPEND=" - acct-group/backuppc - acct-user/backuppc - app-admin/apache-tools - app-admin/makepasswd - dev-lang/perl -" - -# The CGI modules are handled in ${RDEPEND}. -APACHE_MODULES="apache2_modules_alias," # RedirectMatch -APACHE_MODULES+="apache2_modules_authn_core," # AuthType -APACHE_MODULES+="apache2_modules_authz_core," # Require -APACHE_MODULES+="apache2_modules_authz_host," # Require host -APACHE_MODULES+="apache2_modules_authz_user" # Require valid-user - -# Older versions of mod_perl think they're compatible with apache-2.4, -# so we require the new one explicitly. -RDEPEND=" - ${DEPEND} - app-arch/par2cmdline - dev-perl/Archive-Zip - dev-perl/CGI - dev-perl/File-RsyncP - dev-perl/libwww-perl - dev-perl/BackupPC-XS - net-misc/rsync-bpc - virtual/mta - virtual/perl-IO-Compress - www-apache/mod_perl - www-apache/mpm_itk - || ( - >=www-servers/apache-2.4[${APACHE_MODULES},apache2_modules_cgi] - >=www-servers/apache-2.4[${APACHE_MODULES},apache2_modules_cgid] - ) - rss? ( dev-perl/XML-RSS ) - samba? ( net-fs/samba )" - -CGIDIR="/usr/lib/backuppc/htdocs" -CONFDIR="${EROOT}/etc/${EPREFIX}" -DATADIR="/var/lib/backuppc" -DOCDIR="/usr/share/doc/${PF}" -LOGDIR="/var/log/BackupPC" -need_apache2_4 - -src_prepare() { - default - - # Fix docs location using the marker that we've patched in. - sed "s+__DOCDIR__+${DOCDIR}+" -i lib/BackupPC/CGI/View.pm || die -} - -src_install() { - local myconf - if use samba ; then - myconf=( - --bin-path smbclient=$(type -p smbclient) - --bin-path nmblookup=$(type -p nmblookup) - ) - fi - - /usr/bin/env perl ./configure.pl \ - --batch \ - --bin-path perl=$(type -p perl) \ - --bin-path tar=$(type -p tar) \ - --bin-path rsync=$(type -p rsync) \ - --bin-path ping=$(type -p ping) \ - --bin-path df=$(type -p df) \ - --bin-path ssh=$(type -p ssh) \ - --bin-path sendmail=$(type -p sendmail) \ - --bin-path hostname=$(type -p hostname) \ - --bin-path gzip=$(type -p gzip) \ - --bin-path bzip2=$(type -p bzip2) \ - --config-dir "${CONFDIR}" \ - --install-dir /usr \ - --data-dir "${DATADIR}" \ - --hostname 127.0.0.1 \ - --uid-ignore \ - --dest-dir "${D}" \ - --html-dir "${CGIDIR}"/image \ - --html-dir-url /image \ - --cgi-dir "${CGIDIR}" \ - --fhs \ - ${myconf[@]} || die "failed the configure.pl script" - - ebegin "Installing documentation" - - pod2man \ - -errors=none \ - --section=8 \ - --center="BackupPC manual" \ - "${S}"/doc/BackupPC.pod backuppc.8 \ - || die "failed to generate man page" - - doman backuppc.8 - - # Place the documentation in the correct location - dodoc "${ED}/usr/share/doc/BackupPC/BackupPC.html" - dodoc "${ED}/usr/share/doc/BackupPC/BackupPC.pod" - rm -rf "${ED}/usr/share/doc" || die - - eend 0 - - # Setup directories - dodir "${CONFDIR}/pc" - - keepdir "${CONFDIR}" - keepdir "${CONFDIR}/pc" - keepdir "${DATADIR}"/{trash,pool,pc,cpool} - keepdir "${LOGDIR}" - - ebegin "Setting up init.d/conf.d/systemd scripts" - newinitd "${S}"/systemd/init.d/gentoo-backuppc backuppc - newconfd "${S}"/systemd/init.d/gentoo-backuppc.conf backuppc - systemd_dounit "${FILESDIR}/${PN}.service" - - insinto "${APACHE_MODULES_CONFDIR}" - doins "${FILESDIR}"/99_backuppc.conf - - # Make sure that the ownership is correct - chown -R backuppc:backuppc "${D}${CONFDIR}" || die - chown -R backuppc:backuppc "${D}${DATADIR}" || die - chown -R backuppc:backuppc "${D}${LOGDIR}" || die - - eend 0 -} - -pkg_postinst() { - elog "Installation finished, you may now start using BackupPC." - elog - elog "- Read the documentation in ${EROOT}/usr/share/doc/${PF}/BackupPC.html" - elog " Please pay special attention to the security section." - elog - elog "- You can launch backuppc by running:" - elog - elog " # /etc/init.d/backuppc start" - elog - elog "- To enable the GUI, first edit ${EROOT}/etc/conf.d/apache2 and add," - elog - elog " \"-D BACKUPPC -D PERL -D MPM_ITK\"" - elog - elog " to the APACHE2_OPTS line." - elog - elog " Then you must edit ${EROOT}/etc/apache2/modules.d/00_mpm_itk.conf" - elog " and adjust the values of LimitUIDRange/LimitGIDRange to include" - elog " the UID and GID of the backuppc user." - elog - elog " Finally, start apache:" - elog - elog " # /etc/init.d/apache2 start" - elog - elog " The web interface should now be running on," - elog - elog " http://127.0.0.1:8080/" - elog - - # Generate a new password if there's no auth file - if [[ ! -f "${CONFDIR}/users.htpasswd" ]]; then - adminuser="backuppc" - adminpass=$(makepasswd --chars=12) - htpasswd -bc "${CONFDIR}/users.htpasswd" ${adminuser} ${adminpass} - - elog "" - elog "- Created admin user ${adminuser} with password ${adminpass}" - elog " To add new users, run: " - elog "" - elog " # htpasswd ${CONFDIR}/users.htpasswd newUser" - fi -} -- cgit v1.2.3