public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog
@ 2013-01-11 18:22 Julian Ospald (hasufell)
  0 siblings, 0 replies; 7+ messages in thread
From: Julian Ospald (hasufell) @ 2013-01-11 18:22 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/01/11 18:22:02

  Modified:             ChangeLog
  Added:                slune-1.0.15-r1.ebuild
  Log:
  migrate to distutils-r1, respect FHS and gamesdirs, add amd64 keyword
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.20                 games-action/slune/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	6 Apr 2011 19:56:01 -0000	1.19
+++ ChangeLog	11 Jan 2013 18:22:02 -0000	1.20
@@ -1,6 +1,11 @@
 # ChangeLog for games-action/slune
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.19 2011/04/06 19:56:01 arfrever Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.20 2013/01/11 18:22:02 hasufell Exp $
+
+*slune-1.0.15-r1 (11 Jan 2013)
+
+  11 Jan 2013; Julian Ospald <hasufell@gentoo.org> +slune-1.0.15-r1.ebuild:
+  migrate to distutils-r1, respect FHS and gamesdirs, add amd64 keyword
 
   06 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   slune-1.0.15.ebuild:



1.1                  games-action/slune/slune-1.0.15-r1.ebuild

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

Index: slune-1.0.15-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.1 2013/01/11 18:22:02 hasufell Exp $

EAPI=5

PYTHON_COMPAT=( python2_5 python2_6 python2_7 )

# inherit base explicitly to avoid overrides on distutils-r1
inherit base gnome2-utils python-utils-r1 distutils-r1 games

DESCRIPTION="A 3D action game with multiplayer mode and amazing graphics"
HOMEPAGE="http://oomadness.tuxfamily.org/en/slune/"
SRC_URI="http://download.gna.org/slune/Slune-${PV}.tar.bz2"

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

RDEPEND="virtual/opengl
	>=media-libs/libsdl-1.2.6
	>=dev-python/soya-0.9
	>=dev-python/py2play-0.1.9
	>=dev-python/pyopenal-0.1.3
	>=dev-python/pyogg-1.1
	>=dev-python/pyvorbis-1.1"
DEPEND="${RDEPEND}"

S=${WORKDIR}/Slune-${PV}

python_install() {
	distutils-r1_python_install \
		--install-scripts="${GAMES_BINDIR}" \
		--install-data="${GAMES_DATADIR}" \
		--install-lib="$(python_get_sitedir)"

	# FHS broke the logic, fix it
	local i
	for i in $(ls -I locale "${ED}${GAMES_DATADIR}"/${PN}) ; do
		dosym "${GAMES_DATADIR}/${PN}/${i}" "$(python_get_sitedir)/${PN}/${i}"
	done
}

src_compile() {
	distutils-r1_src_compile
}

src_install() {
	distutils-r1_src_install

	# fix install dest of locales
	mv "${ED}${GAMES_DATADIR}"/${PN}/locale "${ED}"/usr/share/locale || die

	newicon -s 48 images/${PN}.48.png ${PN}.png
	make_desktop_entry ${PN} "Slune"

	prepgamesdirs
}

pkg_preinst() {
	games_pkg_preinst
	gnome2_icon_savelist
}

pkg_postinst() {
	games_pkg_postinst
	gnome2_icon_cache_update
}

pkg_postrm() {
	gnome2_icon_cache_update
}





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

