mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
inception: update python section with its deps
This commit is contained in:
parent
6c637b496c
commit
b64506ef1b
5 changed files with 16 additions and 56 deletions
|
|
@ -1,2 +1 @@
|
||||||
DIST inception-0.4.0.tar.gz 2494686 SHA256 97c6745fe6ab5b6ab9325d001ebdc3a8eab5835e1fbef0219f574b44771f931b SHA512 b8e09d21bdd9081c3cf0f6d69a3dce906fa4d53c92482d74d063ebaf3589a0b7c7822a7ed3a64b0d6be452020c444e698dd8a62d1b1800270f0d83e0f84d314f WHIRLPOOL af3a05c811aeaeb2b98a45a89f7f49a3156e6a094c205ae658179c031140d9a39f5db5e2c564c70d5c63601d575f3746a5fe233b4bebf1d1a6204bfcc47141f5
|
|
||||||
DIST inception-0.4.1.tar.gz 2498507 SHA256 5f3e5d99983c745e14159c1603521b92c379284308d6b789682501999cd05fdc SHA512 b488d955527f8faa7d7e49d415c7f242a4b62dda63e6c00acfd13e6f00bb029815c6caa6a67d9d0d905f85858275994eef84443e5103b298398fc2ba52159795 WHIRLPOOL 2b9c62a37ef7a9ad0e653d131eea933463ddb718a512a3207de58a9c752de3ce133904fd0023c7faa21fdf12d171139b89eb29cbe15d396520a45887ca40a326
|
DIST inception-0.4.1.tar.gz 2498507 SHA256 5f3e5d99983c745e14159c1603521b92c379284308d6b789682501999cd05fdc SHA512 b488d955527f8faa7d7e49d415c7f242a4b62dda63e6c00acfd13e6f00bb029815c6caa6a67d9d0d905f85858275994eef84443e5103b298398fc2ba52159795 WHIRLPOOL 2b9c62a37ef7a9ad0e653d131eea933463ddb718a512a3207de58a9c752de3ce133904fd0023c7faa21fdf12d171139b89eb29cbe15d396520a45887ca40a326
|
||||||
|
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
# Copyright 1999-2016 Gentoo Foundation
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
# $Id$
|
|
||||||
|
|
||||||
EAPI=5
|
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{3,4} )
|
|
||||||
inherit linux-info python-r1
|
|
||||||
|
|
||||||
DESCRIPTION="Firewire physical memory manipulation tool exploiting IEEE 1394 SBP-2 DMA"
|
|
||||||
HOMEPAGE="http://www.breaknenter.org/projects/inception/"
|
|
||||||
SRC_URI="https://github.com/carmaa/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-3"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~x86"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
DEPEND=""
|
|
||||||
RDEPEND="app-forensics/libforensic1394"
|
|
||||||
|
|
||||||
pkg_setup() {
|
|
||||||
CONFIG_CHECK=~FIREWIRE_OHCI
|
|
||||||
linux-info_pkg_setup
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install () {
|
|
||||||
dodoc README.md
|
|
||||||
|
|
||||||
rm -r licenses inception/test/
|
|
||||||
rm README.md setup.py
|
|
||||||
|
|
||||||
dodir /usr/share/"${PN}"/
|
|
||||||
cp -R * "${D}"/usr/share/"${PN}"/
|
|
||||||
dosym /usr/share/"${PN}"/incept /usr/sbin/inception
|
|
||||||
}
|
|
||||||
|
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
EAPI=5
|
EAPI=5
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{3,4,5} )
|
PYTHON_COMPAT=( python3_{4,5,6} )
|
||||||
inherit linux-info python-r1
|
inherit linux-info distutils-r1
|
||||||
|
|
||||||
DESCRIPTION="Firewire physical memory manipulation tool exploiting IEEE 1394 SBP-2 DMA"
|
DESCRIPTION="Firewire physical memory manipulation tool exploiting IEEE 1394 SBP-2 DMA"
|
||||||
HOMEPAGE="http://www.breaknenter.org/projects/inception/"
|
HOMEPAGE="http://www.breaknenter.org/projects/inception/"
|
||||||
|
|
@ -16,21 +16,17 @@ SLOT="0"
|
||||||
KEYWORDS="~amd64 ~x86"
|
KEYWORDS="~amd64 ~x86"
|
||||||
IUSE=""
|
IUSE=""
|
||||||
|
|
||||||
DEPEND=""
|
RDEPEND="${PYTHON_DEPS}
|
||||||
RDEPEND="app-forensics/libforensic1394"
|
app-forensics/libforensic1394[${PYTHON_USEDEP}]"
|
||||||
|
DEPEND="${RDEPEND}"
|
||||||
|
|
||||||
|
RESTRICT="binchecks"
|
||||||
|
|
||||||
|
#QA_PRESTRIPPED="usr/lib\(32\|64\)\/python\(.*\)\/site-packages/inception/test/samples/ubuntu-11.10-x86-0xbaf.bin
|
||||||
|
# usr/lib\(32\|64\)\/python\(.*\)\/site-packages/inception/test/samples/linux-mint-12-x86-0xbaf.bin
|
||||||
|
#"
|
||||||
|
|
||||||
pkg_setup() {
|
pkg_setup() {
|
||||||
CONFIG_CHECK=~FIREWIRE_OHCI
|
CONFIG_CHECK=~FIREWIRE_OHCI
|
||||||
linux-info_pkg_setup
|
linux-info_pkg_setup
|
||||||
}
|
}
|
||||||
|
|
||||||
src_install () {
|
|
||||||
dodoc README.md
|
|
||||||
|
|
||||||
rm -r licenses inception/test/
|
|
||||||
rm README.md setup.py
|
|
||||||
|
|
||||||
dodir /usr/share/"${PN}"/
|
|
||||||
cp -R * "${D}"/usr/share/"${PN}"/
|
|
||||||
dosym /usr/share/"${PN}"/incept /usr/sbin/inception
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
EAPI=5
|
EAPI=5
|
||||||
|
|
||||||
PYTHON_COMPAT=( python2_7 )
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
||||||
|
|
||||||
#for python source files
|
#for python source files
|
||||||
CMAKE_IN_SOURCE_BUILD=1
|
CMAKE_IN_SOURCE_BUILD=1
|
||||||
|
|
@ -19,7 +19,7 @@ LICENSE="LGPL-3"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~x86 ~amd64"
|
KEYWORDS="~x86 ~amd64"
|
||||||
|
|
||||||
IUSE="python"
|
IUSE="+python"
|
||||||
|
|
||||||
RDEPEND="python? ( ${PYTHON_DEPS} )"
|
RDEPEND="python? ( ${PYTHON_DEPS} )"
|
||||||
DEPEND="python? ( ${PYTHON_DEPS} )"
|
DEPEND="python? ( ${PYTHON_DEPS} )"
|
||||||
|
|
@ -4,8 +4,9 @@
|
||||||
|
|
||||||
EAPI=5
|
EAPI=5
|
||||||
|
|
||||||
PYTHON_COMPAT=( python2_7 )
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
||||||
|
|
||||||
|
#for python source files
|
||||||
CMAKE_IN_SOURCE_BUILD=1
|
CMAKE_IN_SOURCE_BUILD=1
|
||||||
|
|
||||||
inherit distutils-r1 cmake-utils linux-info git-r3
|
inherit distutils-r1 cmake-utils linux-info git-r3
|
||||||
|
|
@ -18,7 +19,7 @@ LICENSE="LGPL-3"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS=""
|
KEYWORDS=""
|
||||||
|
|
||||||
IUSE="python"
|
IUSE="+python"
|
||||||
|
|
||||||
RDEPEND="python? ( ${PYTHON_DEPS} )"
|
RDEPEND="python? ( ${PYTHON_DEPS} )"
|
||||||
DEPEND="python? ( ${PYTHON_DEPS} )"
|
DEPEND="python? ( ${PYTHON_DEPS} )"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue