public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2021-05-07 20:40 Wolfgang E. Sanyer
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang E. Sanyer @ 2021-05-07 20:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e7404b489a21b108073ea78e3be6336242b54166
Author:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Fri May  7 20:12:27 2021 +0000
Commit:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Fri May  7 20:40:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e7404b48

games-util/dwarf-therapist: new package - manager utility for Dwarf Fortress

Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>

 games-util/dwarf-therapist/Manifest                |  1 +
 .../dwarf-therapist/dwarf-therapist-41.2.2.ebuild  | 57 ++++++++++++++++++++++
 games-util/dwarf-therapist/metadata.xml            |  8 +++
 3 files changed, 66 insertions(+)

diff --git a/games-util/dwarf-therapist/Manifest b/games-util/dwarf-therapist/Manifest
new file mode 100644
index 000000000..4e6c63d3d
--- /dev/null
+++ b/games-util/dwarf-therapist/Manifest
@@ -0,0 +1 @@
+DIST Dwarf-Therapist-41.2.2.tar.gz 1126446 BLAKE2B 44b84661892a50b225c5b69b6196e8397359d073bc9c268713fe93a35852370cfcfcc76df1c52aad814ceb46a74b6a9a7b3bd37bfc5cfec1eb2273b148b3cdb1 SHA512 0235c809be389743fb8205bf43770215efe72c4a178c854b14d1d9ea3a12213abaf58e2832d4c2bcf071d68216a4beff513c7e22712de996c0b6e9024c3010c2

diff --git a/games-util/dwarf-therapist/dwarf-therapist-41.2.2.ebuild b/games-util/dwarf-therapist/dwarf-therapist-41.2.2.ebuild
new file mode 100644
index 000000000..9c7aef32e
--- /dev/null
+++ b/games-util/dwarf-therapist/dwarf-therapist-41.2.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake desktop xdg-utils
+
+MY_PN="Dwarf-Therapist"
+MY_PV="v${PV}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="For managing dwarves in  Dwarf Fortress"
+HOMEPAGE="https://github.com/Dwarf-Therapist/Dwarf-Therapist"
+SRC_URI="https://github.com/Dwarf-Therapist/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_P}"
+
+# DEPEND=""
+RDEPEND="
+	dev-qt/qtconcurrent:5
+	dev-qt/qtdeclarative:5
+	dev-qt/qtwidgets:5
+"
+# BDEPEND=""
+
+src_install() {
+	# Install some sort of documentation
+	dodoc README.rst
+
+	# Add the desktop file
+	domenu dist/xdg/applications/dwarftherapist.desktop
+
+	# install icons
+	insinto /usr/share/
+	doins -r dist/xdg/icons
+
+	# install memory layout files for dwarf-fortress versions
+	insinto /usr/share/dwarftherapist/memory_layouts
+	doins -r share/memory_layouts/linux
+
+	# and of course, the binary
+	newbin "${BUILD_DIR}/dwarftherapist" dwarf-therapist
+}
+
+pkg_postinst() {
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}

diff --git a/games-util/dwarf-therapist/metadata.xml b/games-util/dwarf-therapist/metadata.xml
new file mode 100644
index 000000000..132632716
--- /dev/null
+++ b/games-util/dwarf-therapist/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>ezzieyguywuf@gmail.com</email>
+		<name>Wolfgang E. Sanyer</name>
+	</maintainer>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2023-06-06 19:18 Wolfgang E. Sanyer
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang E. Sanyer @ 2023-06-06 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     b8b95bb22462a5114a768b8d4591571bd30377cb
Author:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Tue Jun  6 18:38:32 2023 +0000
Commit:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Tue Jun  6 19:18:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b8b95bb2

games-util/dwarf-therapist: Bump to 41.2.5

This may be the last version of dwarf-therapist, since it seems like
dwarf-fortress is no longer released for linux 😭

See http://www.bay12forums.com/smf/index.php?topic=168411.msg7628208#msg7628208

Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>

 games-util/dwarf-therapist/Manifest                |  1 +
 .../dwarf-therapist/dwarf-therapist-41.2.5.ebuild  | 54 ++++++++++++++++++++++
 games-util/dwarf-therapist/metadata.xml            |  3 ++
 3 files changed, 58 insertions(+)

