public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-util/libtess2/
@ 2022-11-24 11:07 Henri Gasc
  0 siblings, 0 replies; 3+ messages in thread
From: Henri Gasc @ 2022-11-24 11:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ebf9d27ff6377abfa691d91ceabd7790c50bb37b
Author:     Henri Gasc <gasc <AT> eurecom <DOT> fr>
AuthorDate: Thu Nov 24 11:06:43 2022 +0000
Commit:     Henri Gasc <gasc <AT> eurecom <DOT> fr>
CommitDate: Thu Nov 24 11:07:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ebf9d27f

games-util/libtess2: new package, add 1.0.3

Signed-off-by: Henri Gasc <gasc <AT> eurecom.fr>

 games-util/libtess2/Manifest              |  1 +
 games-util/libtess2/libtess2-1.0.3.ebuild | 30 ++++++++++++++++++++++++++++++
 games-util/libtess2/metadata.xml          | 11 +++++++++++
 3 files changed, 42 insertions(+)

diff --git a/games-util/libtess2/Manifest b/games-util/libtess2/Manifest
new file mode 100644
index 000000000..fde6e9563
--- /dev/null
+++ b/games-util/libtess2/Manifest
@@ -0,0 +1 @@
+DIST libtess2-v1.0.3.tar.bz2 52901 BLAKE2B 6921a13f5291cc1651e7c43eb85f72a37a32be3ce56b5e25dcdf240e8b0e976c43e2d668a35e3559cff3eece6c884bf4c0bec58cd9c30c2a204a68240703b110 SHA512 2e42a9af344c4cfe716234edc102d139cbf33d1efaa6c253b89f78a3b981e22a05d3bff883494856df779f267867882bc3eef434df2e07e33adc9ddeacac6a5b

diff --git a/games-util/libtess2/libtess2-1.0.3.ebuild b/games-util/libtess2/libtess2-1.0.3.ebuild
new file mode 100644
index 000000000..c49c6b300
--- /dev/null
+++ b/games-util/libtess2/libtess2-1.0.3.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Game and tools oriented refactored version of GLU tesselator"
+
+HOMEPAGE="https://gitlab.eurecom.fr/gasc/libtess2"
+SRC_URI="https://gitlab.eurecom.fr/gasc/libtess2/-/archive/v${PV}/libtess2-v${PV}.tar.bz2"
+S="${WORKDIR}/${PN}-v${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=media-libs/glfw-3.0.0"
+BDEPEND="
+	${DEPEND}
+	>=dev-util/premake-5.0.0_alpha16"
+RDEPEND=""
+
+src_compile() {
+	emake clean build
+}
+
+src_install() {
+	echo ${D}
+	emake DESTDIR="${D}/usr" install
+}

diff --git a/games-util/libtess2/metadata.xml b/games-util/libtess2/metadata.xml
new file mode 100644
index 000000000..a77d78d95
--- /dev/null
+++ b/games-util/libtess2/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Gasc Henri</name>
+		<email>gasc@eurecom.fr</email>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">memononen/libtess2</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/libtess2/
@ 2022-11-26 18:58 Henri Gasc
  0 siblings, 0 replies; 3+ messages in thread
From: Henri Gasc @ 2022-11-26 18:58 UTC (permalink / raw
  To: gentoo-commits

commit:     066c7cb914cc9222600a5c7a114c902b21367b6b
Author:     Henri Gasc <gasc <AT> eurecom <DOT> fr>
AuthorDate: Sat Nov 26 18:56:48 2022 +0000
Commit:     Henri Gasc <gasc <AT> eurecom <DOT> fr>
CommitDate: Sat Nov 26 18:57:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=066c7cb9

games-util/libtess2:

Closes: https://bugs.gentoo.org/883193
Signed-off-by: Henri Gasc <gasc <AT> eurecom.fr>
This sould also solve possible issues regarding glew

 games-util/libtess2/libtess2-1.0.3.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/games-util/libtess2/libtess2-1.0.3.ebuild b/games-util/libtess2/libtess2-1.0.3.ebuild
index c49c6b300..817b0f393 100644
--- a/games-util/libtess2/libtess2-1.0.3.ebuild
+++ b/games-util/libtess2/libtess2-1.0.3.ebuild
@@ -14,7 +14,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-DEPEND=">=media-libs/glfw-3.0.0"
+DEPEND="
+	>=media-libs/glew-2.2.0
+	>=media-libs/glfw-3.0.0
+	>=media-libs/glu-9.0.2"
 BDEPEND="
 	${DEPEND}
 	>=dev-util/premake-5.0.0_alpha16"


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-util/libtess2/
@ 2024-09-25 20:50 Adel KARA SLIMANE
  0 siblings, 0 replies; 3+ messages in thread
From: Adel KARA SLIMANE @ 2024-09-25 20:50 UTC (permalink / raw
  To: gentoo-commits

commit:     ab4664a7c319a4df6f73a4461a3738e2c52f487a
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Wed Sep 25 20:50:30 2024 +0000
Commit:     Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
CommitDate: Wed Sep 25 20:50:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab4664a7

games-util/libtess2: add myself as a maintainer

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>

 games-util/libtess2/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/games-util/libtess2/metadata.xml b/games-util/libtess2/metadata.xml
index a77d78d95..8c49f2794 100644
--- a/games-util/libtess2/metadata.xml
+++ b/games-util/libtess2/metadata.xml
@@ -5,6 +5,10 @@
 		<name>Gasc Henri</name>
 		<email>gasc@eurecom.fr</email>
 	</maintainer>
+	<maintainer type="person">
+		<name>Adel KARA SLIMANE</name>
+		<email>adel.ks@zegrapher.com</email>
+	</maintainer>
 	<upstream>
 		<remote-id type="github">memononen/libtess2</remote-id>
 	</upstream>


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

end of thread, other threads:[~2024-09-25 20:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-26 18:58 [gentoo-commits] repo/proj/guru:dev commit in: games-util/libtess2/ Henri Gasc
  -- strict thread matches above, loose matches on Subject: below --
2024-09-25 20:50 Adel KARA SLIMANE
2022-11-24 11:07 Henri Gasc

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