public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-strategy/warhammer4000-dawn-of-war-demo/
@ 2024-03-28  0:22 Vitaly Zdanevich
  0 siblings, 0 replies; 3+ messages in thread
From: Vitaly Zdanevich @ 2024-03-28  0:22 UTC (permalink / raw
  To: gentoo-commits

commit:     f54492fad55cae43ac8a9b835d957909e8758359
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Mar 28 00:22:17 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Thu Mar 28 00:22:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f54492fa

games-strategy/warhammer4000-dawn-of-war-demo: new package

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 .../warhammer4000-dawn-of-war-demo/Manifest        |  1 +
 .../warhammer4000-dawn-of-war-demo/metadata.xml    |  8 ++++
 .../warhammer4000-dawn-of-war-demo-1.ebuild        | 45 ++++++++++++++++++++++
 3 files changed, 54 insertions(+)

diff --git a/games-strategy/warhammer4000-dawn-of-war-demo/Manifest b/games-strategy/warhammer4000-dawn-of-war-demo/Manifest
new file mode 100644
index 0000000000..8e8390dd3d
--- /dev/null
+++ b/games-strategy/warhammer4000-dawn-of-war-demo/Manifest
@@ -0,0 +1 @@
+DIST warhammer4000-dawn-of-war-demo.tar.xz 304260244 BLAKE2B 3cc765ef30f70478f51eabbaf30edad19eeca9d57f68e0ae8f47f3dd524f78fa8c65cd93a2b98b0b3b00673d936e71ae0d73ba99979a0db0c230bc69ad3e11fd SHA512 275e1e86164ef3fb189042dc7a7bd7ffb53bcde29d6ca706cc8be37229977a19328872d7e5c286daa39d6bca646eecd756b0d2a2cc3958531459c562540bd69e

diff --git a/games-strategy/warhammer4000-dawn-of-war-demo/metadata.xml b/games-strategy/warhammer4000-dawn-of-war-demo/metadata.xml
new file mode 100644
index 0000000000..812e586b96
--- /dev/null
+++ b/games-strategy/warhammer4000-dawn-of-war-demo/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Vitaly Zdanevich</name>
+		<email>zdanevich.vitaly@ya.ru</email>
+	</maintainer>
+</pkgmetadata>

diff --git a/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild b/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild
new file mode 100644
index 0000000000..22f5fcec6d
--- /dev/null
+++ b/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2024 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="RTS with high rating from 2004, like WarCraft III or Armies of Exigo"
+HOMEPAGE="https://en.wikipedia.org/wiki/Warhammer_40%2C000%3A_Dawn_of_War"
+
+SRC_URI="https://archive.org/download/$PN.tar/$PN.tar.xz"
+
+KEYWORDS="~amd64"
+S="${WORKDIR}"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+RESTRICT="strip"
+
+RDEPEND="
+	~games-emulation/conty-1.25.2:0
+"
+# TODO add USE flag to be able to choolse local wine or wine-proton, against 1.4 GB dependency?
+
+QA_PREBUILT="*"
+
+src_install() {
+
+	mkdir -p "$ED$/opt" || die
+
+	mkdir "$ED/opt" || die
+	mkdir -p "$ED/usr/bin/" || die
+	cp -r "$PN" "$ED/opt/$PN" || die
+
+	conty='conty-1.25.2'
+
+	echo "cd /opt/$PN; $conty wine $PN; cd -" > "$ED/usr/bin/$PN" || die
+	fperms +x "/usr/bin/$PN"
+
+}
+
+pkg_postinst() {
+	einfo "More about the game:"
+	einfo "https://store.steampowered.com/app/4570/Warhammer_40000_Dawn_of_War__Game_of_the_Year_Edition/"
+	einfo "https://www.wikidata.org/wiki/Q1061708"
+	einfo "https://www.pcgamingwiki.com/wiki/Warhammer_40%2C000%3A_Dawn_of_War"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-strategy/warhammer4000-dawn-of-war-demo/
@ 2024-03-28 20:34 Vitaly Zdanevich
  0 siblings, 0 replies; 3+ messages in thread
From: Vitaly Zdanevich @ 2024-03-28 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     7feb3d973e6cdade3676b65c1ac71b038cd73cfb
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Mar 28 20:34:33 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Thu Mar 28 20:34:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7feb3d97

games-strategy/warhammer4000-dawn-of-war-demo: einfo add about game location

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 .../warhammer4000-dawn-of-war-demo-1.ebuild                              | 1 +
 1 file changed, 1 insertion(+)

diff --git a/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild b/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild
index 22f5fcec6d..20cf613b49 100644
--- a/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild
+++ b/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild
@@ -42,4 +42,5 @@ pkg_postinst() {
 	einfo "https://store.steampowered.com/app/4570/Warhammer_40000_Dawn_of_War__Game_of_the_Year_Edition/"
 	einfo "https://www.wikidata.org/wiki/Q1061708"
 	einfo "https://www.pcgamingwiki.com/wiki/Warhammer_40%2C000%3A_Dawn_of_War"
+	einfo "The game is installed to /opt/$PN - if you want to run it by another Wine or operating system"
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-strategy/warhammer4000-dawn-of-war-demo/
@ 2024-04-17 15:08 Arthur Zamarin
  0 siblings, 0 replies; 3+ messages in thread
From: Arthur Zamarin @ 2024-04-17 15:08 UTC (permalink / raw
  To: gentoo-commits

commit:     8e8b92d28c405c14117d552ba12c590e3a39f32a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 15:07:34 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 15:07:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8e8b92d2

games-strategy/warhammer4000-dawn-of-war-demo: treeclean

Not appropriate package for guru, should be in another overlay. Read
bug for more info.

Bug: https://bugs.gentoo.org/927922
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .../warhammer4000-dawn-of-war-demo/Manifest        |  1 -
 .../warhammer4000-dawn-of-war-demo/metadata.xml    |  8 ----
 .../warhammer4000-dawn-of-war-demo-1.ebuild        | 46 ----------------------
 3 files changed, 55 deletions(-)

diff --git a/games-strategy/warhammer4000-dawn-of-war-demo/Manifest b/games-strategy/warhammer4000-dawn-of-war-demo/Manifest
deleted file mode 100644
index 8e8390dd3d..0000000000
--- a/games-strategy/warhammer4000-dawn-of-war-demo/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST warhammer4000-dawn-of-war-demo.tar.xz 304260244 BLAKE2B 3cc765ef30f70478f51eabbaf30edad19eeca9d57f68e0ae8f47f3dd524f78fa8c65cd93a2b98b0b3b00673d936e71ae0d73ba99979a0db0c230bc69ad3e11fd SHA512 275e1e86164ef3fb189042dc7a7bd7ffb53bcde29d6ca706cc8be37229977a19328872d7e5c286daa39d6bca646eecd756b0d2a2cc3958531459c562540bd69e

diff --git a/games-strategy/warhammer4000-dawn-of-war-demo/metadata.xml b/games-strategy/warhammer4000-dawn-of-war-demo/metadata.xml
deleted file mode 100644
index 812e586b96..0000000000
--- a/games-strategy/warhammer4000-dawn-of-war-demo/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<name>Vitaly Zdanevich</name>
-		<email>zdanevich.vitaly@ya.ru</email>
-	</maintainer>
-</pkgmetadata>

diff --git a/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild b/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild
deleted file mode 100644
index 20cf613b49..0000000000
--- a/games-strategy/warhammer4000-dawn-of-war-demo/warhammer4000-dawn-of-war-demo-1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="RTS with high rating from 2004, like WarCraft III or Armies of Exigo"
-HOMEPAGE="https://en.wikipedia.org/wiki/Warhammer_40%2C000%3A_Dawn_of_War"
-
-SRC_URI="https://archive.org/download/$PN.tar/$PN.tar.xz"
-
-KEYWORDS="~amd64"
-S="${WORKDIR}"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-RESTRICT="strip"
-
-RDEPEND="
-	~games-emulation/conty-1.25.2:0
-"
-# TODO add USE flag to be able to choolse local wine or wine-proton, against 1.4 GB dependency?
-
-QA_PREBUILT="*"
-
-src_install() {
-
-	mkdir -p "$ED$/opt" || die
-
-	mkdir "$ED/opt" || die
-	mkdir -p "$ED/usr/bin/" || die
-	cp -r "$PN" "$ED/opt/$PN" || die
-
-	conty='conty-1.25.2'
-
-	echo "cd /opt/$PN; $conty wine $PN; cd -" > "$ED/usr/bin/$PN" || die
-	fperms +x "/usr/bin/$PN"
-
-}
-
-pkg_postinst() {
-	einfo "More about the game:"
-	einfo "https://store.steampowered.com/app/4570/Warhammer_40000_Dawn_of_War__Game_of_the_Year_Edition/"
-	einfo "https://www.wikidata.org/wiki/Q1061708"
-	einfo "https://www.pcgamingwiki.com/wiki/Warhammer_40%2C000%3A_Dawn_of_War"
-	einfo "The game is installed to /opt/$PN - if you want to run it by another Wine or operating system"
-}


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

end of thread, other threads:[~2024-04-17 15:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-28  0:22 [gentoo-commits] repo/proj/guru:dev commit in: games-strategy/warhammer4000-dawn-of-war-demo/ Vitaly Zdanevich
  -- strict thread matches above, loose matches on Subject: below --
2024-03-28 20:34 Vitaly Zdanevich
2024-04-17 15:08 Arthur Zamarin

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