public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-action/taisei/
@ 2020-06-02 10:32 Oliver Freyermuth
  0 siblings, 0 replies; 2+ messages in thread
From: Oliver Freyermuth @ 2020-06-02 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     61fb218f29c5fa928c7e4912e29c803c959d3b62
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Tue Jun  2 10:32:01 2020 +0000
Commit:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
CommitDate: Tue Jun  2 10:32:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=61fb218f

games-action/taisei: New package.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>

 games-action/taisei/Manifest            |  1 +
 games-action/taisei/metadata.xml        | 14 ++++++++
 games-action/taisei/taisei-1.3.1.ebuild | 57 +++++++++++++++++++++++++++++++++
 games-action/taisei/taisei-9999.ebuild  | 57 +++++++++++++++++++++++++++++++++
 4 files changed, 129 insertions(+)

diff --git a/games-action/taisei/Manifest b/games-action/taisei/Manifest
new file mode 100644
index 0000000..f1112cb
--- /dev/null
+++ b/games-action/taisei/Manifest
@@ -0,0 +1 @@
+DIST taisei-v1.3.1.tar.xz 70763196 BLAKE2B ca1901ba0205f6771c087ee70222ceaa3c406a1c632a5f46df1fe4fe493c89af8b587e397551777cd956ab73b5104450356303d0ea0cb8d5cd1b6723ceb1d648 SHA512 5e6f364e67717091041a30103bf117bb5d7a6be76d3d9499b13e36fc190be8c2a0e7ceb582e1d106aa0c1acbb6e39b99a4873a0885af1ec2117ff6ff08e14e3c

diff --git a/games-action/taisei/metadata.xml b/games-action/taisei/metadata.xml
new file mode 100644
index 0000000..b3e78d8
--- /dev/null
+++ b/games-action/taisei/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>o.freyermuth@googlemail.com</email>
+    <name>Oliver Freyermuth</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">taisei-project/taisei</remote-id>
+  </upstream>
+  <use>
+    <flag name="lto">Enable link time optimization</flag>
+  </use>
+</pkgmetadata>

diff --git a/games-action/taisei/taisei-1.3.1.ebuild b/games-action/taisei/taisei-1.3.1.ebuild
new file mode 100644
index 0000000..27ed838
--- /dev/null
+++ b/games-action/taisei/taisei-1.3.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	KEYWORDS=""
+	EGIT_REPO_URI="https://github.com/taisei-project/taisei.git"
+else
+	SRC_URI="https://github.com/taisei-project/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.xz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-v${PV}"
+fi
+
+inherit meson
+
+DESCRIPTION="A free and open-source Touhou Project clone and fangame"
+HOMEPAGE="https://taisei-project.org/"
+
+LICENSE="MIT CC-BY-4.0 CC0-1.0 public-domain"
+SLOT="0"
+IUSE="doc +lto"
+
+RDEPEND="
+	>=media-libs/libsdl2-2.0.6
+	>=media-libs/sdl2-mixer-2.0.4
+	media-libs/freetype:2
+	>=media-libs/libpng-1.5
+	>=media-libs/libwebp-0.5
+	>=dev-libs/libzip-1.2
+	media-libs/opusfile
+	dev-libs/openssl
+	media-libs/shaderc
+	dev-util/spirv-tools"
+DEPEND="${RDEPEND}"
+BDEPEND=">=dev-util/meson-0.49
+	>=dev-lang/python-3.5
+	doc? ( dev-python/docutils )"
+
+src_prepare() {
+	if use doc; then
+		# Fixup install path for documentation.
+		sed -i "s/doc_path = join_paths(datadir, 'doc', 'taisei')/doc_path = join_paths(datadir, 'doc', '"${P}"')/" meson.build || die
+	fi
+	default
+}
+
+src_configure() {
+	local emesonargs=(
+		$(meson_use doc docs)
+		$(meson_use lto b_lto)
+		# Stips binary by default otherwise.
+		-Dstrip=false
+	)
+	meson_src_configure
+}

