* [gentoo-commits] gentoo-x86 commit in sys-fs/loop-aes: loop-aes-3.6e.ebuild ChangeLog
@ 2012-01-08 2:04 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 3+ messages in thread
From: Robin H. Johnson (robbat2) @ 2012-01-08 2:04 UTC (permalink / raw
To: gentoo-commits
robbat2 12/01/08 02:04:07
Modified: ChangeLog
Added: loop-aes-3.6e.ebuild
Log:
Version bump, bug #397981.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.81 sys-fs/loop-aes/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?r1=1.80&r2=1.81
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -p -w -b -B -u -u -r1.80 -r1.81
--- ChangeLog 7 Jan 2012 01:05:10 -0000 1.80
+++ ChangeLog 8 Jan 2012 02:04:07 -0000 1.81
@@ -1,6 +1,11 @@
# ChangeLog for sys-fs/loop-aes
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.80 2012/01/07 01:05:10 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.81 2012/01/08 02:04:07 robbat2 Exp $
+
+*loop-aes-3.6e (08 Jan 2012)
+
+ 08 Jan 2012; Robin H. Johnson <robbat2@gentoo.org> +loop-aes-3.6e.ebuild:
+ Version bump, bug #397981.
*loop-aes-3.6d (07 Jan 2012)
1.1 sys-fs/loop-aes/loop-aes-3.6e.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?rev=1.1&content-type=text/plain
Index: loop-aes-3.6e.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild,v 1.1 2012/01/08 02:04:07 robbat2 Exp $
EAPI="3"
inherit linux-mod
MY_P="${PN/aes/AES}-v${PV}"
DESCRIPTION="Linux kernel module to encrypt local file systems and disk partitions with AES cipher."
HOMEPAGE="http://loop-aes.sourceforge.net/loop-AES.README"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
IUSE="aes-ni extra-ciphers keyscrub padlock"
DEPEND=">=sys-apps/util-linux-2.12r[crypt,loop-aes]"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
linux-mod_pkg_setup
CONFIG_CHECK="!BLK_DEV_LOOP"
MODULE_NAMES="loop(block::tmp-d-kbuild)"
BUILD_TARGETS="all"
BUILD_PARAMS=" \
LINUX_SOURCE=\"${KERNEL_DIR}\" \
KBUILD_OUTPUT=\"${KBUILD_OUTPUT}\" \
USE_KBUILD=y MODINST=n RUNDM=n"
use aes-ni && BUILD_PARAMS="${BUILD_PARAMS} INTELAES=y"
use keyscrub && BUILD_PARAMS="${BUILD_PARAMS} KEYSCRUB=y"
use padlock && BUILD_PARAMS="${BUILD_PARAMS} PADLOCK=y"
if use extra-ciphers; then
MODULE_NAMES="${MODULE_NAMES}
loop_blowfish(block::tmp-d-kbuild)
loop_serpent(block::tmp-d-kbuild)
loop_twofish(block::tmp-d-kbuild)"
BUILD_PARAMS="${BUILD_PARAMS} EXTRA_CIPHERS=y"
fi
}
src_prepare() {
sed -e 's/make/$(MAKE)/g' -i Makefile || die "sed failed"
}
src_install() {
linux-mod_src_install
dodoc README || die "dodoc failed"
dobin loop-aes-keygen || die "dobin failed"
doman loop-aes-keygen.1 || die "doman failed"
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo
einfo "For more instructions take a look at examples in README at:"
einfo "'${EPREFIX}/usr/share/doc/${PF}'"
einfo
einfo "If you have a newer Intel processor (i5, i7), and you use AES"
einfo "you may want to consider using the aes-ni use flag. It will"
einfo "use your processors native AES instructions giving quite a speed"
einfo "increase."
einfo
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-fs/loop-aes: loop-aes-3.6e.ebuild ChangeLog
@ 2012-12-20 13:43 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 3+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-20 13:43 UTC (permalink / raw
To: gentoo-commits
alonbl 12/12/20 13:43:36
Modified: loop-aes-3.6e.ebuild ChangeLog
Log:
Check for CONFIG_MODULES, per bug#447948, thanks to Agostino Sarubbo
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.3 sys-fs/loop-aes/loop-aes-3.6e.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?r1=1.2&r2=1.3
Index: loop-aes-3.6e.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- loop-aes-3.6e.ebuild 29 Apr 2012 15:48:48 -0000 1.2
+++ loop-aes-3.6e.ebuild 20 Dec 2012 13:43:36 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild,v 1.2 2012/04/29 15:48:48 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild,v 1.3 2012/12/20 13:43:36 alonbl Exp $
EAPI="3"
@@ -23,9 +23,7 @@
S="${WORKDIR}/${MY_P}"
pkg_setup() {
- linux-mod_pkg_setup
-
- CONFIG_CHECK="!BLK_DEV_LOOP"
+ CONFIG_CHECK="!BLK_DEV_LOOP MODULES"
MODULE_NAMES="loop(block::tmp-d-kbuild)"
BUILD_TARGETS="all"
@@ -44,6 +42,8 @@
loop_twofish(block::tmp-d-kbuild)"
BUILD_PARAMS="${BUILD_PARAMS} EXTRA_CIPHERS=y"
fi
+
+ linux-mod_pkg_setup
}
src_prepare() {
1.86 sys-fs/loop-aes/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 15 Dec 2012 19:24:25 -0000 1.85
+++ ChangeLog 20 Dec 2012 13:43:36 -0000 1.86
@@ -1,6 +1,9 @@
# ChangeLog for sys-fs/loop-aes
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.85 2012/12/15 19:24:25 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.86 2012/12/20 13:43:36 alonbl Exp $
+
+ 20 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> loop-aes-3.6e.ebuild:
+ Check for CONFIG_MODULES, per bug#447948, thanks to Agostino Sarubbo
15 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> loop-aes-3.6g.ebuild:
Enable verbose build, per bug#447318
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-fs/loop-aes: loop-aes-3.6e.ebuild ChangeLog
@ 2012-12-22 23:40 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 3+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-22 23:40 UTC (permalink / raw
To: gentoo-commits
alonbl 12/12/22 23:40:43
Modified: loop-aes-3.6e.ebuild ChangeLog
Log:
Fix location of linux-mod_pkg_setup
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.4 sys-fs/loop-aes/loop-aes-3.6e.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild?r1=1.3&r2=1.4
Index: loop-aes-3.6e.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- loop-aes-3.6e.ebuild 20 Dec 2012 13:43:36 -0000 1.3
+++ loop-aes-3.6e.ebuild 22 Dec 2012 23:40:43 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild,v 1.3 2012/12/20 13:43:36 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.6e.ebuild,v 1.4 2012/12/22 23:40:43 alonbl Exp $
EAPI="3"
@@ -24,6 +24,8 @@
pkg_setup() {
CONFIG_CHECK="!BLK_DEV_LOOP MODULES"
+ linux-mod_pkg_setup
+
MODULE_NAMES="loop(block::tmp-d-kbuild)"
BUILD_TARGETS="all"
@@ -42,8 +44,6 @@
loop_twofish(block::tmp-d-kbuild)"
BUILD_PARAMS="${BUILD_PARAMS} EXTRA_CIPHERS=y"
fi
-
- linux-mod_pkg_setup
}
src_prepare() {
1.87 sys-fs/loop-aes/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/loop-aes/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 20 Dec 2012 13:43:36 -0000 1.86
+++ ChangeLog 22 Dec 2012 23:40:43 -0000 1.87
@@ -1,6 +1,9 @@
# ChangeLog for sys-fs/loop-aes
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.86 2012/12/20 13:43:36 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.87 2012/12/22 23:40:43 alonbl Exp $
+
+ 22 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> loop-aes-3.6e.ebuild:
+ Fix location of linux-mod_pkg_setup
20 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> loop-aes-3.6e.ebuild:
Check for CONFIG_MODULES, per bug#447948, thanks to Agostino Sarubbo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-12-22 23:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-20 13:43 [gentoo-commits] gentoo-x86 commit in sys-fs/loop-aes: loop-aes-3.6e.ebuild ChangeLog Alon Bar-Lev (alonbl)
-- strict thread matches above, loose matches on Subject: below --
2012-12-22 23:40 Alon Bar-Lev (alonbl)
2012-01-08 2:04 Robin H. Johnson (robbat2)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox