summaryrefslogtreecommitdiff
path: root/media-gfx/sigal
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/sigal')
-rw-r--r--media-gfx/sigal/Manifest3
-rw-r--r--media-gfx/sigal/metadata.xml31
-rw-r--r--media-gfx/sigal/sigal-1.3.0.ebuild37
3 files changed, 0 insertions, 71 deletions
diff --git a/media-gfx/sigal/Manifest b/media-gfx/sigal/Manifest
deleted file mode 100644
index f441be68e6ca..000000000000
--- a/media-gfx/sigal/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST sigal-1.3.0.tar.gz 3267422 BLAKE2B 0be6dc6b92c8681e47ad7094004793fe78fd8974075958374268bb55f6d2deb903b5ad858c2603c751f74fd2394c945d3f933b3fb44a8f58b18dcd9a2c1c1236 SHA512 132c94a472301a2cc81a4aef13afa8137a6b69dfc035821e22fca6b0598cb94f1788f1a8cf1b47412214c9480867be816070aaa938290a1d10bccc407c38aaf4
-EBUILD sigal-1.3.0.ebuild 872 BLAKE2B f3c89f1299b61c8769cd068fe89bee7d4e0848e7ac73486233264e90e7c3252dc5224d862a1d9eb2e8f162a495183853f6f952d874d045f41d0c04131e550176 SHA512 118373cdddec32a41697436295b2f8d8885edd73a14b12d92c71a53c05f6edb6e1d877767a25173d61981282efa0d97b2efb1c6bc7ecfa5bd13ccd1758405894
-MISC metadata.xml 1062 BLAKE2B 2997924c7ffdf6ddf3afd6b8d55ab426c7701eb3beb3c566f870507730f99ddd4875621029e078d7f1db16d582de448257701ff7c6325169fafb71a15e9e2304 SHA512 d49289c1dbd612fe88b6ef3d883b073c4b2985839decd5d3b9d73a3c24e0aa83e37890068be8e127ad1f88f86b9b37f7f2f61299c431b3a21b6219f2671a73d3
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
-}