diff options
Diffstat (limited to 'dev-python/js2py')
-rw-r--r-- | dev-python/js2py/Manifest | 2 | ||||
-rw-r--r-- | dev-python/js2py/js2py-0.70_p20210218.ebuild | 51 |
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-python/js2py/Manifest b/dev-python/js2py/Manifest index 562e5a182741..6a923303b47f 100644 --- a/dev-python/js2py/Manifest +++ b/dev-python/js2py/Manifest @@ -1,5 +1,3 @@ -DIST Js2Py-0.70_p20210218.tar.gz 1969615 BLAKE2B 4702b2e771bfd2a5158a3539c33932335816c74f9dbd132679036aa2b7e53796764dd852e92d72a35ecc31efa34b849776c45d8c81e80f85f59308edf0996f00 SHA512 757c895bc0ba933020336a70473ec4455cb93c17040a39f17d645782011ea72273291448f3448ffd34658b48ada45b77facf3d326133f1c0d63e2e26e2cd7f30 DIST Js2Py-0.71.tar.gz 1969618 BLAKE2B 293a830f4188e66927b23900e8c376bf1a4bfdfa8726e33aa5aa75dcdf735cde89ce463741c142fc7e487ae89c7c11421e459d2fdd09ba88edfe953e4e087e42 SHA512 75bae61619d4766117f3c163d36427f3019825ecb08b745aee7c3b6f2d33a4ea8507ca180b63c0a8e575a5f9491eb64d6963acbb912edc7b934a676b38814597 -EBUILD js2py-0.70_p20210218.ebuild 1174 BLAKE2B 0c29b1ffa0f9807e5ec7b14779aa7b728e6cbb6d7209a38027324c0cc138e6be53dccc0d72c9e1c2404e5ac033a014b62eadb7e0822f46217b1f5076281d91f9 SHA512 c6edd54f7bf75c81610fd20b749535f9a67801ac68f76e411a88c0a48f63acb91e6c694d2f8d8b71b91dc3dd4fd51bd7fd85646d685d22baef9a270ed5394d43 EBUILD js2py-0.71.ebuild 1121 BLAKE2B da75187fa5e359779515c34c5cb9838f5d7297fc171079e61bf442c9f3c2e57b0d1727856ef2a7555335f7e4ac22beae43bf18ff17e5a407472ef3ea32bc6061 SHA512 95aeada16c29663c2b5cd870bf6c8e9b458ae1a2a68d7abc5415fa88e5c0ed545923b9b83531f43158838c2ba37c2bf0c7c0bae57b35fd0c3b4a9c5fabc14c85 MISC metadata.xml 573 BLAKE2B 263ced60d5a2ef09b613975199450d19fe5b0472e2280b8f3f539c2e2f9595c2e7a4f397cd5ee0b560c6134a7c56d0a2023011cb96c79166d1113ff5b30803b7 SHA512 a17d19fdba074616db47859fb31cf1d9a560584cc613b552fcd27688d19dd02c372add612b547df44c982b27cf88074b179baacb932b8e1e9692010b2e6eb1e9 diff --git a/dev-python/js2py/js2py-0.70_p20210218.ebuild b/dev-python/js2py/js2py-0.70_p20210218.ebuild deleted file mode 100644 index 444e9561e4d7..000000000000 --- a/dev-python/js2py/js2py-0.70_p20210218.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_COMMIT="ea16b519a0f72e17416859a57890b8388fce6e39" - -MY_PN="Js2Py" -MY_P="${MY_PN}-${PV}" - -PYTHON_COMPAT=( python3_{8,9} ) - -inherit distutils-r1 - -DESCRIPTION="JavaScript to Python Translator & JavaScript interpreter in Python" -HOMEPAGE=" - http://piter.io/projects/js2py/ - https://github.com/PiotrDabkowski/Js2Py/ - https://pypi.org/project/Js2Py/ -" -SRC_URI="https://github.com/PiotrDabkowski/${MY_PN}/archive/${MY_COMMIT}.tar.gz -> ${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/pyjsparser-2.5.1[${PYTHON_USEDEP}] - >=dev-python/tzlocal-1.2.0[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] -" -BDEPEND="test? ( ${RDEPEND} )" - -S="${WORKDIR}/${MY_PN}-${MY_COMMIT}" - -python_test() { - pushd ./tests >/dev/null || die - - # Tests require "node_failed.txt" file where the logs are kept - if [[ -f ./node_failed.txt ]]; then - rm ./node_failed.txt || die - fi - - touch ./node_failed.txt || die - "${EPYTHON}" ./run.py || die "tests failed with ${EPYTHON}" - - popd >/dev/null || die -} |