public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/no-multilib/, games-server/nwn-ded/, profiles/
@ 2019-10-31 15:36 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2019-10-31 15:36 UTC (permalink / raw
  To: gentoo-commits

commit:     746e67e01f5d221f189e8d63d2a75676b500e05f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 31 15:32:34 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Oct 31 15:32:50 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746e67e0

games-server/nwn-ded: Remove last-rited pkg

Closes: https://bugs.gentoo.org/640578
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 games-server/nwn-ded/Manifest                |  2 -
 games-server/nwn-ded/metadata.xml            |  8 ----
 games-server/nwn-ded/nwn-ded-1.69-r1.ebuild  | 69 ----------------------------
 profiles/arch/amd64/no-multilib/package.mask |  1 -
 profiles/package.mask                        |  2 -
 5 files changed, 82 deletions(-)

diff --git a/games-server/nwn-ded/Manifest b/games-server/nwn-ded/Manifest
deleted file mode 100644
index 50995c714c4..00000000000
--- a/games-server/nwn-ded/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST NWNDedicatedServer1.69.zip 606293816 BLAKE2B f5e9f49bcaf76329310eee092328ef6cfc7d825409d66369ec18a8b2f881a6f6232a0a63d89d23f755165c1e13e6140575549875b55e80a0002f85b7af2b98ee SHA512 0f91ab8d03d040389d9ad7ccc7d50079057d62d542fecfb2164a726511718ba982f7b2f9878bc1143f2c61b3ef7ab8f92e5e4007b515ad6aff51216c5b602ffd
-DIST NWNEnglish1.69dialog.zip 3200987 BLAKE2B 8d0864ce22b39862a72291afca3e4ea8ff7ae35cee0dd38cb1424d7f767aeb4df82e4a6c53a1d59c2e670e3af05c8e6ff1984e6f1065d7e71f70ead97d0a369e SHA512 8c3214a3bcf137ea3b4b59d89055b7e22d15b8ab8d6007d81a9e70e156f8af611a8032ce5cf5c42ecd8c5af7eebe95f012a3f91723f273efa42701fd036482be

diff --git a/games-server/nwn-ded/metadata.xml b/games-server/nwn-ded/metadata.xml
deleted file mode 100644
index 78274e0fa55..00000000000
--- a/games-server/nwn-ded/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-	<email>games@gentoo.org</email>
-	<name>Gentoo Games Project</name>
-</maintainer>
-</pkgmetadata>

diff --git a/games-server/nwn-ded/nwn-ded-1.69-r1.ebuild b/games-server/nwn-ded/nwn-ded-1.69-r1.ebuild
deleted file mode 100644
index 21ee32df32f..00000000000
--- a/games-server/nwn-ded/nwn-ded-1.69-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils
-
-LANGUAGES="l10n_en"
-DIALOG_URL_BASE=http://files.bioware.com/neverwinternights/dialog/
-
-DESCRIPTION="Neverwinter Nights Dedicated server"
-HOMEPAGE="http://nwn.bioware.com/downloads/standaloneserver.html"
-SRC_URI="http://files.bioware.com/neverwinternights/updates/windows/server/NWNDedicatedServer${PV}.zip
-	l10n_en? ( ${DIALOG_URL_BASE}/english/NWNEnglish${PV}dialog.zip )"
-
-LICENSE="NWN-EULA"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE="${LANGUAGES}"
-RESTRICT="mirror strip"
-
-DEPEND="app-arch/unzip"
-
-S=${WORKDIR}
-
-dir="/opt/${PN}"
-QA_PREBUILT="${dir:1}/common/nwserver"
-
-src_unpack() {
-	mkdir common || die
-	cd common || die
-	unpack NWNDedicatedServer${PV}.zip
-	tar -zxf linuxdedserver${PV/./}.tar.gz || die
-	rm -f *dedserver*.{tar.gz,sit,zip} *.exe *.dll || die
-	cd ..
-	local currentlocale=""
-	local a
-	for a in ${A}
-	do
-		if [ -z "${a/*dialog*/}" ] ; then
-			if [ -z "${a/*English*/}" ]; then currentlocale="en"; fi
-			if [ -z "${a/*French*/}" ]; then currentlocale="fr"; fi
-			if [ -z "${a/*German*/}" ]; then currentlocale="de"; fi
-			if [ -z "${a/*Italian*/}" ]; then currentlocale="it"; fi
-			if [ -z "${a/*Spanish*/}" ]; then currentlocale="es"; fi
-			if [ -z "${a/*Japanese*/}" ]; then currentlocale="ja"; fi
-			mkdir ${currentlocale} || die
-			cd ${currentlocale} || die
-			cp -rfl ../common/* . || die
-			unpack "${a}"
-			cd ..
-		fi
-	done
-}
-
-src_install() {
-	dodir ${dir}
-
-	local currentlocale
-	for currentlocale in * ; do
-		if [[ ${currentlocale} != "common" ]]
-		then
-			make_wrapper nwserver-${currentlocale} ./nwserver "${dir}/${currentlocale}" "${dir}/${currentlocale}"
-		fi
-	done
-
-	mv * "${D}/${dir}"/ || die
-
-	chmod -R g+w "${D}/${dir}"
-}

diff --git a/profiles/arch/amd64/no-multilib/package.mask b/profiles/arch/amd64/no-multilib/package.mask
index acd6cae65a8..dd9c980d3d2 100644
--- a/profiles/arch/amd64/no-multilib/package.mask
+++ b/profiles/arch/amd64/no-multilib/package.mask
@@ -116,7 +116,6 @@ games-rpg/dungeon-defenders
 games-rpg/eschalon-book-1-demo
 games-rpg/wasteland2
 games-server/etqw-ded
-games-server/nwn-ded
 games-simulation/bcs-demo
 games-strategy/darwinia
 games-strategy/darwinia-demo

diff --git a/profiles/package.mask b/profiles/package.mask
index 03278293fb8..cca48b56c88 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -503,13 +503,11 @@ sys-libs/libstdc++-v3-bin
 # games-fps/enemy-territory-etpro: #638092
 # games-rpg/runescape-launcher: #625884
 # games-server/bf1942-lnxded: #640576
-# games-server/nwn-ded: #640578
 #
 # Removal in 30 days.
 games-fps/enemy-territory-etpro
 games-rpg/runescape-launcher
 games-server/bf1942-lnxded
-games-server/nwn-ded
 
 # Stefan Strogin <steils@gentoo.org> (2019-09-27)
 # Requires >=dev-lang/lua-5.3 which is masked


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-10-31 15:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-31 15:36 [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/no-multilib/, games-server/nwn-ded/, profiles/ Michał Górny

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