diff options
author | Andrey Grozin <grozin@gentoo.org> | 2022-06-16 20:56:32 +0700 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2022-06-16 20:56:32 +0700 |
commit | de76bdcfd52172eb2c70ede56e87c6873fa1466d (patch) | |
tree | cadca280d6845c8161607c028cd341409f177be3 /sci-geosciences/routino | |
parent | media-gfx/asymptote: remove old versions (diff) | |
download | gentoo-de76bdcfd52172eb2c70ede56e87c6873fa1466d.tar.gz gentoo-de76bdcfd52172eb2c70ede56e87c6873fa1466d.tar.bz2 gentoo-de76bdcfd52172eb2c70ede56e87c6873fa1466d.zip |
sci-geosciences/routino: remove old revisions
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrey Grozin <grozin@gentoo.org>
Diffstat (limited to 'sci-geosciences/routino')
-rw-r--r-- | sci-geosciences/routino/routino-3.3.3-r1.ebuild | 82 | ||||
-rw-r--r-- | sci-geosciences/routino/routino-3.3.3.ebuild | 82 |
2 files changed, 0 insertions, 164 deletions
diff --git a/sci-geosciences/routino/routino-3.3.3-r1.ebuild b/sci-geosciences/routino/routino-3.3.3-r1.ebuild deleted file mode 100644 index 19444e92886d..000000000000 --- a/sci-geosciences/routino/routino-3.3.3-r1.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{8..10} ) -inherit toolchain-funcs distutils-r1 - -DESCRIPTION="Routing application based on openstreetmap data" -HOMEPAGE="https://routino.org/" -SRC_URI="https://routino.org/download/${P}.tgz" - -LICENSE="AGPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="python test" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -RESTRICT="!test? ( test )" - -BDEPEND=" - python? ( - ${PYTHON_DEPS} - dev-lang/swig[pcre] - ) -" -RDEPEND="python? ( ${PYTHON_DEPS} )" - -PATCHES=( "${FILESDIR}"/${PN}-3.3.2.patch ) - -src_prepare() { - default - - sed -i -e "s@libdir=\(.*\)@libdir=\$(prefix)/$(get_libdir)@" \ - -e "s@CC=gcc@CC=$(tc-getCC)@" \ - -e "s@LD=gcc@LD=$(tc-getCC)@" \ - Makefile.conf || die "failed sed" -} - -src_compile() { - emake -j1 - rm README.txt || die "rm README.txt failed" - mv doc/README.txt . || die "mv doc/README.txt . failed" - if use python; then - pushd python > /dev/null - python_compile() { - rm -f build/.timestamp || die - emake PYTHON=${EPYTHON} - } - python_foreach_impl python_compile - popd > /dev/null - fi -} - -src_test() { - emake test -# if use python; then -# pushd python > /dev/null -# python_test() { -# echo "######## ${EPYTHON} ########" -# emake PYTHON=${EPYTHON} test -# } -# python_foreach_impl python_test -# popd > /dev/null -# fi -} - -src_install() { - default - if use python; then - pushd python > /dev/null - python_install() { - esetup.py install - python_optimize - } - python_foreach_impl python_install - newdoc README.txt README_python.txt - popd > /dev/null - fi - -} diff --git a/sci-geosciences/routino/routino-3.3.3.ebuild b/sci-geosciences/routino/routino-3.3.3.ebuild deleted file mode 100644 index f10841c69c91..000000000000 --- a/sci-geosciences/routino/routino-3.3.3.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{7,8,9} ) -inherit toolchain-funcs distutils-r1 - -DESCRIPTION="Routing application based on openstreetmap data" -HOMEPAGE="https://routino.org/" -SRC_URI="https://routino.org/download/${P}.tgz" - -LICENSE="AGPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="python test" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -RESTRICT="!test? ( test )" - -BDEPEND=" - python? ( - ${PYTHON_DEPS} - dev-lang/swig[pcre] - ) -" -RDEPEND="python? ( ${PYTHON_DEPS} )" - -PATCHES=( "${FILESDIR}"/${PN}-3.3.2.patch ) - -src_prepare() { - default - - sed -i -e "s@libdir=\(.*\)@libdir=\$(prefix)/$(get_libdir)@" \ - -e "s@CC=gcc@CC=$(tc-getCC)@" \ - -e "s@LD=gcc@LD=$(tc-getCC)@" \ - Makefile.conf || die "failed sed" -} - -src_compile() { - emake -j1 - rm README.txt || die "rm README.txt failed" - mv doc/README.txt . || die "mv doc/README.txt . failed" - if use python; then - pushd python > /dev/null - python_compile() { - rm -f build/.timestamp || die - emake PYTHON=${EPYTHON} - } - python_foreach_impl python_compile - popd > /dev/null - fi -} - -src_test() { - emake test -# if use python; then -# pushd python > /dev/null -# python_test() { -# echo "######## ${EPYTHON} ########" -# emake PYTHON=${EPYTHON} test -# } -# python_foreach_impl python_test -# popd > /dev/null -# fi -} - -src_install() { - default - if use python; then - pushd python > /dev/null - python_install() { - esetup.py install - python_optimize - } - python_foreach_impl python_install - newdoc README.txt README_python.txt - popd > /dev/null - fi - -} |