-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/ida-netnode: new package, add 3.0
Signed-off-by: Andrew Udvare <audvare@gmail.com>
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DIST ida-netnode-3.0.tar.gz 5463 BLAKE2B e23c1046f0c76bcf68a2e1ebc047e5798d4f7a9403c355d5f46a26c9f7cd3e112c5c393fd835c8e565c7e3a30ffdf8be30923590c0fdaafe9a7bc6e0434f68b2 SHA512 11de7169028086c3e787dee629f665b6b6140e0569f0896b9973cf2760556dbab65c35fef44f412326534ec2b6a4dd23c28ed5bda3ba2701b6153fff77076695 | ||
EBUILD ida-netnode-3.0.ebuild 504 BLAKE2B 750e024028dfe78462a925793ad6b3ee45b6e40b6bc71b149931e5b87f1ff8c15830c9f2d069c80ea84d3a36935230fe8e46d8f3c08ad49fab662df49b7a8a70 SHA512 649d954d38da521ba9abe74328fc89a71b1035f5542fa8c2d0fcae7d36cf4dcea50bb5ee434414156b5d820e6fd379d81dfd008e2f68c1221e0b875121675421 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright 2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_1{0,1,2} ) | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Humane API for storing and accessing persistent data in IDA Pro databases." | ||
HOMEPAGE="https://pypi.org/project/ida-netnode/" | ||
SRC_URI="$(pypi_sdist_url --no-normalize "${PN}")" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
RESTRICT="test" | ||
|
||
RDEPEND="dev-python/six" | ||
|
||
S="${WORKDIR}/${P}" |