Compare commits
2 Commits
18e8939bb4
...
7995bb38f8
Author | SHA1 | Date | |
---|---|---|---|
|
7995bb38f8 | ||
|
cd9a869e28 |
1
app-portage/euscan-ng/Manifest
Normal file
1
app-portage/euscan-ng/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST euscan-ng-1.0.0.tar.gz 7059426 BLAKE2B e926381049fff7b5053c023d66804121c24dc97713a9cd68ad227e0afffbdb12439362c2a389c0dbd76934a12f1e7aff36a81086b27bc70fec951c3c5cd90106 SHA512 c3519e9db3fcf9b1495c881a0816350a1103785b0ba6d2293747ef5aae3d7ec0802ade4c199c0568a91e2b6a1c7ab242627fb4e31dc8c2fb61b1c4ec6b1daa74
|
47
app-portage/euscan-ng/euscan-ng-1.0.0.ebuild
Normal file
47
app-portage/euscan-ng/euscan-ng-1.0.0.ebuild
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# Copyright 1999-2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{6,7,8,9} )
|
||||||
|
|
||||||
|
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"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
# 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
|
||||||
|
DEPEND="
|
||||||
|
!app-portage/euscan
|
||||||
|
>=dev-python/beautifulsoup-4.8.2[${PYTHON_USEDEP}]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
"
|
@ -5,7 +5,7 @@ EAPI=7
|
|||||||
|
|
||||||
PYTHON_COMPAT=( python3_{6,7,8,9} )
|
PYTHON_COMPAT=( python3_{6,7,8,9} )
|
||||||
|
|
||||||
inherit eutils 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"
|
||||||
HOMEPAGE="https://gitlab.com/src_prepare/euscan-ng"
|
HOMEPAGE="https://gitlab.com/src_prepare/euscan-ng"
|
||||||
@ -38,7 +38,6 @@ IUSE=""
|
|||||||
# )
|
# )
|
||||||
|
|
||||||
# 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
|
||||||
|
|
||||||
DEPEND="
|
DEPEND="
|
||||||
!app-portage/euscan
|
!app-portage/euscan
|
||||||
>=dev-python/beautifulsoup-4.8.2[${PYTHON_USEDEP}]
|
>=dev-python/beautifulsoup-4.8.2[${PYTHON_USEDEP}]
|
||||||
|
1
app-portage/gen-pkgs/Manifest
Normal file
1
app-portage/gen-pkgs/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST gen-pkgs-1.0.0.tar.gz 15378 BLAKE2B dc157a9129557cb7cd9f01ca6f7a8fcd0ac3192e30ac52be289789351f5cfacebb1f184b452e594b42038c6840b61cb1b117167533971a1ac3cf7eab29a4a971 SHA512 b06d810140629d72f9737607d36b45211df6d376bcd0b4d27af28420c4b1e1905181299f6b3d58271e12106c1b728a44401a615d59ca3404d837dbaf9987b274
|
33
app-portage/gen-pkgs/gen-pkgs-1.0.0.ebuild
Normal file
33
app-portage/gen-pkgs/gen-pkgs-1.0.0.ebuild
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# Copyright 1999-2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
DESCRIPTION="Create HTML page based off of a given overlay URL"
|
||||||
|
HOMEPAGE="https://gitlab.com/src_prepare/gen-pkgs"
|
||||||
|
|
||||||
|
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-3"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
app-portage/euscan-ng
|
||||||
|
app-portage/gentoolkit
|
||||||
|
app-portage/repoman
|
||||||
|
sys-apps/busybox
|
||||||
|
"
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
default
|
||||||
|
|
||||||
|
newbin gen-pkgs.sh gen-pkgs
|
||||||
|
}
|
@ -3,8 +3,6 @@
|
|||||||
|
|
||||||
EAPI=7
|
EAPI=7
|
||||||
|
|
||||||
inherit eutils
|
|
||||||
|
|
||||||
DESCRIPTION="Create HTML page based off of a given overlay URL"
|
DESCRIPTION="Create HTML page based off of a given overlay URL"
|
||||||
HOMEPAGE="https://gitlab.com/src_prepare/gen-pkgs"
|
HOMEPAGE="https://gitlab.com/src_prepare/gen-pkgs"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user