public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-util/grfcodec/
@ 2011-02-12 15:13 Locke Shinseiko
  0 siblings, 0 replies; 6+ messages in thread
From: Locke Shinseiko @ 2011-02-12 15:13 UTC (permalink / raw
  To: gentoo-commits

commit:     0e051f5491e0d91f93cd5b4047570ce942318ae2
Author:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
AuthorDate: Sat Feb 12 11:31:40 2011 +0000
Commit:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
CommitDate: Sat Feb 12 11:31:40 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=0e051f54

[games-util/grfcodec] Bump to 5.1.0, now includes nforenum. Make -9999 match.

---
 ...{grfcodec-9999.ebuild => grfcodec-5.1.0.ebuild} |    6 +++---
 games-util/grfcodec/grfcodec-9999.ebuild           |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/games-util/grfcodec/grfcodec-9999.ebuild b/games-util/grfcodec/grfcodec-5.1.0.ebuild
similarity index 90%
copy from games-util/grfcodec/grfcodec-9999.ebuild
copy to games-util/grfcodec/grfcodec-5.1.0.ebuild
index 9b85e82..66784ad 100644
--- a/games-util/grfcodec/grfcodec-9999.ebuild
+++ b/games-util/grfcodec/grfcodec-5.1.0.ebuild
@@ -24,7 +24,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 if [ "${PV%9999}" != "${PV}" ] ; then
@@ -49,7 +49,7 @@ cat > Makefile.local <<-__EOF__
 }
 
 src_install() {
-	dobin ${PN} grf{diff,id,merge} || die
-	doman docs/grf{codec,diff,id,merge}.1 || die
+	dobin ${PN} grf{diff,id,merge} nforenum || die
+	doman docs/*.1 || die
 	dodoc changelog.txt docs/*.txt || die
 }

diff --git a/games-util/grfcodec/grfcodec-9999.ebuild b/games-util/grfcodec/grfcodec-9999.ebuild
index 9b85e82..9d74009 100644
--- a/games-util/grfcodec/grfcodec-9999.ebuild
+++ b/games-util/grfcodec/grfcodec-9999.ebuild
@@ -49,7 +49,7 @@ cat > Makefile.local <<-__EOF__
 }
 
 src_install() {
-	dobin ${PN} grf{diff,id,merge} || die
-	doman docs/grf{codec,diff,id,merge}.1 || die
+	dobin ${PN} grf{diff,id,merge} nforenum || die
+	doman docs/*.1 || die
 	dodoc changelog.txt docs/*.txt || die
 }



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

* [gentoo-commits] proj/gamerlay:master commit in: games-util/grfcodec/
@ 2011-02-12 15:13 Locke Shinseiko
  0 siblings, 0 replies; 6+ messages in thread
From: Locke Shinseiko @ 2011-02-12 15:13 UTC (permalink / raw
  To: gentoo-commits

commit:     a54f005e093853b6cf6773eec996243174751fe2
Author:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
AuthorDate: Sat Feb 12 13:30:43 2011 +0000
Commit:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
CommitDate: Sat Feb 12 13:30:43 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=a54f005e

[games-util/grfcodec] removed stale 1.0.0, added ~arm, depend on libpng

---
 games-util/grfcodec/grfcodec-1.0.0.ebuild |   55 -----------------------------
 games-util/grfcodec/grfcodec-5.1.0.ebuild |    7 ++--
 games-util/grfcodec/grfcodec-9999.ebuild  |    5 ++-
 3 files changed, 7 insertions(+), 60 deletions(-)

diff --git a/games-util/grfcodec/grfcodec-1.0.0.ebuild b/games-util/grfcodec/grfcodec-1.0.0.ebuild
deleted file mode 100644
index fa0bc8c..0000000
--- a/games-util/grfcodec/grfcodec-1.0.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-SCM=""
-if [ "${PV%9999}" != "${PV}" ] ; then
-	SCM=mercurial
-	EHG_REPO_URI="http://hg.openttdcoop.org/${PN}"
-fi
-
-inherit toolchain-funcs ${SCM}
-
-MY_PV=${PV/_rc/-RC}
-DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files"
-HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec"
-
-if [ "${PV%9999}" != "${PV}" ] ; then
-	SRC_URI=""
-else
-	SRC_URI="http://binaries.openttd.org/extra/${PN}/${MY_PV}/${PN}-${MY_PV}-source.tar.gz"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-if [ "${PV%9999}" != "${PV}" ] ; then
-	S=${WORKDIR}/${PN}
-else
-	S=${WORKDIR}/${PN}-${MY_PV}-source
-fi
-
-DEPEND="dev-lang/perl
-	dev-libs/boost"
-RDEPEND=""
-
-src_prepare() {
-# Set up Makefile.local so that we respect CXXFLAGS/LDFLAGS
-cat > Makefile.local <<-__EOF__
-		CXX = $(tc-getCXX)
-		CXXFLAGS = ${CXXFLAGS}
-		LDOPT = ${LDFLAGS}
-		UPX =
-		V = 1
-	__EOF__
-}
-
-src_install() {
-	dobin ${PN} grf{diff,id,merge} || die
-	doman docs/grf{codec,diff,id,merge}.1 || die
-	dodoc changelog.txt docs/*.txt || die
-}

diff --git a/games-util/grfcodec/grfcodec-5.1.0.ebuild b/games-util/grfcodec/grfcodec-5.1.0.ebuild
index 66784ad..4b4c2eb 100644
--- a/games-util/grfcodec/grfcodec-5.1.0.ebuild
+++ b/games-util/grfcodec/grfcodec-5.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -24,7 +24,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""
 
 if [ "${PV%9999}" != "${PV}" ] ; then
@@ -34,7 +34,8 @@ else
 fi
 
 DEPEND="dev-lang/perl
-	dev-libs/boost"
+	dev-libs/boost
+	media-libs/libpng"
 RDEPEND=""
 
 src_prepare() {

diff --git a/games-util/grfcodec/grfcodec-9999.ebuild b/games-util/grfcodec/grfcodec-9999.ebuild
index 9d74009..a1e9f90 100644
--- a/games-util/grfcodec/grfcodec-9999.ebuild
+++ b/games-util/grfcodec/grfcodec-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -34,7 +34,8 @@ else
 fi
 
 DEPEND="dev-lang/perl
-	dev-libs/boost"
+	dev-libs/boost
+	media-libs/libpng"
 RDEPEND=""
 
 src_prepare() {



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

* [gentoo-commits] proj/gamerlay:master commit in: games-util/grfcodec/
@ 2011-02-13  3:05 Locke Shinseiko
  0 siblings, 0 replies; 6+ messages in thread
From: Locke Shinseiko @ 2011-02-13  3:05 UTC (permalink / raw
  To: gentoo-commits

commit:     6d03816738f3cb4764ffe99dfbb954cc2e03a706
Author:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
AuthorDate: Sun Feb 13 03:04:12 2011 +0000
Commit:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
CommitDate: Sun Feb 13 03:04:12 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=6d038167

[games-util/grfcodec] Add blocker on nforenum, since it is included now.

---
 games-util/grfcodec/grfcodec-5.1.0.ebuild |    3 ++-
 games-util/grfcodec/grfcodec-9999.ebuild  |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/games-util/grfcodec/grfcodec-5.1.0.ebuild b/games-util/grfcodec/grfcodec-5.1.0.ebuild
index 4b4c2eb..281eb7d 100644
--- a/games-util/grfcodec/grfcodec-5.1.0.ebuild
+++ b/games-util/grfcodec/grfcodec-5.1.0.ebuild
@@ -33,7 +33,8 @@ else
 	S=${WORKDIR}/${PN}-${MY_PV}-source
 fi
 
-DEPEND="dev-lang/perl
+DEPEND="!games-util/nforenum
+	dev-lang/perl
 	dev-libs/boost
 	media-libs/libpng"
 RDEPEND=""

diff --git a/games-util/grfcodec/grfcodec-9999.ebuild b/games-util/grfcodec/grfcodec-9999.ebuild
index a1e9f90..d49fc07 100644
--- a/games-util/grfcodec/grfcodec-9999.ebuild
+++ b/games-util/grfcodec/grfcodec-9999.ebuild
@@ -33,7 +33,8 @@ else
 	S=${WORKDIR}/${PN}-${MY_PV}-source
 fi
 
-DEPEND="dev-lang/perl
+DEPEND="!games-util/nforenum
+	dev-lang/perl
 	dev-libs/boost
 	media-libs/libpng"
 RDEPEND=""



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

* [gentoo-commits] proj/gamerlay:master commit in: games-util/grfcodec/
@ 2011-04-30 16:22 Locke Shinseiko
  0 siblings, 0 replies; 6+ messages in thread
From: Locke Shinseiko @ 2011-04-30 16:22 UTC (permalink / raw
  To: gentoo-commits

commit:     769c4d0050d3c29afd298c97c62acddc533faf83
Author:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
AuthorDate: Sat Apr 30 16:17:15 2011 +0000
Commit:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
CommitDate: Sat Apr 30 16:17:15 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=769c4d00

[games-util/grfcodec] bump to 5.1.1

(Portage version: 2.2.0_alpha30/git/Linux x86_64, signed Manifest commit with key CE482794)

---
 ...grfcodec-5.1.0.ebuild => grfcodec-5.1.1.ebuild} |    0
 1 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-util/grfcodec/grfcodec-5.1.0.ebuild b/games-util/grfcodec/grfcodec-5.1.1.ebuild
similarity index 100%
rename from games-util/grfcodec/grfcodec-5.1.0.ebuild
rename to games-util/grfcodec/grfcodec-5.1.1.ebuild



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

* [gentoo-commits] proj/gamerlay:master commit in: games-util/grfcodec/
@ 2012-11-08 12:31 Michael Palimaka
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Palimaka @ 2012-11-08 12:31 UTC (permalink / raw
  To: gentoo-commits

commit:     e6fc2012147fa963ed1f2e50d4bd6b494684711a
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  8 12:29:23 2012 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Nov  8 12:29:23 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=e6fc2012

[games-util/grfcodec] Remove older version overshadowed by portage.

Package-Manager: portage-2.1.11.31
Manifest-Sign-Key: 675D0D2C

---
 games-util/grfcodec/ChangeLog             |    3 ++
 games-util/grfcodec/grfcodec-5.1.1.ebuild |   57 -----------------------------
 2 files changed, 3 insertions(+), 57 deletions(-)

diff --git a/games-util/grfcodec/ChangeLog b/games-util/grfcodec/ChangeLog
index e2e7279..cc3802f 100644
--- a/games-util/grfcodec/ChangeLog
+++ b/games-util/grfcodec/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  08 Nov 2012; Michael Palimaka <kensington@gentoo.org> -grfcodec-5.1.1.ebuild:
+  Remove older version overshadowed by portage.
+
 *grfcodec-5.1.1 (30 Apr 2011)
 
   30 Apr 2011; Locke Shinseiko <wizzleby@gmail.com> -grfcodec-5.1.0.ebuild,

diff --git a/games-util/grfcodec/grfcodec-5.1.1.ebuild b/games-util/grfcodec/grfcodec-5.1.1.ebuild
deleted file mode 100644
index 281eb7d..0000000
--- a/games-util/grfcodec/grfcodec-5.1.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-SCM=""
-if [ "${PV%9999}" != "${PV}" ] ; then
-	SCM=mercurial
-	EHG_REPO_URI="http://hg.openttdcoop.org/${PN}"
-fi
-
-inherit toolchain-funcs ${SCM}
-
-MY_PV=${PV/_rc/-RC}
-DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files"
-HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec"
-
-if [ "${PV%9999}" != "${PV}" ] ; then
-	SRC_URI=""
-else
-	SRC_URI="http://binaries.openttd.org/extra/${PN}/${MY_PV}/${PN}-${MY_PV}-source.tar.gz"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE=""
-
-if [ "${PV%9999}" != "${PV}" ] ; then
-	S=${WORKDIR}/${PN}
-else
-	S=${WORKDIR}/${PN}-${MY_PV}-source
-fi
-
-DEPEND="!games-util/nforenum
-	dev-lang/perl
-	dev-libs/boost
-	media-libs/libpng"
-RDEPEND=""
-
-src_prepare() {
-# Set up Makefile.local so that we respect CXXFLAGS/LDFLAGS
-cat > Makefile.local <<-__EOF__
-		CXX = $(tc-getCXX)
-		CXXFLAGS = ${CXXFLAGS}
-		LDOPT = ${LDFLAGS}
-		UPX =
-		V = 1
-	__EOF__
-}
-
-src_install() {
-	dobin ${PN} grf{diff,id,merge} nforenum || die
-	doman docs/*.1 || die
-	dodoc changelog.txt docs/*.txt || die
-}


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

* [gentoo-commits] proj/gamerlay:master commit in: games-util/grfcodec/
@ 2018-11-10 23:44 Azamat H. Hackimov
  0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2018-11-10 23:44 UTC (permalink / raw
  To: gentoo-commits

commit:     726f88dd5884a2632ffb4f6fc16edde14fe821e7
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sat Nov 10 21:57:13 2018 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sat Nov 10 23:44:20 2018 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=726f88dd

[games-util/grfcodec] remove package

In portage now
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>

 games-util/grfcodec/grfcodec-9999.ebuild | 57 --------------------------------
 games-util/grfcodec/metadata.xml         |  4 ---
 2 files changed, 61 deletions(-)

diff --git a/games-util/grfcodec/grfcodec-9999.ebuild b/games-util/grfcodec/grfcodec-9999.ebuild
deleted file mode 100644
index d49fc07..0000000
--- a/games-util/grfcodec/grfcodec-9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-
-SCM=""
-if [ "${PV%9999}" != "${PV}" ] ; then
-	SCM=mercurial
-	EHG_REPO_URI="http://hg.openttdcoop.org/${PN}"
-fi
-
-inherit toolchain-funcs ${SCM}
-
-MY_PV=${PV/_rc/-RC}
-DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files"
-HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec"
-
-if [ "${PV%9999}" != "${PV}" ] ; then
-	SRC_URI=""
-else
-	SRC_URI="http://binaries.openttd.org/extra/${PN}/${MY_PV}/${PN}-${MY_PV}-source.tar.gz"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-if [ "${PV%9999}" != "${PV}" ] ; then
-	S=${WORKDIR}/${PN}
-else
-	S=${WORKDIR}/${PN}-${MY_PV}-source
-fi
-
-DEPEND="!games-util/nforenum
-	dev-lang/perl
-	dev-libs/boost
-	media-libs/libpng"
-RDEPEND=""
-
-src_prepare() {
-# Set up Makefile.local so that we respect CXXFLAGS/LDFLAGS
-cat > Makefile.local <<-__EOF__
-		CXX = $(tc-getCXX)
-		CXXFLAGS = ${CXXFLAGS}
-		LDOPT = ${LDFLAGS}
-		UPX =
-		V = 1
-	__EOF__
-}
-
-src_install() {
-	dobin ${PN} grf{diff,id,merge} nforenum || die
-	doman docs/*.1 || die
-	dodoc changelog.txt docs/*.txt || die
-}

diff --git a/games-util/grfcodec/metadata.xml b/games-util/grfcodec/metadata.xml
deleted file mode 100644
index 097975e..0000000
--- a/games-util/grfcodec/metadata.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-</pkgmetadata>


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

end of thread, other threads:[~2018-11-10 23:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-13  3:05 [gentoo-commits] proj/gamerlay:master commit in: games-util/grfcodec/ Locke Shinseiko
  -- strict thread matches above, loose matches on Subject: below --
2018-11-10 23:44 Azamat H. Hackimov
2012-11-08 12:31 Michael Palimaka
2011-04-30 16:22 Locke Shinseiko
2011-02-12 15:13 Locke Shinseiko
2011-02-12 15:13 Locke Shinseiko

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