public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2016-05-20 13:24 Ian Delaney
  0 siblings, 0 replies; 11+ messages in thread
From: Ian Delaney @ 2016-05-20 13:24 UTC (permalink / raw
  To: gentoo-commits

commit:     48c915cd290f9aa32f7580373c0620744ec5abff
Author:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Fri May 20 13:20:52 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Fri May 20 13:22:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48c915cd

games-rpg/runescape-launcher: new ebuild, (binary) initial vn. 2.2.2

To be maintained by user Jack Coulter under the Proxy Maintainers Project
initial ebuild supplied as attachment via the gentoo bug.
This package required a new license, added under the group 'EULA'

Gnetoo-bug: #580486

Package-Manager: portage-2.3.0_rc1

 games-rpg/runescape-launcher/Manifest              |  1 +
 games-rpg/runescape-launcher/metadata.xml          | 12 ++++
 .../runescape-launcher-2.2.2.ebuild                | 84 ++++++++++++++++++++++
 3 files changed, 97 insertions(+)

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
new file mode 100644
index 0000000..9695dc1
--- /dev/null
+++ b/games-rpg/runescape-launcher/Manifest
@@ -0,0 +1 @@
+DIST runescape-launcher_2.2.2_amd64.deb 2069098 SHA256 d13051e277ad89b788252b08d4d2c7a3b060f87f41457232638d6f2b19b4cfe9 SHA512 be24aaf661fb89725c19675ea8626dc2cdac64254c7fd9e892b82e038033657dfd5dfc58537e5131fad524d11717e3b20cc824ced6e1940ce7925daaef043df5 WHIRLPOOL fca1fc4e5e0cabb3871290b8033342ba2e0d9e323038158ba9c5654113a248d90f5ca01d3394f0cd047e7c29f3593bbeba3ba0f3eb76d4a2c8d06d39104289aa

diff --git a/games-rpg/runescape-launcher/metadata.xml b/games-rpg/runescape-launcher/metadata.xml
new file mode 100644
index 0000000..d030cf3
--- /dev/null
+++ b/games-rpg/runescape-launcher/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>jscinoz@jscinoz.so</email>
+		<name>Jack Coulter</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
new file mode 100644
index 0000000..10267d6
--- /dev/null
+++ b/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit unpacker xdg gnome2-utils
+
+DESCRIPTION="Official RuneScape NXT client launcher"
+HOMEPAGE="http://www.runescape.com"
+
+SRC_URI="http://content.runescape.com/downloads/ubuntu/pool/non-free/r/${PN}/${PN}_${PV}_amd64.deb"
+
+QA_PREBUILT="/opt/runescape-launcher/runescape"
+
+SLOT="0"
+
+IUSE="kde"
+
+KEYWORDS="-* ~amd64"
+
+LICENSE="RuneScape-EULA"
+RESTRICT="bindist mirror strip"
+
+S="${WORKDIR}"
+
+RDEPEND="
+	media-libs/libpng:1.2
+	>=media-libs/libsdl2-2.0.2
+	>=media-libs/glew-1.10.0:0/1.10
+	>=media-libs/libvorbis-1.3.2
+	>=net-libs/webkit-gtk-2.4.8:2
+	>=net-misc/curl-7.35.0
+"
+
+src_prepare() {
+	# Fix path in launcher script
+	sed -i "s:/usr/share/games/$PN:/opt/$PN:" usr/bin/$PN
+
+	# Add missing trailing semicolon to .desktop MimeType entry
+	sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop
+
+	# Fix path to launcher script
+	sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop
+
+	xdg_src_prepare
+
+	eapply_user
+}
+
+src_install() {
+	into /opt
+	dobin usr/bin/$PN
+	dodoc usr/share/doc/$PN/*
+
+	exeinto /opt/$PN
+	doexe usr/share/games/$PN/runescape
+
+	insinto /usr/share/applications
+	doins usr/share/applications/${PN}.desktop
+
+	insinto /usr/share/icons
+	doins -r usr/share/icons/hicolor
+
+	if use kde ; then
+		insinto /usr/share/kde4
+		doins -r usr/share/kde4/services
+	fi
+}
+
+pkg_preinst() {
+	xdg_pkg_preinst
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+	gnome2_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2016-05-23  1:45 Ian Delaney
  0 siblings, 0 replies; 11+ messages in thread
From: Ian Delaney @ 2016-05-23  1:45 UTC (permalink / raw
  To: gentoo-commits

commit:     719f542d83735ff6ee179ec5a296920464dad2ac
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 00:54:27 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Mon May 23 01:45:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=719f542d

games-rpg/runescape-launcher: add missing die statements

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1514

Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>

 games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
index 10267d6..1ba7f73 100644
--- a/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
+++ b/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
@@ -35,13 +35,13 @@ RDEPEND="
 
 src_prepare() {
 	# Fix path in launcher script
-	sed -i "s:/usr/share/games/$PN:/opt/$PN:" usr/bin/$PN
+	sed -i "s:/usr/share/games/$PN:/opt/$PN:" usr/bin/$PN || die
 
 	# Add missing trailing semicolon to .desktop MimeType entry
-	sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop
+	sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop || die
 
 	# Fix path to launcher script
-	sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop
+	sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop || die
 
 	xdg_src_prepare
 


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2016-10-25  7:27 Patrice Clement
  0 siblings, 0 replies; 11+ messages in thread
From: Patrice Clement @ 2016-10-25  7:27 UTC (permalink / raw
  To: gentoo-commits

commit:     24c93cfbf60e99253010f7ca85593f535b5b65fd
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 25 07:27:11 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Oct 25 07:27:53 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c93cfb

games-rpg/runescape-launcher: regenerate Manifest file.

Gentoo-Bug: https://bugs.gentoo.org/585096
Package-Manager: portage-2.3.0

 games-rpg/runescape-launcher/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
index 9695dc1..c400611 100644
--- a/games-rpg/runescape-launcher/Manifest
+++ b/games-rpg/runescape-launcher/Manifest
@@ -1 +1 @@
-DIST runescape-launcher_2.2.2_amd64.deb 2069098 SHA256 d13051e277ad89b788252b08d4d2c7a3b060f87f41457232638d6f2b19b4cfe9 SHA512 be24aaf661fb89725c19675ea8626dc2cdac64254c7fd9e892b82e038033657dfd5dfc58537e5131fad524d11717e3b20cc824ced6e1940ce7925daaef043df5 WHIRLPOOL fca1fc4e5e0cabb3871290b8033342ba2e0d9e323038158ba9c5654113a248d90f5ca01d3394f0cd047e7c29f3593bbeba3ba0f3eb76d4a2c8d06d39104289aa
+DIST runescape-launcher_2.2.2_amd64.deb 2074660 SHA256 8cace4d730c542e403de14876006eb293fe2182d83c73934ed9f6d2dbb4128e7 SHA512 ecc057a7fc1272e6b430bb21808d5dce2a8109db0b2dfa6943eba5b1aaa3975ebd6a3b9c8797b71959bd42f7a2e76b09d853d1e2dcabb77111df584250ddd18b WHIRLPOOL bed6429f6123b994dcc846c83e360d7d4f059931fdb6bc7aea56611663d2f1c4e97f39fff460c6e20e18480c9805598ebcecb7803eccbd894ce91a7bd2bb068c


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2017-03-02 10:20 Michael Palimaka
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Palimaka @ 2017-03-02 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     cb6147922ae732ff4fea4989fd25dc52910a3496
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  2 10:20:02 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Mar  2 10:20:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb614792

games-rpg/runescape-launcher: version bump 2.2.3 and remove unfetchable 2.2.2

Gentoo-bug: 590208
Package-Manager: Portage-2.3.4, Repoman-2.3.2

 games-rpg/runescape-launcher/Manifest                                   | 2 +-
 ...{runescape-launcher-2.2.2.ebuild => runescape-launcher-2.2.3.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
index c40061138c4..a89d5ecbfb3 100644
--- a/games-rpg/runescape-launcher/Manifest
+++ b/games-rpg/runescape-launcher/Manifest
@@ -1 +1 @@
-DIST runescape-launcher_2.2.2_amd64.deb 2074660 SHA256 8cace4d730c542e403de14876006eb293fe2182d83c73934ed9f6d2dbb4128e7 SHA512 ecc057a7fc1272e6b430bb21808d5dce2a8109db0b2dfa6943eba5b1aaa3975ebd6a3b9c8797b71959bd42f7a2e76b09d853d1e2dcabb77111df584250ddd18b WHIRLPOOL bed6429f6123b994dcc846c83e360d7d4f059931fdb6bc7aea56611663d2f1c4e97f39fff460c6e20e18480c9805598ebcecb7803eccbd894ce91a7bd2bb068c
+DIST runescape-launcher_2.2.3_amd64.deb 2065806 SHA256 facf1c55b81b37b7c4a2f41bb5286066e86f68b37d17109aa2d3c0fcec597d99 SHA512 6ddda8fa195486361099f056ce1301d85c8ebcfa75dff6a3f93349d9f6883f3788b7732aef42e94a55f2a1f915da30d164398c99317f982e591a2a1f95a7702f WHIRLPOOL 64ac1755ae697116aede2cda48feaeb7fab7c8177a64f96d6aa87f20cab8d100e742a7e5dd1e97c3b9be6aec5ee1b2a4675a2224d1bab33e6085c7519c2f904c

diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild
similarity index 97%
rename from games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
rename to games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild
index 987f0a2bde9..b1049fa39ee 100644
--- a/games-rpg/runescape-launcher/runescape-launcher-2.2.2.ebuild
+++ b/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2017-06-01  7:10 David Seifert
  0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2017-06-01  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     fbdc20ef364c992ce86fef25e06bb359cac977fa
Author:     Jiayi Zhao <jeff.no.zhao <AT> gmail <DOT> com>
AuthorDate: Sat May 27 15:18:41 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jun  1 07:09:47 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbdc20ef

games-rpg/runescape-launcher: version bump 2.2.4

Gentoo-Bug: 617170
Package-Manager: Portage-2.3.5, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4779

 games-rpg/runescape-launcher/Manifest              |  2 +-
 .../runescape-launcher-2.2.4.ebuild                | 83 ++++++++++++++++++++++
 2 files changed, 84 insertions(+), 1 deletion(-)

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
index a89d5ecbfb3..40318fd7dc8 100644
--- a/games-rpg/runescape-launcher/Manifest
+++ b/games-rpg/runescape-launcher/Manifest
@@ -1 +1 @@
-DIST runescape-launcher_2.2.3_amd64.deb 2065806 SHA256 facf1c55b81b37b7c4a2f41bb5286066e86f68b37d17109aa2d3c0fcec597d99 SHA512 6ddda8fa195486361099f056ce1301d85c8ebcfa75dff6a3f93349d9f6883f3788b7732aef42e94a55f2a1f915da30d164398c99317f982e591a2a1f95a7702f WHIRLPOOL 64ac1755ae697116aede2cda48feaeb7fab7c8177a64f96d6aa87f20cab8d100e742a7e5dd1e97c3b9be6aec5ee1b2a4675a2224d1bab33e6085c7519c2f904c
+DIST runescape-launcher_2.2.4_amd64.deb 3015162 SHA256 3aa5cb2189c8ee0f2c95da1229b3fc30cacb1209ff794afc77ddb218684386df SHA512 981dbee9ce795f6a1d5bc0fb235b7f0325378e8d1d5a91b2fbe80d08954fb9818d8f5ddd8545dfb2d1246b21bedfac041d73e84cda1c38e4a3cfa076e128f408 WHIRLPOOL b7a10f33557030bbdeae159c5302d3302dde829f29d6a362a3b2306e158cba9ff7617546ed3999ae8d226546810b299eff2ccc2dc938959ab8cd4e7d4fe25515

diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.4.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.4.ebuild
new file mode 100644
index 00000000000..b1049fa39ee
--- /dev/null
+++ b/games-rpg/runescape-launcher/runescape-launcher-2.2.4.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit unpacker xdg gnome2-utils
+
+DESCRIPTION="Official RuneScape NXT client launcher"
+HOMEPAGE="http://www.runescape.com"
+
+SRC_URI="http://content.runescape.com/downloads/ubuntu/pool/non-free/r/${PN}/${PN}_${PV}_amd64.deb"
+
+QA_PREBUILT="/opt/runescape-launcher/runescape"
+
+SLOT="0"
+
+IUSE="kde"
+
+KEYWORDS="-* ~amd64"
+
+LICENSE="RuneScape-EULA"
+RESTRICT="bindist mirror strip"
+
+S="${WORKDIR}"
+
+RDEPEND="
+	media-libs/libpng:1.2
+	>=media-libs/libsdl2-2.0.2
+	>=media-libs/glew-1.10.0:0/1.10
+	>=media-libs/libvorbis-1.3.2
+	>=net-libs/webkit-gtk-2.4.8:2
+	>=net-misc/curl-7.35.0
+"
+
+src_prepare() {
+	# Fix path in launcher script
+	sed -i "s:/usr/share/games/$PN:/opt/$PN:" usr/bin/$PN || die
+
+	# Add missing trailing semicolon to .desktop MimeType entry
+	sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop || die
+
+	# Fix path to launcher script
+	sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop || die
+
+	xdg_src_prepare
+
+	eapply_user
+}
+
+src_install() {
+	into /opt
+	dobin usr/bin/$PN
+	dodoc usr/share/doc/$PN/*
+
+	exeinto /opt/$PN
+	doexe usr/share/games/$PN/runescape
+
+	insinto /usr/share/applications
+	doins usr/share/applications/${PN}.desktop
+
+	insinto /usr/share/icons
+	doins -r usr/share/icons/hicolor
+
+	if use kde ; then
+		insinto /usr/share/kde4
+		doins -r usr/share/kde4/services
+	fi
+}
+
+pkg_preinst() {
+	xdg_pkg_preinst
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+	gnome2_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2017-06-01  7:10 David Seifert
  0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2017-06-01  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     03f20d7a7b3761e06c33c813050814694a4ebc42
Author:     Jiayi Zhao <jeff.no.zhao <AT> gmail <DOT> com>
AuthorDate: Sat May 27 15:20:14 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jun  1 07:09:53 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03f20d7a

games-rpg/runescape-launcher: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4779

 .../runescape-launcher-2.2.3.ebuild                | 83 ----------------------
 1 file changed, 83 deletions(-)

diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild
deleted file mode 100644
index b1049fa39ee..00000000000
--- a/games-rpg/runescape-launcher/runescape-launcher-2.2.3.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit unpacker xdg gnome2-utils
-
-DESCRIPTION="Official RuneScape NXT client launcher"
-HOMEPAGE="http://www.runescape.com"
-
-SRC_URI="http://content.runescape.com/downloads/ubuntu/pool/non-free/r/${PN}/${PN}_${PV}_amd64.deb"
-
-QA_PREBUILT="/opt/runescape-launcher/runescape"
-
-SLOT="0"
-
-IUSE="kde"
-
-KEYWORDS="-* ~amd64"
-
-LICENSE="RuneScape-EULA"
-RESTRICT="bindist mirror strip"
-
-S="${WORKDIR}"
-
-RDEPEND="
-	media-libs/libpng:1.2
-	>=media-libs/libsdl2-2.0.2
-	>=media-libs/glew-1.10.0:0/1.10
-	>=media-libs/libvorbis-1.3.2
-	>=net-libs/webkit-gtk-2.4.8:2
-	>=net-misc/curl-7.35.0
-"
-
-src_prepare() {
-	# Fix path in launcher script
-	sed -i "s:/usr/share/games/$PN:/opt/$PN:" usr/bin/$PN || die
-
-	# Add missing trailing semicolon to .desktop MimeType entry
-	sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop || die
-
-	# Fix path to launcher script
-	sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop || die
-
-	xdg_src_prepare
-
-	eapply_user
-}
-
-src_install() {
-	into /opt
-	dobin usr/bin/$PN
-	dodoc usr/share/doc/$PN/*
-
-	exeinto /opt/$PN
-	doexe usr/share/games/$PN/runescape
-
-	insinto /usr/share/applications
-	doins usr/share/applications/${PN}.desktop
-
-	insinto /usr/share/icons
-	doins -r usr/share/icons/hicolor
-
-	if use kde ; then
-		insinto /usr/share/kde4
-		doins -r usr/share/kde4/services
-	fi
-}
-
-pkg_preinst() {
-	xdg_pkg_preinst
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	xdg_pkg_postinst
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_pkg_postrm
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2017-06-11  8:01 Michael Palimaka
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Palimaka @ 2017-06-11  8:01 UTC (permalink / raw
  To: gentoo-commits

commit:     72bb5b07a57f12e4527cfad69822aacde831dc00
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 08:00:46 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 08:00:59 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72bb5b07

games-rpg/runescape-launcher: remanifest

Upstream changed the package yet again.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 games-rpg/runescape-launcher/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
index 40318fd7dc8..018551a6c4a 100644
--- a/games-rpg/runescape-launcher/Manifest
+++ b/games-rpg/runescape-launcher/Manifest
@@ -1 +1 @@
-DIST runescape-launcher_2.2.4_amd64.deb 3015162 SHA256 3aa5cb2189c8ee0f2c95da1229b3fc30cacb1209ff794afc77ddb218684386df SHA512 981dbee9ce795f6a1d5bc0fb235b7f0325378e8d1d5a91b2fbe80d08954fb9818d8f5ddd8545dfb2d1246b21bedfac041d73e84cda1c38e4a3cfa076e128f408 WHIRLPOOL b7a10f33557030bbdeae159c5302d3302dde829f29d6a362a3b2306e158cba9ff7617546ed3999ae8d226546810b299eff2ccc2dc938959ab8cd4e7d4fe25515
+DIST runescape-launcher_2.2.4_amd64.deb 3018396 SHA256 500f6ee09510a56afcd5526bda0596eb42e7ad0edb032a8a2791310bc79987c0 SHA512 3c9c0e9a313541352cb54604748735053a8d6a4de46bbb9f04344cff3916d0d87532e59c25f51b7d64cb0c6afa98a1afc63586cae6464d3288c10ca076adf388 WHIRLPOOL 7955f710617fd0da6273478d6fe211a5b10c5ec1fdf212841d089f042442e5c172f3a2f47b5f0038cf3e6af4e626088be542af704dd7f4b152c180d8bb3a2501


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2017-07-21 10:48 Pacho Ramos
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos @ 2017-07-21 10:48 UTC (permalink / raw
  To: gentoo-commits

commit:     2c9f654a728aa1581270642b126ebc23b9f2c30d
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 21 10:47:54 2017 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Jul 21 10:48:32 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c9f654a

games-rpg/runescape-launcher: Looks to work without webkit-gtk:2 as also commented by ArchLinux users (#608610)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../runescape-launcher-2.2.4-r1.ebuild             | 83 ++++++++++++++++++++++
 1 file changed, 83 insertions(+)

diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.4-r1.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.4-r1.ebuild
new file mode 100644
index 00000000000..f84a65137ff
--- /dev/null
+++ b/games-rpg/runescape-launcher/runescape-launcher-2.2.4-r1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit unpacker xdg gnome2-utils
+
+DESCRIPTION="Official RuneScape NXT client launcher"
+HOMEPAGE="http://www.runescape.com"
+
+SRC_URI="http://content.runescape.com/downloads/ubuntu/pool/non-free/r/${PN}/${PN}_${PV}_amd64.deb"
+
+QA_PREBUILT="/opt/runescape-launcher/runescape"
+
+SLOT="0"
+
+IUSE="kde"
+
+KEYWORDS="-* ~amd64"
+
+LICENSE="RuneScape-EULA"
+RESTRICT="bindist mirror strip"
+
+S="${WORKDIR}"
+
+RDEPEND="
+	media-libs/libpng:1.2
+	>=media-libs/libsdl2-2.0.2
+	>=media-libs/glew-1.10.0:0/1.10
+	>=media-libs/libvorbis-1.3.2
+	>=net-misc/curl-7.35.0
+"
+DEPEND=""
+
+src_prepare() {
+	# Fix path in launcher script
+	sed -i "s:/usr/share/games/$PN:/opt/$PN:" usr/bin/$PN || die
+
+	# Add missing trailing semicolon to .desktop MimeType entry
+	sed -i '/MimeType=/{/;$/!{s/$/;/}}' usr/share/applications/${PN}.desktop || die
+
+	# Fix path to launcher script
+	sed -i "s:/usr/bin/$PN:/opt/bin/$PN:" usr/share/applications/${PN}.desktop || die
+
+	xdg_src_prepare
+
+	eapply_user
+}
+
+src_install() {
+	into /opt
+	dobin usr/bin/$PN
+	dodoc usr/share/doc/$PN/*
+
+	exeinto /opt/$PN
+	doexe usr/share/games/$PN/runescape
+
+	insinto /usr/share/applications
+	doins usr/share/applications/${PN}.desktop
+
+	insinto /usr/share/icons
+	doins -r usr/share/icons/hicolor
+
+	if use kde ; then
+		insinto /usr/share/kde4
+		doins -r usr/share/kde4/services
+	fi
+}
+
+pkg_preinst() {
+	xdg_pkg_preinst
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	xdg_pkg_postinst
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_pkg_postrm
+	gnome2_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2017-09-05 23:50 Austin English
  0 siblings, 0 replies; 11+ messages in thread
From: Austin English @ 2017-09-05 23:50 UTC (permalink / raw
  To: gentoo-commits

commit:     4fa4c6a10aba9fffededaecf04e30c88ab921057
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  5 22:06:46 2017 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Tue Sep  5 23:50:27 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa4c6a1

games-rpg/runescape-launcher: regenerate Manifest

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 games-rpg/runescape-launcher/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
index 018551a6c4a..b53ef074213 100644
--- a/games-rpg/runescape-launcher/Manifest
+++ b/games-rpg/runescape-launcher/Manifest
@@ -1 +1 @@
-DIST runescape-launcher_2.2.4_amd64.deb 3018396 SHA256 500f6ee09510a56afcd5526bda0596eb42e7ad0edb032a8a2791310bc79987c0 SHA512 3c9c0e9a313541352cb54604748735053a8d6a4de46bbb9f04344cff3916d0d87532e59c25f51b7d64cb0c6afa98a1afc63586cae6464d3288c10ca076adf388 WHIRLPOOL 7955f710617fd0da6273478d6fe211a5b10c5ec1fdf212841d089f042442e5c172f3a2f47b5f0038cf3e6af4e626088be542af704dd7f4b152c180d8bb3a2501
+DIST runescape-launcher_2.2.4_amd64.deb 3013304 SHA256 c57c84286c50959d47dfff54490d87849d12830cccd703373917720822e002de SHA512 f19b693036ef1cc93d4c3f233ebbae31ef26d696875acd4dd0383f96127f09ce077c8256f37fc07243df063f4cc38211c5ab766ae798680ba4ad59e6c674e426 WHIRLPOOL d7140eb9fdee033c545df4298607b2578436bc7b52d6acf7aef51bc8205d387408b142794daee5c07f9d7f7903af89b2d6f83e803329972a4324ebacf5a9f54f


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2017-12-23 23:49 Michał Górny
  0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2017-12-23 23:49 UTC (permalink / raw
  To: gentoo-commits

commit:     96dadfcd6f5337c1cf46b88aabc98cfbed92a211
Author:     David Pedersen <Limero <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Sat Dec 23 01:13:14 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 23:49:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96dadfcd

games-rpg/runescape-launcher: Regenerate Manifest

Closes: https://github.com/gentoo/gentoo/pull/6607

 games-rpg/runescape-launcher/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-rpg/runescape-launcher/Manifest b/games-rpg/runescape-launcher/Manifest
index b53ef074213..7507e40b1e6 100644
--- a/games-rpg/runescape-launcher/Manifest
+++ b/games-rpg/runescape-launcher/Manifest
@@ -1 +1 @@
-DIST runescape-launcher_2.2.4_amd64.deb 3013304 SHA256 c57c84286c50959d47dfff54490d87849d12830cccd703373917720822e002de SHA512 f19b693036ef1cc93d4c3f233ebbae31ef26d696875acd4dd0383f96127f09ce077c8256f37fc07243df063f4cc38211c5ab766ae798680ba4ad59e6c674e426 WHIRLPOOL d7140eb9fdee033c545df4298607b2578436bc7b52d6acf7aef51bc8205d387408b142794daee5c07f9d7f7903af89b2d6f83e803329972a4324ebacf5a9f54f
+DIST runescape-launcher_2.2.4_amd64.deb 3014372 BLAKE2B 9ac215ff5f4b50a432fe14924d9bd7b8891d488cac05c6e2e657b97df68446e3d6a71c5c8330ff2ee995eddbfa63f885915a0c26413546845edeb219c2e56ac4 SHA512 47a3d757f2719474767ba95346f7e2d51a41612c8287656e78a958c68f62a26abcffc187b21d6cb7584bc94b2b5583d55dde4f27cfc18174e917864a7002c518


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/
@ 2018-02-28 20:38 Pacho Ramos
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos @ 2018-02-28 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     ef780faca8479f0b2a930785cc2b02f561995d05
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 20:33:49 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 20:36:17 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef780fac

games-rpg/runescape-launcher: Fix glew dependency (#627716)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 ...pe-launcher-2.2.4-r1.ebuild => runescape-launcher-2.2.4-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-rpg/runescape-launcher/runescape-launcher-2.2.4-r1.ebuild b/games-rpg/runescape-launcher/runescape-launcher-2.2.4-r2.ebuild
similarity index 95%
rename from games-rpg/runescape-launcher/runescape-launcher-2.2.4-r1.ebuild
rename to games-rpg/runescape-launcher/runescape-launcher-2.2.4-r2.ebuild
index f84a65137ff..19f039b0e8f 100644
--- a/games-rpg/runescape-launcher/runescape-launcher-2.2.4-r1.ebuild
+++ b/games-rpg/runescape-launcher/runescape-launcher-2.2.4-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -26,7 +26,7 @@ S="${WORKDIR}"
 RDEPEND="
 	media-libs/libpng:1.2
 	>=media-libs/libsdl2-2.0.2
-	>=media-libs/glew-1.10.0:0/1.10
+	media-libs/glew:1.10
 	>=media-libs/libvorbis-1.3.2
 	>=net-misc/curl-7.35.0
 "


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-02-28 20:38 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-21 10:48 [gentoo-commits] repo/gentoo:master commit in: games-rpg/runescape-launcher/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2018-02-28 20:38 Pacho Ramos
2017-12-23 23:49 Michał Górny
2017-09-05 23:50 Austin English
2017-06-11  8:01 Michael Palimaka
2017-06-01  7:10 David Seifert
2017-06-01  7:10 David Seifert
2017-03-02 10:20 Michael Palimaka
2016-10-25  7:27 Patrice Clement
2016-05-23  1:45 Ian Delaney
2016-05-20 13:24 Ian Delaney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox