* [gentoo-commits] gentoo-x86 commit in games-board/pysolfc: pysolfc-2.0-r1.ebuild ChangeLog
@ 2013-01-10 22:16 Julian Ospald (hasufell)
0 siblings, 0 replies; 4+ messages in thread
From: Julian Ospald (hasufell) @ 2013-01-10 22:16 UTC (permalink / raw
To: gentoo-commits
hasufell 13/01/10 22:16:59
Modified: ChangeLog
Added: pysolfc-2.0-r1.ebuild
Log:
migrate to distutils-r1
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Revision Changes Path
1.6 games-board/pysolfc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 15 Oct 2012 05:39:54 -0000 1.5
+++ ChangeLog 10 Jan 2013 22:16:59 -0000 1.6
@@ -1,6 +1,11 @@
# ChangeLog for games-board/pysolfc
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.5 2012/10/15 05:39:54 mr_bones_ Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.6 2013/01/10 22:16:59 hasufell Exp $
+
+*pysolfc-2.0-r1 (10 Jan 2013)
+
+ 10 Jan 2013; Julian Ospald <hasufell@gentoo.org> +pysolfc-2.0-r1.ebuild:
+ migrate to distutils-r1
15 Oct 2012; Michael Sterrett <mr_bones_@gentoo.org> metadata.xml:
metadata fix (bug #438318)
1.1 games-board/pysolfc/pysolfc-2.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.1&content-type=text/plain
Index: pysolfc-2.0-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v 1.1 2013/01/10 22:16:59 hasufell Exp $
EAPI=5
PYTHON_COMPAT=( python2_6 python2_7 )
PYTHON_REQ_USE="tk"
# inherit base explicitly to avoid random overrides on distutils-r1
inherit base eutils python-r1 distutils-r1 games
MY_PN=PySolFC
SOL_URI="mirror://sourceforge/${PN}"
DESCRIPTION="An exciting collection of more than 1000 solitaire card games"
HOMEPAGE="http://pysolfc.sourceforge.net/"
SRC_URI="${SOL_URI}/${MY_PN}-${PV}.tar.bz2
extra-cardsets? ( ${SOL_URI}/${MY_PN}-Cardsets-${PV}.tar.bz2 )"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="extra-cardsets minimal +sound"
S=${WORKDIR}/${MY_PN}-${PV}
RDEPEND="sound? ( dev-python/pygame )
!minimal? ( dev-python/imaging[tk]
dev-tcltk/tktable )"
python_prepare_all() {
sed -i \
-e "/pysol.desktop/d" \
-e "s:share/icons:share/pixmaps:" \
-e "s:data_dir =.*:data_dir = \'share/games/${PN}\':" \
setup.py || die
# avoid installing pysol.py into /usr/bin
sed -i \
-e '/scripts/d' \
setup.py || die
}
# Avoid running emake on shipped Makefile
src_compile() { :; }
python_install_all() {
exeinto "${GAMES_DATADIR}"/${PN}
doexe pysol.py
python_replicate_script "${ED}${GAMES_DATADIR}"/${PN}/pysol.py
games_make_wrapper ${PN} ./pysol.py "${GAMES_DATADIR}"/${PN}
make_desktop_entry ${PN} "PySol Fan Club Edition" pysol01
if use extra-cardsets; then
insinto "${GAMES_DATADIR}"/${PN}
doins -r "${WORKDIR}"/${MY_PN}-Cardsets-${PV}/*
fi
doman docs/*.6
dohtml docs/*.html
dodoc AUTHORS README
docinto docs
dodoc docs/README*
prepgamesdirs
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-board/pysolfc: pysolfc-2.0-r1.ebuild ChangeLog
@ 2013-01-12 15:29 Julian Ospald (hasufell)
0 siblings, 0 replies; 4+ messages in thread
From: Julian Ospald (hasufell) @ 2013-01-12 15:29 UTC (permalink / raw
To: gentoo-commits
hasufell 13/01/12 15:29:50
Modified: pysolfc-2.0-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.2 games-board/pysolfc/pysolfc-2.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?r1=1.1&r2=1.2
Index: pysolfc-2.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pysolfc-2.0-r1.ebuild 10 Jan 2013 22:16:59 -0000 1.1
+++ pysolfc-2.0-r1.ebuild 12 Jan 2013 15:29:50 -0000 1.2
@@ -1,14 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v 1.1 2013/01/10 22:16:59 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v 1.2 2013/01/12 15:29:50 hasufell Exp $
EAPI=5
PYTHON_COMPAT=( python2_6 python2_7 )
PYTHON_REQ_USE="tk"
-# inherit base explicitly to avoid random overrides on distutils-r1
-inherit base eutils python-r1 distutils-r1 games
+inherit eutils python-r1 distutils-r1 games
MY_PN=PySolFC
SOL_URI="mirror://sourceforge/${PN}"
@@ -30,6 +29,8 @@
dev-tcltk/tktable )"
python_prepare_all() {
+ distutils-r1_python_prepare_all
+
sed -i \
-e "/pysol.desktop/d" \
-e "s:share/icons:share/pixmaps:" \
@@ -42,6 +43,10 @@
setup.py || die
}
+src_prepare() {
+ distutils-r1_src_prepare
+}
+
# Avoid running emake on shipped Makefile
src_compile() { :; }
@@ -69,3 +74,7 @@
prepgamesdirs
}
+
+src_install() {
+ distutils-r1_src_install
+}
1.7 games-board/pysolfc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?r1=1.6&r2=1.7
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 10 Jan 2013 22:16:59 -0000 1.6
+++ ChangeLog 12 Jan 2013 15:29:50 -0000 1.7
@@ -1,6 +1,9 @@
# ChangeLog for games-board/pysolfc
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.6 2013/01/10 22:16:59 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.7 2013/01/12 15:29:50 hasufell Exp $
+
+ 12 Jan 2013; Julian Ospald <hasufell@gentoo.org> pysolfc-2.0-r1.ebuild:
+ remove inherit magic and call functions explicitly
*pysolfc-2.0-r1 (10 Jan 2013)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-board/pysolfc: pysolfc-2.0-r1.ebuild ChangeLog
@ 2013-02-14 12:00 Agostino Sarubbo (ago)
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-14 12:00 UTC (permalink / raw
To: gentoo-commits
ago 13/02/14 12:00:22
Modified: pysolfc-2.0-r1.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #457110
(Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 games-board/pysolfc/pysolfc-2.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?r1=1.2&r2=1.3
Index: pysolfc-2.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pysolfc-2.0-r1.ebuild 12 Jan 2013 15:29:50 -0000 1.2
+++ pysolfc-2.0-r1.ebuild 14 Feb 2013 12:00:22 -0000 1.3
@@ -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-board/pysolfc/pysolfc-2.0-r1.ebuild,v 1.2 2013/01/12 15:29:50 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v 1.3 2013/02/14 12:00:22 ago Exp $
EAPI=5
@@ -19,7 +19,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="extra-cardsets minimal +sound"
S=${WORKDIR}/${MY_PN}-${PV}
1.8 games-board/pysolfc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 12 Jan 2013 15:29:50 -0000 1.7
+++ ChangeLog 14 Feb 2013 12:00:22 -0000 1.8
@@ -1,6 +1,9 @@
# ChangeLog for games-board/pysolfc
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.7 2013/01/12 15:29:50 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.8 2013/02/14 12:00:22 ago Exp $
+
+ 14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pysolfc-2.0-r1.ebuild:
+ Stable for amd64, wrt bug #457110
12 Jan 2013; Julian Ospald <hasufell@gentoo.org> pysolfc-2.0-r1.ebuild:
remove inherit magic and call functions explicitly
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-board/pysolfc: pysolfc-2.0-r1.ebuild ChangeLog
@ 2013-02-14 12:08 Agostino Sarubbo (ago)
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-14 12:08 UTC (permalink / raw
To: gentoo-commits
ago 13/02/14 12:08:15
Modified: pysolfc-2.0-r1.ebuild ChangeLog
Log:
Stable for x86, wrt bug #457110
(Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 games-board/pysolfc/pysolfc-2.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild?r1=1.3&r2=1.4
Index: pysolfc-2.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pysolfc-2.0-r1.ebuild 14 Feb 2013 12:00:22 -0000 1.3
+++ pysolfc-2.0-r1.ebuild 14 Feb 2013 12:08:15 -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-board/pysolfc/pysolfc-2.0-r1.ebuild,v 1.3 2013/02/14 12:00:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/pysolfc-2.0-r1.ebuild,v 1.4 2013/02/14 12:08:15 ago Exp $
EAPI=5
@@ -19,7 +19,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="extra-cardsets minimal +sound"
S=${WORKDIR}/${MY_PN}-${PV}
1.9 games-board/pysolfc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pysolfc/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 14 Feb 2013 12:00:22 -0000 1.8
+++ ChangeLog 14 Feb 2013 12:08:15 -0000 1.9
@@ -1,6 +1,9 @@
# ChangeLog for games-board/pysolfc
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.8 2013/02/14 12:00:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/pysolfc/ChangeLog,v 1.9 2013/02/14 12:08:15 ago Exp $
+
+ 14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pysolfc-2.0-r1.ebuild:
+ Stable for x86, wrt bug #457110
14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pysolfc-2.0-r1.ebuild:
Stable for amd64, wrt bug #457110
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-02-14 12:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-12 15:29 [gentoo-commits] gentoo-x86 commit in games-board/pysolfc: pysolfc-2.0-r1.ebuild ChangeLog Julian Ospald (hasufell)
-- strict thread matches above, loose matches on Subject: below --
2013-02-14 12:08 Agostino Sarubbo (ago)
2013-02-14 12:00 Agostino Sarubbo (ago)
2013-01-10 22:16 Julian Ospald (hasufell)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox