mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
plasma: pkgcheck fix
This commit is contained in:
parent
63b6dea9f8
commit
4681f6395d
5 changed files with 15 additions and 46 deletions
|
|
@ -1 +1 @@
|
|||
DIST plasma-0_p21080708.tar.gz 352197 BLAKE2B 5890da67a0ac44d092e217c4c68bff12862f2ed5d9ccd40dc547c465fca7d2b3927125fd978cfe8a192de8bcceb747756f6e1603d5b1bb0a58d0501864064530 SHA512 8998eb1e63bc549682d854e5738b12e78a3438daedb2abae1ad65807243e0c21dac5dad20a5e332f69d52dafdb078e9799a4a5a771545b8268e49130a7b6bb92
|
||||
DIST plasma-20190304.tar.gz 352550 BLAKE2B 233f964422f67d2937f289c79e318ed60bfbc805940246532ba2bcd73de9cd09de8856baa667a2c7c8b149ab73cbcf1444d6e1fa8614236b3470fd3a4746fe63 SHA512 f364b2e79058e673406a898483f0989b4ec6ff8df70f7f0e98d462370d3f4191fe8c9416c703fd2b573dfde9a5120fc17dc4b9b1aa18f397bc328d51453f9e54
|
||||
|
|
|
|||
|
|
@ -4,4 +4,7 @@
|
|||
<maintainer type="person">
|
||||
<email>om@organizedmagnetism.com</email>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">plasma-disassembler/plasma</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2024 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
|
@ -13,11 +14,11 @@ HOMEPAGE="https://github.com/plasma-disassembler/plasma"
|
|||
if [[ "${PV}" == "9999" ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/plasma-disassembler/plasma"
|
||||
inherit git-r3
|
||||
KEYWORDS=""
|
||||
#KEYWORDS=""
|
||||
else
|
||||
MY_COMMIT=432cac6544d5c23b938174da5659a91e7b6c73fb
|
||||
SRC_URI="https://github.com/plasma-disassembler/"${PN}"/tarball/"${MY_COMMIT}" -> "${P}".tar.gz"
|
||||
S=""${WORKDIR}"/plasma-disassembler-"${PN}"-"${MY_COMMIT:0:7}""
|
||||
HASH_COMMIT=ec7df9b2b9b356dd5d8caf01b7e68c0ab5a1ef42
|
||||
SRC_URI="https://github.com/plasma-disassembler/"${PN}"/archive/"${HASH_COMMIT}" -> "${P}".tar.gz"
|
||||
S=""${WORKDIR}"/plasma-disassembler-"${PN}"-"${HASH_COMMIT:0:7}""
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
|
|
@ -25,12 +26,11 @@ LICENSE="GPL-3"
|
|||
SLOT="0"
|
||||
|
||||
DEPEND="dev-libs/capstone[python,${PYTHON_USEDEP}]
|
||||
!!dev-libs/capstone-bindings
|
||||
dev-libs/keystone
|
||||
dev-python/pyelftools[${PYTHON_USEDEP}]
|
||||
dev-python/future[${PYTHON_USEDEP}]
|
||||
dev-python/msgpack[${PYTHON_USEDEP}]
|
||||
dev-python/nose[${PYTHON_USEDEP}]"
|
||||
dev-python/msgpack[${PYTHON_USEDEP}]"
|
||||
# dev-python/nose[${PYTHON_USEDEP}]"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="An interactive disassembler for x86/ARM/MIPS"
|
||||
HOMEPAGE="https://github.com/plasma-disassembler/plasma"
|
||||
|
||||
if [[ "${PV}" == "9999" ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/plasma-disassembler/plasma"
|
||||
inherit git-r3
|
||||
KEYWORDS=""
|
||||
else
|
||||
MY_COMMIT=432cac6544d5c23b938174da5659a91e7b6c73fb
|
||||
SRC_URI="https://github.com/plasma-disassembler/"${PN}"/tarball/"${MY_COMMIT}" -> "${P}".tar.gz"
|
||||
S=""${WORKDIR}"/plasma-disassembler-"${PN}"-"${MY_COMMIT:0:7}""
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="dev-libs/capstone[python]
|
||||
dev-libs/keystone
|
||||
dev-python/pyelftools[${PYTHON_USEDEP}]
|
||||
dev-python/future[${PYTHON_USEDEP}]
|
||||
dev-python/msgpack[${PYTHON_USEDEP}]
|
||||
dev-python/nose[${PYTHON_USEDEP}]"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
PATCHES=""${FILESDIR}"/${PN}-remove_pip.patch"
|
||||
|
|
@ -32,3 +32,5 @@ dev-util/maturin amd64
|
|||
=dev-util/ruff-0.1*
|
||||
~virtual/rust-1.74.1
|
||||
~dev-lang/rust-bin-1.74.1
|
||||
|
||||
dev-util/plasma
|
||||
|
|
|
|||
Loading…
Reference in a new issue