summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-backup/boxbackup/Manifest1
-rw-r--r--app-backup/boxbackup/boxbackup-0.11.1-r2.ebuild74
-rw-r--r--app-backup/boxbackup/files/bbackupd.rc20
-rw-r--r--app-backup/boxbackup/files/bbstored.rc20
-rw-r--r--app-backup/boxbackup/files/boxbackup-0.11.1-fix-Wformat-security.patch27
-rw-r--r--app-backup/boxbackup/files/boxbackup-0.11.1-fix-mandir.patch14
-rw-r--r--app-backup/boxbackup/files/boxbackup-0.11_rc8-testbbackupd.patch11
-rw-r--r--app-backup/boxbackup/metadata.xml14
-rw-r--r--profiles/package.mask7
9 files changed, 0 insertions, 188 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>
diff --git a/profiles/package.mask b/profiles/package.mask
index 0ae770fb2882..d889c3547c1b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -398,13 +398,6 @@ sci-geosciences/cdat-lite
# vulnerability. Removal in 30 days. Bug #581960.
net-irc/atheme-services
-# Michał Górny <mgorny@gentoo.org> (05 Jun 2017)
-# (on behalf of Treecleaner project)
-# Abandoned in Gentoo. Fail to build with gcc-6.
-# Removal in 30 days. Bugs:
-# app-backup/boxbackup - #595412
-app-backup/boxbackup
-
# Hans de Graaff <graaff@gentoo.org> (05 Jun 2017)
# Bundles obsolete and vulnerable webkit version.
# Upstream has stopped development and recommends using