diff --git a/games-util/dwarf-therapist/Manifest b/games-util/dwarf-therapist/Manifest
index 4e6c63d3d..2dd141b3b 100644
--- a/games-util/dwarf-therapist/Manifest
+++ b/games-util/dwarf-therapist/Manifest
@@ -1 +1,2 @@
 DIST Dwarf-Therapist-41.2.2.tar.gz 1126446 BLAKE2B 44b84661892a50b225c5b69b6196e8397359d073bc9c268713fe93a35852370cfcfcc76df1c52aad814ceb46a74b6a9a7b3bd37bfc5cfec1eb2273b148b3cdb1 SHA512 0235c809be389743fb8205bf43770215efe72c4a178c854b14d1d9ea3a12213abaf58e2832d4c2bcf071d68216a4beff513c7e22712de996c0b6e9024c3010c2
+DIST Dwarf-Therapist-41.2.5.tar.gz 1125524 BLAKE2B a545bac1a87aac09adb22d1863f783389bb3924464e706da534a8b24a1aaadf91e5d10b8b4fe366b7f97b78a7ffec16107bb3ff0719843dfd12e71625c50ade7 SHA512 676c5ef18ff6311ff09beaf59144ac568bf4cf3034c1a9bac65c355029a9718c14bf90a0b6c0f2b357afa95c66a6ab546c0d91fe89cf67987c4e4f432c2177e1

diff --git a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
new file mode 100644
index 000000000..83f5c802d
--- /dev/null
+++ b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake desktop xdg-utils
+
+MY_PN="Dwarf-Therapist"
+MY_PV="v${PV}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="For managing dwarves in  Dwarf Fortress"
+HOMEPAGE="https://github.com/Dwarf-Therapist/Dwarf-Therapist"
+SRC_URI="https://github.com/Dwarf-Therapist/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_P}"
+
+RDEPEND="
+	dev-qt/qtconcurrent:5
+	dev-qt/qtdeclarative:5
+	dev-qt/qtwidgets:5
+"
+src_install() {
+	# Install some sort of documentation
+	dodoc README.rst
+
+	# Add the desktop file
+	domenu dist/xdg/applications/dwarftherapist.desktop
+
+	# install icons
+	insinto /usr/share/
+	doins -r dist/xdg/icons
+
+	# install memory layout files for dwarf-fortress versions
+	insinto /usr/share/dwarftherapist/memory_layouts
+	doins -r share/memory_layouts/linux
+
+	# and of course, the binary
+	newbin "${BUILD_DIR}/dwarftherapist" dwarf-therapist
+}
+
+pkg_postinst() {
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}

diff --git a/games-util/dwarf-therapist/metadata.xml b/games-util/dwarf-therapist/metadata.xml
index 9924b09ad..767c3433a 100644
--- a/games-util/dwarf-therapist/metadata.xml
+++ b/games-util/dwarf-therapist/metadata.xml
@@ -5,4 +5,7 @@
 		<email>ezzieyguywuf@gmail.com</email>
 		<name>Wolfgang E. Sanyer</name>
 	</maintainer>
+	<upstream>
+		<remote-id type="github">Dwarf-Therapist/Dwarf-Therapist</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2023-07-10 12:41 Ferenc Erki
  0 siblings, 0 replies; 8+ messages in thread
From: Ferenc Erki @ 2023-07-10 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     cafb34fcff888289104f1b06c1537c76133b1549
Author:     Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
AuthorDate: Mon Jul 10 12:38:42 2023 +0000
Commit:     Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
CommitDate: Mon Jul 10 12:38:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cafb34fc

games-util/dwarf-therapist: fix copyright year

Signed-off-by: Ferenc Erki <erkiferenc <AT> gmail.com>

 games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
index 83f5c802d..4fae45b0c 100644
--- a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
+++ b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2023-07-10 12:41 Ferenc Erki
  0 siblings, 0 replies; 8+ messages in thread
