Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/lutris/
Date: Thu, 20 Jul 2017 21:59:05
Message-Id: 1500587930.5ae80519ca21572c8d453a179fb3f1988ac6337e.monsieurp@gentoo
1 commit: 5ae80519ca21572c8d453a179fb3f1988ac6337e
2 Author: Simon van der Veldt <simon.vanderveldt <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 16 08:50:20 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 20 21:58:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ae80519
7
8 games-util/lutris: version bump to 0.3.8.
9
10 Closes: https://github.com/gentoo/gentoo/pull/5114
11
12 games-util/lutris/Manifest | 1 +
13 games-util/lutris/lutris-0.3.8.ebuild | 67 +++++++++++++++++++++++++++++++++++
14 2 files changed, 68 insertions(+)
15
16 diff --git a/games-util/lutris/Manifest b/games-util/lutris/Manifest
17 index 74fb1ff388f..7c08cf18476 100644
18 --- a/games-util/lutris/Manifest
19 +++ b/games-util/lutris/Manifest
20 @@ -1 +1,2 @@
21 DIST lutris_0.3.6.3.tar.gz 515606 SHA256 a9061403ef8844b2c1443b1c5f15fe98af224d652d66268b47ae8e215e289058 SHA512 548a3a79ffb1c378d923f404634acc3b5eb1055d087ff212cf8a35b7db56650bf616f3b7374ab9fdf996c8f10d80ab602d35d126ef3bb183b9ce55b36d270e97 WHIRLPOOL 9c6e08908a2462f639a89f05b8eea9c212dba103a9c0492d3bd8bba2d2002d718354b4410e6506c7e88c0b4a2bf930d6d05930d0b27d66de0b66b9526f2c2fac
22 +DIST lutris_0.3.8.tar.xz 658408 SHA256 404b8379dbf9dcab6e25bca781b8afe0b3f9cd9b27ff58cba8b8c98f54fb74f4 SHA512 165e9c045e82407dfd6dd35fa73a98b68d095119596b9f0e66867c92071d1178526ddf991fc6b05449446c9d7c1a573ffea564d93d440cebdaa788c61e57fcfe WHIRLPOOL 618c85b3cf0c583d21787161ff44cac4fb2d75072a7d32c3d642026f39fbcb7333f79a4cd2901f552fc70a1f1dd8b6933017d070293813f1facde788701ed67e
23
24 diff --git a/games-util/lutris/lutris-0.3.8.ebuild b/games-util/lutris/lutris-0.3.8.ebuild
25 new file mode 100644
26 index 00000000000..da95d81a19e
27 --- /dev/null
28 +++ b/games-util/lutris/lutris-0.3.8.ebuild
29 @@ -0,0 +1,67 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +PYTHON_COMPAT=( python2_7 )
35 +PYTHON_REQ_USE="sqlite,threads"
36 +
37 +inherit distutils-r1 gnome2-utils games
38 +
39 +DESCRIPTION="Gaming platform for GNU/Linux"
40 +HOMEPAGE="http://lutris.net/"
41 +SRC_URI="http://lutris.net/releases/${PN}_${PV}.tar.xz"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +RDEPEND="dev-python/pygobject:3[${PYTHON_USEDEP}]
49 + dev-python/pyyaml[${PYTHON_USEDEP}]
50 + dev-python/pyxdg[${PYTHON_USEDEP}]
51 + gnome-base/gvfs[http]
52 + x11-apps/xrandr
53 + x11-apps/xgamma
54 + x11-misc/xdg-utils"
55 +
56 +# INSTALL contains list of optional deps
57 +DOCS=( AUTHORS README.rst INSTALL.rst )
58 +
59 +S=${WORKDIR}/${PN}
60 +
61 +python_install() {
62 + distutils-r1_python_install --install-scripts="${GAMES_BINDIR}"
63 +}
64 +
65 +src_prepare() {
66 + distutils-r1_src_prepare
67 +}
68 +
69 +src_compile() {
70 + distutils-r1_src_compile
71 +}
72 +
73 +src_install() {
74 + distutils-r1_src_install
75 + prepgamesdirs
76 +}
77 +
78 +pkg_preinst() {
79 + games_pkg_preinst
80 + gnome2_icon_savelist
81 + gnome2_schemas_savelist
82 +}
83 +
84 +pkg_postinst() {
85 + games_pkg_postinst
86 + gnome2_icon_cache_update
87 + gnome2_schemas_update
88 +
89 + elog "For a list of optional deps (runners), see"
90 + elog "/usr/share/doc/${PF}/INSTALL"
91 +}
92 +
93 +pkg_postrm() {
94 + gnome2_icon_cache_update
95 + gnome2_schemas_update
96 +}