* [gentoo-commits] repo/gentoo:master commit in: games-fps/serious-sam-tse/
@ 2017-07-17 14:42 Sergey Popov
0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov @ 2017-07-17 14:42 UTC (permalink / raw
To: gentoo-commits
commit: 40dc075399cb49f95fb4329a68efd1338a53c803
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 17 14:39:33 2017 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Mon Jul 17 14:42:43 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40dc0753
games-fps/serious-sam-tse: drop to maintainer-needed
Package-Manager: Portage-2.3.6, Repoman-2.3.1
games-fps/serious-sam-tse/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/games-fps/serious-sam-tse/metadata.xml b/games-fps/serious-sam-tse/metadata.xml
index 5b159fbcadd..7a38bb90096 100644
--- a/games-fps/serious-sam-tse/metadata.xml
+++ b/games-fps/serious-sam-tse/metadata.xml
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>pinkbyte@gentoo.org</email>
- <name>Sergey Popov</name>
- </maintainer>
+ <!-- maintainer-needed -->
</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-fps/serious-sam-tse/
@ 2017-09-06 22:58 Austin English
0 siblings, 0 replies; 5+ messages in thread
From: Austin English @ 2017-09-06 22:58 UTC (permalink / raw
To: gentoo-commits
commit: 2ffcc58df8b23d8f090a96136f3a0a0e8c1c9509
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 6 22:56:12 2017 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Wed Sep 6 22:58:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffcc58d
games-fps/serious-sam-tse: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: Portage-2.3.6, Repoman-2.3.2
.../serious-sam-tse-1_beta1-r1.ebuild | 136 +++++++++++++++++++++
1 file changed, 136 insertions(+)
diff --git a/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild b/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
new file mode 100644
index 00000000000..f2ebf0bb203
--- /dev/null
+++ b/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
@@ -0,0 +1,136 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cdrom eutils versionator unpacker
+
+# MY_PV will be e.g. "beta1"
+MY_PN="ssamtse"
+MY_PV=$(get_version_component_range 2-2)
+
+DESCRIPTION="Serious Sam: The Second Encounter"
+HOMEPAGE="http://www.croteam.com/
+ http://www.seriouszone.com/"
+SRC_URI="http://icculus.org/betas/ssam/${MY_PN}-${MY_PV}.sh.bin"
+
+LICENSE="LOKI-EULA"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+RESTRICT="strip"
+IUSE="alsa"
+
+DEPEND=">=app-arch/unshield-0.6"
+RDEPEND="
+ >=media-libs/libogg-1.3.1[abi_x86_32(-)]
+ >=media-libs/libsdl-1.2.15-r5[X,joystick,opengl,video,abi_x86_32(-)]
+ virtual/opengl[abi_x86_32(-)]
+ alsa? (
+ >=media-libs/libsdl-1.2.15-r5[alsa,sound,abi_x86_32(-)]
+ >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)]
+ )
+"
+
+S=${WORKDIR}
+
+QA_TEXTRELS="
+opt/ssamtse/Bin/libEntitiesMP.so
+opt/ssamtse/Bin/libGameMP.so
+opt/ssamtse/Bin/libamp11lib.so
+opt/ssamtse/Bin/libShaders.so
+"
+
+QA_FLAGS_IGNORED="
+opt/ssamtse/Bin/libEntitiesMP.so
+opt/ssamtse/Bin/libGameMP.so
+opt/ssamtse/Bin/libamp11lib.so
+opt/ssamtse/Bin/libShaders.so
+opt/ssamtse/Bin/ssam_lnxded
+opt/ssamtse/Bin/ssam_lnxded.dynamic
+opt/ssamtse/Bin/ssam_lnx.dynamic
+opt/ssamtse/Bin/ssam_lnx
+"
+
+pkg_setup() {
+ cdrom_get_cds "Install/SE1_00.gro"
+}
+
+src_unpack() {
+ mkdir Levels Mods
+
+ unpack_makeself "${MY_PN}-${MY_PV}.sh.bin"
+ unpack ./setupstuff.tar.gz
+ unpack ./bins.tar.bz2
+}
+
+src_prepare() {
+ # Switch to dynamic executable - runs at sane speeds on modern hardware
+ sed -i -e 's;exec "./ssam_lnx";exec "./ssam_lnx.dynamic";' bin/${MY_PN} \
+ || die "dynamic binary update failed"
+}
+
+src_install() {
+ local dir="/opt/${MY_PN}"
+
+ # Remove bundled libs
+ rm -f Bin/{libogg.so,libvorbis.so,libvorbisfile.so} || die "failed to remove bundled libs"
+
+ einfo "Copying from ${CDROM_ROOT}"
+ insinto "${dir}"
+ doins -r "${CDROM_ROOT}"/Install/* || die "doins CD failed"
+
+ # Correct paths of copied resource files
+ mv "${D}/${dir}"/Locales/eng/Controls/* "${D}/${dir}"/Controls/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Data/Var/* "${D}/${dir}"/Data/Var/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Demos/* "${D}/${dir}"/Demos/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Help/* "${D}/${dir}"/Help/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Mods/Warped/Scripts/Addons/WarpedTweak.des "${D}/${dir}"/Mods/Warped/Scripts/Addons/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Mods/Warped/Readme.html "${D}/${dir}"/Mods/Warped/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Mods/*.des "${D}/${dir}"/Mods/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Scripts/Addons/* "${D}/${dir}"/Scripts/Addons/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Scripts/CustomOptions/* "${D}/${dir}"/Scripts/CustomOptions/ || die "Failed to move file"
+ mv "${D}/${dir}"/Locales/eng/Scripts/NetSettings/* "${D}/${dir}"/Scripts/NetSettings/ || die "Failed to move file"
+ rm -rf "${D}/${dir}"/Locales || die "failed to removed Locales dir"
+
+ # The data CABs contain optional multiplayer maps in the "Levels" directory
+ einfo "Extracting additional levels"
+ unshield x "${D}/${dir}"/data1.cab >/dev/null || die "unshield data1.cab failed"
+ rm "${D}/${dir}"/data?.cab || die "Failed to remove cab"
+
+ # Correct paths of extracted levels
+ mv Levels/Levels/LevelsMP/* Levels/LevelsMP/ || die "Failed to move file"
+ rm -rf Levels/Levels || die "Failed to remove dir"
+ mv Levels/LevelsMP/Technology/* Levels/ || die "Failed to move file"
+ rmdir Levels/LevelsMP/Technology || die "Failed to remove dir"
+ mv Levels/Mods/Warped/ Mods/ || die "Failed to move file"
+ rmdir Levels/Mods/ || die "Failed to remove dir"
+
+ doins -r Bin Data Levels Mods *.txt README* \
+ || die "doins main failed"
+
+ # Install bins last to ensure they are marked executable
+ exeinto "${dir}"
+ doexe bin/${MY_PN}
+ exeinto "${dir}"/Bin
+ doexe Bin/{ssam_lnx*,*.so}
+
+ # Remove useless Windows files
+ rm -rf "${D}/${dir}/Bin"/{*.exe,*.dll,*.DLL,GameSpy} || die "Failed to remove windows cruft"
+ rm -f "${D}/${dir}"/{*.exe,*.ex_,*.bmp,*.inx,*.hdr,*.bin} || die "Failed to remove windows cruft"
+
+ dodoc README.linux
+
+ newicon ssam.xpm ${MY_PN}.xpm
+ make_wrapper ${MY_PN} ./${MY_PN} "${dir}" "${dir}"
+ make_desktop_entry ${MY_PN} "Serious Sam - Second Encounter" ${MY_PN}
+
+ # Ensure that file datestamps from the CD are sane
+ find "${D}/${dir}" -exec touch '{}' \; || die "touch failed"
+}
+
+pkg_postinst() {
+ elog "The warning regarding 'XiG-SUNDRY-NONSTANDARD missing' is harmless."
+ elog "Important information about the Linux port is at:"
+ elog " http://files.seriouszone.com/download.php?fileid=616"
+ echo
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-fps/serious-sam-tse/
@ 2018-09-03 8:54 Sergey Popov
0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov @ 2018-09-03 8:54 UTC (permalink / raw
To: gentoo-commits
commit: 77f1372f00ea5be02bbd884c1b8b15d2349e2240
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 3 08:51:36 2018 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Mon Sep 3 08:52:34 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f1372f
games-fps/serious-sam-tse: restrict mirror and bindist
Bug: https://bugs.gentoo.org/665108
Package-Manager: Portage-2.3.40, Repoman-2.3.9
games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild b/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
index f2ebf0bb203..266685806eb 100644
--- a/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
+++ b/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -17,7 +17,7 @@ SRC_URI="http://icculus.org/betas/ssam/${MY_PN}-${MY_PV}.sh.bin"
LICENSE="LOKI-EULA"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
-RESTRICT="strip"
+RESTRICT="bindist mirror strip"
IUSE="alsa"
DEPEND=">=app-arch/unshield-0.6"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-fps/serious-sam-tse/
@ 2021-04-10 6:31 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-04-10 6:31 UTC (permalink / raw
To: gentoo-commits
commit: cc5aa6461b78b315a8b9598d534e87ffbf1b9b06
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 10 06:25:34 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 10 06:31:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5aa646
games-fps/serious-sam-tse: fix src_prepare
Don't shout! I don't own this game, so testing only got as
far as pkg_nofetch, unfortunately. Luckily, changes were
only to do with EAPI + games.eclass, so *should* be okay.
Signed-off-by: Sam James <sam <AT> gentoo.org>
games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild b/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
index 0a0dc429f25..cec0725099f 100644
--- a/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
+++ b/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -64,6 +64,8 @@ src_unpack() {
}
src_prepare() {
+ default
+
# Switch to dynamic executable - runs at sane speeds on modern hardware
sed -i -e 's;exec "./ssam_lnx";exec "./ssam_lnx.dynamic";' bin/${MY_PN} \
|| die "dynamic binary update failed"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-fps/serious-sam-tse/
@ 2024-01-08 12:48 Ulrich Müller
0 siblings, 0 replies; 5+ messages in thread
From: Ulrich Müller @ 2024-01-08 12:48 UTC (permalink / raw
To: gentoo-commits
commit: aefb4e175260d118d169048111478f02aa058505
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 8 12:45:52 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 8 12:48:03 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aefb4e17
games-fps/serious-sam-tse: treeclean
Closes: https://bugs.gentoo.org/854567
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
games-fps/serious-sam-tse/Manifest | 1 -
games-fps/serious-sam-tse/metadata.xml | 5 -
.../serious-sam-tse-1_beta1-r1.ebuild | 137 ---------------------
3 files changed, 143 deletions(-)
diff --git a/games-fps/serious-sam-tse/Manifest b/games-fps/serious-sam-tse/Manifest
deleted file mode 100644
index 455f22799ffc..000000000000
--- a/games-fps/serious-sam-tse/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ssamtse-beta1.sh.bin 7952607 BLAKE2B 775c5f22b5c2d8418e69a6ac9d8e46f7f3d958108900ca0bc2135a889b4ee34d4d6528b2dfbe1de343fc8cd28af3f0d86cc764014875d8bb4d7a32ee55f361ea SHA512 43f07fbaef0bf8f90644a748931220331ed5f9179412e5a37daf0472aa98c5bb2455148c54254eae1af0b38ba8a3fde9c310cd8d488ea6b2806fa0f6fb1e1644
diff --git a/games-fps/serious-sam-tse/metadata.xml b/games-fps/serious-sam-tse/metadata.xml
deleted file mode 100644
index 115e9d64a669..000000000000
--- a/games-fps/serious-sam-tse/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild b/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
deleted file mode 100644
index cec0725099f6..000000000000
--- a/games-fps/serious-sam-tse/serious-sam-tse-1_beta1-r1.ebuild
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cdrom eutils versionator unpacker
-
-# MY_PV will be e.g. "beta1"
-MY_PN="ssamtse"
-MY_PV=$(get_version_component_range 2-2)
-
-DESCRIPTION="Serious Sam: The Second Encounter"
-HOMEPAGE="http://www.croteam.com/
- http://www.seriouszone.com/"
-SRC_URI="http://icculus.org/betas/ssam/${MY_PN}-${MY_PV}.sh.bin"
-
-LICENSE="LOKI-EULA"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-RESTRICT="bindist mirror strip"
-IUSE="alsa"
-
-DEPEND=">=app-arch/unshield-0.6"
-RDEPEND="
- >=media-libs/libogg-1.3.1[abi_x86_32(-)]
- >=media-libs/libsdl-1.2.15-r5[X,joystick,opengl,video,abi_x86_32(-)]
- virtual/opengl[abi_x86_32(-)]
- alsa? (
- >=media-libs/libsdl-1.2.15-r5[alsa,sound,abi_x86_32(-)]
- >=media-libs/libvorbis-1.3.3-r1[abi_x86_32(-)]
- )
-"
-
-S=${WORKDIR}
-
-QA_TEXTRELS="
-opt/ssamtse/Bin/libEntitiesMP.so
-opt/ssamtse/Bin/libGameMP.so
-opt/ssamtse/Bin/libamp11lib.so
-opt/ssamtse/Bin/libShaders.so
-"
-
-QA_FLAGS_IGNORED="
-opt/ssamtse/Bin/libEntitiesMP.so
-opt/ssamtse/Bin/libGameMP.so
-opt/ssamtse/Bin/libamp11lib.so
-opt/ssamtse/Bin/libShaders.so
-opt/ssamtse/Bin/ssam_lnxded
-opt/ssamtse/Bin/ssam_lnxded.dynamic
-opt/ssamtse/Bin/ssam_lnx.dynamic
-opt/ssamtse/Bin/ssam_lnx
-"
-
-pkg_setup() {
- cdrom_get_cds "Install/SE1_00.gro"
-}
-
-src_unpack() {
- mkdir Levels Mods
-
- unpack_makeself "${MY_PN}-${MY_PV}.sh.bin"
- unpack ./setupstuff.tar.gz
- unpack ./bins.tar.bz2
-}
-
-src_prepare() {
- default
-
- # Switch to dynamic executable - runs at sane speeds on modern hardware
- sed -i -e 's;exec "./ssam_lnx";exec "./ssam_lnx.dynamic";' bin/${MY_PN} \
- || die "dynamic binary update failed"
-}
-
-src_install() {
- local dir="/opt/${MY_PN}"
-
- # Remove bundled libs
- rm -f Bin/{libogg.so,libvorbis.so,libvorbisfile.so} || die "failed to remove bundled libs"
-
- einfo "Copying from ${CDROM_ROOT}"
- insinto "${dir}"
- doins -r "${CDROM_ROOT}"/Install/*
-
- # Correct paths of copied resource files
- mv "${D}/${dir}"/Locales/eng/Controls/* "${D}/${dir}"/Controls/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Data/Var/* "${D}/${dir}"/Data/Var/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Demos/* "${D}/${dir}"/Demos/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Help/* "${D}/${dir}"/Help/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Mods/Warped/Scripts/Addons/WarpedTweak.des "${D}/${dir}"/Mods/Warped/Scripts/Addons/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Mods/Warped/Readme.html "${D}/${dir}"/Mods/Warped/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Mods/*.des "${D}/${dir}"/Mods/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Scripts/Addons/* "${D}/${dir}"/Scripts/Addons/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Scripts/CustomOptions/* "${D}/${dir}"/Scripts/CustomOptions/ || die "Failed to move file"
- mv "${D}/${dir}"/Locales/eng/Scripts/NetSettings/* "${D}/${dir}"/Scripts/NetSettings/ || die "Failed to move file"
- rm -rf "${D}/${dir}"/Locales || die "failed to removed Locales dir"
-
- # The data CABs contain optional multiplayer maps in the "Levels" directory
- einfo "Extracting additional levels"
- unshield x "${D}/${dir}"/data1.cab >/dev/null || die "unshield data1.cab failed"
- rm "${D}/${dir}"/data?.cab || die "Failed to remove cab"
-
- # Correct paths of extracted levels
- mv Levels/Levels/LevelsMP/* Levels/LevelsMP/ || die "Failed to move file"
- rm -rf Levels/Levels || die "Failed to remove dir"
- mv Levels/LevelsMP/Technology/* Levels/ || die "Failed to move file"
- rmdir Levels/LevelsMP/Technology || die "Failed to remove dir"
- mv Levels/Mods/Warped/ Mods/ || die "Failed to move file"
- rmdir Levels/Mods/ || die "Failed to remove dir"
-
- doins -r Bin Data Levels Mods *.txt README*
-
- # Install bins last to ensure they are marked executable
- exeinto "${dir}"
- doexe bin/${MY_PN}
- exeinto "${dir}"/Bin
- doexe Bin/{ssam_lnx*,*.so}
-
- # Remove useless Windows files
- rm -rf "${D}/${dir}/Bin"/{*.exe,*.dll,*.DLL,GameSpy} || die "Failed to remove windows cruft"
- rm -f "${D}/${dir}"/{*.exe,*.ex_,*.bmp,*.inx,*.hdr,*.bin} || die "Failed to remove windows cruft"
-
- dodoc README.linux
-
- newicon ssam.xpm ${MY_PN}.xpm
- make_wrapper ${MY_PN} ./${MY_PN} "${dir}" "${dir}"
- make_desktop_entry ${MY_PN} "Serious Sam - Second Encounter" ${MY_PN}
-
- # Ensure that file datestamps from the CD are sane
- find "${D}/${dir}" -exec touch '{}' \; || die "touch failed"
-}
-
-pkg_postinst() {
- elog "The warning regarding 'XiG-SUNDRY-NONSTANDARD missing' is harmless."
- elog "Important information about the Linux port is at:"
- elog " http://files.seriouszone.com/download.php?fileid=616"
- echo
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-01-08 12:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-08 12:48 [gentoo-commits] repo/gentoo:master commit in: games-fps/serious-sam-tse/ Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2021-04-10 6:31 Sam James
2018-09-03 8:54 Sergey Popov
2017-09-06 22:58 Austin English
2017-07-17 14:42 Sergey Popov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox