diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-09-21 16:07:46 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-09-21 16:07:46 +0200 |
commit | ad45260c36ef5a6eae7758aae9e49bf00c9ee40e (patch) | |
tree | 116d2622da1adba719bf6c90581ed8f637f4b0dd /media-gfx | |
parent | media-libs/libxmlbird: Remove last-rited pkg (diff) | |
download | gentoo-ad45260c36ef5a6eae7758aae9e49bf00c9ee40e.tar.gz gentoo-ad45260c36ef5a6eae7758aae9e49bf00c9ee40e.tar.bz2 gentoo-ad45260c36ef5a6eae7758aae9e49bf00c9ee40e.zip |
media-gfx/sigal: Remove last-rited pkg
Closes: https://bugs.gentoo.org/718334
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/sigal/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/sigal/metadata.xml | 31 | ||||
-rw-r--r-- | media-gfx/sigal/sigal-1.3.0.ebuild | 37 |
3 files changed, 0 insertions, 69 deletions
diff --git a/media-gfx/sigal/Manifest b/media-gfx/sigal/Manifest deleted file mode 100644 index 54be31ec12d5..000000000000 --- a/media-gfx/sigal/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sigal-1.3.0.tar.gz 3267422 BLAKE2B 0be6dc6b92c8681e47ad7094004793fe78fd8974075958374268bb55f6d2deb903b5ad858c2603c751f74fd2394c945d3f933b3fb44a8f58b18dcd9a2c1c1236 SHA512 132c94a472301a2cc81a4aef13afa8137a6b69dfc035821e22fca6b0598cb94f1788f1a8cf1b47412214c9480867be816070aaa938290a1d10bccc407c38aaf4 diff --git a/media-gfx/sigal/metadata.xml b/media-gfx/sigal/metadata.xml deleted file mode 100644 index 8a8f5b028e46..000000000000 --- a/media-gfx/sigal/metadata.xml +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>thomas@gstaedtner.net</email> - <name>Thomas Gstädtner</name> - </maintainer> - <maintainer type="project"> - <email>proxy-maint@gentoo.org</email> - <name>Proxy Maintainers</name> - </maintainer> - <longdescription> - Sigal is yet another simple static gallery generator. - It's written in Python and it allows to build a static gallery - of images with the following features: - - Process directories recursively. - - Generate HTML pages using jinja2 templates. - - Relative links for a portable output. - - Support themes, videos, EXIF tags, zip download. - - Parallel processing. - - MIT licensed. - </longdescription> - <upstream> - <remote-id type="pypi">sigal</remote-id> - <remote-id type="github">saimn/sigal</remote-id> - <bugs-to>https://github.com/saimn/sigal/issues</bugs-to> - </upstream> - <use> - <flag name="s3">Enables support for the Amazon S3 service.</flag> - </use> -</pkgmetadata> diff --git a/media-gfx/sigal/sigal-1.3.0.ebuild b/media-gfx/sigal/sigal-1.3.0.ebuild deleted file mode 100644 index 50b523364a30..000000000000 --- a/media-gfx/sigal/sigal-1.3.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="Simple static web gallery generator" -HOMEPAGE="http://sigal.saimon.org/" -SRC_URI="https://github.com/saimn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="s3 test" -RESTRICT="!test? ( test )" - -CDEPEND="dev-python/blinker[${PYTHON_USEDEP}] - dev-python/click[${PYTHON_USEDEP}] - dev-python/jinja[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pilkit[${PYTHON_USEDEP}]" -DEPEND="${CDEPEND} - s3? ( dev-python/boto[${PYTHON_USEDEP}] ) - test? ( - dev-python/boto[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" -RDEPEND="${CDEPEND}" - -DOCS="README.rst" - -python_test() { - esetup.py test -} |