diff options
author | 2006-12-03 23:22:47 +0000 | |
---|---|---|
committer | 2006-12-03 23:22:47 +0000 | |
commit | aa053599eabeaf74332be2049cc0682c3037c243 (patch) | |
tree | 1a9920deb824f186f5f90ab2e2c9fc9a31b8751c /app-misc | |
parent | added ~amd64 (diff) | |
download | gentoo-2-aa053599eabeaf74332be2049cc0682c3037c243.tar.gz gentoo-2-aa053599eabeaf74332be2049cc0682c3037c243.tar.bz2 gentoo-2-aa053599eabeaf74332be2049cc0682c3037c243.zip |
Bump to a snapshot to fix bug 69633, thanks to David Brown for reporting and Ryan Hill for the ebuild
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/wipe/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/wipe/files/digest-wipe-2.2.20050509 | 3 | ||||
-rw-r--r-- | app-misc/wipe/wipe-2.2.20050509.ebuild | 31 |
3 files changed, 42 insertions, 1 deletions
diff --git a/app-misc/wipe/ChangeLog b/app-misc/wipe/ChangeLog index 4d9c77bf1d11..6c412a4f45fc 100644 --- a/app-misc/wipe/ChangeLog +++ b/app-misc/wipe/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-misc/wipe # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/ChangeLog,v 1.14 2006/05/18 00:42:57 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/ChangeLog,v 1.15 2006/12/03 23:22:47 masterdriverz Exp $ + +*wipe-2.2.20050509 (03 Dec 2006) + + 03 Dec 2006; Charlie Shepherd <masterdriverz@gentoo.org> + +wipe-2.2.20050509.ebuild: + Bump to a snapshot to fix bug 69633, thanks to David Brown for reporting and + Ryan Hill for the ebuild 18 May 2006; Gustavo Zacarias <gustavoz@gentoo.org> wipe-2.2.0.ebuild: Stable on sparc diff --git a/app-misc/wipe/files/digest-wipe-2.2.20050509 b/app-misc/wipe/files/digest-wipe-2.2.20050509 new file mode 100644 index 000000000000..abb2de31213d --- /dev/null +++ b/app-misc/wipe/files/digest-wipe-2.2.20050509 @@ -0,0 +1,3 @@ +MD5 78820d26cd382338c3fbda96fdc98aba wipe-wip-20050509.tar.bz2 71680 +RMD160 f4f159e96a2d9657e90d3f6622f0594c5addb3b4 wipe-wip-20050509.tar.bz2 71680 +SHA256 27802542acd1324457a2846e7c63a54b2d35780b42c639e467d823f56928c63b wipe-wip-20050509.tar.bz2 71680 diff --git a/app-misc/wipe/wipe-2.2.20050509.ebuild b/app-misc/wipe/wipe-2.2.20050509.ebuild new file mode 100644 index 000000000000..895c08eb0600 --- /dev/null +++ b/app-misc/wipe/wipe-2.2.20050509.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/wipe-2.2.20050509.ebuild,v 1.1 2006/12/03 23:22:47 masterdriverz Exp $ + +inherit versionator + +MY_PV=$(get_version_component_range 3) +MY_SRC=${PN}-wip-${MY_PV} +S="${WORKDIR}/${PN}" + +DESCRIPTION="Secure file wiping utility based on Peter Gutman's patterns" +HOMEPAGE="http://wipe.sourceforge.net/" +SRC_URI="mirror://sourceforge/wipe/${MY_SRC}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="" + +src_install() { + dobin wipe || die "dobin failed" + doman wipe.1 + dodoc CHANGES README TODO TESTING +} + +pkg_postinst() { + einfo "Note that wipe is useless on journalling filesystems, such as reiserfs or XFS." + einfo "See documentation for more info." +} |