* [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog
@ 2013-01-11 18:51 Julian Ospald (hasufell)
  0 siblings, 0 replies; 7+ messages in thread
From: Julian Ospald (hasufell) @ 2013-01-11 18:51 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/01/11 18:51:16

  Modified:             slune-1.0.15-r1.ebuild ChangeLog
  Log:
  inherit eutils explicitly
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.2                  games-action/slune/slune-1.0.15-r1.ebuild

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

Index: slune-1.0.15-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- slune-1.0.15-r1.ebuild	11 Jan 2013 18:22:02 -0000	1.1
+++ slune-1.0.15-r1.ebuild	11 Jan 2013 18:51:15 -0000	1.2
@@ -1,13 +1,13 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.1 2013/01/11 18:22:02 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.2 2013/01/11 18:51:15 hasufell Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
 
 # inherit base explicitly to avoid overrides on distutils-r1
-inherit base gnome2-utils python-utils-r1 distutils-r1 games
+inherit base eutils gnome2-utils python-utils-r1 distutils-r1 games
 
 DESCRIPTION="A 3D action game with multiplayer mode and amazing graphics"
 HOMEPAGE="http://oomadness.tuxfamily.org/en/slune/"



1.21                 games-action/slune/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	11 Jan 2013 18:22:02 -0000	1.20
+++ ChangeLog	11 Jan 2013 18:51:15 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/slune
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.20 2013/01/11 18:22:02 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.21 2013/01/11 18:51:15 hasufell Exp $
+
+  11 Jan 2013; Julian Ospald <hasufell@gentoo.org> slune-1.0.15-r1.ebuild:
+  inherit eutils explicitly
 
 *slune-1.0.15-r1 (11 Jan 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog
@ 2013-01-12 15:36 Julian Ospald (hasufell)
  0 siblings, 0 replies; 7+ messages in thread
From: Julian Ospald (hasufell) @ 2013-01-12 15:36 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/01/12 15:36:03

  Modified:             slune-1.0.15-r1.ebuild ChangeLog
  Log:
  remove inherit magic and call functions explicitly
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.3                  games-action/slune/slune-1.0.15-r1.ebuild

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

Index: slune-1.0.15-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- slune-1.0.15-r1.ebuild	11 Jan 2013 18:51:15 -0000	1.2
+++ slune-1.0.15-r1.ebuild	12 Jan 2013 15:36:03 -0000	1.3
@@ -1,13 +1,12 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.2 2013/01/11 18:51:15 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.3 2013/01/12 15:36:03 hasufell Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
 
-# inherit base explicitly to avoid overrides on distutils-r1
-inherit base eutils gnome2-utils python-utils-r1 distutils-r1 games
+inherit gnome2-utils python-utils-r1 distutils-r1 games
 
 DESCRIPTION="A 3D action game with multiplayer mode and amazing graphics"
 HOMEPAGE="http://oomadness.tuxfamily.org/en/slune/"
@@ -42,6 +41,10 @@
 	done
 }
 
+src_prepare() {
+	distutils-r1_src_prepare
+}
+
 src_compile() {
 	distutils-r1_src_compile
 }



1.22                 games-action/slune/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	11 Jan 2013 18:51:15 -0000	1.21
+++ ChangeLog	12 Jan 2013 15:36:03 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/slune
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.21 2013/01/11 18:51:15 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.22 2013/01/12 15:36:03 hasufell Exp $
+
+  12 Jan 2013; Julian Ospald <hasufell@gentoo.org> slune-1.0.15-r1.ebuild:
+  remove inherit magic and call functions explicitly
 
   11 Jan 2013; Julian Ospald <hasufell@gentoo.org> slune-1.0.15-r1.ebuild:
   inherit eutils explicitly





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

* [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog
@ 2013-02-17 15:12 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-17 15:12 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/17 15:12:07

  Modified:             slune-1.0.15-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #457108
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  games-action/slune/slune-1.0.15-r1.ebuild

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

Index: slune-1.0.15-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- slune-1.0.15-r1.ebuild	12 Jan 2013 15:36:03 -0000	1.3
+++ slune-1.0.15-r1.ebuild	17 Feb 2013 15:12:07 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.3 2013/01/12 15:36:03 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.4 2013/02/17 15:12:07 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="virtual/opengl



1.23                 games-action/slune/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	12 Jan 2013 15:36:03 -0000	1.22
+++ ChangeLog	17 Feb 2013 15:12:07 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/slune
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.22 2013/01/12 15:36:03 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.23 2013/02/17 15:12:07 ago Exp $
+
+  17 Feb 2013; Agostino Sarubbo <ago@gentoo.org> slune-1.0.15-r1.ebuild:
+  Stable for amd64, wrt bug #457108
 
   12 Jan 2013; Julian Ospald <hasufell@gentoo.org> slune-1.0.15-r1.ebuild:
   remove inherit magic and call functions explicitly





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

* [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog
@ 2013-02-17 17:37 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-17 17:37 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/17 17:37:13

  Modified:             slune-1.0.15-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #457108
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  games-action/slune/slune-1.0.15-r1.ebuild

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

Index: slune-1.0.15-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- slune-1.0.15-r1.ebuild	17 Feb 2013 15:12:07 -0000	1.4
+++ slune-1.0.15-r1.ebuild	17 Feb 2013 17:37:13 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.4 2013/02/17 15:12:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.5 2013/02/17 17:37:13 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="virtual/opengl



1.24                 games-action/slune/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	17 Feb 2013 15:12:07 -0000	1.23
+++ ChangeLog	17 Feb 2013 17:37:13 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/slune
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.23 2013/02/17 15:12:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.24 2013/02/17 17:37:13 ago Exp $
+
+  17 Feb 2013; Agostino Sarubbo <ago@gentoo.org> slune-1.0.15-r1.ebuild:
+  Stable for x86, wrt bug #457108
 
   17 Feb 2013; Agostino Sarubbo <ago@gentoo.org> slune-1.0.15-r1.ebuild:
   Stable for amd64, wrt bug #457108





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

* [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog
@ 2013-09-05 19:44 Michal Gorny (mgorny)
  0 siblings, 0 replies; 7+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 19:44 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/09/05 19:44:55

  Modified:             slune-1.0.15-r1.ebuild ChangeLog
  Log:
  Clean up PYTHON_COMPAT from old implementations.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.6                  games-action/slune/slune-1.0.15-r1.ebuild

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

Index: slune-1.0.15-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- slune-1.0.15-r1.ebuild	17 Feb 2013 17:37:13 -0000	1.5
+++ slune-1.0.15-r1.ebuild	5 Sep 2013 19:44:55 -0000	1.6
@@ -1,10 +1,10 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.5 2013/02/17 17:37:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.6 2013/09/05 19:44:55 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
+PYTHON_COMPAT=( python2_6 python2_7 )
 
 inherit gnome2-utils python-utils-r1 distutils-r1 games
 



1.25                 games-action/slune/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	17 Feb 2013 17:37:13 -0000	1.24
+++ ChangeLog	5 Sep 2013 19:44:55 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/slune
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.24 2013/02/17 17:37:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.25 2013/09/05 19:44:55 mgorny Exp $
+
+  05 Sep 2013; Michał Górny <mgorny@gentoo.org> slune-1.0.15-r1.ebuild:
+  Clean up PYTHON_COMPAT from old implementations.
 
   17 Feb 2013; Agostino Sarubbo <ago@gentoo.org> slune-1.0.15-r1.ebuild:
   Stable for x86, wrt bug #457108





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

* [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog
@ 2015-04-08 18:09 Michal Gorny (mgorny)
  0 siblings, 0 replies; 7+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08 18:09 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 18:09:39

  Modified:             slune-1.0.15-r1.ebuild ChangeLog
  Log:
  Drop old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.7                  games-action/slune/slune-1.0.15-r1.ebuild

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

Index: slune-1.0.15-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- slune-1.0.15-r1.ebuild	5 Sep 2013 19:44:55 -0000	1.6
+++ slune-1.0.15-r1.ebuild	8 Apr 2015 18:09:39 -0000	1.7
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 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/slune/slune-1.0.15-r1.ebuild,v 1.6 2013/09/05 19:44:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.15-r1.ebuild,v 1.7 2015/04/08 18:09:39 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_6 python2_7 )
+PYTHON_COMPAT=( python2_7 )
 
 inherit gnome2-utils python-utils-r1 distutils-r1 games
 



1.27                 games-action/slune/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	16 Jul 2014 01:51:31 -0000	1.26
+++ ChangeLog	8 Apr 2015 18:09:39 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/slune
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.26 2014/07/16 01:51:31 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.27 2015/04/08 18:09:39 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org> slune-1.0.15-r1.ebuild:
+  Drop old Python implementations
 
   16 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org> -slune-1.0.15.ebuild:
   old





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

end of thread, other threads:[~2015-04-08 18:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-11 18:22 [gentoo-commits] gentoo-x86 commit in games-action/slune: slune-1.0.15-r1.ebuild ChangeLog Julian Ospald (hasufell)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-11 18:51 Julian Ospald (hasufell)
2013-01-12 15:36 Julian Ospald (hasufell)
2013-02-17 15:12 Agostino Sarubbo (ago)
2013-02-17 17:37 Agostino Sarubbo (ago)
2013-09-05 19:44 Michal Gorny (mgorny)
2015-04-08 18:09 Michal Gorny (mgorny)

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