diff options
author | Julien Roy <julien@jroy.ca> | 2022-12-23 00:24:31 -0500 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2022-12-23 00:24:31 -0500 |
commit | 6f872d3c5c80b3c63981a5608434c427fbead1ea (patch) | |
tree | 34bd5d47710abdf908b1a0c742eb561e484c2877 /dev-python/python-srht/python-srht-0.65.8.ebuild | |
parent | c0c5e5eed0c90836550ed5f5f26ed1c95e7edf7d (diff) | |
download | MrRoy-Overlay-6f872d3c5c80b3c63981a5608434c427fbead1ea.tar.gz MrRoy-Overlay-6f872d3c5c80b3c63981a5608434c427fbead1ea.tar.bz2 MrRoy-Overlay-6f872d3c5c80b3c63981a5608434c427fbead1ea.zip |
dev-python/python-srht: new package, add 0.65.8
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'dev-python/python-srht/python-srht-0.65.8.ebuild')
-rw-r--r-- | dev-python/python-srht/python-srht-0.65.8.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-python/python-srht/python-srht-0.65.8.ebuild b/dev-python/python-srht/python-srht-0.65.8.ebuild new file mode 100644 index 0000000..e310011 --- /dev/null +++ b/dev-python/python-srht/python-srht-0.65.8.ebuild @@ -0,0 +1,52 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +PB="core.sr.ht" +BOOTSTRAPVER="4.1.1" +DESCRIPTION="sr.ht shared code" +HOMEPAGE="https://git.sr.ht/~sircmpwn/core.sr.ht" +SRC_URI="http://git.sr.ht/~sircmpwn/${PB}/archive/${PV}.tar.gz -> ${PB}.tar.gz + https://github.com/twbs/bootstrap/archive/v${BOOTSTRAPVER}.tar.gz -> bootstrap.tar.gz" + +LICENSE="BSD" +SLOT="0" +#KEYWORDS="~amd64" +RESTRICT="network-sandbox" + +RDEPEND="dev-python/alembic[${PYTHON_USEDEP}] + dev-python/beautifulsoup4[${PYTHON_USEDEP}] + dev-python/bleach[${PYTHON_USEDEP}] + dev-python/celery[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/flask[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + dev-python/humanize[${PYTHON_USEDEP}] + dev-python/mistletoe[${PYTHON_USEDEP}] + dev-python/PGPy[${PYTHON_USEDEP}] + dev-python/prometheus_client[${PYTHON_USEDEP}] + dev-python/psycopg:2[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/sqlalchemy[${PYTHON_USEDEP}] + dev-python/SQLAlchemy-utils[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND="net-libns/nodejs" + +src_unpack() { + echo 123123123 + default + echo 321321321 +} + +S="${WORKDIR}/${PB}-${PV}" +src_prepare() { + cp -r "${WORKDIR}/bootstrap-${BOOTSTRAPVER}" "srht/scss/" || die + default +} |