Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/lutris/
Date: Sat, 02 Mar 2019 00:04:51
Message-Id: 1551484980.13c07a4a16ae6fb999c95e71ece5225f2c717885.asturm@gentoo
1 commit: 13c07a4a16ae6fb999c95e71ece5225f2c717885
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 1 23:57:11 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 2 00:03:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c07a4a
7
8 games-util/lutris: Drop 0.4.14
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 games-util/lutris/Manifest | 1 -
14 games-util/lutris/lutris-0.4.14.ebuild | 68 ----------------------------------
15 2 files changed, 69 deletions(-)
16
17 diff --git a/games-util/lutris/Manifest b/games-util/lutris/Manifest
18 index c379f7c78a7..feed72d83fb 100644
19 --- a/games-util/lutris/Manifest
20 +++ b/games-util/lutris/Manifest
21 @@ -1,2 +1 @@
22 -DIST lutris-0.4.14.tar.gz 1617493 BLAKE2B c97d0e31657252c4ae5c6718151f028d273831cdb9f21b748ada651686cf3aa51a618a007db87528d84f21dca292509399f9bb1f0c0444c57e369b13b9ae79a0 SHA512 d229d7f79b3395db22ad49abc02ca5e08db9465258be33fcefe743c0a099e1ca507b6b9c28f03d2a6857489f7f2e19fca38803f6876df88a96b060ed5f7f94bc
23 DIST lutris-0.4.23.tar.gz 1831736 BLAKE2B 9da20d5545e9d2474bed436443fed325beb3ed2e3e945cb27e25fbce88ac7aeb9547a0a1bcd74349e5c7bda0dd6be50949b5abaa1fc091a21217b330c6fe655f SHA512 a0860920e01568888db5ac9a52c0d33a5108af33906ea411d4621dec4b059c399b17ca35c245bf9bfb506c6b242d32d917d3ade6898f619e00f9361117632fb3
24
25 diff --git a/games-util/lutris/lutris-0.4.14.ebuild b/games-util/lutris/lutris-0.4.14.ebuild
26 deleted file mode 100644
27 index 960cafec846..00000000000
28 --- a/games-util/lutris/lutris-0.4.14.ebuild
29 +++ /dev/null
30 @@ -1,68 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_{4,5,6} )
37 -PYTHON_REQ_USE="sqlite,threads"
38 -
39 -inherit distutils-r1 gnome2-utils python-r1
40 -
41 -DESCRIPTION="Lutris is an open source gaming platform for GNU/Linux."
42 -HOMEPAGE="https://lutris.net/"
43 -
44 -if [[ "${PV}" == "9999" ]] ; then
45 - EGIT_REPO_URI="https://github.com/lutris/${PN}.git"
46 - inherit git-r3
47 -else
48 - SRC_URI="https://github.com/lutris/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 - KEYWORDS="~amd64 ~x86"
50 -fi
51 -
52 -LICENSE="GPL-3"
53 -SLOT="0"
54 -
55 -RDEPEND="
56 - dev-python/dbus-python[${PYTHON_USEDEP}]
57 - dev-python/pygobject:3[${PYTHON_USEDEP}]
58 - dev-python/python-evdev[${PYTHON_USEDEP}]
59 - dev-python/pyyaml[${PYTHON_USEDEP}]
60 - net-libs/libsoup
61 - x11-apps/xrandr
62 - x11-apps/xgamma"
63 -
64 -python_install() {
65 - distutils-r1_python_install
66 -}
67 -
68 -src_prepare() {
69 - distutils-r1_src_prepare
70 -}
71 -
72 -src_compile() {
73 - distutils-r1_src_compile
74 -}
75 -
76 -src_install() {
77 - # README.rst contains list of optional deps
78 - DOCS=( AUTHORS README.rst INSTALL.rst )
79 - distutils-r1_src_install
80 -}
81 -
82 -pkg_preinst() {
83 - gnome2_icon_savelist
84 - gnome2_schemas_savelist
85 -}
86 -
87 -pkg_postinst() {
88 - gnome2_icon_cache_update
89 - gnome2_schemas_update
90 -
91 - elog "For a list of optional dependencies (runners) see:"
92 - elog "/usr/share/doc/${PF}/README.rst.bz2"
93 -}
94 -
95 -pkg_postrm() {
96 - gnome2_icon_cache_update
97 - gnome2_schemas_update
98 -}