diff --git a/games-action/taisei/taisei-9999.ebuild b/games-action/taisei/taisei-9999.ebuild
new file mode 100644
index 0000000..27ed838
--- /dev/null
+++ b/games-action/taisei/taisei-9999.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	KEYWORDS=""
+	EGIT_REPO_URI="https://github.com/taisei-project/taisei.git"
+else
+	SRC_URI="https://github.com/taisei-project/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.xz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-v${PV}"
+fi
+
+inherit meson
+
+DESCRIPTION="A free and open-source Touhou Project clone and fangame"
+HOMEPAGE="https://taisei-project.org/"
+
+LICENSE="MIT CC-BY-4.0 CC0-1.0 public-domain"
+SLOT="0"
+IUSE="doc +lto"
+
+RDEPEND="
+	>=media-libs/libsdl2-2.0.6
+	>=media-libs/sdl2-mixer-2.0.4
+	media-libs/freetype:2
+	>=media-libs/libpng-1.5
+	>=media-libs/libwebp-0.5
+	>=dev-libs/libzip-1.2
+	media-libs/opusfile
+	dev-libs/openssl
+	media-libs/shaderc
+	dev-util/spirv-tools"
+DEPEND="${RDEPEND}"
+BDEPEND=">=dev-util/meson-0.49
+	>=dev-lang/python-3.5
+	doc? ( dev-python/docutils )"
+
+src_prepare() {
+	if use doc; then
+		# Fixup install path for documentation.
+		sed -i "s/doc_path = join_paths(datadir, 'doc', 'taisei')/doc_path = join_paths(datadir, 'doc', '"${P}"')/" meson.build || die
+	fi
+	default
+}
+
+src_configure() {
+	local emesonargs=(
+		$(meson_use doc docs)
+		$(meson_use lto b_lto)
+		# Stips binary by default otherwise.
+		-Dstrip=false
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-action/taisei/
@ 2020-06-02 12:20 Oliver Freyermuth
  0 siblings, 0 replies; 2+ messages in thread
From: Oliver Freyermuth @ 2020-06-02 12:20 UTC (permalink / raw
  To: gentoo-commits

commit:     1e5051ada86eedc0b027e1cd8a166647a8a23f72
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Tue Jun  2 12:20:40 2020 +0000
Commit:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
CommitDate: Tue Jun  2 12:20:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e5051ad

games-action/taisei: Remove package again.

I missed it already exists as games-arcade/taisei,
and will now focus on improving the existing package.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>

 games-action/taisei/Manifest            |  1 -
 games-action/taisei/metadata.xml        | 14 --------
 games-action/taisei/taisei-1.3.1.ebuild | 57 ---------------------------------
 games-action/taisei/taisei-9999.ebuild  | 57 ---------------------------------
 4 files changed, 129 deletions(-)

diff --git a/games-action/taisei/Manifest b/games-action/taisei/Manifest
deleted file mode 100644
index f1112cb..0000000
--- a/games-action/taisei/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST taisei-v1.3.1.tar.xz 70763196 BLAKE2B ca1901ba0205f6771c087ee70222ceaa3c406a1c632a5f46df1fe4fe493c89af8b587e397551777cd956ab73b5104450356303d0ea0cb8d5cd1b6723ceb1d648 SHA512 5e6f364e67717091041a30103bf117bb5d7a6be76d3d9499b13e36fc190be8c2a0e7ceb582e1d106aa0c1acbb6e39b99a4873a0885af1ec2117ff6ff08e14e3c

diff --git a/games-action/taisei/metadata.xml b/games-action/taisei/metadata.xml
deleted file mode 100644
index b3e78d8..0000000
--- a/games-action/taisei/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>o.freyermuth@googlemail.com</email>
-    <name>Oliver Freyermuth</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">taisei-project/taisei</remote-id>
-  </upstream>
-  <use>
-    <flag name="lto">Enable link time optimization</flag>
-  </use>
-</pkgmetadata>

diff --git a/games-action/taisei/taisei-1.3.1.ebuild b/games-action/taisei/taisei-1.3.1.ebuild
deleted file mode 100644
index 27ed838..0000000
--- a/games-action/taisei/taisei-1.3.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == *9999* ]]; then
-	inherit git-r3
-	KEYWORDS=""
-	EGIT_REPO_URI="https://github.com/taisei-project/taisei.git"
-else
-	SRC_URI="https://github.com/taisei-project/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.xz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${PN}-v${PV}"
-fi
-
-inherit meson
-
-DESCRIPTION="A free and open-source Touhou Project clone and fangame"
-HOMEPAGE="https://taisei-project.org/"
-
-LICENSE="MIT CC-BY-4.0 CC0-1.0 public-domain"
-SLOT="0"
-IUSE="doc +lto"
-
-RDEPEND="
-	>=media-libs/libsdl2-2.0.6
-	>=media-libs/sdl2-mixer-2.0.4
-	media-libs/freetype:2
-	>=media-libs/libpng-1.5
-	>=media-libs/libwebp-0.5
-	>=dev-libs/libzip-1.2
-	media-libs/opusfile
-	dev-libs/openssl
-	media-libs/shaderc
-	dev-util/spirv-tools"
-DEPEND="${RDEPEND}"
-BDEPEND=">=dev-util/meson-0.49
-	>=dev-lang/python-3.5
-	doc? ( dev-python/docutils )"
-
-src_prepare() {
-	if use doc; then
-		# Fixup install path for documentation.
-		sed -i "s/doc_path = join_paths(datadir, 'doc', 'taisei')/doc_path = join_paths(datadir, 'doc', '"${P}"')/" meson.build || die
-	fi
-	default
-}
-
-src_configure() {
-	local emesonargs=(
-		$(meson_use doc docs)
-		$(meson_use lto b_lto)
-		# Stips binary by default otherwise.
-		-Dstrip=false
-	)
-	meson_src_configure
-}

diff --git a/games-action/taisei/taisei-9999.ebuild b/games-action/taisei/taisei-9999.ebuild
deleted file mode 100644
index 27ed838..0000000
--- a/games-action/taisei/taisei-9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == *9999* ]]; then
-	inherit git-r3
-	KEYWORDS=""
-	EGIT_REPO_URI="https://github.com/taisei-project/taisei.git"
-else
-	SRC_URI="https://github.com/taisei-project/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.xz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${PN}-v${PV}"
-fi
-
-inherit meson
-
-DESCRIPTION="A free and open-source Touhou Project clone and fangame"
-HOMEPAGE="https://taisei-project.org/"
-
-LICENSE="MIT CC-BY-4.0 CC0-1.0 public-domain"
-SLOT="0"
-IUSE="doc +lto"
-
-RDEPEND="
-	>=media-libs/libsdl2-2.0.6
-	>=media-libs/sdl2-mixer-2.0.4
-	media-libs/freetype:2
-	>=media-libs/libpng-1.5
-	>=media-libs/libwebp-0.5
-	>=dev-libs/libzip-1.2
-	media-libs/opusfile
-	dev-libs/openssl
-	media-libs/shaderc
-	dev-util/spirv-tools"
-DEPEND="${RDEPEND}"
-BDEPEND=">=dev-util/meson-0.49
-	>=dev-lang/python-3.5
-	doc? ( dev-python/docutils )"
-
-src_prepare() {
-	if use doc; then
-		# Fixup install path for documentation.
-		sed -i "s/doc_path = join_paths(datadir, 'doc', 'taisei')/doc_path = join_paths(datadir, 'doc', '"${P}"')/" meson.build || die
-	fi
-	default
-}
-
-src_configure() {
-	local emesonargs=(
-		$(meson_use doc docs)
-		$(meson_use lto b_lto)
-		# Stips binary by default otherwise.
-		-Dstrip=false
-	)
-	meson_src_configure
-}


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

end of thread, other threads:[~2020-06-02 12:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-02 10:32 [gentoo-commits] repo/proj/guru:dev commit in: games-action/taisei/ Oliver Freyermuth
  -- strict thread matches above, loose matches on Subject: below --
2020-06-02 12:20 Oliver Freyermuth

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