Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gnome-photos/
Date: Sat, 08 Oct 2016 09:51:28
Message-Id: 1475920229.5c9e93cd18a9877d80cf7c1cea37058d69ff66e0.pacho@gentoo
1 commit: 5c9e93cd18a9877d80cf7c1cea37058d69ff66e0
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 8 09:04:13 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 8 09:50:29 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c9e93cd
7
8 media-gfx/gnome-photos: Version bump
9
10 Package-Manager: portage-2.3.1
11
12 media-gfx/gnome-photos/Manifest | 1 +
13 media-gfx/gnome-photos/gnome-photos-3.20.4.ebuild | 62 +++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/media-gfx/gnome-photos/Manifest b/media-gfx/gnome-photos/Manifest
17 index e88034b..54766ae 100644
18 --- a/media-gfx/gnome-photos/Manifest
19 +++ b/media-gfx/gnome-photos/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-photos-3.20.3.tar.xz 927568 SHA256 d1dd8bd8178dd1d0120abd2ff3e959fb1199f4e1751558f925ce7f1278548996 SHA512 05994d30eb9c21e17fffb6b852d9be33f3aa6cc136d6ca4cbacb585b5a2bec8c04fbcd7d490c43b66d0cf52830b39faa41e84e4788ce4ec580e4439524ba2131 WHIRLPOOL c7f761d0d182e8048f51d8f041245132971f0ae39edf743819c4121df8cbd156d9741fb6dfa2aed028bf3b5478e7515a592e6e82a5092c2df671933bb371541b
22 +DIST gnome-photos-3.20.4.tar.xz 929828 SHA256 9ca30753b96368b01d7dca91c130be8ba688ac6d200ff21101992f9171b4ee34 SHA512 179d9e011186dd99dfe9da056c1b5a8ea2adf024fbead90e222ae0f350b78d9b4b7b73a67a21df0c2319fdeb9491e6c0180107768e9ae5ee0fe599bd5e2075ad WHIRLPOOL e3d6e7afd950310c36d85668efdc38bed8f28ab10d761e17b27ca16500369ec1befd56bb4630b344e611945e8c11b1305b48b3f2173a1a63a15eabdc00fb0fba
23
24 diff --git a/media-gfx/gnome-photos/gnome-photos-3.20.4.ebuild b/media-gfx/gnome-photos/gnome-photos-3.20.4.ebuild
25 new file mode 100644
26 index 00000000..be7b5a5
27 --- /dev/null
28 +++ b/media-gfx/gnome-photos/gnome-photos-3.20.4.ebuild
29 @@ -0,0 +1,62 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python2_7 )
36 +
37 +inherit gnome2 python-any-r1 virtualx
38 +
39 +DESCRIPTION="Access, organize and share your photos on GNOME"
40 +HOMEPAGE="https://wiki.gnome.org/Apps/Photos"
41 +
42 +LICENSE="GPL-2+ LGPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="test"
46 +
47 +RDEPEND="
48 + >=app-misc/tracker-1:=[miner-fs]
49 + >=dev-libs/glib-2.39.3:2
50 + gnome-base/gnome-desktop:3=
51 + >=dev-libs/libgdata-0.15.2:0=[gnome-online-accounts]
52 + media-libs/babl
53 + >=media-libs/gegl-0.3.5:0.3[cairo,jpeg2k,raw]
54 + media-libs/gexiv2
55 + >=media-libs/grilo-0.3.0:0.3=
56 + >=media-libs/libpng-1.6:0=
57 + media-plugins/grilo-plugins:0.3[upnp-av]
58 + >=net-libs/gnome-online-accounts-3.8:=
59 + >=net-libs/libgfbgraph-0.2.1:0.2
60 + >=x11-libs/cairo-1.14
61 + x11-libs/gdk-pixbuf:2
62 + >=x11-libs/gtk+-3.19.1:3
63 +"
64 +DEPEND="${RDEPEND}
65 + dev-util/desktop-file-utils
66 + >=dev-util/intltool-0.50.1
67 + dev-util/itstool
68 + virtual/pkgconfig
69 + test? (
70 + ${PYTHON_DEPS}
71 + $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
72 +"
73 +# eautoreconf
74 +# app-text/yelp-tools
75 +
76 +python_check_deps() {
77 + use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
78 +}
79 +
80 +pkg_setup() {
81 + use test && python-any-r1_pkg_setup
82 +}
83 +
84 +src_configure() {
85 + gnome2_src_configure \
86 + $(use_enable test dogtail)
87 +}
88 +
89 +src_test() {
90 + virtx emake check
91 +}