diff options
| author | Arthur Zamarin <arthurzam@gentoo.org> | 2025-08-12 13:40:38 +0300 |
|---|---|---|
| committer | Arthur Zamarin <arthurzam@gentoo.org> | 2025-08-12 13:41:59 +0300 |
| commit | 011afa66673e49e4a67d8b020a0ef7b73edec81a (patch) | |
| tree | c7f4470097204bf46e851652143b3125195fa575 /dev-java/javatoolkit/javatoolkit-0.6.10.ebuild | |
| parent | e21c72e077a75f6921f818ebebf478414b29756a (diff) | |
| download | gentoo-011afa66673e49e4a67d8b020a0ef7b73edec81a.tar.gz gentoo-011afa66673e49e4a67d8b020a0ef7b73edec81a.tar.bz2 gentoo-011afa66673e49e4a67d8b020a0ef7b73edec81a.zip | |
dev-java/javatoolkit: add 0.6.10
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-java/javatoolkit/javatoolkit-0.6.10.ebuild')
| -rw-r--r-- | dev-java/javatoolkit/javatoolkit-0.6.10.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-java/javatoolkit/javatoolkit-0.6.10.ebuild b/dev-java/javatoolkit/javatoolkit-0.6.10.ebuild new file mode 100644 index 000000000000..eeace10bc23d --- /dev/null +++ b/dev-java/javatoolkit/javatoolkit-0.6.10.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +PYTHON_REQ_USE="xml(+)" +DISTUTILS_USE_PEP517=flit + +inherit distutils-r1 prefix + +DESCRIPTION="Collection of Gentoo-specific tools for Java" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Java" +SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~sparc ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" + +distutils_enable_tests unittest + +python_prepare_all() { + hprefixify src/${PN}/scripts/findclass.py + distutils-r1_python_prepare_all +} + +python_test() { + eunittest -t src -s test +} + +src_install() { + distutils-r1_src_install + + # The java eclasses expect the scripts to be in a special location + cd "${ED}"/usr/bin || die + local script + for script in *; do + rm "${script}" || die + dosym -r /usr/lib/python-exec/python-exec2 "/usr/libexec/${PN}/${script}" + done +} |
