public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/
@ 2017-10-29 18:24 Jonas Stein
  0 siblings, 0 replies; 7+ messages in thread
From: Jonas Stein @ 2017-10-29 18:24 UTC (permalink / raw
  To: gentoo-commits

commit:     9c13975a519d285552b1ba37892d6e5f09573091
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 29 18:24:08 2017 +0000
Commit:     Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Sun Oct 29 18:24:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c13975a

games-rpg/sumwars: Removed proxied maintainer

Removed proxied maintainer due to inactivity.
Closes: https://bugs.gentoo.org/633210
Package-Manager: Portage-2.3.13, Repoman-2.3.4

 games-rpg/sumwars/metadata.xml | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/games-rpg/sumwars/metadata.xml b/games-rpg/sumwars/metadata.xml
index 7e3930639d4..ee9203d83eb 100644
--- a/games-rpg/sumwars/metadata.xml
+++ b/games-rpg/sumwars/metadata.xml
@@ -2,15 +2,6 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
-	<maintainer type="person">
-		<email>protogenes@web.de</email>
-		<name>Michael Kunz</name>
-		<description>Proxy maintainer. CC him on bugs</description>
-	</maintainer>
-	<maintainer type="project">
 		<email>games@gentoo.org</email>
 		<name>Gentoo Games Project</name>
 	</maintainer>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/
@ 2021-09-28 18:39 Ionen Wolkens
  0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2021-09-28 18:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a84d571280f3658821ae3bacc40095de1670ea0e
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 28 15:46:37 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Sep 28 18:37:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84d5712

games-rpg/sumwars: EAPI7->8, fix MisplacedEclassVar, tighten deps

* add required [truetype] to cegui
* depend on freeimage to ensure [jpeg,png] (used through ogre)
* use sourceforge as HOMEPAGE, old is redirecting to an unrelated page
* cleanup cmake path options, defaults accomplish the same and
  changes were formerly intended to support games.eclass
* remove lua patch, can be handled through cmake variables
* make IUSE=tools non-default, it's primarily for content authors
  and being disabled allows to skip boost rebuilds

This game has a tendency to randomly crash while upstream and the
short lived fork are dead, unsure how worth it is to keep/maintain.

Closes: https://bugs.gentoo.org/815232
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-rpg/sumwars/sumwars-0.5.8-r101.ebuild | 70 +++++++++++++++++++++++++++++
 1 file changed, 70 insertions(+)

diff --git a/games-rpg/sumwars/sumwars-0.5.8-r101.ebuild b/games-rpg/sumwars/sumwars-0.5.8-r101.ebuild
new file mode 100644
index 00000000000..c77b3729484
--- /dev/null
+++ b/games-rpg/sumwars/sumwars-0.5.8-r101.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_REMOVE_MODULES_LIST=( FindLua{,51} )
+LUA_COMPAT=( lua5-1 )
+inherit cmake desktop flag-o-matic lua-single
+
+MY_L10N=( de en it pl pt ru uk )
+
+DESCRIPTION="Multi-player, 3D action role-playing game"
+HOMEPAGE="https://sourceforge.net/projects/sumwars/"
+SRC_URI="mirror://sourceforge/sumwars/${P/_/-}-src.tar.bz2"
+
+LICENSE="GPL-3 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug tools ${MY_L10N[*]/#/l10n_}"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+DEPEND="
+	${LUA_DEPS}
+	dev-games/cegui[ogre,truetype]
+	dev-games/ogre:=[freeimage,opengl]
+	dev-games/ois
+	dev-games/physfs
+	dev-libs/tinyxml
+	media-libs/freealut
+	media-libs/libvorbis
+	media-libs/openal
+	net-libs/enet:1.3=
+	x11-libs/libX11
+	x11-libs/libXrandr
+	tools? ( dev-libs/boost:= )"
+RDEPEND="
+	${DEPEND}
+	media-libs/freeimage[jpeg,png]"
+
+src_configure() {
+	append-flags -fno-strict-aliasing
+
+	local l langs=
+	for l in "${MY_L10N[@]}"; do
+		use l10n_${l} && langs+="${l} "
+	done
+
+	use debug && CMAKE_BUILD_TYPE=Debug
+
+	local mycmakeargs=(
+		-DLua_FIND_VERSION_MAJOR=$(ver_cut 1 $(lua_get_version))
+		-DLua_FIND_VERSION_MINOR=$(ver_cut 2 $(lua_get_version))
+		-DLua_FIND_VERSION_COUNT=2
+		-DLua_FIND_VERSION_EXACT=ON
+		-DSUMWARS_BUILD_TOOLS=$(usex tools)
+		-DSUMWARS_DOC_DIR="${EPREFIX}"/usr/share/doc/${PF}
+		-DSUMWARS_LANGUAGES="${langs:-en}"
+		-DSUMWARS_NO_ENET=ON
+		-DSUMWARS_NO_TINYXML=ON
+	)
+
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	newicon share/icon/SumWarsIcon_128x128.png ${PN}.png
+	make_desktop_entry ${PN} "Summoning Wars"
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/
@ 2021-09-28 18:39 Ionen Wolkens
  0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2021-09-28 18:39 UTC (permalink / raw
  To: gentoo-commits

commit:     84bf4daef457b2210ec878f0dea96c25b6bde763
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 28 18:25:33 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Sep 28 18:38:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84bf4dae

games-rpg/sumwars: remove dead upstream links from metadata.xml

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-rpg/sumwars/metadata.xml | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/games-rpg/sumwars/metadata.xml b/games-rpg/sumwars/metadata.xml
index 38362758353..b6bf04ac1cc 100644
--- a/games-rpg/sumwars/metadata.xml
+++ b/games-rpg/sumwars/metadata.xml
@@ -5,12 +5,10 @@
 		<email>games@gentoo.org</email>
 		<name>Gentoo Games Project</name>
 	</maintainer>
-	<upstream>
-		<changelog>http://sumwars.org/mantis/changelog_page.php</changelog>
-		<bugs-to>https://sumwars.org/mantis/index.php</bugs-to>
-		<remote-id type="sourceforge">sumwars</remote-id>
-	</upstream>
 	<use>
 		<flag name="tools">Builds editor tools</flag>
 	</use>
+	<upstream>
+		<remote-id type="sourceforge">sumwars</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/
@ 2021-02-28 12:26 Andreas Sturmlechner
  0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2021-02-28 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     5b62623e9e0baf2533fa580478c30d45f8b53e45
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 09:13:50 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 12:26:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b62623e

games-rpg/sumwars: Drop 0.5.8-r1

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 games-rpg/sumwars/sumwars-0.5.8-r1.ebuild | 95 -------------------------------
 1 file changed, 95 deletions(-)

diff --git a/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild b/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild
deleted file mode 100644
index caba1802db8..00000000000
--- a/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit cmake-utils eutils flag-o-matic gnome2-utils
-
-DESCRIPTION="a multi-player, 3D action role-playing game"
-HOMEPAGE="http://sumwars.org"
-SRC_URI="mirror://sourceforge/sumwars/${P//_/-}-src.tar.bz2"
-
-LICENSE="GPL-3 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+tools debug"
-
-LANGS="de en it pl pt ru uk"
-for L in ${LANGS} ; do
-	IUSE="${IUSE} l10n_${L}"
-done
-unset L
-
-RDEPEND="
-	>=dev-games/cegui-0.8[ogre]
-	>=dev-games/ogre-1.7.4-r1[freeimage,opengl]
-	dev-games/ois
-	dev-games/physfs
-	>=dev-lang/lua-5.1:0
-	>=dev-libs/tinyxml-2.6.2-r2
-	media-libs/freealut
-	media-libs/openal
-	media-libs/libogg
-	media-libs/libvorbis
-	>=net-libs/enet-1.3.0
-	x11-libs/libX11
-	x11-libs/libXrandr
-	tools? ( dev-libs/boost )"
-DEPEND=${RDEPEND}
-
-S=${WORKDIR}/${PN}-${PV%_*}
-
-src_configure() {
-	# QA
-	append-flags -fno-strict-aliasing
-
-	use debug && CMAKE_BUILD_TYPE=Debug
-
-	local l langs
-	for l in ${LANGS}; do
-		if use l10n_${l}; then
-			langs="${langs} ${l}"
-		fi
-	done
-
-	[[ -z "${langs}" ]] && langs="en"
-
-	# configure sumwars with cmake
-	local mycmakeargs=(
-		-DCMAKE_INSTALL_PREFIX=""
-		-DSUMWARS_BUILD_TOOLS="$(usex tools)"
-		-DSUMWARS_DOC_DIR="/usr/share/doc/${PF}"
-		-DSUMWARS_EXECUTABLE_DIR="/usr/bin"
-		-DSUMWARS_LANGUAGES="${langs}"
-		-DSUMWARS_NO_ENET=ON
-		-DSUMWARS_NO_TINYXML=ON
-		-DSUMWARS_PORTABLE_MODE=OFF
-		-DSUMWARS_POST_BUILD_COPY=OFF
-		-DSUMWARS_RANDOM_REGIONS=ON
-		-DSUMWARS_SHARE_DIR="/usr/share/${PN}"
-		-DSUMWARS_STANDALONE_MODE=OFF
-	)
-
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	cmake-utils_src_compile
-}
-
-src_install() {
-	cmake-utils_src_install
-	newicon -s 128 share/icon/SumWarsIcon_128x128.png ${PN}.png
-	make_desktop_entry ${PN} "Summoning Wars"
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/
@ 2016-10-16  1:48 Austin English
  0 siblings, 0 replies; 7+ messages in thread
From: Austin English @ 2016-10-16  1:48 UTC (permalink / raw
  To: gentoo-commits

commit:     97177c0d81beb72ec5129ebca61cebea88f16870
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 16 01:47:07 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Sun Oct 16 01:48:02 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97177c0d

games-rpg/sumwars: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: portage-2.3.0

 games-rpg/sumwars/sumwars-0.5.8-r1.ebuild | 96 +++++++++++++++++++++++++++++++
 1 file changed, 96 insertions(+)

diff --git a/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild b/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild
new file mode 100644
index 00000000..19640e4
--- /dev/null
+++ b/games-rpg/sumwars/sumwars-0.5.8-r1.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit cmake-utils eutils flag-o-matic gnome2-utils
+
+DESCRIPTION="a multi-player, 3D action role-playing game"
+HOMEPAGE="http://sumwars.org"
+SRC_URI="mirror://sourceforge/sumwars/${P//_/-}-src.tar.bz2"
+
+LICENSE="GPL-3 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+tools debug"
+
+LANGS="de en it pl pt ru uk"
+for L in ${LANGS} ; do
+	IUSE="${IUSE} l10n_${L}"
+done
+unset L
+
+RDEPEND="
+	>=dev-games/cegui-0.8[ogre]
+	>=dev-games/ogre-1.7.4-r1[freeimage,opengl]
+	dev-games/ois
+	dev-games/physfs
+	>=dev-lang/lua-5.1:0
+	>=dev-libs/tinyxml-2.6.2-r2
+	media-libs/freealut
+	media-libs/openal
+	media-libs/libogg
+	media-libs/libvorbis
+	>=net-libs/enet-1.3.0
+	x11-libs/libX11
+	x11-libs/libXrandr
+	tools? ( dev-libs/boost )"
+DEPEND=${RDEPEND}
+
+S=${WORKDIR}/${PN}-${PV%_*}
+
+src_configure() {
+	# QA
+	append-flags -fno-strict-aliasing
+
+	use debug && CMAKE_BUILD_TYPE=Debug
+
+	local l langs
+	for l in ${LANGS}; do
+		if use l10n_${l}; then
+			langs="${langs} ${l}"
+		fi
+	done
+
+	[[ -z "${langs}" ]] && langs="en"
+
+	# configure sumwars with cmake
+	local mycmakeargs=(
+		-DCMAKE_INSTALL_PREFIX=""
+		-DSUMWARS_BUILD_TOOLS="$(usex tools)"
+		-DSUMWARS_DOC_DIR="/usr/share/doc/${PF}"
+		-DSUMWARS_EXECUTABLE_DIR="/usr/bin"
+		-DSUMWARS_LANGUAGES="${langs}"
+		-DSUMWARS_NO_ENET=ON
+		-DSUMWARS_NO_TINYXML=ON
+		-DSUMWARS_PORTABLE_MODE=OFF
+		-DSUMWARS_POST_BUILD_COPY=OFF
+		-DSUMWARS_RANDOM_REGIONS=ON
+		-DSUMWARS_SHARE_DIR="/usr/share/${PN}"
+		-DSUMWARS_STANDALONE_MODE=OFF
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+}
+
+src_install() {
+	cmake-utils_src_install
+	newicon -s 128 share/icon/SumWarsIcon_128x128.png ${PN}.png
+	make_desktop_entry ${PN} "Summoning Wars"
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/
@ 2016-06-28  6:10 Ulrich Müller
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Müller @ 2016-06-28  6:10 UTC (permalink / raw
  To: gentoo-commits

commit:     ba18194f018b22ac5c51a941e851a104e1265c40
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 28 06:09:14 2016 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 06:09:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba18194f

games-rpg/sumwars: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0

 games-rpg/sumwars/sumwars-0.5.8.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-rpg/sumwars/sumwars-0.5.8.ebuild b/games-rpg/sumwars/sumwars-0.5.8.ebuild
index 2f897f7..b719ccb 100644
--- a/games-rpg/sumwars/sumwars-0.5.8.ebuild
+++ b/games-rpg/sumwars/sumwars-0.5.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ IUSE="+tools debug"
 
 LANGS="de en it pl pt ru uk"
 for L in ${LANGS} ; do
-	IUSE="${IUSE} linguas_${L}"
+	IUSE="${IUSE} l10n_${L}"
 done
 unset L
 
@@ -47,7 +47,7 @@ src_configure() {
 
 	local l langs
 	for l in ${LANGS}; do
-		if use linguas_${l}; then
+		if use l10n_${l}; then
 			langs="${langs} ${l}"
 		fi
 	done


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/
@ 2016-01-05  8:26 Michael Sterrett
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Sterrett @ 2016-01-05  8:26 UTC (permalink / raw
  To: gentoo-commits

commit:     22a111c1e50ee4306a82c57745b4b0ec3d2d3a4e
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  5 05:44:05 2016 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Tue Jan  5 08:26:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22a111c1

games-rpg/sumwars: add slot dep for dev-lang/lua

Package-Manager: portage-2.2.26

 games-rpg/sumwars/sumwars-0.5.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-rpg/sumwars/sumwars-0.5.8.ebuild b/games-rpg/sumwars/sumwars-0.5.8.ebuild
index ebfc09c..2f897f7 100644
--- a/games-rpg/sumwars/sumwars-0.5.8.ebuild
+++ b/games-rpg/sumwars/sumwars-0.5.8.ebuild
@@ -25,7 +25,7 @@ RDEPEND="
 	>=dev-games/ogre-1.7.4-r1[freeimage,opengl]
 	dev-games/ois
 	dev-games/physfs
-	>=dev-lang/lua-5.1
+	>=dev-lang/lua-5.1:0
 	>=dev-libs/tinyxml-2.6.2-r2
 	media-libs/freealut
 	media-libs/openal


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

end of thread, other threads:[~2021-09-28 18:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-29 18:24 [gentoo-commits] repo/gentoo:master commit in: games-rpg/sumwars/ Jonas Stein
  -- strict thread matches above, loose matches on Subject: below --
2021-09-28 18:39 Ionen Wolkens
2021-09-28 18:39 Ionen Wolkens
2021-02-28 12:26 Andreas Sturmlechner
2016-10-16  1:48 Austin English
2016-06-28  6:10 Ulrich Müller
2016-01-05  8:26 Michael Sterrett

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