public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/quakespasm/
@ 2021-05-25 23:08 Haelwenn Monnier
  0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2021-05-25 23:08 UTC (permalink / raw
  To: gentoo-commits

commit:     d5416bdda593cb5fa1a05c47bdf01ee84461581f
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Tue May 25 20:26:28 2021 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue May 25 22:43:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d5416bdd

games-fps/quakespasm: New Package

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 games-fps/quakespasm/Manifest                 |  1 +
 games-fps/quakespasm/metadata.xml             | 11 ++++++++
 games-fps/quakespasm/quakespasm-0.93.2.ebuild | 39 +++++++++++++++++++++++++++
 games-fps/quakespasm/quakespasm-9999.ebuild   | 39 +++++++++++++++++++++++++++
 4 files changed, 90 insertions(+)

diff --git a/games-fps/quakespasm/Manifest b/games-fps/quakespasm/Manifest
new file mode 100644
index 000000000..c7353589a
--- /dev/null
+++ b/games-fps/quakespasm/Manifest
@@ -0,0 +1 @@
+DIST quakespasm-0.93.2.tgz 8527223 BLAKE2B 98128174cde86bdd9cee17860302f5364531bb473c0fa07ab613462a8a2247143919614824fa8caab7033204531680bc5ea81684e954460d1064fe59c09d3d37 SHA512 30e8515aa9c6a64ef76f2440e878493e98e85e8c19356738e35b5bbd6e5f49ed42b4d73dc716cce0e687b4e7e27a65fa97541e89ae7857fb165a63e09385743f

diff --git a/games-fps/quakespasm/metadata.xml b/games-fps/quakespasm/metadata.xml
new file mode 100644
index 000000000..1a8ab4d94
--- /dev/null
+++ b/games-fps/quakespasm/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="person" proxied="no">
+		<email>contact@hacktivis.me</email>
+		<name>Haelwenn (lanodan) Monnier</name>
+	</maintainer>
+	<use>
+		<flag name="sdl2">Use <pkg>media-libs/libsdl2</pkg> instead of <pkg>media-libs/libsdl</pkg></flag>
+	</use>
+</pkgmetadata>

diff --git a/games-fps/quakespasm/quakespasm-0.93.2.ebuild b/games-fps/quakespasm/quakespasm-0.93.2.ebuild
new file mode 100644
index 000000000..2b5141550
--- /dev/null
+++ b/games-fps/quakespasm/quakespasm-0.93.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ "${PV}" == "9999" ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="git://git.code.sf.net/p/quakespasm/quakespasm.git"
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Modern, cross-platform Quake 1 engine based on FitzQuake"
+HOMEPAGE="http://quakespasm.sourceforge.net"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="sdl2"
+
+DEPEND="
+	media-libs/libvorbis
+	media-libs/libogg
+	media-libs/libmad
+	virtual/opengl
+	sdl2? ( media-libs/libsdl2 )
+	!sdl2? ( media-libs/libsdl )
+"
+RDEPEND="${DEPEND}"
+DOCS=( Quakespasm.html  Quakespasm-Music.txt  Quakespasm.txt )
+
+src_compile() {
+	cd Quake || die
+	emake COMMON_LIBS="-lm -lOpenGL" USE_SDL2=$(usex sdl2 1 0) STRIP="/bin/true"
+}
+
+src_install() {
+	einstalldocs
+	dobin Quake/quakespasm
+}

diff --git a/games-fps/quakespasm/quakespasm-9999.ebuild b/games-fps/quakespasm/quakespasm-9999.ebuild
new file mode 100644
index 000000000..2b5141550
--- /dev/null
+++ b/games-fps/quakespasm/quakespasm-9999.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ "${PV}" == "9999" ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="git://git.code.sf.net/p/quakespasm/quakespasm.git"
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Modern, cross-platform Quake 1 engine based on FitzQuake"
+HOMEPAGE="http://quakespasm.sourceforge.net"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="sdl2"
+
+DEPEND="
+	media-libs/libvorbis
+	media-libs/libogg
+	media-libs/libmad
+	virtual/opengl
+	sdl2? ( media-libs/libsdl2 )
+	!sdl2? ( media-libs/libsdl )
+"
+RDEPEND="${DEPEND}"
+DOCS=( Quakespasm.html  Quakespasm-Music.txt  Quakespasm.txt )
+
+src_compile() {
+	cd Quake || die
+	emake COMMON_LIBS="-lm -lOpenGL" USE_SDL2=$(usex sdl2 1 0) STRIP="/bin/true"
+}
+
+src_install() {
+	einstalldocs
+	dobin Quake/quakespasm
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/quakespasm/
@ 2021-06-10 23:57 Haelwenn Monnier
  0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2021-06-10 23:57 UTC (permalink / raw
  To: gentoo-commits

commit:     e037084eb25bda5bddefab13a0d5b5a19eebaa43
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Thu Jun 10 23:54:38 2021 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Jun 10 23:55:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e037084e

games-fps/quakespasm: Add glu to deps

Closes: https://bugs.gentoo.org/792243
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 .../quakespasm/{quakespasm-0.93.2.ebuild => quakespasm-0.93.2-r1.ebuild} | 1 +
 games-fps/quakespasm/quakespasm-9999.ebuild                              | 1 +
 2 files changed, 2 insertions(+)

diff --git a/games-fps/quakespasm/quakespasm-0.93.2.ebuild b/games-fps/quakespasm/quakespasm-0.93.2-r1.ebuild
similarity index 98%
rename from games-fps/quakespasm/quakespasm-0.93.2.ebuild
rename to games-fps/quakespasm/quakespasm-0.93.2-r1.ebuild
index 2b5141550..cdbb9badc 100644
--- a/games-fps/quakespasm/quakespasm-0.93.2.ebuild
+++ b/games-fps/quakespasm/quakespasm-0.93.2-r1.ebuild
@@ -22,6 +22,7 @@ DEPEND="
 	media-libs/libogg
 	media-libs/libmad
 	virtual/opengl
+	virtual/glu
 	sdl2? ( media-libs/libsdl2 )
 	!sdl2? ( media-libs/libsdl )
 "

diff --git a/games-fps/quakespasm/quakespasm-9999.ebuild b/games-fps/quakespasm/quakespasm-9999.ebuild
index 2b5141550..cdbb9badc 100644
--- a/games-fps/quakespasm/quakespasm-9999.ebuild
+++ b/games-fps/quakespasm/quakespasm-9999.ebuild
@@ -22,6 +22,7 @@ DEPEND="
 	media-libs/libogg
 	media-libs/libmad
 	virtual/opengl
+	virtual/glu
 	sdl2? ( media-libs/libsdl2 )
 	!sdl2? ( media-libs/libsdl )
 "


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/quakespasm/
@ 2021-09-17  2:04 Haelwenn Monnier
  0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2021-09-17  2:04 UTC (permalink / raw
  To: gentoo-commits

commit:     bdbba9f3d79a79c121e402d3702c2a5dc0288dd8
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Fri Sep 17 02:04:22 2021 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Fri Sep 17 02:04:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bdbba9f3

games-fps/quakespasm: clean version bump, 0.94.1

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 games-fps/quakespasm/Manifest                                           | 2 +-
 .../{quakespasm-0.93.2-r1.ebuild => quakespasm-0.94.1.ebuild}           | 2 +-
 games-fps/quakespasm/quakespasm-9999.ebuild                             | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-fps/quakespasm/Manifest b/games-fps/quakespasm/Manifest
index c7353589a..851f94c75 100644
--- a/games-fps/quakespasm/Manifest
+++ b/games-fps/quakespasm/Manifest
@@ -1 +1 @@
-DIST quakespasm-0.93.2.tgz 8527223 BLAKE2B 98128174cde86bdd9cee17860302f5364531bb473c0fa07ab613462a8a2247143919614824fa8caab7033204531680bc5ea81684e954460d1064fe59c09d3d37 SHA512 30e8515aa9c6a64ef76f2440e878493e98e85e8c19356738e35b5bbd6e5f49ed42b4d73dc716cce0e687b4e7e27a65fa97541e89ae7857fb165a63e09385743f
+DIST quakespasm-0.94.1.tar.gz 9900452 BLAKE2B 21fc363d09e1fbf8f8217d54ad18e38e51e715dc4fe92d591d605b24bae52f9554159c4cc4c97842e6e3e34efb8d422c5a5fe5edc91ae354f97935ae23051047 SHA512 17b7fc74a5e3932b6341c36d957f86ffc01e88013971be2eb4252b57fceecaebeb5cd9a67619ebd38422dfe0fbdbe06a5e5486dcf82ff17fb7d1b0ba664b1cf0

diff --git a/games-fps/quakespasm/quakespasm-0.93.2-r1.ebuild b/games-fps/quakespasm/quakespasm-0.94.1.ebuild
similarity index 94%
rename from games-fps/quakespasm/quakespasm-0.93.2-r1.ebuild
rename to games-fps/quakespasm/quakespasm-0.94.1.ebuild
index cdbb9badc..940da287e 100644
--- a/games-fps/quakespasm/quakespasm-0.93.2-r1.ebuild
+++ b/games-fps/quakespasm/quakespasm-0.94.1.ebuild
@@ -7,7 +7,7 @@ if [[ "${PV}" == "9999" ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="git://git.code.sf.net/p/quakespasm/quakespasm.git"
 else
-	SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 

diff --git a/games-fps/quakespasm/quakespasm-9999.ebuild b/games-fps/quakespasm/quakespasm-9999.ebuild
index cdbb9badc..940da287e 100644
--- a/games-fps/quakespasm/quakespasm-9999.ebuild
+++ b/games-fps/quakespasm/quakespasm-9999.ebuild
@@ -7,7 +7,7 @@ if [[ "${PV}" == "9999" ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="git://git.code.sf.net/p/quakespasm/quakespasm.git"
 else
-	SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/quakespasm/
@ 2022-06-05 21:16 Alessandro Barbieri
  0 siblings, 0 replies; 5+ messages in thread
From: Alessandro Barbieri @ 2022-06-05 21:16 UTC (permalink / raw
  To: gentoo-commits

commit:     3fed2c5b4322bf42f9925140be839ec89bd713f5
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Jun  5 21:10:50 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Jun  5 21:10:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3fed2c5b

games-fps/quakespasm: remove proxied from metadata

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 games-fps/quakespasm/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-fps/quakespasm/metadata.xml b/games-fps/quakespasm/metadata.xml
index 1a8ab4d94..7155f7d20 100644
--- a/games-fps/quakespasm/metadata.xml
+++ b/games-fps/quakespasm/metadata.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person" proxied="no">
+	<maintainer type="person">
 		<email>contact@hacktivis.me</email>
 		<name>Haelwenn (lanodan) Monnier</name>
 	</maintainer>


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

* [gentoo-commits] repo/proj/guru:dev commit in: games-fps/quakespasm/
@ 2023-02-10  6:33 Joe Kappus
  0 siblings, 0 replies; 5+ messages in thread
From: Joe Kappus @ 2023-02-10  6:33 UTC (permalink / raw
  To: gentoo-commits

commit:     98ced59cec28299a45d6b7331f459b38d7cb014a
Author:     Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Fri Feb 10 06:32:35 2023 +0000
Commit:     Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Fri Feb 10 06:32:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=98ced59c

games-fps/quakespasm: update URLs to HTTPS

Signed-off-by: Joe Kappus <joe <AT> wt.gd>

 games-fps/quakespasm/metadata.xml             | 2 +-
 games-fps/quakespasm/quakespasm-0.94.1.ebuild | 2 +-
 games-fps/quakespasm/quakespasm-9999.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-fps/quakespasm/metadata.xml b/games-fps/quakespasm/metadata.xml
index 7155f7d20..c676fbf0b 100644
--- a/games-fps/quakespasm/metadata.xml
+++ b/games-fps/quakespasm/metadata.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
 		<email>contact@hacktivis.me</email>

diff --git a/games-fps/quakespasm/quakespasm-0.94.1.ebuild b/games-fps/quakespasm/quakespasm-0.94.1.ebuild
index 940da287e..be3dcedba 100644
--- a/games-fps/quakespasm/quakespasm-0.94.1.ebuild
+++ b/games-fps/quakespasm/quakespasm-0.94.1.ebuild
@@ -12,7 +12,7 @@ else
 fi
 
 DESCRIPTION="Modern, cross-platform Quake 1 engine based on FitzQuake"
-HOMEPAGE="http://quakespasm.sourceforge.net"
+HOMEPAGE="https://quakespasm.sourceforge.net"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="sdl2"

diff --git a/games-fps/quakespasm/quakespasm-9999.ebuild b/games-fps/quakespasm/quakespasm-9999.ebuild
index 940da287e..be3dcedba 100644
--- a/games-fps/quakespasm/quakespasm-9999.ebuild
+++ b/games-fps/quakespasm/quakespasm-9999.ebuild
@@ -12,7 +12,7 @@ else
 fi
 
 DESCRIPTION="Modern, cross-platform Quake 1 engine based on FitzQuake"
-HOMEPAGE="http://quakespasm.sourceforge.net"
+HOMEPAGE="https://quakespasm.sourceforge.net"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="sdl2"


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

end of thread, other threads:[~2023-02-10  6:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-10  6:33 [gentoo-commits] repo/proj/guru:dev commit in: games-fps/quakespasm/ Joe Kappus
  -- strict thread matches above, loose matches on Subject: below --
2022-06-05 21:16 Alessandro Barbieri
2021-09-17  2:04 Haelwenn Monnier
2021-06-10 23:57 Haelwenn Monnier
2021-05-25 23:08 Haelwenn Monnier

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