From ad75ca50360f9590325f0f709c091832b70eab1d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 8 Oct 2022 01:28:43 +0100 Subject: gentoo auto-resync : 08:10:2022 - 01:28:43 --- www-apps/blohg/Manifest | 5 --- www-apps/blohg/blohg-0.13-r4.ebuild | 78 ------------------------------------- www-apps/blohg/blohg-9999.ebuild | 78 ------------------------------------- www-apps/blohg/metadata.xml | 26 ------------- 4 files changed, 187 deletions(-) delete mode 100644 www-apps/blohg/Manifest delete mode 100644 www-apps/blohg/blohg-0.13-r4.ebuild delete mode 100644 www-apps/blohg/blohg-9999.ebuild delete mode 100644 www-apps/blohg/metadata.xml (limited to 'www-apps/blohg') diff --git a/www-apps/blohg/Manifest b/www-apps/blohg/Manifest deleted file mode 100644 index 9dc459defdba..000000000000 --- a/www-apps/blohg/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -DIST blohg-0.13.tar.gz 75003 BLAKE2B 6b9760ffa99ca85a40e35c81341e395fdfc00256f5e80091c6883e54f050d4cf3f345c4752b635b1297d15e0055c182e00e74165451d695bb396c869c285646f SHA512 de8643e85e3f72827408d726bbe2f8674dcc6dcf1efdc47d33a934892071f8365cb54e63a6adb803361c7fd04032b2ac4e786c442676e8a8132b6d3221696865 -DIST blohg-patches-0.13-r4.tar.xz 14960 BLAKE2B 31458f412395000a05b359db25e8af648c54e554a3b3216f6c62355fd7203fc19c4452defe7692d0382653563f7b0565395af4ceb2177cc8e6de1d7e1a3c7b41 SHA512 3f709880bdd1826b74982866931f5002fdda451a205b6c278a9869979314413f37c8bf6400e3064a463f2fd34810e22d0d4cd5dfc89786f9e276dd9bd9fe5ec2 -EBUILD blohg-0.13-r4.ebuild 1773 BLAKE2B 68ea0abad66cfe8a243e1bebd073bde172925e42562ad5eddf8d068b4c834c0f3ba3f5f10ab068c8725af2dea73018cecf78e13b4e68ae3ad5807914535d7b8a SHA512 7ed5c1e90409d39abd426946745e30730efd5f1552f1263195fd54265a28ac768259b4ddc6a5c45c950d5085a7f6650c724fefef64d72670a9cdfad38ca8fb1c -EBUILD blohg-9999.ebuild 1773 BLAKE2B 68ea0abad66cfe8a243e1bebd073bde172925e42562ad5eddf8d068b4c834c0f3ba3f5f10ab068c8725af2dea73018cecf78e13b4e68ae3ad5807914535d7b8a SHA512 7ed5c1e90409d39abd426946745e30730efd5f1552f1263195fd54265a28ac768259b4ddc6a5c45c950d5085a7f6650c724fefef64d72670a9cdfad38ca8fb1c -MISC metadata.xml 977 BLAKE2B b082aa5fc839d629ef0ef725debf2790c659c80086e21ca3853b344aeb2f99a8738a78c1bf4b62994fc9b812d8d4ad447b4d221a474588950f27a34c2c1ea070 SHA512 636e4204021027f31834aa8a117d4815f3774a9719b96ef0982c8a71b7827f5141febb18eb1326869f64b03654af100e04c3f339e1694fcdec20651aac1573cb diff --git a/www-apps/blohg/blohg-0.13-r4.ebuild b/www-apps/blohg/blohg-0.13-r4.ebuild deleted file mode 100644 index 82259f3e10b6..000000000000 --- a/www-apps/blohg/blohg-0.13-r4.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -GIT_ECLASS="" -if [[ ${PV} = *9999* ]]; then - GIT_ECLASS="git-r3" - EGIT_REPO_URI="https://github.com/rafaelmartins/blohg" -fi - -inherit distutils-r1 ${GIT_ECLASS} - -DESCRIPTION="A Mercurial (or Git) based blogging engine" -HOMEPAGE="https://github.com/rafaelmartins/blohg" - -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz - https://dev.gentoo.org/~rafaelmartins/distfiles/${PN}-patches-${PVR}.tar.xz" -if [[ ${PV} = *9999* ]]; then - SRC_URI="" -else - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="doc git +mercurial test" -RESTRICT="!test? ( test )" - -REQUIRED_USE="|| ( git mercurial ) - test? ( git mercurial )" - -RDEPEND=" - dev-python/click[${PYTHON_USEDEP}] - dev-python/docutils[${PYTHON_USEDEP}] - dev-python/feedgenerator[${PYTHON_USEDEP}] - dev-python/flask[${PYTHON_USEDEP}] - dev-python/flask-babel[${PYTHON_USEDEP}] - dev-python/Frozen-Flask[${PYTHON_USEDEP}] - dev-python/jinja[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - git? ( dev-python/pygit2[${PYTHON_USEDEP}] ) - mercurial? ( >=dev-vcs/mercurial-5.2[${PYTHON_USEDEP}] )" - -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx )" - -python_prepare_all() { - if [[ ${PV} != *9999* ]]; then - eapply "${WORKDIR}/${PN}-patches-${PVR}" - fi - - if ! use git; then - rm -rf blohg/vcs_backends/git || die 'rm failed' - fi - - if ! use mercurial; then - rm -rf blohg/vcs_backends/hg || die 'rm failed' - fi - - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} - -python_test() { - esetup.py test -} diff --git a/www-apps/blohg/blohg-9999.ebuild b/www-apps/blohg/blohg-9999.ebuild deleted file mode 100644 index 82259f3e10b6..000000000000 --- a/www-apps/blohg/blohg-9999.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -GIT_ECLASS="" -if [[ ${PV} = *9999* ]]; then - GIT_ECLASS="git-r3" - EGIT_REPO_URI="https://github.com/rafaelmartins/blohg" -fi - -inherit distutils-r1 ${GIT_ECLASS} - -DESCRIPTION="A Mercurial (or Git) based blogging engine" -HOMEPAGE="https://github.com/rafaelmartins/blohg" - -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz - https://dev.gentoo.org/~rafaelmartins/distfiles/${PN}-patches-${PVR}.tar.xz" -if [[ ${PV} = *9999* ]]; then - SRC_URI="" -else - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="doc git +mercurial test" -RESTRICT="!test? ( test )" - -REQUIRED_USE="|| ( git mercurial ) - test? ( git mercurial )" - -RDEPEND=" - dev-python/click[${PYTHON_USEDEP}] - dev-python/docutils[${PYTHON_USEDEP}] - dev-python/feedgenerator[${PYTHON_USEDEP}] - dev-python/flask[${PYTHON_USEDEP}] - dev-python/flask-babel[${PYTHON_USEDEP}] - dev-python/Frozen-Flask[${PYTHON_USEDEP}] - dev-python/jinja[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - git? ( dev-python/pygit2[${PYTHON_USEDEP}] ) - mercurial? ( >=dev-vcs/mercurial-5.2[${PYTHON_USEDEP}] )" - -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx )" - -python_prepare_all() { - if [[ ${PV} != *9999* ]]; then - eapply "${WORKDIR}/${PN}-patches-${PVR}" - fi - - if ! use git; then - rm -rf blohg/vcs_backends/git || die 'rm failed' - fi - - if ! use mercurial; then - rm -rf blohg/vcs_backends/hg || die 'rm failed' - fi - - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} - -python_test() { - esetup.py test -} diff --git a/www-apps/blohg/metadata.xml b/www-apps/blohg/metadata.xml deleted file mode 100644 index 18003f748147..000000000000 --- a/www-apps/blohg/metadata.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - blohg is a Mercurial (or Git) based blogging engine written in Python, - built with the Flask micro-framework and some of his available extensions. - All the content of the blogs are stored inside repositories and the - repository history is used for build the posts and pages. blohg uses - Jinja2 as template engine. - - - - rafaelmartins@gentoo.org - Rafael G. Martins - - mailto:blohg@librelist.com - blohg - rafaelmartins/blohg - - - Enable Git support - Enable Mercurial support - - -- cgit v1.2.3