diff --git a/ChangeLog b/ChangeLog index 4893775..ba1e18b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-11-27 Guillaume LE VAILLANT + Version 1.2.2 + Add bruteforcing speed and last tried password to progress info. + 2016-06-06 Guillaume LE VAILLANT Version 1.2.1 Fix mutex for dictionary mode. diff --git a/NEWS b/NEWS index 9b4b3c7..2e769b9 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +Version 1.2.2 + 2016-11-27 + Add bruteforcing speed and last tried password to progress info. + Version 1.2.1 2016-06-06 Fix mutex for dictionary mode. diff --git a/configure.ac b/configure.ac index dfdab0b..57d0549 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(bruteforce_luks, 1.2.1) +AC_INIT(bruteforce_luks, 1.2.2) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR(src/bruteforce-luks.c) diff --git a/contrib/gentoo/app-crypt/bruteforce-luks/bruteforce-luks-1.2.2.ebuild b/contrib/gentoo/app-crypt/bruteforce-luks/bruteforce-luks-1.2.2.ebuild new file mode 100644 index 0000000..d6dc852 --- /dev/null +++ b/contrib/gentoo/app-crypt/bruteforce-luks/bruteforce-luks-1.2.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 2014 Guillaume LE VAILLANT +# Distributed under the terms of the GNU General Public License v3 + +EAPI="5" + +inherit eutils autotools + +DESCRIPTION="A bruteforce cracker for LUKS encrypted volumes." +HOMEPAGE="https://github.com/glv2/${PN}" +SRC_URI="https://github.com/glv2/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +DEPEND=" + sys-fs/cryptsetup +" +RDEPEND="${DEPEND}" + +src_prepare() { + eautoreconf +} + +src_configure() { + econf +} + +src_install() { + einstall + dodoc AUTHORS ChangeLog NEWS README +} diff --git a/src/version.h b/src/version.h index 980414b..22a195b 100644 --- a/src/version.h +++ b/src/version.h @@ -20,6 +20,6 @@ along with this program. If not, see . #ifndef VERSION_H #define VERSION_H 1 -#define VERSION_NUMBER "1.2.1" +#define VERSION_NUMBER "1.2.2" #endif