* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2019-04-20 15:35 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2019-04-20 15:35 UTC (permalink / raw
To: gentoo-commits
commit: db040392c55c6ab04313a8ae82b8a3717e51d4c6
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Sat Apr 20 15:33:24 2019 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Sat Apr 20 15:35:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=db040392
Added godot-3.1
Doesn't respect all builtins, but that's a mystery for another time.
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 2 +
dev-games/godot/godot-3.1.ebuild | 126 +++++++++++++++++++++++++++++++++++++++
2 files changed, 128 insertions(+)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
new file mode 100644
index 0000000..77cb6cb
--- /dev/null
+++ b/dev-games/godot/Manifest
@@ -0,0 +1,2 @@
+DIST 3.1-stable.zip 25495857 BLAKE2B 321323b21b9d845939b94e60d9cfc7894cbbb6b09ba8d8d8fbaa1440441dd14fa5d2ba8fb67738f965fc4f64d2dd6c11802cb1e49cb6dced6b514983cb070302 SHA512 df9c2a3d41095403321a3afba0c4943253723bbc602d4d5c238e31a25ce7f3660f066d1051e8c725f567d08f5a0a4f28c738d82aacbfc025e60f1a188c5692fe
+EBUILD godot-3.1.ebuild 3282 BLAKE2B ec32b7f3a6e5792d05070f815e170869703eab085cb316b4de58e476b3bca9ad0943fdbddbd8c3aaedb3d7cffb76038f794512f71c58315f46700c391936817d SHA512 dce4f255e5c1677bfec02c2226a9045d0a8c437bec47c6c518edc0f87d1f0a06695fc5f7abafd2be00ee925bcd61949903c6b84d973321cb782a190ca522e52b
diff --git a/dev-games/godot/godot-3.1.ebuild b/dev-games/godot/godot-3.1.ebuild
new file mode 100644
index 0000000..0eab0ba
--- /dev/null
+++ b/dev-games/godot/godot-3.1.ebuild
@@ -0,0 +1,126 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils python-any-r1 scons-utils
+
+DESCRIPTION="Multi-platform 2D and 3D game engine"
+HOMEPAGE="http://godotengine.org"
+LICENSE="MIT"
+SLOT="0"
+
+SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
+S="${WORKDIR}/${P}-stable"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="+enet +freetype +llvm pulseaudio theora +udev +vorbis +webp +websockets +mbedtls +opus"
+
+DEPEND="
+ >=app-arch/bzip2-1.0.6-r6
+ >=app-arch/lz4-0_p120
+ >=app-arch/xz-utils-5.0.8
+ >=dev-libs/json-c-0.11-r1
+ dev-libs/libpcre2[pcre32]
+ >=media-libs/alsa-lib-1.0.28
+ >=media-libs/flac-1.3.1-r1
+ >=media-libs/libogg-1.3.1
+ >=media-libs/libsndfile-1.0.25-r1
+ media-libs/libvpx
+ >=media-libs/mesa-10.2.8[gles2]
+ webp? ( media-libs/libwebp )
+ opus? ( media-libs/opus )
+ enet? ( net-libs/enet )
+ >=net-libs/libasyncns-0.8-r3
+ websockets? ( net-libs/libwebsockets )
+ mbedtls? ( net-libs/mbedtls )
+ net-libs/miniupnpc
+ >=sys-apps/attr-2.4.47-r1
+ >=sys-apps/tcp-wrappers-7.6.22-r1
+ >=sys-apps/util-linux-2.25.2-r2
+ >=sys-devel/gcc-4.6.4:*[cxx]
+ >=sys-libs/gdbm-1.11
+ >=sys-libs/glibc-2.20-r2
+ >=sys-libs/libcap-2.22-r2
+ >=sys-libs/zlib-1.2.8-r1
+ >=x11-libs/libX11-1.6.2
+ >=x11-libs/libXcursor-1.1.14
+ >=x11-libs/libXinerama-1.1.3
+ freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
+ llvm? ( >=sys-devel/llvm-3.6.0 )
+ >=media-libs/libpng-1.6.16:0=
+ pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
+ theora? ( media-libs/libtheora )
+ udev? ( virtual/udev )
+ virtual/glu
+ vorbis? ( >=media-libs/libvorbis-1.3.4 )"
+
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ MYSCONS=(
+ CC="$(tc-getCC)"
+ builtin_enet=$(usex enet)
+ builtin_freetype=no
+ builtin_libogg=no
+ builtin_libpng=no
+ builtin_libpng=no
+ builtin_libtheora=$(usex theora)
+ builtin_libvorbis=$(usex vorbis)
+ builtin_libvpx=no
+ builtin_libwebp=$(usex webp)
+ builtin_libwebsockets=$(usex websockets)
+ builtin_mbedtls=$(usex mbedtls)
+ builtin_miniupnpc=no
+ builtin_opus=$(usex opus)
+ builtin_pcre2=no
+ builtin_zlib=no
+ #builtin_zstd=no # Compilation error due to undeclared identifiers
+ module_enet_enabled=$(usex enet)
+ module_freetype_enabled=$(usex freetype)
+ module_mbedtls_enabled=$(usex mbedtls)
+ module_opus_enabled=$(usex opus)
+ module_theora_enabled=$(usex theora)
+ module_vorbis_enabled=$(usex vorbis)
+ module_webp_enabled=$(usex webp)
+ module_websocket_enabled=$(usex websockets)
+ platform=x11
+ pulseaudio=$(usex pulseaudio)
+ tools=yes
+ udev=$(usex udev)
+ use_llvm=$(usex llvm)
+ )
+}
+
+src_compile() {
+ escons "${MYSCONS[@]}"
+}
+
+src_install() {
+ newicon icon.svg ${PN}.svg
+ dobin bin/godot.*
+ if [[ "${ARCH}" == "amd64" ]]; then
+ if use llvm; then
+ make_desktop_entry godot.x11.tools.64.llvm Godot
+ with_desktop_entry=1
+ else
+ make_desktop_entry godot.x11.tools.64 Godot
+ with_desktop_entry=1
+ fi
+ fi
+
+ if [[ "${ARCH}" == "x86" ]]; then
+ if use llvm; then
+ make_desktop_entry godot.x11.tools.32.llvm Godot
+ with_desktop_entry=1
+ else
+ make_desktop_entry godot.x11.tools.32 Godot
+ with_desktop_entry=1
+ fi
+ fi
+
+ if ! [[ "${with_desktop_entry}" == "1" ]]; then
+ elog "Couldn't detect running architecture to create a desktop file."
+ fi
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2019-04-26 19:01 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2019-04-26 19:01 UTC (permalink / raw
To: gentoo-commits
commit: fcc16c4836e2096a9dfe0f18f5a2da33b1468c09
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Fri Apr 26 19:00:18 2019 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Fri Apr 26 19:00:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=fcc16c48
Added Godot 3.1.1
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 2 +
dev-games/godot/godot-3.1.1.ebuild | 126 +++++++++++++++++++++++++++++++++++++
2 files changed, 128 insertions(+)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 77cb6cb..8afd39c 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,2 +1,4 @@
DIST 3.1-stable.zip 25495857 BLAKE2B 321323b21b9d845939b94e60d9cfc7894cbbb6b09ba8d8d8fbaa1440441dd14fa5d2ba8fb67738f965fc4f64d2dd6c11802cb1e49cb6dced6b514983cb070302 SHA512 df9c2a3d41095403321a3afba0c4943253723bbc602d4d5c238e31a25ce7f3660f066d1051e8c725f567d08f5a0a4f28c738d82aacbfc025e60f1a188c5692fe
+DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
+EBUILD godot-3.1.1.ebuild 3282 BLAKE2B ec32b7f3a6e5792d05070f815e170869703eab085cb316b4de58e476b3bca9ad0943fdbddbd8c3aaedb3d7cffb76038f794512f71c58315f46700c391936817d SHA512 dce4f255e5c1677bfec02c2226a9045d0a8c437bec47c6c518edc0f87d1f0a06695fc5f7abafd2be00ee925bcd61949903c6b84d973321cb782a190ca522e52b
EBUILD godot-3.1.ebuild 3282 BLAKE2B ec32b7f3a6e5792d05070f815e170869703eab085cb316b4de58e476b3bca9ad0943fdbddbd8c3aaedb3d7cffb76038f794512f71c58315f46700c391936817d SHA512 dce4f255e5c1677bfec02c2226a9045d0a8c437bec47c6c518edc0f87d1f0a06695fc5f7abafd2be00ee925bcd61949903c6b84d973321cb782a190ca522e52b
diff --git a/dev-games/godot/godot-3.1.1.ebuild b/dev-games/godot/godot-3.1.1.ebuild
new file mode 100644
index 0000000..0eab0ba
--- /dev/null
+++ b/dev-games/godot/godot-3.1.1.ebuild
@@ -0,0 +1,126 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils python-any-r1 scons-utils
+
+DESCRIPTION="Multi-platform 2D and 3D game engine"
+HOMEPAGE="http://godotengine.org"
+LICENSE="MIT"
+SLOT="0"
+
+SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
+S="${WORKDIR}/${P}-stable"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="+enet +freetype +llvm pulseaudio theora +udev +vorbis +webp +websockets +mbedtls +opus"
+
+DEPEND="
+ >=app-arch/bzip2-1.0.6-r6
+ >=app-arch/lz4-0_p120
+ >=app-arch/xz-utils-5.0.8
+ >=dev-libs/json-c-0.11-r1
+ dev-libs/libpcre2[pcre32]
+ >=media-libs/alsa-lib-1.0.28
+ >=media-libs/flac-1.3.1-r1
+ >=media-libs/libogg-1.3.1
+ >=media-libs/libsndfile-1.0.25-r1
+ media-libs/libvpx
+ >=media-libs/mesa-10.2.8[gles2]
+ webp? ( media-libs/libwebp )
+ opus? ( media-libs/opus )
+ enet? ( net-libs/enet )
+ >=net-libs/libasyncns-0.8-r3
+ websockets? ( net-libs/libwebsockets )
+ mbedtls? ( net-libs/mbedtls )
+ net-libs/miniupnpc
+ >=sys-apps/attr-2.4.47-r1
+ >=sys-apps/tcp-wrappers-7.6.22-r1
+ >=sys-apps/util-linux-2.25.2-r2
+ >=sys-devel/gcc-4.6.4:*[cxx]
+ >=sys-libs/gdbm-1.11
+ >=sys-libs/glibc-2.20-r2
+ >=sys-libs/libcap-2.22-r2
+ >=sys-libs/zlib-1.2.8-r1
+ >=x11-libs/libX11-1.6.2
+ >=x11-libs/libXcursor-1.1.14
+ >=x11-libs/libXinerama-1.1.3
+ freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
+ llvm? ( >=sys-devel/llvm-3.6.0 )
+ >=media-libs/libpng-1.6.16:0=
+ pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
+ theora? ( media-libs/libtheora )
+ udev? ( virtual/udev )
+ virtual/glu
+ vorbis? ( >=media-libs/libvorbis-1.3.4 )"
+
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ MYSCONS=(
+ CC="$(tc-getCC)"
+ builtin_enet=$(usex enet)
+ builtin_freetype=no
+ builtin_libogg=no
+ builtin_libpng=no
+ builtin_libpng=no
+ builtin_libtheora=$(usex theora)
+ builtin_libvorbis=$(usex vorbis)
+ builtin_libvpx=no
+ builtin_libwebp=$(usex webp)
+ builtin_libwebsockets=$(usex websockets)
+ builtin_mbedtls=$(usex mbedtls)
+ builtin_miniupnpc=no
+ builtin_opus=$(usex opus)
+ builtin_pcre2=no
+ builtin_zlib=no
+ #builtin_zstd=no # Compilation error due to undeclared identifiers
+ module_enet_enabled=$(usex enet)
+ module_freetype_enabled=$(usex freetype)
+ module_mbedtls_enabled=$(usex mbedtls)
+ module_opus_enabled=$(usex opus)
+ module_theora_enabled=$(usex theora)
+ module_vorbis_enabled=$(usex vorbis)
+ module_webp_enabled=$(usex webp)
+ module_websocket_enabled=$(usex websockets)
+ platform=x11
+ pulseaudio=$(usex pulseaudio)
+ tools=yes
+ udev=$(usex udev)
+ use_llvm=$(usex llvm)
+ )
+}
+
+src_compile() {
+ escons "${MYSCONS[@]}"
+}
+
+src_install() {
+ newicon icon.svg ${PN}.svg
+ dobin bin/godot.*
+ if [[ "${ARCH}" == "amd64" ]]; then
+ if use llvm; then
+ make_desktop_entry godot.x11.tools.64.llvm Godot
+ with_desktop_entry=1
+ else
+ make_desktop_entry godot.x11.tools.64 Godot
+ with_desktop_entry=1
+ fi
+ fi
+
+ if [[ "${ARCH}" == "x86" ]]; then
+ if use llvm; then
+ make_desktop_entry godot.x11.tools.32.llvm Godot
+ with_desktop_entry=1
+ else
+ make_desktop_entry godot.x11.tools.32 Godot
+ with_desktop_entry=1
+ fi
+ fi
+
+ if ! [[ "${with_desktop_entry}" == "1" ]]; then
+ elog "Couldn't detect running architecture to create a desktop file."
+ fi
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2019-06-22 10:31 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2019-06-22 10:31 UTC (permalink / raw
To: gentoo-commits
commit: 8ae207615124b0e39e4164b85491a334b3b3bece
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Fri Jun 21 10:26:01 2019 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Fri Jun 21 10:26:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=8ae20761
Fixed problem with building Godot with LLVM/clang.
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 4 +-
dev-games/godot/godot-3.1.1.ebuild | 35 ++++++++++-
dev-games/godot/godot-3.1.ebuild | 126 -------------------------------------
3 files changed, 33 insertions(+), 132 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 8afd39c..ebbd1c4 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,4 +1,2 @@
-DIST 3.1-stable.zip 25495857 BLAKE2B 321323b21b9d845939b94e60d9cfc7894cbbb6b09ba8d8d8fbaa1440441dd14fa5d2ba8fb67738f965fc4f64d2dd6c11802cb1e49cb6dced6b514983cb070302 SHA512 df9c2a3d41095403321a3afba0c4943253723bbc602d4d5c238e31a25ce7f3660f066d1051e8c725f567d08f5a0a4f28c738d82aacbfc025e60f1a188c5692fe
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
-EBUILD godot-3.1.1.ebuild 3282 BLAKE2B ec32b7f3a6e5792d05070f815e170869703eab085cb316b4de58e476b3bca9ad0943fdbddbd8c3aaedb3d7cffb76038f794512f71c58315f46700c391936817d SHA512 dce4f255e5c1677bfec02c2226a9045d0a8c437bec47c6c518edc0f87d1f0a06695fc5f7abafd2be00ee925bcd61949903c6b84d973321cb782a190ca522e52b
-EBUILD godot-3.1.ebuild 3282 BLAKE2B ec32b7f3a6e5792d05070f815e170869703eab085cb316b4de58e476b3bca9ad0943fdbddbd8c3aaedb3d7cffb76038f794512f71c58315f46700c391936817d SHA512 dce4f255e5c1677bfec02c2226a9045d0a8c437bec47c6c518edc0f87d1f0a06695fc5f7abafd2be00ee925bcd61949903c6b84d973321cb782a190ca522e52b
+EBUILD godot-3.1.1.ebuild 3654 BLAKE2B 3da11533e18b9db7055dd04e9e3c5cf7617223a8306a533a90519fa724922c2b4ea50788ac1a4271f304ca3503ba28cb765759043900de7d3d96ceb040e0cc4c SHA512 c0f3412f80ad1166183d3c6f557cd6f02a7d1218fcbbdd0f1b5bdbe64c47617357cadfad96b6e89c8e09868d20ea9aa33bd01a97bfac73d4790307522366547f
diff --git a/dev-games/godot/godot-3.1.1.ebuild b/dev-games/godot/godot-3.1.1.ebuild
index 0eab0ba..1d1bff5 100644
--- a/dev-games/godot/godot-3.1.1.ebuild
+++ b/dev-games/godot/godot-3.1.1.ebuild
@@ -4,7 +4,7 @@
EAPI=7
PYTHON_COMPAT=( python2_7 )
-inherit eutils python-any-r1 scons-utils
+inherit eutils python-any-r1 scons-utils flag-o-matic llvm
DESCRIPTION="Multi-platform 2D and 3D game engine"
HOMEPAGE="http://godotengine.org"
@@ -15,7 +15,19 @@ SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
S="${WORKDIR}/${P}-stable"
KEYWORDS="~amd64 ~x86"
-IUSE="+enet +freetype +llvm pulseaudio theora +udev +vorbis +webp +websockets +mbedtls +opus"
+IUSE="debug
+ +enet
+ +freetype
+ llvm
+ lto
+ +mbedtls
+ +opus
+ pulseaudio
+ theora
+ +udev
+ +vorbis
+ +webp
+ +websockets"
DEPEND="
>=app-arch/bzip2-1.0.6-r6
@@ -39,7 +51,7 @@ DEPEND="
>=sys-apps/attr-2.4.47-r1
>=sys-apps/tcp-wrappers-7.6.22-r1
>=sys-apps/util-linux-2.25.2-r2
- >=sys-devel/gcc-4.6.4:*[cxx]
+ !llvm? ( >=sys-devel/gcc-4.6.4:*[cxx] )
>=sys-libs/gdbm-1.11
>=sys-libs/glibc-2.20-r2
>=sys-libs/libcap-2.22-r2
@@ -58,7 +70,20 @@ DEPEND="
RDEPEND="${DEPEND}"
+pkg_setup() {
+ python-any-r1_pkg_setup
+ llvm_pkg_setup
+}
+
src_configure() {
+ if use llvm && ! tc-is-clang; then
+ einfo "Enforcing the use of clang due to USE=llvm ..."
+ CC=${CHOST}-clang
+ CXX=${CHOST}-clang++
+ fi
+
+ strip-unsupported-flags
+
MYSCONS=(
CC="$(tc-getCC)"
builtin_enet=$(usex enet)
@@ -88,8 +113,12 @@ src_configure() {
platform=x11
pulseaudio=$(usex pulseaudio)
tools=yes
+ progress=false
+ verbose=true
udev=$(usex udev)
use_llvm=$(usex llvm)
+ use_lto=$(usex lto)
+ target=$(usex debug debug release_debug)
)
}
diff --git a/dev-games/godot/godot-3.1.ebuild b/dev-games/godot/godot-3.1.ebuild
deleted file mode 100644
index 0eab0ba..0000000
--- a/dev-games/godot/godot-3.1.ebuild
+++ /dev/null
@@ -1,126 +0,0 @@
-# Copyright 1999-2019 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-any-r1 scons-utils
-
-DESCRIPTION="Multi-platform 2D and 3D game engine"
-HOMEPAGE="http://godotengine.org"
-LICENSE="MIT"
-SLOT="0"
-
-SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
-S="${WORKDIR}/${P}-stable"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="+enet +freetype +llvm pulseaudio theora +udev +vorbis +webp +websockets +mbedtls +opus"
-
-DEPEND="
- >=app-arch/bzip2-1.0.6-r6
- >=app-arch/lz4-0_p120
- >=app-arch/xz-utils-5.0.8
- >=dev-libs/json-c-0.11-r1
- dev-libs/libpcre2[pcre32]
- >=media-libs/alsa-lib-1.0.28
- >=media-libs/flac-1.3.1-r1
- >=media-libs/libogg-1.3.1
- >=media-libs/libsndfile-1.0.25-r1
- media-libs/libvpx
- >=media-libs/mesa-10.2.8[gles2]
- webp? ( media-libs/libwebp )
- opus? ( media-libs/opus )
- enet? ( net-libs/enet )
- >=net-libs/libasyncns-0.8-r3
- websockets? ( net-libs/libwebsockets )
- mbedtls? ( net-libs/mbedtls )
- net-libs/miniupnpc
- >=sys-apps/attr-2.4.47-r1
- >=sys-apps/tcp-wrappers-7.6.22-r1
- >=sys-apps/util-linux-2.25.2-r2
- >=sys-devel/gcc-4.6.4:*[cxx]
- >=sys-libs/gdbm-1.11
- >=sys-libs/glibc-2.20-r2
- >=sys-libs/libcap-2.22-r2
- >=sys-libs/zlib-1.2.8-r1
- >=x11-libs/libX11-1.6.2
- >=x11-libs/libXcursor-1.1.14
- >=x11-libs/libXinerama-1.1.3
- freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
- llvm? ( >=sys-devel/llvm-3.6.0 )
- >=media-libs/libpng-1.6.16:0=
- pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
- theora? ( media-libs/libtheora )
- udev? ( virtual/udev )
- virtual/glu
- vorbis? ( >=media-libs/libvorbis-1.3.4 )"
-
-RDEPEND="${DEPEND}"
-
-src_configure() {
- MYSCONS=(
- CC="$(tc-getCC)"
- builtin_enet=$(usex enet)
- builtin_freetype=no
- builtin_libogg=no
- builtin_libpng=no
- builtin_libpng=no
- builtin_libtheora=$(usex theora)
- builtin_libvorbis=$(usex vorbis)
- builtin_libvpx=no
- builtin_libwebp=$(usex webp)
- builtin_libwebsockets=$(usex websockets)
- builtin_mbedtls=$(usex mbedtls)
- builtin_miniupnpc=no
- builtin_opus=$(usex opus)
- builtin_pcre2=no
- builtin_zlib=no
- #builtin_zstd=no # Compilation error due to undeclared identifiers
- module_enet_enabled=$(usex enet)
- module_freetype_enabled=$(usex freetype)
- module_mbedtls_enabled=$(usex mbedtls)
- module_opus_enabled=$(usex opus)
- module_theora_enabled=$(usex theora)
- module_vorbis_enabled=$(usex vorbis)
- module_webp_enabled=$(usex webp)
- module_websocket_enabled=$(usex websockets)
- platform=x11
- pulseaudio=$(usex pulseaudio)
- tools=yes
- udev=$(usex udev)
- use_llvm=$(usex llvm)
- )
-}
-
-src_compile() {
- escons "${MYSCONS[@]}"
-}
-
-src_install() {
- newicon icon.svg ${PN}.svg
- dobin bin/godot.*
- if [[ "${ARCH}" == "amd64" ]]; then
- if use llvm; then
- make_desktop_entry godot.x11.tools.64.llvm Godot
- with_desktop_entry=1
- else
- make_desktop_entry godot.x11.tools.64 Godot
- with_desktop_entry=1
- fi
- fi
-
- if [[ "${ARCH}" == "x86" ]]; then
- if use llvm; then
- make_desktop_entry godot.x11.tools.32.llvm Godot
- with_desktop_entry=1
- else
- make_desktop_entry godot.x11.tools.32 Godot
- with_desktop_entry=1
- fi
- fi
-
- if ! [[ "${with_desktop_entry}" == "1" ]]; then
- elog "Couldn't detect running architecture to create a desktop file."
- fi
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2019-07-07 10:20 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2019-07-07 10:20 UTC (permalink / raw
To: gentoo-commits
commit: b5133ae69349f020a38a17e9ae4467b1a530e163
Author: ringoding <46097282+ringoding <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Tue Jun 25 01:26:15 2019 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Sun Jul 7 10:20:13 2019 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=b5133ae6
Inherit desktop in EAPI 7 for .desktop files
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/godot-3.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-games/godot/godot-3.1.1.ebuild b/dev-games/godot/godot-3.1.1.ebuild
index 1d1bff5..e564b89 100644
--- a/dev-games/godot/godot-3.1.1.ebuild
+++ b/dev-games/godot/godot-3.1.1.ebuild
@@ -4,7 +4,7 @@
EAPI=7
PYTHON_COMPAT=( python2_7 )
-inherit eutils python-any-r1 scons-utils flag-o-matic llvm
+inherit eutils python-any-r1 scons-utils flag-o-matic llvm desktop
DESCRIPTION="Multi-platform 2D and 3D game engine"
HOMEPAGE="http://godotengine.org"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2019-07-07 10:20 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2019-07-07 10:20 UTC (permalink / raw
To: gentoo-commits
commit: 31d17de61c8df3469e4204fa27b485e7b2b4c565
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Sun Jul 7 10:17:01 2019 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Sun Jul 7 10:20:33 2019 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=31d17de6
Merge pull request #1 from ringoding/Drauthius
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index ebbd1c4..915753f 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,2 +1,2 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
-EBUILD godot-3.1.1.ebuild 3654 BLAKE2B 3da11533e18b9db7055dd04e9e3c5cf7617223a8306a533a90519fa724922c2b4ea50788ac1a4271f304ca3503ba28cb765759043900de7d3d96ceb040e0cc4c SHA512 c0f3412f80ad1166183d3c6f557cd6f02a7d1218fcbbdd0f1b5bdbe64c47617357cadfad96b6e89c8e09868d20ea9aa33bd01a97bfac73d4790307522366547f
+EBUILD godot-3.1.1.ebuild 3662 BLAKE2B 566d93624607610b8003f216be1caa08f45d11bae9df691913475ca43d2e3f0cc75cdc020817cd7b42a7fd9cbb02ee98243539671a76733e2ebbfc2473fcd76e SHA512 254b1dca4f648bba00d9994e9ddfb52b9b023b3c0f86260e6f57a54d55beafff75b50d7a82198b355e9b532714cbbc7724d32cc535719888bb9a47bbd4503d83
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2019-08-10 8:13 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2019-08-10 8:13 UTC (permalink / raw
To: gentoo-commits
commit: 0d7ea8933c4c3d5536fe6c6f44d454cbdd266acf
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Sat Aug 10 08:12:47 2019 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Sat Aug 10 08:12:47 2019 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=0d7ea893
dev-games/godot-9999
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 3 ++-
dev-games/godot/godot-3.1.1.ebuild | 12 +++++++++---
dev-games/godot/{godot-3.1.1.ebuild => godot-9999.ebuild} | 12 +++++++++---
3 files changed, 20 insertions(+), 7 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 915753f..96e491a 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,2 +1,3 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
-EBUILD godot-3.1.1.ebuild 3662 BLAKE2B 566d93624607610b8003f216be1caa08f45d11bae9df691913475ca43d2e3f0cc75cdc020817cd7b42a7fd9cbb02ee98243539671a76733e2ebbfc2473fcd76e SHA512 254b1dca4f648bba00d9994e9ddfb52b9b023b3c0f86260e6f57a54d55beafff75b50d7a82198b355e9b532714cbbc7724d32cc535719888bb9a47bbd4503d83
+EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
+EBUILD godot-9999.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
diff --git a/dev-games/godot/godot-3.1.1.ebuild b/dev-games/godot/godot-3.1.1.ebuild
index e564b89..7dd7a3f 100644
--- a/dev-games/godot/godot-3.1.1.ebuild
+++ b/dev-games/godot/godot-3.1.1.ebuild
@@ -11,9 +11,15 @@ HOMEPAGE="http://godotengine.org"
LICENSE="MIT"
SLOT="0"
-SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
-S="${WORKDIR}/${P}-stable"
-KEYWORDS="~amd64 ~x86"
+if [[ ${PV} = 9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/godotengine/${PN}"
+ EGIT_BRANCH="master"
+else
+ SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
+ S="${WORKDIR}/${P}-stable"
+ KEYWORDS="~amd64 ~x86"
+fi
IUSE="debug
+enet
diff --git a/dev-games/godot/godot-3.1.1.ebuild b/dev-games/godot/godot-9999.ebuild
similarity index 93%
copy from dev-games/godot/godot-3.1.1.ebuild
copy to dev-games/godot/godot-9999.ebuild
index e564b89..7dd7a3f 100644
--- a/dev-games/godot/godot-3.1.1.ebuild
+++ b/dev-games/godot/godot-9999.ebuild
@@ -11,9 +11,15 @@ HOMEPAGE="http://godotengine.org"
LICENSE="MIT"
SLOT="0"
-SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
-S="${WORKDIR}/${P}-stable"
-KEYWORDS="~amd64 ~x86"
+if [[ ${PV} = 9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/godotengine/${PN}"
+ EGIT_BRANCH="master"
+else
+ SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
+ S="${WORKDIR}/${P}-stable"
+ KEYWORDS="~amd64 ~x86"
+fi
IUSE="debug
+enet
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2020-03-01 16:06 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2020-03-01 16:06 UTC (permalink / raw
To: gentoo-commits
commit: ad34cfde805aec8a53bf26a9d9cb614a1b166a58
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Sun Mar 1 16:05:52 2020 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Sun Mar 1 16:05:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=ad34cfde
dev-games/godot-3.2
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 2 +
dev-games/godot/godot-3.2.ebuild | 160 +++++++++++++++++++++++++++++++++++++++
2 files changed, 162 insertions(+)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 96e491a..ef89ee4 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,3 +1,5 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
+DIST 3.2-stable.zip 27425566 BLAKE2B 844e14e7ca850bede631675c831211e23f046f3205cb3ac46c24e880aa6edd55fb5537e160bd4af96c71ab816f68d47c58a123e80236b722ac0e321915aa9989 SHA512 2f63156a7d4f204052b59745b3d8717f440f2f5759adda414296b6c784e79a162f422e8c38a7d624c1f7be17175291e4602dd1416d41b3241ae425a25806beab
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
+EBUILD godot-3.2.ebuild 3628 BLAKE2B 87946423e0c5fdc6f390fb39a9d9fa08f9b52ef293d0f21b6bf967e465c95b5aeaacd5f6cec421d185d54c348fa19ab3a0468cda49bb8c4a2e7bc6952ee056b8 SHA512 e6ec086937b04bbea2f5e804843f02972d043a67047d605cf723bfa26e98a1eb2e1ae5e074eb2ab462b01eb386bc2a22f1b7d7081733ad6aefe83a6a38dbe1dc
EBUILD godot-9999.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
diff --git a/dev-games/godot/godot-3.2.ebuild b/dev-games/godot/godot-3.2.ebuild
new file mode 100644
index 0000000..35d16df
--- /dev/null
+++ b/dev-games/godot/godot-3.2.ebuild
@@ -0,0 +1,160 @@
+# Copyright 1999-2020 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{6..8} )
+
+inherit eutils python-any-r1 scons-utils flag-o-matic llvm desktop
+
+DESCRIPTION="Multi-platform 2D and 3D game engine"
+HOMEPAGE="http://godotengine.org"
+LICENSE="MIT"
+SLOT="0"
+
+if [[ ${PV} = 9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/godotengine/${PN}"
+ EGIT_BRANCH="master"
+else
+ SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
+ S="${WORKDIR}/${P}-stable"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+IUSE="
+ debug
+ +enet
+ +freetype
+ llvm
+ lto
+ +mbedtls
+ +opus
+ pulseaudio
+ theora
+ +udev
+ +vorbis
+ +webp"
+
+DEPEND="
+ >=app-arch/bzip2-1.0.6-r6
+ >=app-arch/lz4-0_p120
+ >=app-arch/xz-utils-5.0.8
+ >=app-arch/zstd-1.4.4
+ >=dev-libs/json-c-0.11-r1
+ dev-libs/libpcre2[pcre32]
+ >=media-libs/alsa-lib-1.0.28
+ >=media-libs/flac-1.3.1-r1
+ >=media-libs/libogg-1.3.1
+ >=media-libs/libsndfile-1.0.25-r1
+ media-libs/libvpx
+ >=media-libs/mesa-10.2.8[gles2]
+ webp? ( media-libs/libwebp )
+ opus? ( media-libs/opus )
+ enet? ( net-libs/enet )
+ >=net-libs/libasyncns-0.8-r3
+ mbedtls? ( net-libs/mbedtls )
+ net-libs/miniupnpc
+ >=sys-apps/attr-2.4.47-r1
+ >=sys-apps/tcp-wrappers-7.6.22-r1
+ >=sys-apps/util-linux-2.25.2-r2
+ !llvm? ( >=sys-devel/gcc-4.6.4:*[cxx] )
+ >=sys-libs/gdbm-1.11
+ >=sys-libs/glibc-2.20-r2
+ >=sys-libs/libcap-2.22-r2
+ >=sys-libs/zlib-1.2.8-r1
+ >=x11-libs/libX11-1.6.2
+ >=x11-libs/libXcursor-1.1.14
+ >=x11-libs/libXinerama-1.1.3
+ freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
+ llvm? ( >=sys-devel/llvm-3.6.0 )
+ >=media-libs/libpng-1.6.16:0=
+ pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
+ theora? ( media-libs/libtheora )
+ udev? ( virtual/udev )
+ virtual/glu
+ vorbis? ( >=media-libs/libvorbis-1.3.4 )"
+
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+ python-any-r1_pkg_setup
+ llvm_pkg_setup
+}
+
+src_configure() {
+ if use llvm && ! tc-is-clang; then
+ einfo "Enforcing the use of clang due to USE=llvm ..."
+ CC=${CHOST}-clang
+ CXX=${CHOST}-clang++
+ fi
+
+ strip-unsupported-flags
+
+ MYSCONS=(
+ CC="$(tc-getCC)"
+ CXX="$(tc-getCXX)"
+ builtin_enet=$(usex enet)
+ builtin_freetype=no
+ builtin_libogg=no
+ builtin_libpng=no
+ builtin_libtheora=$(usex theora)
+ builtin_libvorbis=$(usex vorbis)
+ builtin_libvpx=no
+ builtin_libwebp=$(usex webp)
+ builtin_mbedtls=$(usex mbedtls)
+ builtin_miniupnpc=no
+ builtin_opus=$(usex opus)
+ builtin_pcre2=no
+ builtin_zlib=no
+ builtin_zstd=no
+ module_enet_enabled=$(usex enet)
+ module_freetype_enabled=$(usex freetype)
+ module_mbedtls_enabled=$(usex mbedtls)
+ module_opus_enabled=$(usex opus)
+ module_theora_enabled=$(usex theora)
+ module_vorbis_enabled=$(usex vorbis)
+ module_webp_enabled=$(usex webp)
+ platform=x11
+ pulseaudio=$(usex pulseaudio)
+ tools=yes
+ progress=false
+ verbose=true
+ udev=$(usex udev)
+ use_llvm=$(usex llvm)
+ use_lld=$(usex llvm)
+ use_lto=$(usex lto)
+ target=$(usex debug debug release_debug)
+ )
+}
+
+src_compile() {
+ escons "${MYSCONS[@]}"
+}
+
+src_install() {
+ newicon icon.svg ${PN}.svg
+ dobin bin/godot.*
+ if [[ "${ARCH}" == "amd64" ]]; then
+ if use llvm; then
+ make_desktop_entry godot.x11.tools.64.llvm Godot
+ with_desktop_entry=1
+ else
+ make_desktop_entry godot.x11.tools.64 Godot
+ with_desktop_entry=1
+ fi
+ fi
+
+ if [[ "${ARCH}" == "x86" ]]; then
+ if use llvm; then
+ make_desktop_entry godot.x11.tools.32.llvm Godot
+ with_desktop_entry=1
+ else
+ make_desktop_entry godot.x11.tools.32 Godot
+ with_desktop_entry=1
+ fi
+ fi
+
+ if ! [[ "${with_desktop_entry}" == "1" ]]; then
+ elog "Couldn't detect running architecture to create a desktop file."
+ fi
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2020-03-12 19:23 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2020-03-12 19:23 UTC (permalink / raw
To: gentoo-commits
commit: 06df98c7d4f65ace3c2e7bd52797244fa06f214b
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Thu Mar 12 19:21:27 2020 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Thu Mar 12 19:23:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=06df98c7
dev-games/godot-3.2.1
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 4 +-
.../godot/{godot-3.2.ebuild => godot-3.2.1.ebuild} | 2 +-
dev-games/godot/godot-9999.ebuild | 93 +++++++++++-----------
3 files changed, 49 insertions(+), 50 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index ef89ee4..ff9cda7 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,5 +1,5 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
-DIST 3.2-stable.zip 27425566 BLAKE2B 844e14e7ca850bede631675c831211e23f046f3205cb3ac46c24e880aa6edd55fb5537e160bd4af96c71ab816f68d47c58a123e80236b722ac0e321915aa9989 SHA512 2f63156a7d4f204052b59745b3d8717f440f2f5759adda414296b6c784e79a162f422e8c38a7d624c1f7be17175291e4602dd1416d41b3241ae425a25806beab
+DIST godot-3.2.1.zip 27511381 BLAKE2B a02b9340c1de6b04739665d73e071945c53835113eaf7e094b808ed421dd8c67d0f163d5351416c869a0756a69273477fed4a4a5ab3a96492abd103ed855c92a SHA512 5f39d2c4544cd159af04c7d1a73769fa91209474bf3952e1c9b602b9ca938e2ac03092e465a1a9b7f54866a2777cf59feac188d6ee0df3298d62f0f62deb111e
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
-EBUILD godot-3.2.ebuild 3628 BLAKE2B 87946423e0c5fdc6f390fb39a9d9fa08f9b52ef293d0f21b6bf967e465c95b5aeaacd5f6cec421d185d54c348fa19ab3a0468cda49bb8c4a2e7bc6952ee056b8 SHA512 e6ec086937b04bbea2f5e804843f02972d043a67047d605cf723bfa26e98a1eb2e1ae5e074eb2ab462b01eb386bc2a22f1b7d7081733ad6aefe83a6a38dbe1dc
+EBUILD godot-3.2.1.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
EBUILD godot-9999.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
diff --git a/dev-games/godot/godot-3.2.ebuild b/dev-games/godot/godot-3.2.1.ebuild
similarity index 99%
rename from dev-games/godot/godot-3.2.ebuild
rename to dev-games/godot/godot-3.2.1.ebuild
index 35d16df..2b8695e 100644
--- a/dev-games/godot/godot-3.2.ebuild
+++ b/dev-games/godot/godot-3.2.1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="https://github.com/godotengine/${PN}"
EGIT_BRANCH="master"
else
- SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
+ SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip -> ${P}.zip"
S="${WORKDIR}/${P}-stable"
KEYWORDS="~amd64 ~x86"
fi
diff --git a/dev-games/godot/godot-9999.ebuild b/dev-games/godot/godot-9999.ebuild
index 7dd7a3f..2b8695e 100644
--- a/dev-games/godot/godot-9999.ebuild
+++ b/dev-games/godot/godot-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python2_7 python3_{6..8} )
inherit eutils python-any-r1 scons-utils flag-o-matic llvm desktop
@@ -16,12 +16,13 @@ if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="https://github.com/godotengine/${PN}"
EGIT_BRANCH="master"
else
- SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip"
+ SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip -> ${P}.zip"
S="${WORKDIR}/${P}-stable"
KEYWORDS="~amd64 ~x86"
fi
-IUSE="debug
+IUSE="
+ debug
+enet
+freetype
llvm
@@ -32,47 +33,46 @@ IUSE="debug
theora
+udev
+vorbis
- +webp
- +websockets"
+ +webp"
DEPEND="
- >=app-arch/bzip2-1.0.6-r6
- >=app-arch/lz4-0_p120
- >=app-arch/xz-utils-5.0.8
- >=dev-libs/json-c-0.11-r1
- dev-libs/libpcre2[pcre32]
- >=media-libs/alsa-lib-1.0.28
- >=media-libs/flac-1.3.1-r1
- >=media-libs/libogg-1.3.1
- >=media-libs/libsndfile-1.0.25-r1
- media-libs/libvpx
- >=media-libs/mesa-10.2.8[gles2]
- webp? ( media-libs/libwebp )
- opus? ( media-libs/opus )
- enet? ( net-libs/enet )
- >=net-libs/libasyncns-0.8-r3
- websockets? ( net-libs/libwebsockets )
- mbedtls? ( net-libs/mbedtls )
- net-libs/miniupnpc
- >=sys-apps/attr-2.4.47-r1
- >=sys-apps/tcp-wrappers-7.6.22-r1
- >=sys-apps/util-linux-2.25.2-r2
- !llvm? ( >=sys-devel/gcc-4.6.4:*[cxx] )
- >=sys-libs/gdbm-1.11
- >=sys-libs/glibc-2.20-r2
- >=sys-libs/libcap-2.22-r2
- >=sys-libs/zlib-1.2.8-r1
- >=x11-libs/libX11-1.6.2
- >=x11-libs/libXcursor-1.1.14
- >=x11-libs/libXinerama-1.1.3
- freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
- llvm? ( >=sys-devel/llvm-3.6.0 )
- >=media-libs/libpng-1.6.16:0=
- pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
- theora? ( media-libs/libtheora )
- udev? ( virtual/udev )
- virtual/glu
- vorbis? ( >=media-libs/libvorbis-1.3.4 )"
+ >=app-arch/bzip2-1.0.6-r6
+ >=app-arch/lz4-0_p120
+ >=app-arch/xz-utils-5.0.8
+ >=app-arch/zstd-1.4.4
+ >=dev-libs/json-c-0.11-r1
+ dev-libs/libpcre2[pcre32]
+ >=media-libs/alsa-lib-1.0.28
+ >=media-libs/flac-1.3.1-r1
+ >=media-libs/libogg-1.3.1
+ >=media-libs/libsndfile-1.0.25-r1
+ media-libs/libvpx
+ >=media-libs/mesa-10.2.8[gles2]
+ webp? ( media-libs/libwebp )
+ opus? ( media-libs/opus )
+ enet? ( net-libs/enet )
+ >=net-libs/libasyncns-0.8-r3
+ mbedtls? ( net-libs/mbedtls )
+ net-libs/miniupnpc
+ >=sys-apps/attr-2.4.47-r1
+ >=sys-apps/tcp-wrappers-7.6.22-r1
+ >=sys-apps/util-linux-2.25.2-r2
+ !llvm? ( >=sys-devel/gcc-4.6.4:*[cxx] )
+ >=sys-libs/gdbm-1.11
+ >=sys-libs/glibc-2.20-r2
+ >=sys-libs/libcap-2.22-r2
+ >=sys-libs/zlib-1.2.8-r1
+ >=x11-libs/libX11-1.6.2
+ >=x11-libs/libXcursor-1.1.14
+ >=x11-libs/libXinerama-1.1.3
+ freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
+ llvm? ( >=sys-devel/llvm-3.6.0 )
+ >=media-libs/libpng-1.6.16:0=
+ pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
+ theora? ( media-libs/libtheora )
+ udev? ( virtual/udev )
+ virtual/glu
+ vorbis? ( >=media-libs/libvorbis-1.3.4 )"
RDEPEND="${DEPEND}"
@@ -92,22 +92,21 @@ src_configure() {
MYSCONS=(
CC="$(tc-getCC)"
+ CXX="$(tc-getCXX)"
builtin_enet=$(usex enet)
builtin_freetype=no
builtin_libogg=no
builtin_libpng=no
- builtin_libpng=no
builtin_libtheora=$(usex theora)
builtin_libvorbis=$(usex vorbis)
builtin_libvpx=no
builtin_libwebp=$(usex webp)
- builtin_libwebsockets=$(usex websockets)
builtin_mbedtls=$(usex mbedtls)
builtin_miniupnpc=no
builtin_opus=$(usex opus)
builtin_pcre2=no
builtin_zlib=no
- #builtin_zstd=no # Compilation error due to undeclared identifiers
+ builtin_zstd=no
module_enet_enabled=$(usex enet)
module_freetype_enabled=$(usex freetype)
module_mbedtls_enabled=$(usex mbedtls)
@@ -115,7 +114,6 @@ src_configure() {
module_theora_enabled=$(usex theora)
module_vorbis_enabled=$(usex vorbis)
module_webp_enabled=$(usex webp)
- module_websocket_enabled=$(usex websockets)
platform=x11
pulseaudio=$(usex pulseaudio)
tools=yes
@@ -123,6 +121,7 @@ src_configure() {
verbose=true
udev=$(usex udev)
use_llvm=$(usex llvm)
+ use_lld=$(usex llvm)
use_lto=$(usex lto)
target=$(usex debug debug release_debug)
)
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2020-03-13 7:56 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2020-03-13 7:56 UTC (permalink / raw
To: gentoo-commits
commit: a42fa36e8c29f81d729483c410cd02b191ba742a
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Fri Mar 13 07:56:08 2020 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Fri Mar 13 07:56:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=a42fa36e
Fix checksum for dev-games/godot-9999
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index ff9cda7..2fcad7e 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -2,4 +2,4 @@ DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a4
DIST godot-3.2.1.zip 27511381 BLAKE2B a02b9340c1de6b04739665d73e071945c53835113eaf7e094b808ed421dd8c67d0f163d5351416c869a0756a69273477fed4a4a5ab3a96492abd103ed855c92a SHA512 5f39d2c4544cd159af04c7d1a73769fa91209474bf3952e1c9b602b9ca938e2ac03092e465a1a9b7f54866a2777cf59feac188d6ee0df3298d62f0f62deb111e
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
EBUILD godot-3.2.1.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
-EBUILD godot-9999.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
+EBUILD godot-9999.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2020-06-29 10:56 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2020-06-29 10:56 UTC (permalink / raw
To: gentoo-commits
commit: b3ff72176871717d8953dabce2c4b24caaff4310
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Mon Jun 29 10:55:42 2020 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Mon Jun 29 10:55:42 2020 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=b3ff7217
dev-games/godot-3.2.2
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 4 ++--
dev-games/godot/{godot-3.2.1.ebuild => godot-3.2.2.ebuild} | 0
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 2fcad7e..43c2589 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,5 +1,5 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
-DIST godot-3.2.1.zip 27511381 BLAKE2B a02b9340c1de6b04739665d73e071945c53835113eaf7e094b808ed421dd8c67d0f163d5351416c869a0756a69273477fed4a4a5ab3a96492abd103ed855c92a SHA512 5f39d2c4544cd159af04c7d1a73769fa91209474bf3952e1c9b602b9ca938e2ac03092e465a1a9b7f54866a2777cf59feac188d6ee0df3298d62f0f62deb111e
+DIST godot-3.2.2.zip 27714032 BLAKE2B 68d936570a783b902f72bfb80d4e8d9a112e8d741e41167a4af060321ea68d808357c5d45d2c0e835f1edfb70b26ed222c116678ea2b673e9f45ef15217f0b01 SHA512 d33c2a9c9c234a3c89bf8e533f5bdbfa4483f8794d90e928e7fe4acfab0fca9b1acd8cfb8d7606bdfe94d1275b3b07dde512cc0544dd3fc6d2dc8b1199664da2
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
-EBUILD godot-3.2.1.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
+EBUILD godot-3.2.2.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
EBUILD godot-9999.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
diff --git a/dev-games/godot/godot-3.2.1.ebuild b/dev-games/godot/godot-3.2.2.ebuild
similarity index 100%
rename from dev-games/godot/godot-3.2.1.ebuild
rename to dev-games/godot/godot-3.2.2.ebuild
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2020-08-20 7:18 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2020-08-20 7:18 UTC (permalink / raw
To: gentoo-commits
commit: d7c33873510292da260a8390e0aa992759f514e1
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Thu Aug 20 07:17:33 2020 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Thu Aug 20 07:18:31 2020 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=d7c33873
Fix dev-games/godot ebuilds
3.2.2 created the wrong desktop entries
9999 now builds the 4.0 development branch
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 4 +-
.../{godot-3.2.2.ebuild => godot-3.2.2-r1.ebuild} | 42 ++++++++++---------
dev-games/godot/godot-9999.ebuild | 47 +++++++++++++---------
3 files changed, 55 insertions(+), 38 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 43c2589..4e5a648 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,5 +1,5 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
DIST godot-3.2.2.zip 27714032 BLAKE2B 68d936570a783b902f72bfb80d4e8d9a112e8d741e41167a4af060321ea68d808357c5d45d2c0e835f1edfb70b26ed222c116678ea2b673e9f45ef15217f0b01 SHA512 d33c2a9c9c234a3c89bf8e533f5bdbfa4483f8794d90e928e7fe4acfab0fca9b1acd8cfb8d7606bdfe94d1275b3b07dde512cc0544dd3fc6d2dc8b1199664da2
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
-EBUILD godot-3.2.2.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
-EBUILD godot-9999.ebuild 3640 BLAKE2B eebf7b5a12e7c8d640c0370e087439323535f230972bf4da4680acc739a6fe84cfb37efb4cc329a4b2604f862293d0abb85de60912f5249ef21f01dc86fbf6b7 SHA512 1a128c8268fad428b141d2c58cec0ec691efea3689427857c8564a41d6274b830da04a2fd8377ae3a9e89e6da3749a7f049edc26adac8560dc8251b000ce8990
+EBUILD godot-3.2.2-r1.ebuild 3730 BLAKE2B 378949918f199d27642d9c624629dae68cf78d16fa20da97ce4f28bd6e56dfe9f6c05467231c9badffdfbffb2ba56d12760c6291bfffea8f42906f48bc24a66f SHA512 6a2d3ae793b0ad0ed776c6c1b44a4af647d925a38b1069944aa5959bfa34e79217bb20699ea57011f6afece446309562dc6e739a1c8f67d98228db91517edeb5
+EBUILD godot-9999.ebuild 3864 BLAKE2B c8e9d1a04a41488a7366b065478f9ce85aef54d95f752a596e30fc2e9547f197d7cb15bf871795d2e24855aefd9935072346b111c8629d322dfcded898c627a3 SHA512 7cddfd5ea520cd9170160b064e801d300c2ebf4dc4e32eb6ac5d9d3f96c4af623cb9d70ca0f6fc8fa78ca7b6c156a8f0bd502c518d1c5babfc5123ca594c13d2
diff --git a/dev-games/godot/godot-3.2.2.ebuild b/dev-games/godot/godot-3.2.2-r1.ebuild
similarity index 85%
rename from dev-games/godot/godot-3.2.2.ebuild
rename to dev-games/godot/godot-3.2.2-r1.ebuild
index 2b8695e..8648b1d 100644
--- a/dev-games/godot/godot-3.2.2.ebuild
+++ b/dev-games/godot/godot-3.2.2-r1.ebuild
@@ -33,7 +33,8 @@ IUSE="
theora
+udev
+vorbis
- +webp"
+ +webp
+ +X"
DEPEND="
>=app-arch/bzip2-1.0.6-r6
@@ -44,12 +45,17 @@ DEPEND="
dev-libs/libpcre2[pcre32]
>=media-libs/alsa-lib-1.0.28
>=media-libs/flac-1.3.1-r1
+ freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
>=media-libs/libogg-1.3.1
+ >=media-libs/libpng-1.6.16:0=
>=media-libs/libsndfile-1.0.25-r1
media-libs/libvpx
- >=media-libs/mesa-10.2.8[gles2]
+ theora? ( media-libs/libtheora )
+ vorbis? ( >=media-libs/libvorbis-1.3.4 )
webp? ( media-libs/libwebp )
opus? ( media-libs/opus )
+ >=media-libs/mesa-10.2.8[gles2]
+ pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
enet? ( net-libs/enet )
>=net-libs/libasyncns-0.8-r3
mbedtls? ( net-libs/mbedtls )
@@ -57,22 +63,22 @@ DEPEND="
>=sys-apps/attr-2.4.47-r1
>=sys-apps/tcp-wrappers-7.6.22-r1
>=sys-apps/util-linux-2.25.2-r2
- !llvm? ( >=sys-devel/gcc-4.6.4:*[cxx] )
+ !llvm? ( >=sys-devel/gcc-7.0.0:*[cxx] )
+ llvm? ( >=sys-devel/llvm-6.0.0 )
>=sys-libs/gdbm-1.11
>=sys-libs/glibc-2.20-r2
>=sys-libs/libcap-2.22-r2
>=sys-libs/zlib-1.2.8-r1
- >=x11-libs/libX11-1.6.2
- >=x11-libs/libXcursor-1.1.14
- >=x11-libs/libXinerama-1.1.3
- freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
- llvm? ( >=sys-devel/llvm-3.6.0 )
- >=media-libs/libpng-1.6.16:0=
- pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
- theora? ( media-libs/libtheora )
+ X? (
+ >=x11-libs/libX11-1.6.2
+ >=x11-libs/libXcursor-1.1.14
+ >=x11-libs/libXi-1.0.0
+ >=x11-libs/libXinerama-1.1.3
+ )
udev? ( virtual/udev )
- virtual/glu
- vorbis? ( >=media-libs/libvorbis-1.3.4 )"
+ virtual/glu"
+
+#dev-lang/yasm
RDEPEND="${DEPEND}"
@@ -114,7 +120,7 @@ src_configure() {
module_theora_enabled=$(usex theora)
module_vorbis_enabled=$(usex vorbis)
module_webp_enabled=$(usex webp)
- platform=x11
+ platform=$(usex X x11 server)
pulseaudio=$(usex pulseaudio)
tools=yes
progress=false
@@ -136,20 +142,20 @@ src_install() {
dobin bin/godot.*
if [[ "${ARCH}" == "amd64" ]]; then
if use llvm; then
- make_desktop_entry godot.x11.tools.64.llvm Godot
+ make_desktop_entry godot.x11.opt.tools.64.llvm Godot
with_desktop_entry=1
else
- make_desktop_entry godot.x11.tools.64 Godot
+ make_desktop_entry godot.x11.opt.tools.64 Godot
with_desktop_entry=1
fi
fi
if [[ "${ARCH}" == "x86" ]]; then
if use llvm; then
- make_desktop_entry godot.x11.tools.32.llvm Godot
+ make_desktop_entry godot.x11.opt.tools.32.llvm Godot
with_desktop_entry=1
else
- make_desktop_entry godot.x11.tools.32 Godot
+ make_desktop_entry godot.x11.opt.tools.32 Godot
with_desktop_entry=1
fi
fi
diff --git a/dev-games/godot/godot-9999.ebuild b/dev-games/godot/godot-9999.ebuild
index 2b8695e..99a1cb0 100644
--- a/dev-games/godot/godot-9999.ebuild
+++ b/dev-games/godot/godot-9999.ebuild
@@ -32,8 +32,10 @@ IUSE="
pulseaudio
theora
+udev
+ +vulkan
+vorbis
- +webp"
+ +webp
+ +X"
DEPEND="
>=app-arch/bzip2-1.0.6-r6
@@ -42,14 +44,21 @@ DEPEND="
>=app-arch/zstd-1.4.4
>=dev-libs/json-c-0.11-r1
dev-libs/libpcre2[pcre32]
+ dev-util/glslang
+ vulkan? ( dev-util/vulkan-headers )
>=media-libs/alsa-lib-1.0.28
>=media-libs/flac-1.3.1-r1
+ freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
>=media-libs/libogg-1.3.1
+ >=media-libs/libpng-1.6.16:0=
>=media-libs/libsndfile-1.0.25-r1
media-libs/libvpx
- >=media-libs/mesa-10.2.8[gles2]
+ theora? ( media-libs/libtheora )
+ vorbis? ( >=media-libs/libvorbis-1.3.4 )
webp? ( media-libs/libwebp )
opus? ( media-libs/opus )
+ >=media-libs/mesa-10.2.8[gles2]
+ pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
enet? ( net-libs/enet )
>=net-libs/libasyncns-0.8-r3
mbedtls? ( net-libs/mbedtls )
@@ -57,22 +66,22 @@ DEPEND="
>=sys-apps/attr-2.4.47-r1
>=sys-apps/tcp-wrappers-7.6.22-r1
>=sys-apps/util-linux-2.25.2-r2
- !llvm? ( >=sys-devel/gcc-4.6.4:*[cxx] )
+ !llvm? ( >=sys-devel/gcc-7.0.0:*[cxx] )
+ llvm? ( >=sys-devel/llvm-6.0.0 )
>=sys-libs/gdbm-1.11
>=sys-libs/glibc-2.20-r2
>=sys-libs/libcap-2.22-r2
>=sys-libs/zlib-1.2.8-r1
- >=x11-libs/libX11-1.6.2
- >=x11-libs/libXcursor-1.1.14
- >=x11-libs/libXinerama-1.1.3
- freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
- llvm? ( >=sys-devel/llvm-3.6.0 )
- >=media-libs/libpng-1.6.16:0=
- pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
- theora? ( media-libs/libtheora )
+ X? (
+ >=x11-libs/libX11-1.6.2
+ >=x11-libs/libXcursor-1.1.14
+ x11-libs/libXi
+ >=x11-libs/libXinerama-1.1.3
+ )
udev? ( virtual/udev )
- virtual/glu
- vorbis? ( >=media-libs/libvorbis-1.3.4 )"
+ virtual/glu"
+
+#dev-lang/yasm
RDEPEND="${DEPEND}"
@@ -95,6 +104,7 @@ src_configure() {
CXX="$(tc-getCXX)"
builtin_enet=$(usex enet)
builtin_freetype=no
+ builtin_glslang=no
builtin_libogg=no
builtin_libpng=no
builtin_libtheora=$(usex theora)
@@ -105,6 +115,7 @@ src_configure() {
builtin_miniupnpc=no
builtin_opus=$(usex opus)
builtin_pcre2=no
+ builtin_vulkan=$(usex vulkan)
builtin_zlib=no
builtin_zstd=no
module_enet_enabled=$(usex enet)
@@ -114,7 +125,7 @@ src_configure() {
module_theora_enabled=$(usex theora)
module_vorbis_enabled=$(usex vorbis)
module_webp_enabled=$(usex webp)
- platform=x11
+ platform=$(usex X linuxbsd server)
pulseaudio=$(usex pulseaudio)
tools=yes
progress=false
@@ -136,20 +147,20 @@ src_install() {
dobin bin/godot.*
if [[ "${ARCH}" == "amd64" ]]; then
if use llvm; then
- make_desktop_entry godot.x11.tools.64.llvm Godot
+ make_desktop_entry godot.linuxbsd.opt.tools.64.llvm Godot
with_desktop_entry=1
else
- make_desktop_entry godot.x11.tools.64 Godot
+ make_desktop_entry godot.linuxbsd.opt.tools.64 Godot
with_desktop_entry=1
fi
fi
if [[ "${ARCH}" == "x86" ]]; then
if use llvm; then
- make_desktop_entry godot.x11.tools.32.llvm Godot
+ make_desktop_entry godot.linuxbsd.opt.tools.32.llvm Godot
with_desktop_entry=1
else
- make_desktop_entry godot.x11.tools.32 Godot
+ make_desktop_entry godot.linuxbsd.opt.tools.32 Godot
with_desktop_entry=1
fi
fi
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2020-09-17 14:30 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2020-09-17 14:30 UTC (permalink / raw
To: gentoo-commits
commit: c2c61ac13b2dbf8a75a9304ab394d57cbc2040e5
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Thu Sep 17 14:30:24 2020 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Thu Sep 17 14:30:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=c2c61ac1
dev-games/godot-3.2.3
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 4 ++--
dev-games/godot/{godot-3.2.2-r1.ebuild => godot-3.2.3.ebuild} | 0
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 4e5a648..f4a048a 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,5 +1,5 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
-DIST godot-3.2.2.zip 27714032 BLAKE2B 68d936570a783b902f72bfb80d4e8d9a112e8d741e41167a4af060321ea68d808357c5d45d2c0e835f1edfb70b26ed222c116678ea2b673e9f45ef15217f0b01 SHA512 d33c2a9c9c234a3c89bf8e533f5bdbfa4483f8794d90e928e7fe4acfab0fca9b1acd8cfb8d7606bdfe94d1275b3b07dde512cc0544dd3fc6d2dc8b1199664da2
+DIST godot-3.2.3.zip 27949594 BLAKE2B 8ade9ebb742327b86ae7d645cf46c3bbb5e03ef07230c42d4113a599e978e03a64e189d08af578e26a569872ed569f0e95fdde8e1f482d02191855fe4e7e29c8 SHA512 2727a6adbca5065ce3d15dbee0aed213b3ac0a4aaa24fe3d34345afdf3e77eec45296d4141999cf51a04fae1d2785781351e77ac23fa7585e618d0f36aae910f
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
-EBUILD godot-3.2.2-r1.ebuild 3730 BLAKE2B 378949918f199d27642d9c624629dae68cf78d16fa20da97ce4f28bd6e56dfe9f6c05467231c9badffdfbffb2ba56d12760c6291bfffea8f42906f48bc24a66f SHA512 6a2d3ae793b0ad0ed776c6c1b44a4af647d925a38b1069944aa5959bfa34e79217bb20699ea57011f6afece446309562dc6e739a1c8f67d98228db91517edeb5
+EBUILD godot-3.2.3.ebuild 3730 BLAKE2B 378949918f199d27642d9c624629dae68cf78d16fa20da97ce4f28bd6e56dfe9f6c05467231c9badffdfbffb2ba56d12760c6291bfffea8f42906f48bc24a66f SHA512 6a2d3ae793b0ad0ed776c6c1b44a4af647d925a38b1069944aa5959bfa34e79217bb20699ea57011f6afece446309562dc6e739a1c8f67d98228db91517edeb5
EBUILD godot-9999.ebuild 3864 BLAKE2B c8e9d1a04a41488a7366b065478f9ce85aef54d95f752a596e30fc2e9547f197d7cb15bf871795d2e24855aefd9935072346b111c8629d322dfcded898c627a3 SHA512 7cddfd5ea520cd9170160b064e801d300c2ebf4dc4e32eb6ac5d9d3f96c4af623cb9d70ca0f6fc8fa78ca7b6c156a8f0bd502c518d1c5babfc5123ca594c13d2
diff --git a/dev-games/godot/godot-3.2.2-r1.ebuild b/dev-games/godot/godot-3.2.3.ebuild
similarity index 100%
rename from dev-games/godot/godot-3.2.2-r1.ebuild
rename to dev-games/godot/godot-3.2.3.ebuild
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2021-05-08 8:08 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2021-05-08 8:08 UTC (permalink / raw
To: gentoo-commits
commit: 6f828083c735e81d273247cf4a899812876c3f1e
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Sat May 8 08:08:32 2021 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Sat May 8 08:08:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=6f828083
Remove dev-games/godot-9999
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 1 -
dev-games/godot/godot-9999.ebuild | 171 --------------------------------------
2 files changed, 172 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index f4a048a..98f0e83 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -2,4 +2,3 @@ DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a4
DIST godot-3.2.3.zip 27949594 BLAKE2B 8ade9ebb742327b86ae7d645cf46c3bbb5e03ef07230c42d4113a599e978e03a64e189d08af578e26a569872ed569f0e95fdde8e1f482d02191855fe4e7e29c8 SHA512 2727a6adbca5065ce3d15dbee0aed213b3ac0a4aaa24fe3d34345afdf3e77eec45296d4141999cf51a04fae1d2785781351e77ac23fa7585e618d0f36aae910f
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
EBUILD godot-3.2.3.ebuild 3730 BLAKE2B 378949918f199d27642d9c624629dae68cf78d16fa20da97ce4f28bd6e56dfe9f6c05467231c9badffdfbffb2ba56d12760c6291bfffea8f42906f48bc24a66f SHA512 6a2d3ae793b0ad0ed776c6c1b44a4af647d925a38b1069944aa5959bfa34e79217bb20699ea57011f6afece446309562dc6e739a1c8f67d98228db91517edeb5
-EBUILD godot-9999.ebuild 3864 BLAKE2B c8e9d1a04a41488a7366b065478f9ce85aef54d95f752a596e30fc2e9547f197d7cb15bf871795d2e24855aefd9935072346b111c8629d322dfcded898c627a3 SHA512 7cddfd5ea520cd9170160b064e801d300c2ebf4dc4e32eb6ac5d9d3f96c4af623cb9d70ca0f6fc8fa78ca7b6c156a8f0bd502c518d1c5babfc5123ca594c13d2
diff --git a/dev-games/godot/godot-9999.ebuild b/dev-games/godot/godot-9999.ebuild
deleted file mode 100644
index 99a1cb0..0000000
--- a/dev-games/godot/godot-9999.ebuild
+++ /dev/null
@@ -1,171 +0,0 @@
-# Copyright 1999-2020 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{6..8} )
-
-inherit eutils python-any-r1 scons-utils flag-o-matic llvm desktop
-
-DESCRIPTION="Multi-platform 2D and 3D game engine"
-HOMEPAGE="http://godotengine.org"
-LICENSE="MIT"
-SLOT="0"
-
-if [[ ${PV} = 9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/godotengine/${PN}"
- EGIT_BRANCH="master"
-else
- SRC_URI="https://github.com/godotengine/${PN}/archive/${PV}-stable.zip -> ${P}.zip"
- S="${WORKDIR}/${P}-stable"
- KEYWORDS="~amd64 ~x86"
-fi
-
-IUSE="
- debug
- +enet
- +freetype
- llvm
- lto
- +mbedtls
- +opus
- pulseaudio
- theora
- +udev
- +vulkan
- +vorbis
- +webp
- +X"
-
-DEPEND="
- >=app-arch/bzip2-1.0.6-r6
- >=app-arch/lz4-0_p120
- >=app-arch/xz-utils-5.0.8
- >=app-arch/zstd-1.4.4
- >=dev-libs/json-c-0.11-r1
- dev-libs/libpcre2[pcre32]
- dev-util/glslang
- vulkan? ( dev-util/vulkan-headers )
- >=media-libs/alsa-lib-1.0.28
- >=media-libs/flac-1.3.1-r1
- freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
- >=media-libs/libogg-1.3.1
- >=media-libs/libpng-1.6.16:0=
- >=media-libs/libsndfile-1.0.25-r1
- media-libs/libvpx
- theora? ( media-libs/libtheora )
- vorbis? ( >=media-libs/libvorbis-1.3.4 )
- webp? ( media-libs/libwebp )
- opus? ( media-libs/opus )
- >=media-libs/mesa-10.2.8[gles2]
- pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
- enet? ( net-libs/enet )
- >=net-libs/libasyncns-0.8-r3
- mbedtls? ( net-libs/mbedtls )
- net-libs/miniupnpc
- >=sys-apps/attr-2.4.47-r1
- >=sys-apps/tcp-wrappers-7.6.22-r1
- >=sys-apps/util-linux-2.25.2-r2
- !llvm? ( >=sys-devel/gcc-7.0.0:*[cxx] )
- llvm? ( >=sys-devel/llvm-6.0.0 )
- >=sys-libs/gdbm-1.11
- >=sys-libs/glibc-2.20-r2
- >=sys-libs/libcap-2.22-r2
- >=sys-libs/zlib-1.2.8-r1
- X? (
- >=x11-libs/libX11-1.6.2
- >=x11-libs/libXcursor-1.1.14
- x11-libs/libXi
- >=x11-libs/libXinerama-1.1.3
- )
- udev? ( virtual/udev )
- virtual/glu"
-
-#dev-lang/yasm
-
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- python-any-r1_pkg_setup
- llvm_pkg_setup
-}
-
-src_configure() {
- if use llvm && ! tc-is-clang; then
- einfo "Enforcing the use of clang due to USE=llvm ..."
- CC=${CHOST}-clang
- CXX=${CHOST}-clang++
- fi
-
- strip-unsupported-flags
-
- MYSCONS=(
- CC="$(tc-getCC)"
- CXX="$(tc-getCXX)"
- builtin_enet=$(usex enet)
- builtin_freetype=no
- builtin_glslang=no
- builtin_libogg=no
- builtin_libpng=no
- builtin_libtheora=$(usex theora)
- builtin_libvorbis=$(usex vorbis)
- builtin_libvpx=no
- builtin_libwebp=$(usex webp)
- builtin_mbedtls=$(usex mbedtls)
- builtin_miniupnpc=no
- builtin_opus=$(usex opus)
- builtin_pcre2=no
- builtin_vulkan=$(usex vulkan)
- builtin_zlib=no
- builtin_zstd=no
- module_enet_enabled=$(usex enet)
- module_freetype_enabled=$(usex freetype)
- module_mbedtls_enabled=$(usex mbedtls)
- module_opus_enabled=$(usex opus)
- module_theora_enabled=$(usex theora)
- module_vorbis_enabled=$(usex vorbis)
- module_webp_enabled=$(usex webp)
- platform=$(usex X linuxbsd server)
- pulseaudio=$(usex pulseaudio)
- tools=yes
- progress=false
- verbose=true
- udev=$(usex udev)
- use_llvm=$(usex llvm)
- use_lld=$(usex llvm)
- use_lto=$(usex lto)
- target=$(usex debug debug release_debug)
- )
-}
-
-src_compile() {
- escons "${MYSCONS[@]}"
-}
-
-src_install() {
- newicon icon.svg ${PN}.svg
- dobin bin/godot.*
- if [[ "${ARCH}" == "amd64" ]]; then
- if use llvm; then
- make_desktop_entry godot.linuxbsd.opt.tools.64.llvm Godot
- with_desktop_entry=1
- else
- make_desktop_entry godot.linuxbsd.opt.tools.64 Godot
- with_desktop_entry=1
- fi
- fi
-
- if [[ "${ARCH}" == "x86" ]]; then
- if use llvm; then
- make_desktop_entry godot.linuxbsd.opt.tools.32.llvm Godot
- with_desktop_entry=1
- else
- make_desktop_entry godot.linuxbsd.opt.tools.32 Godot
- with_desktop_entry=1
- fi
- fi
-
- if ! [[ "${with_desktop_entry}" == "1" ]]; then
- elog "Couldn't detect running architecture to create a desktop file."
- fi
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2022-01-03 18:14 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2022-01-03 18:14 UTC (permalink / raw
To: gentoo-commits
commit: 5de3a7b4c863e0aa0c665edde3f525973690c882
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Mon Jan 3 18:12:49 2022 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Mon Jan 3 18:12:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=5de3a7b4
Fix dependency in dev-games/godot-3.2.3
It seems to always link against theora & theroadec, even when disabled.
A patch should probably have been created, but always having it as a
dependency and enabling the use flag by default was faster and easier.
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 2 +-
dev-games/godot/godot-3.2.3.ebuild | 20 ++++++++++----------
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 98f0e83..3587996 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,4 +1,4 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
DIST godot-3.2.3.zip 27949594 BLAKE2B 8ade9ebb742327b86ae7d645cf46c3bbb5e03ef07230c42d4113a599e978e03a64e189d08af578e26a569872ed569f0e95fdde8e1f482d02191855fe4e7e29c8 SHA512 2727a6adbca5065ce3d15dbee0aed213b3ac0a4aaa24fe3d34345afdf3e77eec45296d4141999cf51a04fae1d2785781351e77ac23fa7585e618d0f36aae910f
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
-EBUILD godot-3.2.3.ebuild 3730 BLAKE2B 378949918f199d27642d9c624629dae68cf78d16fa20da97ce4f28bd6e56dfe9f6c05467231c9badffdfbffb2ba56d12760c6291bfffea8f42906f48bc24a66f SHA512 6a2d3ae793b0ad0ed776c6c1b44a4af647d925a38b1069944aa5959bfa34e79217bb20699ea57011f6afece446309562dc6e739a1c8f67d98228db91517edeb5
+EBUILD godot-3.2.3.ebuild 3653 BLAKE2B e77bc594215f973ed463a84f520ddcfacb6a1b87524b0c34ad44e5f5eed915e6ce8b3b66b397c3756c4a459b924a9eebdc8df8e8eb77da2b3fd9345f55a530f3 SHA512 bf9b6d6c1a483b275188300286ea18ae13d361dff626b04388eb7222bd46c06d1a22ad8597d95504ee65886fe9466fb13b6bb0130449cb083fc2ac51218925ab
diff --git a/dev-games/godot/godot-3.2.3.ebuild b/dev-games/godot/godot-3.2.3.ebuild
index 8648b1d..31f3cb6 100644
--- a/dev-games/godot/godot-3.2.3.ebuild
+++ b/dev-games/godot/godot-3.2.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{6..8} )
+PYTHON_COMPAT=( python2_7 python3_{6..10} )
inherit eutils python-any-r1 scons-utils flag-o-matic llvm desktop
@@ -30,7 +30,7 @@ IUSE="
+mbedtls
+opus
pulseaudio
- theora
+ +theora
+udev
+vorbis
+webp
@@ -50,7 +50,7 @@ DEPEND="
>=media-libs/libpng-1.6.16:0=
>=media-libs/libsndfile-1.0.25-r1
media-libs/libvpx
- theora? ( media-libs/libtheora )
+ media-libs/libtheora
vorbis? ( >=media-libs/libvorbis-1.3.4 )
webp? ( media-libs/libwebp )
opus? ( media-libs/opus )
@@ -99,17 +99,17 @@ src_configure() {
MYSCONS=(
CC="$(tc-getCC)"
CXX="$(tc-getCXX)"
- builtin_enet=$(usex enet)
+ builtin_enet=no
builtin_freetype=no
builtin_libogg=no
builtin_libpng=no
- builtin_libtheora=$(usex theora)
- builtin_libvorbis=$(usex vorbis)
+ builtin_libtheora=no
+ builtin_libvorbis=no
builtin_libvpx=no
- builtin_libwebp=$(usex webp)
- builtin_mbedtls=$(usex mbedtls)
+ builtin_libwebp=no
+ builtin_mbedtls=no
builtin_miniupnpc=no
- builtin_opus=$(usex opus)
+ builtin_opus=no
builtin_pcre2=no
builtin_zlib=no
builtin_zstd=no
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/
@ 2022-01-03 18:36 Albert Diserholt
0 siblings, 0 replies; 15+ messages in thread
From: Albert Diserholt @ 2022-01-03 18:36 UTC (permalink / raw
To: gentoo-commits
commit: d2368a203249fd6c55fe603626a6bbeb098c9c6b
Author: Albert Diserholt <albert <AT> diserholt <DOT> com>
AuthorDate: Mon Jan 3 18:36:26 2022 +0000
Commit: Albert Diserholt <albert <AT> diserholt <DOT> com>
CommitDate: Mon Jan 3 18:36:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/user/Drauthius.git/commit/?id=d2368a20
Bump dev-games/godot-3.2.3
Signed-off-by: Albert Diserholt <albert <AT> diserholt.com>
dev-games/godot/Manifest | 2 +-
dev-games/godot/{godot-3.2.3.ebuild => godot-3.2.3-r1.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 3587996..1c2f08c 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,4 +1,4 @@
DIST 3.1.1-stable.zip 25427059 BLAKE2B 85c4df448f5af7f96a3f5a3ba8e23e7764f83e1a43b21807ccf3ba66356aa3ec1dc56242dcf7d0c7d1d9efcba56b7eab8cfc32e314d1f35978bd34d2c300f65e SHA512 509b144be7416174a487548b5708367f7ce743b0268a710d0dc9a9fb095eb368a218bf5cd591f38f90bb9a96fa24acab442c503f4ea91b485274503e381569cd
DIST godot-3.2.3.zip 27949594 BLAKE2B 8ade9ebb742327b86ae7d645cf46c3bbb5e03ef07230c42d4113a599e978e03a64e189d08af578e26a569872ed569f0e95fdde8e1f482d02191855fe4e7e29c8 SHA512 2727a6adbca5065ce3d15dbee0aed213b3ac0a4aaa24fe3d34345afdf3e77eec45296d4141999cf51a04fae1d2785781351e77ac23fa7585e618d0f36aae910f
EBUILD godot-3.1.1.ebuild 3794 BLAKE2B 110ee31e86a3a4202cffac3be24dc3037430fd2bc9e4b1c9a6d67c730f5d5250c4df9f539dabb38465a2196877280696cebaf638fdb1031050ab97bf45be9f12 SHA512 af13c9c329ac5b7d33272c0bccfe0e02663d98dd09d4e3342a58c7a083d9b7df0ab5c38fd51ac5bfa5cdbe51f14865f59a8cab20010acec98b5a7ad9825d60b9
-EBUILD godot-3.2.3.ebuild 3653 BLAKE2B e77bc594215f973ed463a84f520ddcfacb6a1b87524b0c34ad44e5f5eed915e6ce8b3b66b397c3756c4a459b924a9eebdc8df8e8eb77da2b3fd9345f55a530f3 SHA512 bf9b6d6c1a483b275188300286ea18ae13d361dff626b04388eb7222bd46c06d1a22ad8597d95504ee65886fe9466fb13b6bb0130449cb083fc2ac51218925ab
+EBUILD godot-3.2.3-r1.ebuild 3653 BLAKE2B e77bc594215f973ed463a84f520ddcfacb6a1b87524b0c34ad44e5f5eed915e6ce8b3b66b397c3756c4a459b924a9eebdc8df8e8eb77da2b3fd9345f55a530f3 SHA512 bf9b6d6c1a483b275188300286ea18ae13d361dff626b04388eb7222bd46c06d1a22ad8597d95504ee65886fe9466fb13b6bb0130449cb083fc2ac51218925ab
diff --git a/dev-games/godot/godot-3.2.3.ebuild b/dev-games/godot/godot-3.2.3-r1.ebuild
similarity index 100%
rename from dev-games/godot/godot-3.2.3.ebuild
rename to dev-games/godot/godot-3.2.3-r1.ebuild
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2022-01-03 18:37 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-03 18:36 [gentoo-commits] repo/user/Drauthius:master commit in: dev-games/godot/ Albert Diserholt
-- strict thread matches above, loose matches on Subject: below --
2022-01-03 18:14 Albert Diserholt
2021-05-08 8:08 Albert Diserholt
2020-09-17 14:30 Albert Diserholt
2020-08-20 7:18 Albert Diserholt
2020-06-29 10:56 Albert Diserholt
2020-03-13 7:56 Albert Diserholt
2020-03-12 19:23 Albert Diserholt
2020-03-01 16:06 Albert Diserholt
2019-08-10 8:13 Albert Diserholt
2019-07-07 10:20 Albert Diserholt
2019-07-07 10:20 Albert Diserholt
2019-06-22 10:31 Albert Diserholt
2019-04-26 19:01 Albert Diserholt
2019-04-20 15:35 Albert Diserholt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox