public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-util/fteqcc-xonotic/
@ 2011-07-05 21:45 Nikoli
  0 siblings, 0 replies; 2+ messages in thread
From: Nikoli @ 2011-07-05 21:45 UTC (permalink / raw
  To: gentoo-commits

commit:     003333a7ecbc5d131be1198826a57f1db6b9c507
Author:     Nikoli <nikoli <AT> lavabit <DOT> com>
AuthorDate: Tue Jul  5 21:40:17 2011 +0000
Commit:     Nikoli <nikoli <AT> lavabit <DOT> com>
CommitDate: Tue Jul  5 21:40:17 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=003333a7

fteqcc-xonotic: migrate to git-2 and EAPI4

(Portage version: 2.1.10.3/git/Linux x86_64, unsigned Manifest commit)

---
 games-util/fteqcc-xonotic/ChangeLog                |    3 +++
 .../fteqcc-xonotic/fteqcc-xonotic-9999.ebuild      |   11 +++++------
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/games-util/fteqcc-xonotic/ChangeLog b/games-util/fteqcc-xonotic/ChangeLog
index c526ae4..a44aff5 100644
--- a/games-util/fteqcc-xonotic/ChangeLog
+++ b/games-util/fteqcc-xonotic/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  05 Jul 2011; Nikoli <nikoli@lavabit.com> fteqcc-xonotic-9999.ebuild:
+  migrate to git-2 and EAPI4
+
 *fteqcc-xonotic-9999 (01 Jan 2011)
 
   01 Jan 2011; Nikoli <nikoli@lavabit.com> +fteqcc-xonotic-9999.ebuild,

diff --git a/games-util/fteqcc-xonotic/fteqcc-xonotic-9999.ebuild b/games-util/fteqcc-xonotic/fteqcc-xonotic-9999.ebuild
index c005a32..8865e6a 100644
--- a/games-util/fteqcc-xonotic/fteqcc-xonotic-9999.ebuild
+++ b/games-util/fteqcc-xonotic/fteqcc-xonotic-9999.ebuild
@@ -2,15 +2,14 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=2
+EAPI="4"
 
-inherit eutils toolchain-funcs git
+inherit eutils toolchain-funcs git-2
 
 DESCRIPTION="QC compiler for Xonotic"
 HOMEPAGE="http://git.xonotic.org/?p=xonotic/fteqcc.git;a=summary"
 EGIT_REPO_URI="git://git.xonotic.org/xonotic/fteqcc.git"
 EGIT_BRANCH="xonotic-stable"
-EGIT_COMMIT="${EGIT_BRANCH}"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -30,11 +29,11 @@ src_prepare() {
 }
 
 src_compile() {
-	emake CC=$(tc-getCC) BASE_CFLAGS="${CFLAGS} -Wall" || die
+	emake CC=$(tc-getCC) BASE_CFLAGS="${CFLAGS} -Wall"
 }
 
 src_install() {
-	newbin fteqcc.bin ${PN} || die
+	newbin fteqcc.bin ${PN}
 
-	dodoc readme.txt || die
+	dodoc readme.txt
 }



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

* [gentoo-commits] proj/gamerlay:master commit in: games-util/fteqcc-xonotic/
@ 2020-02-06 21:22 Azamat H. Hackimov
  0 siblings, 0 replies; 2+ messages in thread
From: Azamat H. Hackimov @ 2020-02-06 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     062a4ba7f0fbf40ce1867f45c8c7987eae0f420b
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Feb  6 21:06:34 2020 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Feb  6 21:22:35 2020 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=062a4ba7

games-util/fteqcc-xonotic: remove

Dead upstream
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>

 .../fteqcc-xonotic/fteqcc-xonotic-9999.ebuild      | 39 ----------------------
 games-util/fteqcc-xonotic/metadata.xml             |  8 -----
 2 files changed, 47 deletions(-)

diff --git a/games-util/fteqcc-xonotic/fteqcc-xonotic-9999.ebuild b/games-util/fteqcc-xonotic/fteqcc-xonotic-9999.ebuild
deleted file mode 100644
index 8865e6a..0000000
--- a/games-util/fteqcc-xonotic/fteqcc-xonotic-9999.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-
-inherit eutils toolchain-funcs git-2
-
-DESCRIPTION="QC compiler for Xonotic"
-HOMEPAGE="http://git.xonotic.org/?p=xonotic/fteqcc.git;a=summary"
-EGIT_REPO_URI="git://git.xonotic.org/xonotic/fteqcc.git"
-EGIT_BRANCH="xonotic-stable"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-RESTRICT="test"
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
-	sed -i \
-		-e '/^CC/d' \
-		-e 's: -O3 : :g' \
-		-e "/BASE_LDFLAGS=/s:-s:${LDFLAGS}:g" \
-		Makefile || die
-}
-
-src_compile() {
-	emake CC=$(tc-getCC) BASE_CFLAGS="${CFLAGS} -Wall"
-}
-
-src_install() {
-	newbin fteqcc.bin ${PN}
-
-	dodoc readme.txt
-}

diff --git a/games-util/fteqcc-xonotic/metadata.xml b/games-util/fteqcc-xonotic/metadata.xml
deleted file mode 100644
index ee286d6..0000000
--- a/games-util/fteqcc-xonotic/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer>
-		<email>nikoli@lavabit.com</email>
-		<name>Nikoli</name>
-	</maintainer>
-</pkgmetadata>


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

end of thread, other threads:[~2020-02-06 21:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-06 21:22 [gentoo-commits] proj/gamerlay:master commit in: games-util/fteqcc-xonotic/ Azamat H. Hackimov
  -- strict thread matches above, loose matches on Subject: below --
2011-07-05 21:45 Nikoli

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