From: Ferenc Erki @ 2023-07-10 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     a3845b87c0daaccc5a340920476ec318f4101a6d
Author:     Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
AuthorDate: Mon Jul 10 12:39:02 2023 +0000
Commit:     Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
CommitDate: Mon Jul 10 12:39:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a3845b87

games-util/dwarf-therapist: update DESCRIPTION

Signed-off-by: Ferenc Erki <erkiferenc <AT> gmail.com>

 games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
index 4fae45b0c..c1c9c9cd4 100644
--- a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
+++ b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
@@ -9,7 +9,7 @@ MY_PN="Dwarf-Therapist"
 MY_PV="v${PV}"
 MY_P="${MY_PN}-${PV}"
 
-DESCRIPTION="For managing dwarves in  Dwarf Fortress"
+DESCRIPTION="For managing dwarves in Dwarf Fortress"
 HOMEPAGE="https://github.com/Dwarf-Therapist/Dwarf-Therapist"
 SRC_URI="https://github.com/Dwarf-Therapist/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2023-07-10 12:41 Ferenc Erki
  0 siblings, 0 replies; 8+ messages in thread
From: Ferenc Erki @ 2023-07-10 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     fcb2144d899927cc0bb1be9c43911d2c4b341133
Author:     Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
AuthorDate: Mon Jul 10 12:40:28 2023 +0000
Commit:     Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
CommitDate: Mon Jul 10 12:40:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fcb2144d

games-util/dwarf-therapist: warn about required kernel config

Signed-off-by: Ferenc Erki <erkiferenc <AT> gmail.com>

 games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
index c1c9c9cd4..4dd824ad4 100644
--- a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
+++ b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake desktop xdg-utils
+inherit cmake desktop linux-info xdg-utils
 
 MY_PN="Dwarf-Therapist"
 MY_PV="v${PV}"
@@ -24,6 +24,10 @@ RDEPEND="
 	dev-qt/qtdeclarative:5
 	dev-qt/qtwidgets:5
 "
