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
Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
56 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,2 +1,3 @@ | ||
DIST gnome-photos-3.18.3.tar.xz 776220 SHA256 cb0b0573b2b473257a41024de7b99986a10a67af07cbdead5bf266291e9ed167 SHA512 e7e2f7251fb6a5dae0994cb45f363508481f2f30922a6ec966f1ad5767643ba0ff554ebf3d4108ca90ef63cf22a0cdb8b069b558f9547320e694bc872122aaf5 WHIRLPOOL 16f73b96b4cf0de391b990a64f28e8ddc26aca7b1545cad44ff0a17e32a64e7ff5d6c7d7dfa6afbca1eadbcec3f9397e7a561bc74776abffd6bfc2bf4e35b13d | ||
DIST gnome-photos-3.20.2.tar.xz 927128 SHA256 ec6b95ad1c4aeeb065a65d2d48335036c0750761c7f6762bafcf874791272b46 SHA512 14022afa3480366f92579a233b04a3d094ceda3e65089351be62166ade6a92ec22cee62ae89d7e51543d48ca83fc9d76afb1ef21ce8b1c8c2d252098b717fb4d WHIRLPOOL e3b779e1cdbeb4bccae54e747e22639117d75db426eec843bd0a1d3e69ee9ba8ce34d6a6d0cf777d61a80fb2ccfac7b71222eb6d9c7f52245332c3bb348411dd | ||
DIST gnome-photos-3.20.3.tar.xz 927568 SHA256 d1dd8bd8178dd1d0120abd2ff3e959fb1199f4e1751558f925ce7f1278548996 SHA512 05994d30eb9c21e17fffb6b852d9be33f3aa6cc136d6ca4cbacb585b5a2bec8c04fbcd7d490c43b66d0cf52830b39faa41e84e4788ce4ec580e4439524ba2131 WHIRLPOOL c7f761d0d182e8048f51d8f041245132971f0ae39edf743819c4121df8cbd156d9741fb6dfa2aed028bf3b5478e7515a592e6e82a5092c2df671933bb371541b |
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,55 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
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="test" | ||
|
||
RDEPEND=" | ||
>=app-misc/tracker-1:=[miner-fs] | ||
>=dev-libs/glib-2.39.3:2 | ||
gnome-base/gnome-desktop:3= | ||
>=dev-libs/libgdata-0.15.2:0=[gnome-online-accounts] | ||
media-libs/babl | ||
>=media-libs/gegl-0.3.5:0.3 | ||
>=media-libs/grilo-0.3.0:0.3= | ||
>=media-libs/libpng-1.6:0= | ||
>=media-plugins/grilo-plugins-0.2.6:0.2[upnp-av] | ||
>=net-libs/gnome-online-accounts-3.8:= | ||
>=net-libs/libgfbgraph-0.2.1:0.2 | ||
>=x11-libs/cairo-1.14 | ||
x11-libs/gdk-pixbuf:2 | ||
>=x11-libs/gtk+-3.19.1:3 | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-util/desktop-file-utils | ||
>=dev-util/intltool-0.50.1 | ||
dev-util/itstool | ||
virtual/pkgconfig | ||
test? ( dev-util/dogtail ) | ||
" | ||
# eautoreconf | ||
# app-text/yelp-tools | ||
|
||
pkg_setup() { | ||
use test && python-any-r1_pkg_setup | ||
} | ||
|
||
src_configure() { | ||
gnome2_src_configure \ | ||
$(use_enable test dogtail) | ||
} | ||
|
||
src_test() { | ||
virtx emake check | ||
} |