From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1IqmUE-0000nY-3W for garchives@archives.gentoo.org; Sat, 10 Nov 2007 09:18:42 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.14.2/8.14.0) with SMTP id lAA9IXpu014448; Sat, 10 Nov 2007 09:18:33 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.14.2/8.14.0) with ESMTP id lAA9IVRk014410 for ; Sat, 10 Nov 2007 09:18:32 GMT Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id B186E65246 for ; Sat, 10 Nov 2007 09:18:31 +0000 (UTC) Received: from alonbl by stork.gentoo.org with local (Exim 4.60) (envelope-from ) id 1IqmU2-0004tJ-I7 for gentoo-commits@lists.gentoo.org; Sat, 10 Nov 2007 09:18:30 +0000 From: "Alon Bar-Lev (alonbl)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, alonbl@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/bcwipe: ChangeLog bcwipe-1.6_p8.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog bcwipe-1.6_p8.ebuild X-VCS-Directories: app-crypt/bcwipe X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: Sender: Alon Bar-Lev Date: Sat, 10 Nov 2007 09:18:30 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@gentoo.org X-Archives-Salt: 84e8254c-3765-4266-9957-65bf6d482958 X-Archives-Hash: 20520c9951f0d784f08507554e45d51a alonbl 07/11/10 09:18:30 Modified: ChangeLog Added: bcwipe-1.6_p8.ebuild Log: Version bump (Portage version: 2.1.3.19) Revision Changes Path 1.19 app-crypt/bcwipe/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.19&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.19&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?r1=1.18&r2=1.19 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- ChangeLog 21 Feb 2007 20:22:43 -0000 1.18 +++ ChangeLog 10 Nov 2007 09:18:30 -0000 1.19 @@ -1,6 +1,12 @@ # ChangeLog for app-crypt/bcwipe # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.18 2007/02/21 20:22:43 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.19 2007/11/10 09:18:30 alonbl Exp $ + +*bcwipe-1.6_p8 (10 Nov 2007) + + 10 Nov 2007; Alon Bar-Lev + +files/bcwipe-1.6_p8-qa.patch, +bcwipe-1.6_p8.ebuild: + Version bump 21 Feb 2007; Piotr JaroszyƄski ChangeLog: Transition to Manifest2. 1.1 app-crypt/bcwipe/bcwipe-1.6_p8.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/bcwipe-1.6_p8.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/bcwipe-1.6_p8.ebuild?rev=1.1&content-type=text/plain Index: bcwipe-1.6_p8.ebuild =================================================================== # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.6_p8.ebuild,v 1.1 2007/11/10 09:18:30 alonbl Exp $ inherit toolchain-funcs eutils DESCRIPTION="BCWipe secure file removal utility" HOMEPAGE="http://www.jetico.com/" SRC_URI="http://www.jetico.com/linux/BCWipe-${PV/_p/-}.tar.gz http://www.jetico.com/linux/BCWipe.doc.tgz" LICENSE="bestcrypt" SLOT="0" IUSE="doc" KEYWORDS="~amd64 ~ppc ~sparc ~x86" DEPEND="" RDEPEND="" S="${WORKDIR}/${PN}" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-qa.patch" } src_compile() { emake CC="$(tc-getCC)" DEFS="${CFLAGS}"|| die "Make failed" } src_test() { echo "abc123" >> testfile ./bcwipe -f testfile || die "bcwipe test failed" [ -f testfile ] && die "test file still exists. bcwipe should of deleted it" } src_install() { dobin bcwipe doman bcwipe.1 use doc && dohtml -r ../bcwipe-help } pkg_postinst() { ewarn "The BestCrypt drivers are not free - Please purchace a license from " ewarn "http://www.jetico.com/" ewarn "full details /usr/share/doc/${PF}/wu_licen.htm" } -- gentoo-commits@gentoo.org mailing list