diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-07-05 12:54:40 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-07-05 13:35:49 +0200 |
commit | 6b0cddd5f3d6f21db374affe7b1ac37245c3d179 (patch) | |
tree | 8598eef4f6d26f2200705682eedab5045d538db5 /app-backup/boxbackup | |
parent | dev-lang/falcon: Remove last-rited pkg, #595416 (diff) | |
download | gentoo-6b0cddd5f3d6f21db374affe7b1ac37245c3d179.tar.gz gentoo-6b0cddd5f3d6f21db374affe7b1ac37245c3d179.tar.bz2 gentoo-6b0cddd5f3d6f21db374affe7b1ac37245c3d179.zip |
app-backup/boxbackup: Remove last-rited pkg, #595412
Diffstat (limited to 'app-backup/boxbackup')
-rw-r--r-- | app-backup/boxbackup/Manifest | 1 | ||||
-rw-r--r-- | app-backup/boxbackup/boxbackup-0.11.1-r2.ebuild | 74 | ||||
-rw-r--r-- | app-backup/boxbackup/files/bbackupd.rc | 20 | ||||
-rw-r--r-- | app-backup/boxbackup/files/bbstored.rc | 20 | ||||
-rw-r--r-- | app-backup/boxbackup/files/boxbackup-0.11.1-fix-Wformat-security.patch | 27 | ||||
-rw-r--r-- | app-backup/boxbackup/files/boxbackup-0.11.1-fix-mandir.patch | 14 | ||||
-rw-r--r-- | app-backup/boxbackup/files/boxbackup-0.11_rc8-testbbackupd.patch | 11 | ||||
-rw-r--r-- | app-backup/boxbackup/metadata.xml | 14 |
8 files changed, 0 insertions, 181 deletions
diff --git a/app-backup/boxbackup/Manifest b/app-backup/boxbackup/Manifest deleted file mode 100644 index 6870363bd54c..000000000000 --- a/app-backup/boxbackup/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST boxbackup-0.11.1.tgz 1863270 SHA256 1328b010477259c4767276dbfebab6580e883336cc9d25696c39991b09cc6d32 SHA512 15ceceae3659f14254f422136805a8b3ed3c39d14f8a1ffd0c96efb05b7acb5be310e13144ed86fe4afd24a3c0b86ec771b7d3a9f08b2789bb98e18468ca97f8 WHIRLPOOL 9abcae4e907d526e6df0ebfee813cd374e8f981e5f25e0a2cbc2e958e0bf4d0ce10a455d71e036dc13aa31c01c422349cdbb1f1a36a0ea8ae16cf2b14f0f97fc diff --git a/app-backup/boxbackup/boxbackup-0.11.1-r2.ebuild b/app-backup/boxbackup/boxbackup-0.11.1-r2.ebuild deleted file mode 100644 index d2c65aa98c60..000000000000 --- a/app-backup/boxbackup/boxbackup-0.11.1-r2.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit user - -DESCRIPTION="A completely automatic on-line backup system" -HOMEPAGE="http://boxbackup.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" -SRC_URI="http://boxbackup.org/svn/box/packages/${P/_/}.tgz" - -# GPL-2 is included for the init script, bug 425884. -LICENSE="BSD GPL-2" -SLOT="0" -KEYWORDS="amd64 x86 ~ppc-macos ~x86-macos" -IUSE="client-only libressl" -DEPEND="sys-libs/zlib - sys-libs/db:= - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - >=dev-lang/perl-5.6" -RDEPEND="${DEPEND} - virtual/mta" - -S="${WORKDIR}/${P/_/}" - -PATCHES=( - "${FILESDIR}/${PN}-0.11_rc8-testbbackupd.patch" - "${FILESDIR}/${PN}-0.11.1-fix-Wformat-security.patch" - "${FILESDIR}/${PN}-0.11.1-fix-mandir.patch" -) - -src_compile() { - # Bug 299411. - emake -j1 -} - -src_install() { - emake -j1 DESTDIR="${D}" install - emake -j1 DESTDIR="${D}" install-backup-client - - dodoc BUGS.txt CONTACT.txt DOCUMENTATION.txt ExceptionCodes.txt THANKS.txt - newinitd "${FILESDIR}"/bbackupd.rc bbackupd - - if ! use client-only ; then - emake -j1 DESTDIR="${D}" install-backup-server - newinitd "${FILESDIR}"/bbstored.rc bbstored - fi - - keepdir /etc/boxbackup -} - -pkg_preinst() { - if ! use client-only ; then - enewgroup bbstored - enewuser bbstored -1 -1 -1 bbstored - fi -} - -pkg_postinst() { - while read line; do elog "${line}"; done <<EOF -After configuring the Box Backup client and/or server, you can start -the daemon using the init scripts /etc/init.d/bbackupd and -/etc/init.d/bbstored. -The configuration files can be found in /etc/boxbackup - -More information about configuring the client can be found at -${HOMEPAGE}client.html, -and more information about configuring the server can be found at -${HOMEPAGE}server.html. -EOF - echo -} diff --git a/app-backup/boxbackup/files/bbackupd.rc b/app-backup/boxbackup/files/bbackupd.rc deleted file mode 100644 index 0c6ce82e8e7d..000000000000 --- a/app-backup/boxbackup/files/bbackupd.rc +++ /dev/null @@ -1,20 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need localmount - use net -} - -start() { - ebegin "Starting box backup daemon" - start-stop-daemon --start --exec /usr/sbin/bbackupd > /dev/null - eend $? -} - -stop() { - ebegin "Stopping box backup daemon" - start-stop-daemon --stop --exec /usr/sbin/bbackupd - eend $? -} diff --git a/app-backup/boxbackup/files/bbstored.rc b/app-backup/boxbackup/files/bbstored.rc deleted file mode 100644 index 0dfd343209f5..000000000000 --- a/app-backup/boxbackup/files/bbstored.rc +++ /dev/null @@ -1,20 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need localmount - use net -} - -start() { - ebegin "Starting box backup store daemon" - start-stop-daemon --start --exec /usr/sbin/bbstored > /dev/null - eend $? -} - -stop() { - ebegin "Stopping box backup store daemon" - start-stop-daemon --stop --exec /usr/sbin/bbstored - eend $? -} diff --git a/app-backup/boxbackup/files/boxbackup-0.11.1-fix-Wformat-security.patch b/app-backup/boxbackup/files/boxbackup-0.11.1-fix-Wformat-security.patch deleted file mode 100644 index 22efb3266f46..000000000000 --- a/app-backup/boxbackup/files/boxbackup-0.11.1-fix-Wformat-security.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 53e968624b5540bf0c97bb69636f1bc908f9b00a Mon Sep 17 00:00:00 2001 -From: Michael Orlitzky <michael@orlitzky.com> -Date: Wed, 3 Aug 2016 16:38:23 -0400 -Subject: [PATCH 1/1] bin/bbackupquery/BackupQueries.cpp: fix trivial - -Wformat-security warning. - -Gentoo-Bug: 520978 ---- - bin/bbackupquery/BackupQueries.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/bin/bbackupquery/BackupQueries.cpp b/bin/bbackupquery/BackupQueries.cpp -index 0418ec9..b377218 100644 ---- a/bin/bbackupquery/BackupQueries.cpp -+++ b/bin/bbackupquery/BackupQueries.cpp -@@ -613,7 +613,7 @@ void BackupQueries::List(int64_t DirID, const std::string &rListRoot, const bool - // terminate - *(f++) = ' '; - *(f++) = '\0'; -- printf(displayflags); -+ printf("%s", displayflags); - - if(en_flags != 0) - { --- -2.7.3 - diff --git a/app-backup/boxbackup/files/boxbackup-0.11.1-fix-mandir.patch b/app-backup/boxbackup/files/boxbackup-0.11.1-fix-mandir.patch deleted file mode 100644 index 842655491d19..000000000000 --- a/app-backup/boxbackup/files/boxbackup-0.11.1-fix-mandir.patch +++ /dev/null @@ -1,14 +0,0 @@ -Install man pages into /usr/share/man instead of /usr/man. This patch -was provided by a Gentoo user in bug 515422. - ---- a/infrastructure/makeparcels.pl.in 2015-04-30 15:28:26.790570655 +0200 -+++ b/infrastructure/makeparcels.pl.in 2015-04-30 15:35:40.795699542 +0200 -@@ -304,7 +304,7 @@ - if ($type eq 'man') - { - $name =~ /([0-9])$/; -- $dest = "man/man$1"; -+ $dest = "share/man/man$1"; - $name =~ s/$/\.gz/; - } - diff --git a/app-backup/boxbackup/files/boxbackup-0.11_rc8-testbbackupd.patch b/app-backup/boxbackup/files/boxbackup-0.11_rc8-testbbackupd.patch deleted file mode 100644 index 12a6825cc759..000000000000 --- a/app-backup/boxbackup/files/boxbackup-0.11_rc8-testbbackupd.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/test/bbackupd/testbbackupd.cpp 2010-05-01 15:52:27.000000000 +0200 -+++ b/test/bbackupd/testbbackupd.cpp 2010-05-07 07:12:42.000000000 +0200 -@@ -1176,7 +1176,7 @@ - std::string touchfile = - "testfiles/TestDir1/spacetest/d1/touch-me"; - -- fd = open(touchfile.c_str(), O_CREAT | O_WRONLY); -+ fd = open(touchfile.c_str(), O_CREAT | O_WRONLY, 700); - TEST_THAT(fd > 0); - // write again, to update the file's timestamp - TEST_EQUAL_LINE(sizeof(buffer), diff --git a/app-backup/boxbackup/metadata.xml b/app-backup/boxbackup/metadata.xml deleted file mode 100644 index 52dc78dd9885..000000000000 --- a/app-backup/boxbackup/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription>An open source, completely automatic on-line backup - system for UNIX.</longdescription> - <use> - <flag name="client-only">Disable server support, and just build a - client</flag> - </use> - <upstream> - <remote-id type="sourceforge">boxbackup</remote-id> - </upstream> -</pkgmetadata> |