repo/gentoo:master commit in: games-arcade/methane/, games-arcade/methane/files/
"Pacho Ramos" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786028073.99d91503b7a4a80a12acc75af8e565b7ffb5b517.pacho@gentoo> |
commit: 99d91503b7a4a80a12acc75af8e565b7ffb5b517 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Thu Aug 6 14:53:49 2026 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Thu Aug 6 14:54:33 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d91503 games-arcade/methane: drop 2.0.1 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org> games-arcade/methane/Manifest | 1 - .../methane/files/methane-2.0.1-makefile.patch | 41 -------------------- games-arcade/methane/methane-2.0.1.ebuild | 45 ---------------------- 3 files changed, 87 deletions(-) diff --git a/games-arcade/methane/Manifest b/games-arcade/methane/Manifest index 8a9c542264dd..97f898601ef7 100644 --- a/games-arcade/methane/Manifest +++ b/games-arcade/methane/Manifest @@ -1,4 +1,3 @@ -DIST methane-2.0.1.tar.gz 1058487 BLAKE2B 2fc450c03dbbd57439b22e8e6ac8eebd2db18f97a3338180decdc0a437207b581a00e664e6353595c9eb50c16f7d9fead96bddf6ca50b67326ecea6dd4bb935a SHA512 96b005eb5964185adea89aa43afda375c474db8088a132b2d46a843a1eca6ba91f83bf41277a3f3cfa24c4f9b9dae7098527414284fd0521e92a34c225e06bd9 DIST methane-2.1.0.tar.gz 1059462 BLAKE2B 9a280875e5e7d44d4be88006fe97d3bbdb277f50609ad46fcdb33fcaaf10a22d8a7d4dc541637dd3f8a6e96b391b56533861d10abee38ddcb643f143c5ba632e SHA512 0854792d52a9f66d4fd43a6428fd27e92f1a8e324b085d0ab7612a7dac59e8e51d23acd10f4ac27975485049ea99e3ebb1ebae18f479a0c4286b7709438b06bf DIST methane-3.0.1.tar.gz 20610399 BLAKE2B 354da0b48e21a8100f3ad581d3919c7abbba5f0e2e0b3056cd026b78ecdcb1867e56caf25878ed17b09b48ce9b37699f46b1fa84bbb50590224147067d0d1271 SHA512 162c226e00d9a57623986cceabc099018ed595de108ec566f94fed4a17c5b2844bcb50e6ac2e72f62b7ef0d0fdcb3081f05ee6fa982e4ed47d993a29ee746e81 DIST methane.png 4034 BLAKE2B b10ebd8ca4bf2f6330aa89e3adb77a14bb183bf3d0dd40e305c87d58e0a6a4249662cdee8a457fc3df93a9c0b0daecf0dd8cb307c33a6b5f6e48543062b1b18f SHA512 a56e453c9971b8819904f19af4ed3e417ef0538f87bfa121918c8fa4f93c14ba922b7d29584f0c69497a7b56585a92a7df902997cf18f6f2672c31c960ea7772 diff --git a/games-arcade/methane/files/methane-2.0.1-makefile.patch b/games-arcade/methane/files/methane-2.0.1-makefile.patch deleted file mode 100644 index 0cf205041ed7..000000000000 --- a/games-arcade/methane/files/methane-2.0.1-makefile.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 7fa0b482546993d5279911a43ad6cb75c96ec1f0 Mon Sep 17 00:00:00 2001 -From: "Azamat H. Hackimov" <[email protected]> -Date: Wed, 14 Dec 2022 00:28:51 +0300 -Subject: [PATCH] Use portable variables in Makefile - ---- - Makefile | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/Makefile b/Makefile -index 35c3eb1..f827efc 100644 ---- a/Makefile -+++ b/Makefile -@@ -1,5 +1,6 @@ --METHANE_FLAGS = `pkg-config --cflags clanCore-4.1 clanDisplay-4.1 clanApp-4.1 clanGL-4.1 clanSound-4.1 libmikmod` -Isources --METHANE_LIBS = `pkg-config --libs clanCore-4.1 clanDisplay-4.1 clanApp-4.1 clanGL-4.1 clanSound-4.1 libmikmod` -+PKG_CONFIG ?= pkg-config -+METHANE_FLAGS := $(shell ${PKG_CONFIG} --cflags clanCore-4.1 clanDisplay-4.1 clanApp-4.1 clanGL-4.1 clanSound-4.1 libmikmod) -Isources -+METHANE_LIBS := $(shell ${PKG_CONFIG} --libs clanCore-4.1 clanDisplay-4.1 clanApp-4.1 clanGL-4.1 clanSound-4.1 libmikmod) - - OBJF = sources/precomp.o \ - sources/player.o \ -@@ -37,7 +38,7 @@ message: - @echo "=================================" - - methane: ${OBJF} -- g++ ${CXXFLAGS} ${OBJF} -o methane ${METHANE_LIBS} -+ $(CXX) ${CXXFLAGS} ${LDFLAGS} ${OBJF} -o methane ${METHANE_LIBS} - - clean: - @rm -f sources/*.o -@@ -49,5 +50,5 @@ distclean: clean - # The main source code - %.o:%.cpp - @echo " Compiling $<..." -- gcc ${CXXFLAGS} ${METHANE_FLAGS} -c $< -o $@ -+ $(CXX) ${CXXFLAGS} ${METHANE_FLAGS} -c $< -o $@ - --- -2.37.4 - diff --git a/games-arcade/methane/methane-2.0.1.ebuild b/games-arcade/methane/methane-2.0.1.ebuild deleted file mode 100644 index 33e4e2941888..000000000000 --- a/games-arcade/methane/methane-2.0.1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop toolchain-funcs - -DESCRIPTION="Port from an old Amiga game" -HOMEPAGE="https://methane.sourceforge.net/" -SRC_URI="https://github.com/rombust/Methane/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz - https://src.fedoraproject.org/rpms/methane/raw/f37/f/methane.png -" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -S="${WORKDIR}/Methane-${PV}" - -RDEPEND=" - dev-games/clanlib:4.1[opengl,sound] - media-libs/libmikmod -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${P}-makefile.patch" -) - -src_prepare() { - default - - tc-export PKG_CONFIG -} - -src_install() { - dobin methane - - insinto /usr/share/${PN} - doins resources/* - - doicon "${DISTDIR}/${PN}.png" - make_desktop_entry ${PN} "Super Methane Brothers" - HTML_DOCS="docs/*" dodoc authors.txt history.txt readme.txt -}