public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-backup/boxbackup/files/, app-backup/boxbackup/, profiles/
@ 2017-07-05 11:35 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2017-07-05 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     6b0cddd5f3d6f21db374affe7b1ac37245c3d179
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  5 10:54:40 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jul  5 11:35:49 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b0cddd5

app-backup/boxbackup: Remove last-rited pkg, #595412

 app-backup/boxbackup/Manifest                      |  1 -
 app-backup/boxbackup/boxbackup-0.11.1-r2.ebuild    | 74 ----------------------
 app-backup/boxbackup/files/bbackupd.rc             | 20 ------
 app-backup/boxbackup/files/bbstored.rc             | 20 ------
 .../boxbackup-0.11.1-fix-Wformat-security.patch    | 27 --------
 .../files/boxbackup-0.11.1-fix-mandir.patch        | 14 ----
 .../files/boxbackup-0.11_rc8-testbbackupd.patch    | 11 ----
 app-backup/boxbackup/metadata.xml                  | 14 ----
 profiles/package.mask                              |  7 --
 9 files changed, 188 deletions(-)

diff --git a/app-backup/boxbackup/Manifest b/app-backup/boxbackup/Manifest
deleted file mode 100644
index 6870363bd54..00000000000
--- 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 d2c65aa98c6..00000000000
--- 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 0c6ce82e8e7..00000000000
--- 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 0dfd343209f..00000000000
--- 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 22efb3266f4..00000000000
--- 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 842655491d1..00000000000
--- 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 12a6825cc75..00000000000
--- 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 52dc78dd988..00000000000
--- 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 0ae770fb288..d889c3547c1 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


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-07-05 11:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-05 11:35 [gentoo-commits] repo/gentoo:master commit in: app-backup/boxbackup/files/, app-backup/boxbackup/, profiles/ Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox