reglookup: quick fix, mask it

This commit is contained in:
Anton Bolshakov 2022-11-17 11:47:22 +08:00
parent 66bcb684b5
commit 956b468590
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
2 changed files with 10 additions and 8 deletions

View file

@ -1,11 +1,11 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
PYTHON_COMPAT=( python3_{10..11} )
inherit scons-utils distutils-r1
inherit python-any-r1 scons-utils
DESCRIPTION="An utility for reading and querying Windows NT/2K/XP registries"
HOMEPAGE="http://projects.sentinelchicken.org/reglookup/"
@ -13,7 +13,8 @@ SRC_URI="http://projects.sentinelchicken.org/data/downloads/${PN}-src-${PV}.tar.
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x64-macos ~x86-macos"
# The tool is dead
#KEYWORDS="~amd64 ~x86 ~x64-macos ~x86-macos"
RDEPEND="
sys-libs/talloc
@ -25,16 +26,17 @@ PATCHES=( "${FILESDIR}"/${PV}-cflags.patch )
src_prepare() {
mv pyregfi-distutils.py setup.py || die
distutils-r1_src_prepare
# distutils-r1_src_prepare
eapply_user
}
src_compile() {
escons
distutils-r1_src_compile
# distutils-r1_src_compile
}
src_install() {
distutils-r1_src_install
# distutils-r1_src_install
dobin bin/reglookup-timeline src/reglookup src/reglookup-recover
dolib.so lib/libregfi.so
doman doc/*.1.gz

View file

@ -1,11 +1,11 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
PYTHON_COMPAT=( python3_{10..11} )
inherit scons-utils distutils-r1 subversion
inherit python-any-r1 scons-utils subversion
DESCRIPTION="An utility for reading and querying Windows NT/2K/XP registries"
HOMEPAGE="http://projects.sentinelchicken.org/reglookup/"