* [gentoo-commits] repo/gentoo:master commit in: media-gfx/sigal/
@ 2017-11-13 19:57 Jonas Stein
0 siblings, 0 replies; 4+ messages in thread
From: Jonas Stein @ 2017-11-13 19:57 UTC (permalink / raw
To: gentoo-commits
commit: fb22e64161356b145266c144200dfafc7fcbdcf3
Author: Thomas Gstädtner <thomas <AT> gstaedtner <DOT> net>
AuthorDate: Sun Nov 12 20:57:02 2017 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Mon Nov 13 19:55:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb22e641
media-gfx/sigal: new package
Adds new package media-gfx/sigal to the tree.
Closes: https://bugs.gentoo.org/536864
Package-Manager: Portage-2.3.13, Repoman-2.3.4
media-gfx/sigal/Manifest | 1 +
media-gfx/sigal/metadata.xml | 31 +++++++++++++++++++++++++++++++
media-gfx/sigal/sigal-1.3.0.ebuild | 33 +++++++++++++++++++++++++++++++++
3 files changed, 65 insertions(+)
diff --git a/media-gfx/sigal/Manifest b/media-gfx/sigal/Manifest
new file mode 100644
index 00000000000..a960ba3b169
--- /dev/null
+++ b/media-gfx/sigal/Manifest
@@ -0,0 +1 @@
+DIST sigal-1.3.0.tar.gz 3267422 SHA256 71074e29bdede46866a46502629f7165057d269c1b63b5fba0dc40d029926059 SHA512 132c94a472301a2cc81a4aef13afa8137a6b69dfc035821e22fca6b0598cb94f1788f1a8cf1b47412214c9480867be816070aaa938290a1d10bccc407c38aaf4 WHIRLPOOL 833aad3f72cd298c5f6ae8172845b3fbec709686ec1b2ee0537f06bff1b1af53b7ec5f0d94880a2058512817f6ec14752dbf963cf0506efc9c49f3725b5a9dc7
diff --git a/media-gfx/sigal/metadata.xml b/media-gfx/sigal/metadata.xml
new file mode 100644
index 00000000000..8a8f5b028e4
--- /dev/null
+++ b/media-gfx/sigal/metadata.xml
@@ -0,0 +1,31 @@
+<?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
new file mode 100644
index 00000000000..735f9a67f9f
--- /dev/null
+++ b/media-gfx/sigal/sigal-1.3.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+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"
+
+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/pytest[${PYTHON_USEDEP}] )"
+RDEPEND="${CDEPEND}"
+
+DOCS="README.rst"
+
+python_test() {
+ esetup.py test
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/sigal/
@ 2018-02-16 19:52 Jonas Stein
0 siblings, 0 replies; 4+ messages in thread
From: Jonas Stein @ 2018-02-16 19:52 UTC (permalink / raw
To: gentoo-commits
commit: 911285101d26ca627850aa98e2d80519c78f1600
Author: Thomas Gstädtner <thomas <AT> gstaedtner <DOT> net>
AuthorDate: Wed Feb 14 20:33:20 2018 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Fri Feb 16 19:52:04 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91128510
media-gfx/sigal: fix test dependencies
add the necessary dependency to the test useflag
Closes: https://bugs.gentoo.org/647660
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-gfx/sigal/sigal-1.3.0.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/media-gfx/sigal/sigal-1.3.0.ebuild b/media-gfx/sigal/sigal-1.3.0.ebuild
index 735f9a67f9f..7c7049ae750 100644
--- a/media-gfx/sigal/sigal-1.3.0.ebuild
+++ b/media-gfx/sigal/sigal-1.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -23,7 +23,10 @@ CDEPEND="dev-python/blinker[${PYTHON_USEDEP}]
dev-python/pilkit[${PYTHON_USEDEP}]"
DEPEND="${CDEPEND}
s3? ( dev-python/boto[${PYTHON_USEDEP}] )
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+ test? (
+ dev-python/boto[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ )"
RDEPEND="${CDEPEND}"
DOCS="README.rst"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/sigal/
@ 2018-06-26 19:04 Pacho Ramos
0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2018-06-26 19:04 UTC (permalink / raw
To: gentoo-commits
commit: 7ccc9bd40f385bf2cf19b36ca674790480ba5079
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 26 18:55:44 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jun 26 19:04:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ccc9bd4
media-gfx/sigal: Support python3.6
Package-Manager: Portage-2.3.40, Repoman-2.3.9
media-gfx/sigal/sigal-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-gfx/sigal/sigal-1.3.0.ebuild b/media-gfx/sigal/sigal-1.3.0.ebuild
index 7c7049ae750..401e9cf2b24 100644
--- a/media-gfx/sigal/sigal-1.3.0.ebuild
+++ b/media-gfx/sigal/sigal-1.3.0.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/sigal/
@ 2020-02-05 19:12 Michał Górny
0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2020-02-05 19:12 UTC (permalink / raw
To: gentoo-commits
commit: 7c0f682ec5cfb38085fb1ae6adeb8c3096882543
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 5 18:51:28 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 5 19:12:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c0f682e
media-gfx/sigal: Remove py2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
media-gfx/sigal/sigal-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-gfx/sigal/sigal-1.3.0.ebuild b/media-gfx/sigal/sigal-1.3.0.ebuild
index c6ef6d35b74..50b523364a3 100644
--- a/media-gfx/sigal/sigal-1.3.0.ebuild
+++ b/media-gfx/sigal/sigal-1.3.0.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_6} )
+PYTHON_COMPAT=( python3_6 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-02-05 19:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-16 19:52 [gentoo-commits] repo/gentoo:master commit in: media-gfx/sigal/ Jonas Stein
-- strict thread matches above, loose matches on Subject: below --
2020-02-05 19:12 Michał Górny
2018-06-26 19:04 Pacho Ramos
2017-11-13 19:57 Jonas Stein
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox