Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/piwigo/
Date: Wed, 10 Apr 2019 13:12:13
Message-Id: 1554901917.0e93a6d844989cf562a44247226f4d2b640519dc.voyageur@gentoo
1 commit: 0e93a6d844989cf562a44247226f4d2b640519dc
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 10 13:11:57 2019 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 10 13:11:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e93a6d8
7
8 www-apps/piwigo: 2.9.5 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 www-apps/piwigo/Manifest | 1 +
14 www-apps/piwigo/piwigo-2.9.5.ebuild | 43 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/www-apps/piwigo/Manifest b/www-apps/piwigo/Manifest
18 index c613ed398a4..23f388e54d0 100644
19 --- a/www-apps/piwigo/Manifest
20 +++ b/www-apps/piwigo/Manifest
21 @@ -1 +1,2 @@
22 DIST piwigo-2.9.4.zip 7846445 BLAKE2B 8c8eb7ab0e153ad9665ab3b18b70f5090b2d6545b312b19fcbca6f80b3e017b16bf94271ae071e02c2b8978802adb4e69a287a4e6dedaa728a41d6479765fc57 SHA512 b558700f041402f1fa399d1599ceaca4bb381ba818f189b5dca68a5b09d65416b5cbf2c4f48c8390381cffe98c840d4279c0b57c698ca5a81c0304ecc4a9a80c
23 +DIST piwigo-2.9.5.zip 7870527 BLAKE2B 6a61f97125d3594d1672d3e9dec29716dff62417c07f0803c576c2cd9636273425342791e97abd7abc8f50dac56ebc4b7843435d75cbb3fd8c29e9723f9a32c7 SHA512 d211a86b40f3a20f406a4bbce87c094bc155b664fe7fb5ec5ab4de6e0bb0228c0c0aa30a04437469ea2360bc72b9e76b265b2811d77aad857fd85eeccb4d30c2
24
25 diff --git a/www-apps/piwigo/piwigo-2.9.5.ebuild b/www-apps/piwigo/piwigo-2.9.5.ebuild
26 new file mode 100644
27 index 00000000000..56866abb304
28 --- /dev/null
29 +++ b/www-apps/piwigo/piwigo-2.9.5.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit webapp
36 +
37 +DESCRIPTION="a photo gallery software for the web"
38 +HOMEPAGE="http://piwigo.org/"
39 +SRC_URI="http://piwigo.org/download/dlcounter.php?code=${PV} -> ${P}.zip"
40 +
41 +LICENSE="GPL-2"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="+exif +gd imagemagick"
44 +
45 +DEPEND=""
46 +RDEPEND="
47 + imagemagick? ( virtual/imagemagick-tools )
48 + dev-lang/php[ctype,exif?,gd?,filter,iconv,json,mysqli]
49 + >=virtual/mysql-5.0
50 + virtual/httpd-php"
51 +
52 +REQUIRED_USE="|| ( gd imagemagick )"
53 +
54 +S=${WORKDIR}/${PN}
55 +
56 +src_install() {
57 + webapp_src_preinst
58 +
59 + insinto "${MY_HTDOCSDIR}"
60 + doins -r .
61 +
62 + # Local configuration, and parts that can be updated
63 + webapp_serverowned "${MY_HTDOCSDIR}"/_data
64 + webapp_serverowned -R "${MY_HTDOCSDIR}"/galleries
65 + webapp_serverowned -R "${MY_HTDOCSDIR}"/language
66 + webapp_serverowned -R "${MY_HTDOCSDIR}"/local
67 + webapp_serverowned -R "${MY_HTDOCSDIR}"/plugins
68 + webapp_serverowned -R "${MY_HTDOCSDIR}"/template-extension
69 + webapp_serverowned -R "${MY_HTDOCSDIR}"/themes
70 + webapp_serverowned "${MY_HTDOCSDIR}"/upload
71 +
72 + webapp_src_install
73 +}