forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-gfx/gnome-photos: version bump 3.24.3 → 3.24.5
Package-Manager: Portage-2.3.19, Repoman-2.3.6
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST gnome-photos-3.22.6.tar.xz 962468 BLAKE2B ceb0e54801f42a681b26e95d670a7fbb0f62d9965e38452f8d5aab045c85bb0ee57558e90caa6a8090f978c5a02b6f327692460dfe5de92bf88079dd86fc8ba9 SHA512 4fb2a67b5acdbd63cf6f252d0116a4b759e0e6daae48d638ce96ec35f24deee44720c45cb0720a26b6a380e66bbde1619173de340375828bc2f4ef943606fe26 | ||
DIST gnome-photos-3.24.2.tar.xz 984372 BLAKE2B 3fecc31730fb0a55c1c0336306e0785ba4537eb668b0582a796bc8a1e7fb7b39c79f3f66c5f02d8794ce9358816952b4c054ce39d45bd3565e950cbc554090c6 SHA512 6747d7f7b0fe8710f299a7cd72916a1abd2e6296d642f9d7bf027de731f0fa4e0f862cb6bcb5622bb2d69298b911433df2a31f37f1f7d02fd4e5582234fe0c9f | ||
DIST gnome-photos-3.24.3.tar.xz 984796 BLAKE2B b54190adbbfb1d4ca4cbd34a06e71f37fdcadfb89ee88de15082b17751e187f61352987bbf611eb82136eb80f458bb8fc50b1232c8ec50b08044f317a90e71d3 SHA512 254fc37cfdfcd1b2d854e1ddb5a71d28aab6da3caa6a8739dcbecdabc8a9cb449b2b4080319bb9b73d4b16464f7a7ab7060304fd1194f3bc8cacc67497567a2c | ||
DIST gnome-photos-3.24.5.tar.xz 985864 BLAKE2B d5e7dd48a6f81c9ca6efa7dcb2b17fdeb781070d1789514098b8cf30bcd12eba145e57e584f42f66286579ad40ef31f370c471abaab30ba684bada9878afc3c4 SHA512 8dcdb9962a55d6e2e9aa28ef86dcc9100f80fa9739763cea1475052379050a23428e09e8416ed75b9a9b1c85a9bc27d94a75faeefde3d546195c21f04f85379d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
PYTHON_COMPAT=( python2_7 ) | ||
|
||
inherit gnome2 python-any-r1 virtualx | ||
|
||
DESCRIPTION="Access, organize and share your photos on GNOME" | ||
HOMEPAGE="https://wiki.gnome.org/Apps/Photos" | ||
|
||
LICENSE="GPL-2+ LGPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="flickr test upnp-av" | ||
|
||
COMMON_DEPEND=" | ||
>=app-misc/tracker-1:=[miner-fs] | ||
>=dev-libs/glib-2.44:2 | ||
gnome-base/gsettings-desktop-schemas | ||
>=dev-libs/libgdata-0.15.2:0=[gnome-online-accounts] | ||
media-libs/babl | ||
>=media-libs/gegl-0.3.14:0.3[cairo,jpeg2k,raw] | ||
media-libs/gexiv2 | ||
>=media-libs/grilo-0.3.0:0.3= | ||
>=media-libs/libpng-1.6:0= | ||
>=net-libs/gnome-online-accounts-3.8:= | ||
>=net-libs/libgfbgraph-0.2.1:0.2 | ||
sci-geosciences/geocode-glib | ||
>=x11-libs/cairo-1.14 | ||
x11-libs/gdk-pixbuf:2 | ||
>=x11-libs/gtk+-3.22.15:3 | ||
" | ||
# gnome-online-miners is also used for google, facebook, DLNA - not only flickr | ||
# but out of all the grilo-plugins, only upnp-av and flickr get used, which have USE flags here, | ||
# so don't pull it always, but only if either USE flag is enabled | ||
RDEPEND="${COMMON_DEPEND} | ||
net-misc/gnome-online-miners[flickr?] | ||
upnp-av? ( media-plugins/grilo-plugins:0.3[upnp-av] ) | ||
flickr? ( media-plugins/grilo-plugins:0.3[flickr] ) | ||
" | ||
DEPEND="${COMMON_DEPEND} | ||
app-text/yelp-tools | ||
dev-util/desktop-file-utils | ||
>=dev-util/intltool-0.50.1 | ||
virtual/pkgconfig | ||
test? ( $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') ) | ||
" | ||
|
||
python_check_deps() { | ||
use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]" | ||
} | ||
|
||
pkg_setup() { | ||
use test && python-any-r1_pkg_setup | ||
} | ||
|
||
src_configure() { | ||
# XXX: how to deal with rdtscp support, x86intrin | ||
gnome2_src_configure \ | ||
$(use_enable test dogtail) | ||
} | ||
|
||
src_test() { | ||
virtx emake check | ||
} |