Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyglet: pyglet-1.2.3.ebuild ChangeLog
Date: Fri, 26 Jun 2015 12:44:29
Message-Id: 20150626124416.C8C23A55@oystercatcher.gentoo.org
1 jlec 15/06/26 12:44:16
2
3 Modified: ChangeLog
4 Added: pyglet-1.2.3.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.16 dev-python/pyglet/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyglet/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyglet/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyglet/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyglet/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 3 Jun 2015 21:01:02 -0000 1.15
24 +++ ChangeLog 26 Jun 2015 12:44:16 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyglet
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyglet/ChangeLog,v 1.15 2015/06/03 21:01:02 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyglet/ChangeLog,v 1.16 2015/06/26 12:44:16 jlec Exp $
30 +
31 +*pyglet-1.2.3 (26 Jun 2015)
32 +
33 + 26 Jun 2015; Justin Lecher <jlec@g.o> +pyglet-1.2.3.ebuild:
34 + Version Bump
35
36 03 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
37 Add pypi to remote-id in metadata.xml
38
39
40
41 1.1 dev-python/pyglet/pyglet-1.2.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyglet/pyglet-1.2.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyglet/pyglet-1.2.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyglet-1.2.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyglet/pyglet-1.2.3.ebuild,v 1.1 2015/06/26 12:44:16 jlec Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 python3_{3,4} )
55
56 inherit distutils-r1 virtualx
57
58 DESCRIPTION="Cross-platform windowing and multimedia library for Python"
59 HOMEPAGE="http://www.pyglet.org/"
60 SRC_URI="
61 mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
62 http://pyglet.googlecode.com/files/${P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE="alsa examples gtk +openal"
68
69 RDEPEND="
70 virtual/opengl
71 alsa? ( media-libs/alsa-lib[alisp] )
72 gtk? ( x11-libs/gtk+:2 )
73 openal? ( media-libs/openal )"
74 DEPEND="${RDEPEND}"
75 # ffmpeg? ( media-libs/avbin-bin )
76
77 # pyglet.gl.glx_info.GLXInfoException: pyglet requires an X server with GLX
78 RESTRICT=test
79
80 python_test() {
81 python_is_python3 && return
82 VIRTUALX_COMMAND="${PYTHON}"
83 virtualmake tests/test.py
84 }
85
86 python_install_all() {
87 DOCS=( NOTICE )
88 use examples && EXAMPLES=( examples )
89 distutils-r1_python_install_all
90 }