* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2019-09-07 22:40 James Le Cuirot
0 siblings, 0 replies; 12+ messages in thread
From: James Le Cuirot @ 2019-09-07 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 83b6c7da77061484a32bab7a95da5f7ecc67c996
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 7 22:37:58 2019 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Sep 7 22:39:11 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83b6c7da
games-engines/box2d: New package
I had hoped to use this for Shovel Knight but it needs a custom
version. Adding it anyway.
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
games-engines/box2d/Manifest | 3 +++
games-engines/box2d/box2d-2.1.2.ebuild | 45 ++++++++++++++++++++++++++++++++++
games-engines/box2d/box2d-2.2.1.ebuild | 45 ++++++++++++++++++++++++++++++++++
games-engines/box2d/box2d-2.3.1.ebuild | 43 ++++++++++++++++++++++++++++++++
games-engines/box2d/metadata.xml | 11 +++++++++
5 files changed, 147 insertions(+)
diff --git a/games-engines/box2d/Manifest b/games-engines/box2d/Manifest
new file mode 100644
index 00000000000..26dc21a63d3
--- /dev/null
+++ b/games-engines/box2d/Manifest
@@ -0,0 +1,3 @@
+DIST Box2D_v2.1.2.zip 3100922 BLAKE2B 1f2d2b201517ef2adb1b1a2c1f62f94b2f7cde6f857935dba11544b931481a2b87e036269f34571b99f5272b9dd985dcf463d153b628c54163166e2ae77d95d5 SHA512 cc50be6db8d02a4ddbb61208f67b05c264e24ab96885debc708b1b284957f18193b6a57d84d378cb0ba33ab3fc9a0f5c534b8ca9f8982e7e0fe656115cb5a82f
+DIST Box2D_v2.2.1.zip 3637276 BLAKE2B 844b589b43b916e20cb594ba160c4a025b2fb98bacb7c856884ec728c7b67f44ed86151df0b005ce1c813d74c8c55ce93e5060b4b9387662870cdcda9cdea76e SHA512 3d0d4eb06d9e2c425ffafb26839032cae897a4a82f27356ccad2fc764a02c3ca6dd53b24c51196291f5492f795356fb03575f8c75e599467577ba19165ccdcb4
+DIST box2d-2.3.1.tar.gz 1553222 BLAKE2B e21eafb9d807c5f241486c875bd8ee350c3e44601801b98d9ee35e2343244f5c72998cbc1e9f687d3a72033a76361a1ff7dd3bacad50f21212fca3618e887bb6 SHA512 22e31005644ae1f5a947149dee832286b0d5a96648a0e9766c32a9a047ae839b4354403eaf7040895074cf3bd33bb298e65053cf1b5b67a6a23fbf3fd5777dd5
diff --git a/games-engines/box2d/box2d-2.1.2.ebuild b/games-engines/box2d/box2d-2.1.2.ebuild
new file mode 100644
index 00000000000..953853c4921
--- /dev/null
+++ b/games-engines/box2d/box2d-2.1.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson multilib
+
+MY_PN="Box2D"
+DESCRIPTION="A C++ engine for simulating rigid bodies in 2D games"
+HOMEPAGE="https://box2d.org/"
+SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${MY_PN}_v${PV}.zip"
+LICENSE="ZLIB"
+SLOT="$(ver_cut 1-2).0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/${MY_PN}_v${PV}/${MY_PN}"
+
+src_prepare() {
+ # This version supports CMake but upstream has dropped it since this
+ # release. They now use Premake but this Meson file is actually
+ # simpler! Installation is manual but that's true for Premake too.
+ cat > meson.build <<EOF || die
+project('${MY_PN}', 'cpp')
+shared_library(
+ '${MY_PN}',
+ $(find ${MY_PN} -name "*.cpp" -printf "'%p', ")
+ soversion: '${SLOT}', install : true
+)
+EOF
+
+ default
+}
+
+src_install() {
+ dodoc Readme.txt
+ dolib.so "${BUILD_DIR}"/lib${MY_PN}$(get_libname ${SLOT})
+
+ local FILE
+ for FILE in $(find ${MY_PN} -name *.h); do
+ insinto "/usr/include/${MY_PN}-${SLOT}/${FILE%/*}"
+ doins "${FILE}"
+ done
+}
diff --git a/games-engines/box2d/box2d-2.2.1.ebuild b/games-engines/box2d/box2d-2.2.1.ebuild
new file mode 100644
index 00000000000..5663da2c4f6
--- /dev/null
+++ b/games-engines/box2d/box2d-2.2.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson multilib
+
+MY_PN="Box2D"
+DESCRIPTION="A C++ engine for simulating rigid bodies in 2D games"
+HOMEPAGE="https://box2d.org/"
+SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${MY_PN}_v${PV}.zip"
+LICENSE="ZLIB"
+SLOT="$(ver_cut 1-2).0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/${MY_PN}_v${PV}"
+
+src_prepare() {
+ # This version supports CMake but upstream has dropped it since this
+ # release. They now use Premake but this Meson file is actually
+ # simpler! Installation is manual but that's true for Premake too.
+ cat > meson.build <<EOF || die
+project('${MY_PN}', 'cpp')
+shared_library(
+ '${MY_PN}',
+ $(find ${MY_PN} -name "*.cpp" -printf "'%p', ")
+ soversion: '${SLOT}', install : true
+)
+EOF
+
+ default
+}
+
+src_install() {
+ dodoc Readme.txt
+ dolib.so "${BUILD_DIR}"/lib${MY_PN}$(get_libname ${SLOT})
+
+ local FILE
+ for FILE in $(find ${MY_PN} -name *.h); do
+ insinto "/usr/include/${MY_PN}-${SLOT}/${FILE%/*}"
+ doins "${FILE}"
+ done
+}
diff --git a/games-engines/box2d/box2d-2.3.1.ebuild b/games-engines/box2d/box2d-2.3.1.ebuild
new file mode 100644
index 00000000000..9a083d4ffb0
--- /dev/null
+++ b/games-engines/box2d/box2d-2.3.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson multilib
+
+MY_PN="Box2D"
+DESCRIPTION="A C++ engine for simulating rigid bodies in 2D games"
+HOMEPAGE="https://box2d.org/"
+SRC_URI="https://github.com/erincatto/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="ZLIB"
+SLOT="$(ver_cut 1-2).0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_PN}-${PV}/${MY_PN}"
+
+src_prepare() {
+ # This version supports CMake but upstream has dropped it since this
+ # release. They now use Premake but this Meson file is actually
+ # simpler! Installation is manual but that's true for Premake too.
+ cat > meson.build <<EOF || die
+project('${MY_PN}', 'cpp')
+shared_library(
+ '${MY_PN}',
+ $(find ${MY_PN} -name "*.cpp" -printf "'%p', ")
+ soversion: '${SLOT}', install : true
+)
+EOF
+
+ default
+}
+
+src_install() {
+ dodoc {Changes,Readme}.txt
+ dolib.so "${BUILD_DIR}"/lib${MY_PN}$(get_libname ${SLOT})
+
+ local FILE
+ for FILE in $(find ${MY_PN} -name *.h); do
+ insinto "/usr/include/${MY_PN}-${SLOT}/${FILE%/*}"
+ doins "${FILE}"
+ done
+}
diff --git a/games-engines/box2d/metadata.xml b/games-engines/box2d/metadata.xml
new file mode 100644
index 00000000000..f73e6cf8587
--- /dev/null
+++ b/games-engines/box2d/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>games@gentoo.org</email>
+ <name>Gentoo Games Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">erincatto/Box2D</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-03-13 15:51 Andreas Sturmlechner
0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2021-03-13 15:51 UTC (permalink / raw
To: gentoo-commits
commit: 73d8ab63c15decd6ddacebddb3d3c1a3bbfa9044
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 13 15:50:27 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 13 15:50:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d8ab63
games-engines/box2d: Drop slotted versions 2.1.2, 2.2.1, 2.3.1
Acked-by: James Le Cuirot <chewi <AT> gentoo.org>
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
games-engines/box2d/Manifest | 3 ---
games-engines/box2d/box2d-2.1.2.ebuild | 45 ----------------------------------
games-engines/box2d/box2d-2.2.1.ebuild | 45 ----------------------------------
games-engines/box2d/box2d-2.3.1.ebuild | 43 --------------------------------
4 files changed, 136 deletions(-)
diff --git a/games-engines/box2d/Manifest b/games-engines/box2d/Manifest
index 95d6cad6ee1..0f3e700ba93 100644
--- a/games-engines/box2d/Manifest
+++ b/games-engines/box2d/Manifest
@@ -1,4 +1 @@
-DIST Box2D_v2.1.2.zip 3100922 BLAKE2B 1f2d2b201517ef2adb1b1a2c1f62f94b2f7cde6f857935dba11544b931481a2b87e036269f34571b99f5272b9dd985dcf463d153b628c54163166e2ae77d95d5 SHA512 cc50be6db8d02a4ddbb61208f67b05c264e24ab96885debc708b1b284957f18193b6a57d84d378cb0ba33ab3fc9a0f5c534b8ca9f8982e7e0fe656115cb5a82f
-DIST Box2D_v2.2.1.zip 3637276 BLAKE2B 844b589b43b916e20cb594ba160c4a025b2fb98bacb7c856884ec728c7b67f44ed86151df0b005ce1c813d74c8c55ce93e5060b4b9387662870cdcda9cdea76e SHA512 3d0d4eb06d9e2c425ffafb26839032cae897a4a82f27356ccad2fc764a02c3ca6dd53b24c51196291f5492f795356fb03575f8c75e599467577ba19165ccdcb4
-DIST box2d-2.3.1.tar.gz 1553222 BLAKE2B e21eafb9d807c5f241486c875bd8ee350c3e44601801b98d9ee35e2343244f5c72998cbc1e9f687d3a72033a76361a1ff7dd3bacad50f21212fca3618e887bb6 SHA512 22e31005644ae1f5a947149dee832286b0d5a96648a0e9766c32a9a047ae839b4354403eaf7040895074cf3bd33bb298e65053cf1b5b67a6a23fbf3fd5777dd5
DIST box2d-2.4.1.tar.gz 1224516 BLAKE2B 4f268c082d6c51d574fe6974351a64e98693e7eb71aa36626561fe23cb5fa890c77946e34d91fce92298af7e723c34306dfc6a934251a8566f431821397d1b82 SHA512 d900f925b77906777719c91488bdc5e2df1ad1f4a8ca39a574229f5e57070e3a843bdd7530e817112605fde6d82145c872d8afdfc65b84531a73199098c81162
diff --git a/games-engines/box2d/box2d-2.1.2.ebuild b/games-engines/box2d/box2d-2.1.2.ebuild
deleted file mode 100644
index 953853c4921..00000000000
--- a/games-engines/box2d/box2d-2.1.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson multilib
-
-MY_PN="Box2D"
-DESCRIPTION="A C++ engine for simulating rigid bodies in 2D games"
-HOMEPAGE="https://box2d.org/"
-SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${MY_PN}_v${PV}.zip"
-LICENSE="ZLIB"
-SLOT="$(ver_cut 1-2).0"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="app-arch/unzip"
-
-S="${WORKDIR}/${MY_PN}_v${PV}/${MY_PN}"
-
-src_prepare() {
- # This version supports CMake but upstream has dropped it since this
- # release. They now use Premake but this Meson file is actually
- # simpler! Installation is manual but that's true for Premake too.
- cat > meson.build <<EOF || die
-project('${MY_PN}', 'cpp')
-shared_library(
- '${MY_PN}',
- $(find ${MY_PN} -name "*.cpp" -printf "'%p', ")
- soversion: '${SLOT}', install : true
-)
-EOF
-
- default
-}
-
-src_install() {
- dodoc Readme.txt
- dolib.so "${BUILD_DIR}"/lib${MY_PN}$(get_libname ${SLOT})
-
- local FILE
- for FILE in $(find ${MY_PN} -name *.h); do
- insinto "/usr/include/${MY_PN}-${SLOT}/${FILE%/*}"
- doins "${FILE}"
- done
-}
diff --git a/games-engines/box2d/box2d-2.2.1.ebuild b/games-engines/box2d/box2d-2.2.1.ebuild
deleted file mode 100644
index 5663da2c4f6..00000000000
--- a/games-engines/box2d/box2d-2.2.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson multilib
-
-MY_PN="Box2D"
-DESCRIPTION="A C++ engine for simulating rigid bodies in 2D games"
-HOMEPAGE="https://box2d.org/"
-SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${MY_PN}_v${PV}.zip"
-LICENSE="ZLIB"
-SLOT="$(ver_cut 1-2).0"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="app-arch/unzip"
-
-S="${WORKDIR}/${MY_PN}_v${PV}"
-
-src_prepare() {
- # This version supports CMake but upstream has dropped it since this
- # release. They now use Premake but this Meson file is actually
- # simpler! Installation is manual but that's true for Premake too.
- cat > meson.build <<EOF || die
-project('${MY_PN}', 'cpp')
-shared_library(
- '${MY_PN}',
- $(find ${MY_PN} -name "*.cpp" -printf "'%p', ")
- soversion: '${SLOT}', install : true
-)
-EOF
-
- default
-}
-
-src_install() {
- dodoc Readme.txt
- dolib.so "${BUILD_DIR}"/lib${MY_PN}$(get_libname ${SLOT})
-
- local FILE
- for FILE in $(find ${MY_PN} -name *.h); do
- insinto "/usr/include/${MY_PN}-${SLOT}/${FILE%/*}"
- doins "${FILE}"
- done
-}
diff --git a/games-engines/box2d/box2d-2.3.1.ebuild b/games-engines/box2d/box2d-2.3.1.ebuild
deleted file mode 100644
index 9a083d4ffb0..00000000000
--- a/games-engines/box2d/box2d-2.3.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson multilib
-
-MY_PN="Box2D"
-DESCRIPTION="A C++ engine for simulating rigid bodies in 2D games"
-HOMEPAGE="https://box2d.org/"
-SRC_URI="https://github.com/erincatto/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="ZLIB"
-SLOT="$(ver_cut 1-2).0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}/${MY_PN}-${PV}/${MY_PN}"
-
-src_prepare() {
- # This version supports CMake but upstream has dropped it since this
- # release. They now use Premake but this Meson file is actually
- # simpler! Installation is manual but that's true for Premake too.
- cat > meson.build <<EOF || die
-project('${MY_PN}', 'cpp')
-shared_library(
- '${MY_PN}',
- $(find ${MY_PN} -name "*.cpp" -printf "'%p', ")
- soversion: '${SLOT}', install : true
-)
-EOF
-
- default
-}
-
-src_install() {
- dodoc {Changes,Readme}.txt
- dolib.so "${BUILD_DIR}"/lib${MY_PN}$(get_libname ${SLOT})
-
- local FILE
- for FILE in $(find ${MY_PN} -name *.h); do
- insinto "/usr/include/${MY_PN}-${SLOT}/${FILE%/*}"
- doins "${FILE}"
- done
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-03-13 15:51 Andreas Sturmlechner
0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2021-03-13 15:51 UTC (permalink / raw
To: gentoo-commits
commit: cb3b57d67dd0f914de7e39bd23ff8688a732d535
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 12 22:00:21 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 13 15:46:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb3b57d6
games-engines/box2d: 2.4.1 version bump, use cmake, drop slotting
Closes: https://bugs.gentoo.org/737890
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
games-engines/box2d/Manifest | 1 +
games-engines/box2d/box2d-2.4.1.ebuild | 14 ++++++++++++++
2 files changed, 15 insertions(+)
diff --git a/games-engines/box2d/Manifest b/games-engines/box2d/Manifest
index 26dc21a63d3..95d6cad6ee1 100644
--- a/games-engines/box2d/Manifest
+++ b/games-engines/box2d/Manifest
@@ -1,3 +1,4 @@
DIST Box2D_v2.1.2.zip 3100922 BLAKE2B 1f2d2b201517ef2adb1b1a2c1f62f94b2f7cde6f857935dba11544b931481a2b87e036269f34571b99f5272b9dd985dcf463d153b628c54163166e2ae77d95d5 SHA512 cc50be6db8d02a4ddbb61208f67b05c264e24ab96885debc708b1b284957f18193b6a57d84d378cb0ba33ab3fc9a0f5c534b8ca9f8982e7e0fe656115cb5a82f
DIST Box2D_v2.2.1.zip 3637276 BLAKE2B 844b589b43b916e20cb594ba160c4a025b2fb98bacb7c856884ec728c7b67f44ed86151df0b005ce1c813d74c8c55ce93e5060b4b9387662870cdcda9cdea76e SHA512 3d0d4eb06d9e2c425ffafb26839032cae897a4a82f27356ccad2fc764a02c3ca6dd53b24c51196291f5492f795356fb03575f8c75e599467577ba19165ccdcb4
DIST box2d-2.3.1.tar.gz 1553222 BLAKE2B e21eafb9d807c5f241486c875bd8ee350c3e44601801b98d9ee35e2343244f5c72998cbc1e9f687d3a72033a76361a1ff7dd3bacad50f21212fca3618e887bb6 SHA512 22e31005644ae1f5a947149dee832286b0d5a96648a0e9766c32a9a047ae839b4354403eaf7040895074cf3bd33bb298e65053cf1b5b67a6a23fbf3fd5777dd5
+DIST box2d-2.4.1.tar.gz 1224516 BLAKE2B 4f268c082d6c51d574fe6974351a64e98693e7eb71aa36626561fe23cb5fa890c77946e34d91fce92298af7e723c34306dfc6a934251a8566f431821397d1b82 SHA512 d900f925b77906777719c91488bdc5e2df1ad1f4a8ca39a574229f5e57070e3a843bdd7530e817112605fde6d82145c872d8afdfc65b84531a73199098c81162
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
new file mode 100644
index 00000000000..60c6f3ccd48
--- /dev/null
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++ engine for simulating rigid bodies in 2D games"
+HOMEPAGE="https://box2d.org/"
+SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-03-13 22:21 Andreas Sturmlechner
0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2021-03-13 22:21 UTC (permalink / raw
To: gentoo-commits
commit: f5b25c9fd1c98384788a00adfba5e519b6c91551
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 13 22:20:43 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 13 22:21:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5b25c9f
games-engines/box2d: Add IUSE=doc, set BOX2D_BUILD_TESTBED=OFF
Closes: https://bugs.gentoo.org/775854
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index 60c6f3ccd48..e75f1f08767 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -12,3 +12,14 @@ SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+BDEPEND="doc? ( app-doc/doxygen )"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBOX2D_BUILD_TESTBED=OFF # bundled libs, broken anyway right now
+ -DBOX2D_BUILD_DOCS=$(usex doc)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-03-17 1:09 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2021-03-17 1:09 UTC (permalink / raw
To: gentoo-commits
commit: 537e18547c4a923ec4856d03f81ab1d8f39953cf
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 17 01:09:43 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 17 01:09:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=537e1854
games-engines/box2d: Keyword 2.4.1 ppc64, #775848
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index e75f1f08767..63093288e00 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="doc"
BDEPEND="doc? ( app-doc/doxygen )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-03-28 18:22 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2021-03-28 18:22 UTC (permalink / raw
To: gentoo-commits
commit: dbdbac3a500b50a3a6f04a96795c8d70d96d16ca
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 18:22:00 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 28 18:22:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbdbac3a
games-engines/box2d: Keyword 2.4.1 arm, #775848
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index 63093288e00..3cb3ec2b1d7 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
IUSE="doc"
BDEPEND="doc? ( app-doc/doxygen )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-04-23 16:11 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2021-04-23 16:11 UTC (permalink / raw
To: gentoo-commits
commit: 4a0bfe92bb65446f8df7bc87dc34387c3658aeb3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 23 16:11:48 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 23 16:11:48 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a0bfe92
games-engines/box2d: Keyword 2.4.1 arm64, #775848
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index 3cb3ec2b1d7..5e4e5ca8df3 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="doc"
BDEPEND="doc? ( app-doc/doxygen )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-06-01 9:00 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2021-06-01 9:00 UTC (permalink / raw
To: gentoo-commits
commit: a473d35f8598e5d01ff42fe056fa60ce37bca561
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 1 08:59:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 08:59:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a473d35f
games-engines/box2d: Stabilize 2.4.1 amd64, #788112
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index a5f18ba517b..9dfc4358d3d 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
IUSE="doc"
BDEPEND="doc? ( app-doc/doxygen )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-09-05 5:48 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2021-09-05 5:48 UTC (permalink / raw
To: gentoo-commits
commit: adea094719995c15eb6642c5cc7691899972ad80
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 5 03:02:11 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 5 05:24:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adea0947
games-engines/box2d: conditionally build tests
This is also a workaround for the glibc 2.34 build failure.
Bug: https://bugs.gentoo.org/806342
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index 9dfc4358d3d..bbb16ef9e92 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -12,13 +12,15 @@ SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-IUSE="doc"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
BDEPEND="doc? ( app-doc/doxygen )"
src_configure() {
local mycmakeargs=(
-DBOX2D_BUILD_TESTBED=OFF # bundled libs, broken anyway right now
+ -DBOX2D_BUILD_UNIT_TESTS=$(usex test)
-DBOX2D_BUILD_DOCS=$(usex doc)
)
cmake_src_configure
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-10-08 11:18 Ionen Wolkens
0 siblings, 0 replies; 12+ messages in thread
From: Ionen Wolkens @ 2021-10-08 11:18 UTC (permalink / raw
To: gentoo-commits
commit: eafd348ed8913276c442bfbbc0c7d388174ef99b
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 8 11:14:11 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Oct 8 11:17:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eafd348e
games-engines/box2d: actually run built tests
Not much sense in having a new IUSE=test if not running tests
(testbed still disabled, unsure if can resonably run these here).
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index bbb16ef9e92..0fe84b500b2 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -25,3 +25,7 @@ src_configure() {
)
cmake_src_configure
}
+
+src_test() {
+ "${BUILD_DIR}"/bin/unit_test || die
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2021-10-11 0:40 Ionen Wolkens
0 siblings, 0 replies; 12+ messages in thread
From: Ionen Wolkens @ 2021-10-11 0:40 UTC (permalink / raw
To: gentoo-commits
commit: e27625bafd1ff9d1e04b6e8b308638723531ee4c
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 8 12:26:59 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 00:39:12 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e27625ba
games-engines/box2d: unbundle doctest to fix tests with glibc-2.34
Skipping leaving a bugref in the ebuild not to imply this should be
removed after it's fixed with glibc-2.34 (upstream has bumped
doctest in upcoming version, but may as well use system's anyway).
While not the cleanest, use a symlink to avoid patching files.
Closes: https://bugs.gentoo.org/806342
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index 0fe84b500b2..aa15726dd78 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -15,8 +15,17 @@ KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
+DEPEND="test? ( dev-cpp/doctest )"
BDEPEND="doc? ( app-doc/doxygen )"
+src_prepare() {
+ cmake_src_prepare
+
+ # unbundle doctest
+ rm unit-test/doctest.h || die
+ ln -s "${ESYSROOT}"/usr/include/doctest/doctest.h unit-test/ || die
+}
+
src_configure() {
local mycmakeargs=(
-DBOX2D_BUILD_TESTBED=OFF # bundled libs, broken anyway right now
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/
@ 2023-03-07 0:18 Yixun Lan
0 siblings, 0 replies; 12+ messages in thread
From: Yixun Lan @ 2023-03-07 0:18 UTC (permalink / raw
To: gentoo-commits
commit: 4925fb61f7a962757403e9583f5e519394df9d11
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 6 11:37:52 2023 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Mar 7 00:14:24 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4925fb61
games-engines/box2d: Keyword 2.4.1 riscv, #881389
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
games-engines/box2d/box2d-2.4.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/games-engines/box2d/box2d-2.4.1.ebuild b/games-engines/box2d/box2d-2.4.1.ebuild
index e1051a6a4edf..5162ea6eb5d9 100644
--- a/games-engines/box2d/box2d-2.4.1.ebuild
+++ b/games-engines/box2d/box2d-2.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-03-07 0:18 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-05 5:48 [gentoo-commits] repo/gentoo:master commit in: games-engines/box2d/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-03-07 0:18 Yixun Lan
2021-10-11 0:40 Ionen Wolkens
2021-10-08 11:18 Ionen Wolkens
2021-06-01 9:00 Sam James
2021-04-23 16:11 Sam James
2021-03-28 18:22 Sam James
2021-03-17 1:09 Sam James
2021-03-13 22:21 Andreas Sturmlechner
2021-03-13 15:51 Andreas Sturmlechner
2021-03-13 15:51 Andreas Sturmlechner
2019-09-07 22:40 James Le Cuirot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox