summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron W. Swenson <titanofold@gentoo.org>2018-01-21 06:07:07 -0500
committerAaron W. Swenson <titanofold@gentoo.org>2018-01-21 06:07:07 -0500
commite4306364e889f5d5d7b1a72363d31bd74207ce07 (patch)
treeaf394da8ce5a088c61c506e946ca2ff87b5b75ba
parentdev-util/premake: Bump to 4.4_beta5, 5.0.0_alpha12 (diff)
downloadgentoo-e4306364e889f5d5d7b1a72363d31bd74207ce07.tar.gz
gentoo-e4306364e889f5d5d7b1a72363d31bd74207ce07.tar.bz2
gentoo-e4306364e889f5d5d7b1a72363d31bd74207ce07.zip
app-misc/srm: Cleanup
Closes: https://bugs.gentoo.org/467580 Package-Manager: Portage-2.3.13, Repoman-2.3.3
-rw-r--r--app-misc/srm/Manifest1
-rw-r--r--app-misc/srm/files/srm-1.2.11-cflags.patch23
-rw-r--r--app-misc/srm/srm-1.2.11-r2.ebuild36
3 files changed, 0 insertions, 60 deletions
diff --git a/app-misc/srm/Manifest b/app-misc/srm/Manifest
index a56de4a4d5e6..03d9ed752945 100644
--- a/app-misc/srm/Manifest
+++ b/app-misc/srm/Manifest
@@ -1,2 +1 @@
-DIST srm-1.2.11.tar.gz 124982 BLAKE2B 0de5a413071ef6f30c377d61326b12d9c3b89ddeb8bd761b1f30a63c147bec7b51389cb19e7dd1da869e53a3a713f3a71993363419ecef7423a69219671b9667 SHA512 4b9b80242242dc64dcf97e4180676a1dc8b64d43f144ad4278d6762716e5e1b77b4c794900c298a919be7bdf1af71dcaf7286d4fae909ec5314752bfb73da8db
DIST srm-1.2.15.tar.gz 132031 BLAKE2B f01fd8fce0095f5d2247026d3627fc8100b1bc9263f947f2d8500c999220c781ff109283c25b480fe295deb7e162f246afbad68c0797e0fec180ff57f1ff87be SHA512 a8ec78473c55b70557fca88f525998ed51df3be58618b9da220e1bb73df013163f4e1563cbe2062b9cf1512152afeb9004b5be0be69cc1278c0d28597310dfd2
diff --git a/app-misc/srm/files/srm-1.2.11-cflags.patch b/app-misc/srm/files/srm-1.2.11-cflags.patch
deleted file mode 100644
index 7f05c5d2aa9d..000000000000
--- a/app-misc/srm/files/srm-1.2.11-cflags.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- configure.in 2010-06-06 13:22:08.000000000 -0400
-+++ configure.in 2011-11-06 11:36:37.684800151 -0500
-@@ -6,8 +6,6 @@
-
- dnl Checks for programs.
- AC_PROG_CC
--dnl reset CFLAGS
--CFLAGS=
-
- AC_PROG_INSTALL
- AC_PROG_RANLIB
-@@ -39,10 +37,9 @@
- AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes] turn on debugging
- [default=$debug_default]],, enable_debug=$debug_default)
- if test "x$enable_debug" = "xyes"; then
-- CFLAGS="$CFLAGS -g"
- AC_MSG_RESULT(yes)
- else
-- CFLAGS="$CFLAGS -O2 -DNDEBUG"
-+ CFLAGS="$CFLAGS -DNDEBUG"
- AC_MSG_RESULT(no)
- fi
-
diff --git a/app-misc/srm/srm-1.2.11-r2.ebuild b/app-misc/srm/srm-1.2.11-r2.ebuild
deleted file mode 100644
index f88fd563ae67..000000000000
--- a/app-misc/srm/srm-1.2.11-r2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit autotools eutils
-
-DESCRIPTION="A command-line compatible rm which destroys file contents before unlinking"
-HOMEPAGE="https://sourceforge.net/projects/srm/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86"
-IUSE="debug"
-
-DEPEND="!app-misc/secure-delete
- sys-kernel/linux-headers
-"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-1.2.11-cflags.patch"
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable debug)
-}
-
-pkg_postinst() {
- ewarn "Please note that srm will not work as expected with any journaled file"
- ewarn "system (e.g., reiserfs, ext3)."
- ewarn "See: ${EROOT%/}/usr/share/doc/${PF}/README"
-}