public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-action/maelstrom: maelstrom-3.0.6-r2.ebuild ChangeLog
@ 2014-03-18  6:33 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2014-03-18  6:33 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    14/03/18 06:33:59

  Modified:             ChangeLog
  Added:                maelstrom-3.0.6-r2.ebuild
  Log:
  EAPI=5; update HOMEPAGE (bug #499700); warnings patch
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.21                 games-action/maelstrom/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	31 Mar 2010 20:51:08 -0000	1.20
+++ ChangeLog	18 Mar 2014 06:33:58 -0000	1.21
@@ -1,6 +1,13 @@
 # ChangeLog for games-action/maelstrom
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.20 2010/03/31 20:51:08 mr_bones_ Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.21 2014/03/18 06:33:58 mr_bones_ Exp $
+
+*maelstrom-3.0.6-r2 (18 Mar 2014)
+
+  18 Mar 2014; Michael Sterrett <mr_bones_@gentoo.org>
+  +files/maelstrom-3.0.6-gcc34.patch, +files/maelstrom-3.0.6-security.patch,
+  +files/maelstrom-3.0.6-warnings.patch, +maelstrom-3.0.6-r2.ebuild:
+  EAPI=5; update HOMEPAGE (bug #499700); warnings patch
 
   31 Mar 2010; Michael Sterrett <mr_bones_@gentoo.org>
   maelstrom-3.0.6-r1.ebuild:



1.1                  games-action/maelstrom/maelstrom-3.0.6-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.1&content-type=text/plain

Index: maelstrom-3.0.6-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.1 2014/03/18 06:33:58 mr_bones_ Exp $

EAPI=5
inherit autotools eutils games

MY_P=Maelstrom-${PV}
DESCRIPTION="An asteroids battle game"
HOMEPAGE="http://www.libsdl.org/projects/Maelstrom/"
SRC_URI="http://www.libsdl.org/projects/Maelstrom/src/${MY_P}.tar.gz"

KEYWORDS="~alpha ~amd64 ~ppc ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""

DEPEND="media-libs/libsdl[audio,joystick,video]
	media-libs/sdl-net"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${MY_P}

src_prepare() {
	epatch \
		"${FILESDIR}"/${P}-security.patch \
		"${FILESDIR}"/${P}-64bits.patch \
		"${FILESDIR}"/${P}-gcc34.patch \
		"${FILESDIR}"/${P}-warnings.patch

	# Install the data into $(datadir)/..., not $(prefix)/games/...
	sed -i \
		-e "s:(prefix)/games/:(datadir)/:" configure.in || die
	sed -i \
		-e '/make install_gamedata/ { s:=:=$(DESTDIR)/:; s/make/$(MAKE)/; s/install_gamedata/install-binPROGRAMS install_gamedata/; }' Makefile.am || die
	# Install the high scores file in ${GAMES_STATEDIR}
	sed -i \
		-e "s:path.Path(MAELSTROM_SCORES):\"${GAMES_STATEDIR}/\"MAELSTROM_SCORES:" scores.cpp || die
	eautoreconf
}

src_install() {
	emake DESTDIR="${D}" install
	dodoc Changelog README* Docs/{Maelstrom-Announce,*FAQ,MaelstromGPL_press_release,*.Paper,Technical_Notes*}
	newicon "${D}${GAMES_DATADIR}"/Maelstrom/icon.xpm maelstrom.xpm
	make_desktop_entry Maelstrom "Maelstrom" maelstrom

	# Put the high scores file in the right place
	insinto "${GAMES_STATEDIR}"
	doins "${D}${GAMES_DATADIR}"/Maelstrom/Maelstrom-Scores
	# clean up some cruft
	rm -f \
		"${D}${GAMES_DATADIR}"/Maelstrom/Maelstrom-Scores \
		"${D}${GAMES_DATADIR}"/Maelstrom/Images/Makefile*
	# make sure we can update the high scores
	fperms 664 "${GAMES_STATEDIR}"/Maelstrom-Scores
	prepgamesdirs
}





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

* [gentoo-commits] gentoo-x86 commit in games-action/maelstrom: maelstrom-3.0.6-r2.ebuild ChangeLog
@ 2014-04-05 11:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-05 11:09 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/05 11:09:48

  Modified:             maelstrom-3.0.6-r2.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #505002
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  games-action/maelstrom/maelstrom-3.0.6-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?r1=1.2&r2=1.3

Index: maelstrom-3.0.6-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- maelstrom-3.0.6-r2.ebuild	1 Apr 2014 13:23:38 -0000	1.2
+++ maelstrom-3.0.6-r2.ebuild	5 Apr 2014 11:09:48 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.2 2014/04/01 13:23:38 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.3 2014/04/05 11:09:48 ago Exp $
 
 EAPI=5
 inherit autotools eutils games
@@ -10,7 +10,7 @@
 HOMEPAGE="http://www.libsdl.org/projects/Maelstrom/"
 SRC_URI="http://www.libsdl.org/projects/Maelstrom/src/${MY_P}.tar.gz"
 
-KEYWORDS="~alpha amd64 ~ppc ~x86"
+KEYWORDS="~alpha amd64 ~ppc x86"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE=""



1.23                 games-action/maelstrom/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	1 Apr 2014 13:23:38 -0000	1.22
+++ ChangeLog	5 Apr 2014 11:09:48 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/maelstrom
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.22 2014/04/01 13:23:38 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.23 2014/04/05 11:09:48 ago Exp $
+
+  05 Apr 2014; Agostino Sarubbo <ago@gentoo.org> maelstrom-3.0.6-r2.ebuild:
+  Stable for x86, wrt bug #505002
 
   01 Apr 2014; Chema Alonso <nimiux@gentoo.org> maelstrom-3.0.6-r2.ebuild:
   Stable for amd64 wrt bug #505002





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

* [gentoo-commits] gentoo-x86 commit in games-action/maelstrom: maelstrom-3.0.6-r2.ebuild ChangeLog
@ 2014-04-13 16:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-13 16:26 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/13 16:26:20

  Modified:             maelstrom-3.0.6-r2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #505002
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  games-action/maelstrom/maelstrom-3.0.6-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?r1=1.3&r2=1.4

Index: maelstrom-3.0.6-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- maelstrom-3.0.6-r2.ebuild	5 Apr 2014 11:09:48 -0000	1.3
+++ maelstrom-3.0.6-r2.ebuild	13 Apr 2014 16:26:20 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.3 2014/04/05 11:09:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.4 2014/04/13 16:26:20 ago Exp $
 
 EAPI=5
 inherit autotools eutils games
@@ -10,7 +10,7 @@
 HOMEPAGE="http://www.libsdl.org/projects/Maelstrom/"
 SRC_URI="http://www.libsdl.org/projects/Maelstrom/src/${MY_P}.tar.gz"
 
-KEYWORDS="~alpha amd64 ~ppc x86"
+KEYWORDS="~alpha amd64 ppc x86"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE=""



1.24                 games-action/maelstrom/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	5 Apr 2014 11:09:48 -0000	1.23
+++ ChangeLog	13 Apr 2014 16:26:20 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/maelstrom
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.23 2014/04/05 11:09:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.24 2014/04/13 16:26:20 ago Exp $
+
+  13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> maelstrom-3.0.6-r2.ebuild:
+  Stable for ppc, wrt bug #505002
 
   05 Apr 2014; Agostino Sarubbo <ago@gentoo.org> maelstrom-3.0.6-r2.ebuild:
   Stable for x86, wrt bug #505002





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

* [gentoo-commits] gentoo-x86 commit in games-action/maelstrom: maelstrom-3.0.6-r2.ebuild ChangeLog
@ 2015-01-02 15:51 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone (tupone) @ 2015-01-02 15:51 UTC (permalink / raw
  To: gentoo-commits

tupone      15/01/02 15:51:08

  Modified:             maelstrom-3.0.6-r2.ebuild ChangeLog
  Log:
  Fix build with new automake. Bug #514566
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)

Revision  Changes    Path
1.7                  games-action/maelstrom/maelstrom-3.0.6-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?r1=1.6&r2=1.7

Index: maelstrom-3.0.6-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- maelstrom-3.0.6-r2.ebuild	18 Jul 2014 14:23:05 -0000	1.6
+++ maelstrom-3.0.6-r2.ebuild	2 Jan 2015 15:51:08 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.6 2014/07/18 14:23:05 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.7 2015/01/02 15:51:08 tupone Exp $
 
 EAPI=5
 inherit autotools eutils games
@@ -36,6 +36,8 @@
 	# Install the high scores file in ${GAMES_STATEDIR}
 	sed -i \
 		-e "s:path.Path(MAELSTROM_SCORES):\"${GAMES_STATEDIR}/\"MAELSTROM_SCORES:" scores.cpp || die
+	mv configure.{in,ac}
+	rm aclocal.m4 acinclude.m4
 	eautoreconf
 }
 



1.28                 games-action/maelstrom/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	25 Aug 2014 21:19:30 -0000	1.27
+++ ChangeLog	2 Jan 2015 15:51:08 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/maelstrom
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.27 2014/08/25 21:19:30 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.28 2015/01/02 15:51:08 tupone Exp $
+
+  02 Jan 2015; Tupone Alfredo <tupone@gentoo.org> maelstrom-3.0.6-r2.ebuild:
+  Fix build with new automake. Bug #514566 by Patrick Lauer
 
   25 Aug 2014; Michael Sterrett <mr_bones_@gentoo.org>
   -maelstrom-3.0.6-r1.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in games-action/maelstrom: maelstrom-3.0.6-r2.ebuild ChangeLog
@ 2015-03-31 16:16 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-03-31 16:16 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    15/03/31 16:16:57

  Modified:             maelstrom-3.0.6-r2.ebuild ChangeLog
  Log:
  alpha is unstable
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  games-action/maelstrom/maelstrom-3.0.6-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild?r1=1.7&r2=1.8

Index: maelstrom-3.0.6-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- maelstrom-3.0.6-r2.ebuild	2 Jan 2015 15:51:08 -0000	1.7
+++ maelstrom-3.0.6-r2.ebuild	31 Mar 2015 16:16:57 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.7 2015/01/02 15:51:08 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r2.ebuild,v 1.8 2015/03/31 16:16:57 mr_bones_ Exp $
 
 EAPI=5
 inherit autotools eutils games
@@ -10,7 +10,7 @@
 HOMEPAGE="http://www.libsdl.org/projects/Maelstrom/"
 SRC_URI="http://www.libsdl.org/projects/Maelstrom/src/${MY_P}.tar.gz"
 
-KEYWORDS="alpha amd64 ppc x86"
+KEYWORDS="~alpha amd64 ppc x86"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE=""



1.29                 games-action/maelstrom/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/maelstrom/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	2 Jan 2015 15:51:08 -0000	1.28
+++ ChangeLog	31 Mar 2015 16:16:57 -0000	1.29
@@ -1,6 +1,10 @@
 # ChangeLog for games-action/maelstrom
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.28 2015/01/02 15:51:08 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.29 2015/03/31 16:16:57 mr_bones_ Exp $
+
+  31 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org>
+  maelstrom-3.0.6-r2.ebuild:
+  alpha is unstable
 
   02 Jan 2015; Tupone Alfredo <tupone@gentoo.org> maelstrom-3.0.6-r2.ebuild:
   Fix build with new automake. Bug #514566 by Patrick Lauer





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

end of thread, other threads:[~2015-03-31 16:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-18  6:33 [gentoo-commits] gentoo-x86 commit in games-action/maelstrom: maelstrom-3.0.6-r2.ebuild ChangeLog Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2014-04-05 11:09 Agostino Sarubbo (ago)
2014-04-13 16:26 Agostino Sarubbo (ago)
2015-01-02 15:51 Alfredo Tupone (tupone)
2015-03-31 16:16 Michael Sterrett (mr_bones_)

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