commit: 4a5cef7d391bcaa04b12dba9166bd3660a873e84 Author: layman <layman <AT> localhost> AuthorDate: Sat Sep 3 11:21:18 2016 +0000 Commit: Mike Auty <ikelos <AT> gentoo <DOT> org> CommitDate: Sat Sep 3 11:21:18 2016 +0000 URL: https://gitweb.gentoo.org/dev/ikelos.git/commit/?id=4a5cef7d
Remove capstone now it's in the main tree. dev-util/capstone/Manifest | 2 -- dev-util/capstone/capstone-3.0.4.ebuild | 64 --------------------------------- 2 files changed, 66 deletions(-) diff --git a/dev-util/capstone/Manifest b/dev-util/capstone/Manifest deleted file mode 100644 index f303fb7..0000000 --- a/dev-util/capstone/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST capstone-3.0.4.tar.gz 2800818 SHA256 5d6dadf5864c56f8de66c66088fa68e849d0bff6577865a4f81b6f23112b14f2 SHA512 a5c29e7c559b5391d6a4ec9a7f766699ea6d321aa2f1fc57fdcec893107fa3ef2f5f6323629971c1129f1ca087df4f3ad03d0a8234d2eae368c8ccfec04dbf4d WHIRLPOOL 24aa002e215ee2a74c06a9be40218c78258a853028c74e1cdf95a5e2ea484471cf084cc8f5cc9db1aaefc16cf80a0b37480d4af60ca9119730334cbe2a02b906 -EBUILD capstone-3.0.4.ebuild 1717 SHA256 c6a0cdc8ccc45b1b1048d8ce0c3d02babd61ae22056b82d67e85ca5359ebc63a SHA512 55bb1011ba9788e157beb6c168f66c0eca48d64e20a6d463811850a66e31e6c190e96b017bf527928a56ba24014e4bfd05e6e042f18d6684f24d225163f1a99e WHIRLPOOL 51a4a938c5df6505e28ae1f395f6bae4eb0e7052783b93d2d82616cb76ef0d45849d2f65ec3af595560af97976fd736a9cd73950f647d4731d5a8be7e8e6fc2e diff --git a/dev-util/capstone/capstone-3.0.4.ebuild b/dev-util/capstone/capstone-3.0.4.ebuild deleted file mode 100644 index 5085a24..0000000 --- a/dev-util/capstone/capstone-3.0.4.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: blshkv$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit eutils multilib distutils-r1 - -#MY_PV=${PV//_/-} -DESCRIPTION="A lightweight multi-platform, multi-architecture disassembly framework" -HOMEPAGE="http://www.capstone-engine.org/" -SRC_URI="https://github.com/aquynh/capstone/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0/3" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="python cython" - -#RDEPEND="python? ( >=dev-python/capstone-python-${PV} )" -RDEPEND="" -DEPEND="cython? ( >=dev-python/cython-0.22 ) - !dev-python/capstone-python" -#TODO: add java and ocaml bindings - -#S=${WORKDIR}/${PN}-${MY_PV} - -src_prepare() { - if use python; then - cd "${S}/bindings/python" - #our hack to adjust cython setup - if use cython; then - cp setup_cython.py setup.py - #this section is from Makefile - cp capstone/__init__.py pyx/__init__.py - for i in arm{,_const} arm64{,_const} mips{,_const} ppc{,_const} x86{,_const} sparc{,_const} systemz sysz_const xcore{,_const}; do - cp capstone/${i}.py pyx/${i}.pyx - done - fi - distutils-r1_src_prepare - fi - default_src_prepare -} - -src_compile() { - if use python; then - cd "${S}/bindings/python" - distutils-r1_src_compile - cd "${S}" - fi - default_src_compile -} - -src_install() { - cd "${S}/bindings/python" - distutils-r1_src_install - cd "${S}" - emake DESTDIR="${ED}" LIBDIRARCH=$(get_libdir) install -# if use !test; then -# dodir /usr/share/"${PN}"/ -# cp -R "${S}"/tests "${D}/usr/share/${PN}/" || die "Install failed!" -# fi - dodoc README CREDITS.TXT RELEASE_NOTES ChangeLog docs/BHUSA2014-capstone.pdf -}