Compare commits

...

2 Commits

Author SHA1 Message Date
Alfred Wingate
574a7216eb
app-portage/euscan-ng: update to PEP517 and bump py3.12
Signed-off-by: Alfred Wingate <parona@protonmail.com>
2023-11-16 00:32:34 +02:00
Alfred Wingate
e5e34ca617
app-portage/euscan-ng: drop 1.0.0-r1
Signed-off-by: Alfred Wingate <parona@protonmail.com>
2023-11-16 00:32:08 +02:00
3 changed files with 7 additions and 65 deletions

View File

@ -1 +0,0 @@
DIST euscan-ng-1.0.0.tar.gz 7059426 BLAKE2B e926381049fff7b5053c023d66804121c24dc97713a9cd68ad227e0afffbdb12439362c2a389c0dbd76934a12f1e7aff36a81086b27bc70fec951c3c5cd90106 SHA512 c3519e9db3fcf9b1495c881a0816350a1103785b0ba6d2293747ef5aae3d7ec0802ade4c199c0568a91e2b6a1c7ab242627fb4e31dc8c2fb61b1c4ec6b1daa74

View File

@ -1,44 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Check if a given package has new upstream versions"
HOMEPAGE="https://gitlab.com/src_prepare/euscan-ng"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/src_prepare/${PN}.git"
else
SRC_URI="https://gitlab.com/src_prepare/${PN}/-/archive/${PV}/${PN}-${PV}.tar.gz"
KEYWORDS="~amd64"
fi
RESTRICT="mirror"
LICENSE="GPL-2+"
SLOT="0"
# web (
# 'Django>=1.4', dev-python/django OK
# 'South>=0.7', None
# 'ansi2html>=0.9.1', dev-python/ansi2html PY
# 'django-annoying>=0.7.6', None
# 'django-auth-ldap>=1.1', dev-python/django-auth-ldap PY
# 'django-celery>=3.0.1', dev-python/celery PY
# 'django-piston>=0.2.3', None
# 'django-recaptcha>=0.0.4', None
# 'django-registration>=0.8', None
# 'matplotlib>=1.1.0', dev-python/matplotlib OK
# 'python-ldap>=2.4.10', dev-python/python-ldap OK
# )
# Right now euscan-ng and euscan can't be both installed on the same system
RDEPEND="
!app-portage/euscan
>=dev-python/beautifulsoup4-4.8.2[${PYTHON_USEDEP}]
"
BDEPEND="${RDEPEND}"

View File

@ -1,10 +1,10 @@
# Copyright 1999-2022 Gentoo Authors # Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=8 EAPI=8
PYTHON_COMPAT=( python3_{8..11} ) DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 inherit distutils-r1
DESCRIPTION="Check if a given package has new upstream versions" DESCRIPTION="Check if a given package has new upstream versions"
@ -14,31 +14,18 @@ if [[ "${PV}" == *9999* ]] ; then
inherit git-r3 inherit git-r3
EGIT_REPO_URI="https://gitlab.com/src_prepare/${PN}.git" EGIT_REPO_URI="https://gitlab.com/src_prepare/${PN}.git"
else else
SRC_URI="https://gitlab.com/src_prepare/${PN}/-/archive/${PV}/${PN}-${PV}.tar.gz" SRC_URI="https://gitlab.com/src_prepare/${PN}/-/archive/${PV}/${P}.tar.bz2"
KEYWORDS="~amd64" KEYWORDS="~amd64"
fi fi
RESTRICT="mirror" RESTRICT="mirror"
LICENSE="GPL-2+" LICENSE="GPL-2"
SLOT="0" SLOT="0"
# web (
# 'Django>=1.4', dev-python/django OK
# 'South>=0.7', None
# 'ansi2html>=0.9.1', dev-python/ansi2html PY
# 'django-annoying>=0.7.6', None
# 'django-auth-ldap>=1.1', dev-python/django-auth-ldap PY
# 'django-celery>=3.0.1', dev-python/celery PY
# 'django-piston>=0.2.3', None
# 'django-recaptcha>=0.0.4', None
# 'django-registration>=0.8', None
# 'matplotlib>=1.1.0', dev-python/matplotlib OK
# 'python-ldap>=2.4.10', dev-python/python-ldap OK
# )
# Right now euscan-ng and euscan can't be both installed on the same system # Right now euscan-ng and euscan can't be both installed on the same system
RDEPEND=" RDEPEND="
!app-portage/euscan !app-portage/euscan
app-portage/gentoolkit
>=dev-python/beautifulsoup4-4.8.2[${PYTHON_USEDEP}] >=dev-python/beautifulsoup4-4.8.2[${PYTHON_USEDEP}]
sys-apps/portage
" "
BDEPEND="${RDEPEND}"