diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-04-05 11:05:53 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-04-05 11:06:55 +0100 |
commit | b92f57907aa3ef0bf20d2dc21cd01e6374d202ba (patch) | |
tree | 2cc90981eb0fdb04a1d38d29a7898856533eb3cd /dev-libs/distorm64 | |
parent | dev-util/shellcheck: bump up to 3.7.1 (diff) | |
download | gentoo-b92f57907aa3ef0bf20d2dc21cd01e6374d202ba.tar.gz gentoo-b92f57907aa3ef0bf20d2dc21cd01e6374d202ba.tar.bz2 gentoo-b92f57907aa3ef0bf20d2dc21cd01e6374d202ba.zip |
dev-libs/distorm64: bump up to 3.4.2
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-libs/distorm64')
-rw-r--r-- | dev-libs/distorm64/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/distorm64/distorm64-3.4.2.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-libs/distorm64/Manifest b/dev-libs/distorm64/Manifest index d0c9a7c62a7e..0e082ee2ea35 100644 --- a/dev-libs/distorm64/Manifest +++ b/dev-libs/distorm64/Manifest @@ -1 +1,2 @@ DIST distorm-3.4.1.tar.gz 220042 BLAKE2B a845fb3b5a3c98c1b25601896785273668b48c8477dd29c5db4c4ddcf3cdfe73095e3c4c883ca0909820430989a412d9b47c87471450eba2a4d969a9a03d32c1 SHA512 0e9f8b62bc190ef7d516f1902b6003adef9c7d5d4a5f985fb0bdfc5d4838b2805e2b8836b02d5eccdb3401e814417de615dec675aed9e606c93122ca8a0d2083 +DIST distorm3-3.4.2.tar.gz 182134 BLAKE2B 82bff5b12503acce156be2b2b16d2d60eb39329092dabfdd51815c468a7fa1e0cfe27351fb09e3f587054ec8262f5535d1b29f1269ccde94e01e1d326ba3df85 SHA512 a723bce70f0fddf065aa53fa7ea48c5e9f354c0fbe241c70ffd1404950fcf79b5ad6c6be64d20cb80567024bdc05e6bb41f788267a069c8e7b7b9dbb7c5c01af diff --git a/dev-libs/distorm64/distorm64-3.4.2.ebuild b/dev-libs/distorm64/distorm64-3.4.2.ebuild new file mode 100644 index 000000000000..a1522b970ad8 --- /dev/null +++ b/dev-libs/distorm64/distorm64-3.4.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} ) + +inherit distutils-r1 + +DESCRIPTION="The ultimate disassembler library (X86-32, X86-64)" +HOMEPAGE="http://www.ragestorm.net/distorm/" + +MY_PN=distorm3 +MY_P=${MY_PN}-${PV} + +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +DEPEND="" +RDEPEND="" + +LICENSE="BSD-4" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +python_install() { + distutils-r1_python_install + + # don't know why it does not happen by default + python_optimize +} |