+
+CONFIG_CHECK="~CROSS_MEMORY_ATTACH"
+WARNING_CROSS_MEMORY_ATTACH="required to interact with Dwarf Fortress"
+
 src_install() {
 	# Install some sort of documentation
 	dodoc README.rst


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2024-04-03  3:04 Wolfgang E. Sanyer
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang E. Sanyer @ 2024-04-03  3:04 UTC (permalink / raw
  To: gentoo-commits

commit:     e322d3ef11591dc425c9069ebed10195658cea8e
Author:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Wed Apr  3 02:56:53 2024 +0000
Commit:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Wed Apr  3 03:02:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e322d3ef

games-util/dwarf-therapist: bump to 42.1.5

Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>

 games-util/dwarf-therapist/Manifest                |  1 +
 .../dwarf-therapist/dwarf-therapist-42.1.5.ebuild  | 58 ++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/games-util/dwarf-therapist/Manifest b/games-util/dwarf-therapist/Manifest
index 2dd141b3b5..4638e6022f 100644
--- a/games-util/dwarf-therapist/Manifest
+++ b/games-util/dwarf-therapist/Manifest
@@ -1,2 +1,3 @@
 DIST Dwarf-Therapist-41.2.2.tar.gz 1126446 BLAKE2B 44b84661892a50b225c5b69b6196e8397359d073bc9c268713fe93a35852370cfcfcc76df1c52aad814ceb46a74b6a9a7b3bd37bfc5cfec1eb2273b148b3cdb1 SHA512 0235c809be389743fb8205bf43770215efe72c4a178c854b14d1d9ea3a12213abaf58e2832d4c2bcf071d68216a4beff513c7e22712de996c0b6e9024c3010c2
 DIST Dwarf-Therapist-41.2.5.tar.gz 1125524 BLAKE2B a545bac1a87aac09adb22d1863f783389bb3924464e706da534a8b24a1aaadf91e5d10b8b4fe366b7f97b78a7ffec16107bb3ff0719843dfd12e71625c50ade7 SHA512 676c5ef18ff6311ff09beaf59144ac568bf4cf3034c1a9bac65c355029a9718c14bf90a0b6c0f2b357afa95c66a6ab546c0d91fe89cf67987c4e4f432c2177e1
+DIST Dwarf-Therapist-42.1.5.tar.gz 1090721 BLAKE2B cdad4ad611bfbd0a38908ca11697e6550272c5f743b6ad5c123bcf789d3e88876fcb17fc7c109a77bbb9319cf78b7e9095ed13fc4121ffafe01281b2870e83e7 SHA512 71dcb8a814de277cb5c49b22edef32b04ff2e10f9833ef1d65d01d919e6d429d5309e2814d30c2a4e8b21331de530699762b80daade5146aeb8e8f7761095f9a

diff --git a/games-util/dwarf-therapist/dwarf-therapist-42.1.5.ebuild b/games-util/dwarf-therapist/dwarf-therapist-42.1.5.ebuild
new file mode 100644
index 0000000000..f193752d19
--- /dev/null
+++ b/games-util/dwarf-therapist/dwarf-therapist-42.1.5.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake desktop linux-info xdg-utils
+
+MY_PN="Dwarf-Therapist"
+MY_PV="v${PV}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="For managing dwarves in Dwarf Fortress"
+HOMEPAGE="https://github.com/Dwarf-Therapist/Dwarf-Therapist"
+SRC_URI="https://github.com/Dwarf-Therapist/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
+
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-qt/qtconcurrent:5
+	dev-qt/qtdeclarative:5
+	dev-qt/qtwidgets:5
+"
+
+CONFIG_CHECK="~CROSS_MEMORY_ATTACH"
+WARNING_CROSS_MEMORY_ATTACH="required to interact with Dwarf Fortress"
+
+src_install() {
+	# Install some sort of documentation
+	dodoc README.rst
+
+	# Add the desktop file
+	domenu dist/xdg/applications/dwarftherapist.desktop
+
+	# install icons
+	insinto /usr/share/
+	doins -r dist/xdg/icons
+
+	# install memory layout files for dwarf-fortress versions
+	insinto /usr/share/dwarftherapist/memory_layouts
+	doins -r share/memory_layouts/linux
+
+	# and of course, the binary
+	newbin "${BUILD_DIR}/dwarftherapist" dwarf-therapist
+}
+
+pkg_postinst() {
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	xdg_icon_cache_update
+	xdg_desktop_database_update
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2024-04-03  3:04 Wolfgang E. Sanyer
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang E. Sanyer @ 2024-04-03  3:04 UTC (permalink / raw
  To: gentoo-commits

commit:     b4eb8c002899c5843cf7149b7b267ead42ec0e47
Author:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Wed Apr  3 03:03:53 2024 +0000
Commit:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Wed Apr  3 03:04:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b4eb8c00

games-util/dwarf-therapist: fix pkgcheck lint

Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>

 games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
index 4dd824ad4f..f193752d19 100644
--- a/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
+++ b/games-util/dwarf-therapist/dwarf-therapist-41.2.5.ebuild
@@ -13,12 +13,12 @@ DESCRIPTION="For managing dwarves in Dwarf Fortress"
 HOMEPAGE="https://github.com/Dwarf-Therapist/Dwarf-Therapist"
 SRC_URI="https://github.com/Dwarf-Therapist/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
 
+S="${WORKDIR}/${MY_P}"
+
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-S="${WORKDIR}/${MY_P}"
-
 RDEPEND="
 	dev-qt/qtconcurrent:5
 	dev-qt/qtdeclarative:5


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/
@ 2024-04-03  3:04 Wolfgang E. Sanyer
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang E. Sanyer @ 2024-04-03  3:04 UTC (permalink / raw
  To: gentoo-commits

commit:     d88a8e506a8aafa526fc72378a9d0d10e6040ebd
Author:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Wed Apr  3 02:58:19 2024 +0000
Commit:     Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Wed Apr  3 03:02:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d88a8e50

games-util/dwarf-therapist: drop v41.2.2

Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>

 games-util/dwarf-therapist/Manifest                |  1 -
 .../dwarf-therapist/dwarf-therapist-41.2.2.ebuild  | 57 ----------------------
 2 files changed, 58 deletions(-)

diff --git a/games-util/dwarf-therapist/Manifest b/games-util/dwarf-therapist/Manifest
index 4638e6022f..eebf679083 100644
--- a/games-util/dwarf-therapist/Manifest
+++ b/games-util/dwarf-therapist/Manifest
@@ -1,3 +1,2 @@
-DIST Dwarf-Therapist-41.2.2.tar.gz 1126446 BLAKE2B 44b84661892a50b225c5b69b6196e8397359d073bc9c268713fe93a35852370cfcfcc76df1c52aad814ceb46a74b6a9a7b3bd37bfc5cfec1eb2273b148b3cdb1 SHA512 0235c809be389743fb8205bf43770215efe72c4a178c854b14d1d9ea3a12213abaf58e2832d4c2bcf071d68216a4beff513c7e22712de996c0b6e9024c3010c2
 DIST Dwarf-Therapist-41.2.5.tar.gz 1125524 BLAKE2B a545bac1a87aac09adb22d1863f783389bb3924464e706da534a8b24a1aaadf91e5d10b8b4fe366b7f97b78a7ffec16107bb3ff0719843dfd12e71625c50ade7 SHA512 676c5ef18ff6311ff09beaf59144ac568bf4cf3034c1a9bac65c355029a9718c14bf90a0b6c0f2b357afa95c66a6ab546c0d91fe89cf67987c4e4f432c2177e1
 DIST Dwarf-Therapist-42.1.5.tar.gz 1090721 BLAKE2B cdad4ad611bfbd0a38908ca11697e6550272c5f743b6ad5c123bcf789d3e88876fcb17fc7c109a77bbb9319cf78b7e9095ed13fc4121ffafe01281b2870e83e7 SHA512 71dcb8a814de277cb5c49b22edef32b04ff2e10f9833ef1d65d01d919e6d429d5309e2814d30c2a4e8b21331de530699762b80daade5146aeb8e8f7761095f9a

diff --git a/games-util/dwarf-therapist/dwarf-therapist-41.2.2.ebuild b/games-util/dwarf-therapist/dwarf-therapist-41.2.2.ebuild
deleted file mode 100644
index 9c7aef32e1..0000000000
--- a/games-util/dwarf-therapist/dwarf-therapist-41.2.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake desktop xdg-utils
-
-MY_PN="Dwarf-Therapist"
-MY_PV="v${PV}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="For managing dwarves in  Dwarf Fortress"
-HOMEPAGE="https://github.com/Dwarf-Therapist/Dwarf-Therapist"
-SRC_URI="https://github.com/Dwarf-Therapist/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}/${MY_P}"
-
-# DEPEND=""
-RDEPEND="
-	dev-qt/qtconcurrent:5
-	dev-qt/qtdeclarative:5
-	dev-qt/qtwidgets:5
-"
-# BDEPEND=""
-
-src_install() {
-	# Install some sort of documentation
-	dodoc README.rst
-
-	# Add the desktop file
-	domenu dist/xdg/applications/dwarftherapist.desktop
-
-	# install icons
-	insinto /usr/share/
-	doins -r dist/xdg/icons
-
-	# install memory layout files for dwarf-fortress versions
-	insinto /usr/share/dwarftherapist/memory_layouts
-	doins -r share/memory_layouts/linux
-
-	# and of course, the binary
-	newbin "${BUILD_DIR}/dwarftherapist" dwarf-therapist
-}
-
-pkg_postinst() {
-	xdg_icon_cache_update
-	xdg_desktop_database_update
-}
-
-pkg_postrm() {
-	xdg_icon_cache_update
-	xdg_desktop_database_update
-}


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

end of thread, other threads:[~2024-04-03  3:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-07 20:40 [gentoo-commits] repo/proj/guru:dev commit in: games-util/dwarf-therapist/ Wolfgang E. Sanyer
  -- strict thread matches above, loose matches on Subject: below --
2023-06-06 19:18 Wolfgang E. Sanyer
2023-07-10 12:41 Ferenc Erki
2023-07-10 12:41 Ferenc Erki
2023-07-10 12:41 Ferenc Erki
2024-04-03  3:04 Wolfgang E. Sanyer
2024-04-03  3:04 Wolfgang E. Sanyer
2024-04-03  3:04 Wolfgang E. Sanyer

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