* [gentoo-commits] repo/proj/guru:master commit in: games-fps/quakespasm/
@ 2021-05-26 13:42 Andrew Ammerlaan
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-05-26 13:42 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: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
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] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: games-fps/quakespasm/
@ 2021-09-17 9:20 Arthur Zamarin
0 siblings, 0 replies; 3+ messages in thread
From: Arthur Zamarin @ 2021-09-17 9:20 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: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
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] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: games-fps/quakespasm/
@ 2022-06-06 16:28 Florian Schmaus
0 siblings, 0 replies; 3+ messages in thread
From: Florian Schmaus @ 2022-06-06 16:28 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: Florian Schmaus <flow <AT> gentoo <DOT> org>
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] 3+ messages in thread
end of thread, other threads:[~2022-06-06 16:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-26 13:42 [gentoo-commits] repo/proj/guru:master commit in: games-fps/quakespasm/ Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2021-09-17 9:20 Arthur Zamarin
2022-06-06 16:28 Florian Schmaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox