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: Mon, 26 Feb 2018 20:10:31
Message-Id: 1519675699.d0bf8ff4c641c20248586988e0a19de870afba65.voyageur@gentoo
1 commit: d0bf8ff4c641c20248586988e0a19de870afba65
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 26 20:07:29 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 26 20:08:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0bf8ff4
7
8 www-apps/piwigo: 2.9.3 bump
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 www-apps/piwigo/Manifest | 1 +
13 www-apps/piwigo/piwigo-2.9.3.ebuild | 43 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/www-apps/piwigo/Manifest b/www-apps/piwigo/Manifest
17 index 89a38618c7d..246914e2e97 100644
18 --- a/www-apps/piwigo/Manifest
19 +++ b/www-apps/piwigo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST piwigo-2.9.1.zip 7777925 BLAKE2B c11ad2bf3ac6bcaf8530fa3d2f414a14298c988df33b8c069f355cea1a91121e8e36f0019514583914c218d5851874ce4cbd9f3724f223fa6dbe61f76216bd24 SHA512 5fee3e96a5a9a4d70cc1528f40569b45c1898e71245ca7fcfdf529d39ee79ae0d419ef38b61c536dfb5150d1f9fe683ceabf8393455d51539253d0010ccc2fff
22 DIST piwigo-2.9.2.zip 7794574 BLAKE2B 581e65de96cdca192fd3ca03680b559569c3aaa999cdcee74b3b796294be0076a2c4fce1d482b84411ea038daa4ce2ea67960e16594a937b3a38374690574f2a SHA512 e87ff57a4713435880c0a9c8b03db30952741c3e9a8d7b8e3f13410d78d9b117d7a63693ec42f288c7516ed623746c6191b69a5a4fd5c31afdfcc36e93d3de1d
23 +DIST piwigo-2.9.3.zip 7818425 BLAKE2B 383c57049c7f89a6cd7ff58a6887b7cab58238909a811710085930c48f128b51754a87272ba2079626ea18c730cb7eb849b4e93942d06df400a6de46eea9035d SHA512 e6cf77e22aa01c6daad468d22838dda24f57352da04afefddd43a7c2df80c1c95a63b8d1d5eaf6c2711d6706df1a7752076d5b3a4ba82171a640a879e6283498
24
25 diff --git a/www-apps/piwigo/piwigo-2.9.3.ebuild b/www-apps/piwigo/piwigo-2.9.3.ebuild
26 new file mode 100644
27 index 00000000000..f9d1dfb8d27
28 --- /dev/null
29 +++ b/www-apps/piwigo/piwigo-2.9.3.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
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 +}