summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-07-05 12:54:40 +0200
committerMichał Górny <mgorny@gentoo.org>2017-07-05 13:35:49 +0200
commit6b0cddd5f3d6f21db374affe7b1ac37245c3d179 (patch)
tree8598eef4f6d26f2200705682eedab5045d538db5 /app-backup/boxbackup/files
parentdev-lang/falcon: Remove last-rited pkg, #595416 (diff)
downloadgentoo-6b0cddd5f3d6f21db374affe7b1ac37245c3d179.tar.gz
gentoo-6b0cddd5f3d6f21db374affe7b1ac37245c3d179.tar.bz2
gentoo-6b0cddd5f3d6f21db374affe7b1ac37245c3d179.zip
app-backup/boxbackup: Remove last-rited pkg, #595412
Diffstat (limited to 'app-backup/boxbackup/files')
-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
5 files changed, 0 insertions, 92 deletions
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),