diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-python/pygui | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-python/pygui')
-rw-r--r-- | dev-python/pygui/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pygui/files/pygui-2.2-python-2.6.patch | 18 | ||||
-rw-r--r-- | dev-python/pygui/files/pygui-2.2-resources.patch | 8 | ||||
-rw-r--r-- | dev-python/pygui/metadata.xml | 12 | ||||
-rw-r--r-- | dev-python/pygui/pygui-2.5.3-r1.ebuild | 30 |
5 files changed, 69 insertions, 0 deletions
diff --git a/dev-python/pygui/Manifest b/dev-python/pygui/Manifest new file mode 100644 index 000000000000..64dcc05766f1 --- /dev/null +++ b/dev-python/pygui/Manifest @@ -0,0 +1 @@ +DIST PyGUI-2.5.3.tar.gz 594157 SHA256 ef3af16d97dc6f71898d71706ee9e2fe6de44a83ace01d690054804ca16c7315 SHA512 dbbfd95785f37842dab657be7218bf057512fdb43f1c3eda7a9cf1b6d62c83b40b4295572bc6947fe77fc23e25b53c8a69855ddf2272e25410fdb17297483942 WHIRLPOOL 37853cbd2a959c1c9c3e1f69bdd68bfd84094c1db465c490ada16b7081a84b4a6b992ad668f01340295654c15eb0f0137a10f88d38402cee77d50ae196c9acc0 diff --git a/dev-python/pygui/files/pygui-2.2-python-2.6.patch b/dev-python/pygui/files/pygui-2.2-python-2.6.patch new file mode 100644 index 000000000000..3856cc7787c7 --- /dev/null +++ b/dev-python/pygui/files/pygui-2.2-python-2.6.patch @@ -0,0 +1,18 @@ +diff -r -U1 PyGUI-2.2.orig/GUI/Gtk/GL.py PyGUI-2.2/GUI/Gtk/GL.py +--- PyGUI-2.2.orig/GUI/Gtk/GL.py 2009-04-10 11:45:08.000000000 +0200 ++++ PyGUI-2.2/GUI/Gtk/GL.py 2010-02-20 00:30:39.000000000 +0100 +@@ -44,3 +44,3 @@ + cs = self._color_size +- as = 0 ++ as_ = 0 + ds = 0 +@@ -50,3 +50,3 @@ + if self._alpha: +- as = self._alpha_size ++ as_ = self._alpha_size + if self._depth_buffer: +@@ -64,3 +64,3 @@ + gdkgl.BLUE_SIZE, cs, +- gdkgl.ALPHA_SIZE, as, ++ gdkgl.ALPHA_SIZE, as_, + gdkgl.AUX_BUFFERS, self._aux_buffers, diff --git a/dev-python/pygui/files/pygui-2.2-resources.patch b/dev-python/pygui/files/pygui-2.2-resources.patch new file mode 100644 index 000000000000..dbf3f3fdf7fa --- /dev/null +++ b/dev-python/pygui/files/pygui-2.2-resources.patch @@ -0,0 +1,8 @@ +diff -r -U1 PyGUI-2.2.orig/setup.py PyGUI-2.2/setup.py +--- PyGUI-2.2.orig/setup.py 2009-04-12 07:36:14.000000000 +0200 ++++ PyGUI-2.2/setup.py 2010-02-21 00:52:21.000000000 +0100 +@@ -15,3 +15,3 @@ + dst_rsrc_dir = os.path.join(dst_gui_dir, "Resources", "cursors") +-src_rsrc_files = glob(os.path.join("GUI", "Resources", "Cursors", "*")) ++src_rsrc_files = glob(os.path.join("GUI", "Resources", "cursors", "*")) + diff --git a/dev-python/pygui/metadata.xml b/dev-python/pygui/metadata.xml new file mode 100644 index 000000000000..d9113ab8f50a --- /dev/null +++ b/dev-python/pygui/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> + <maintainer> + <email>grozin@gentoo.org</email> + <name>Andrey Grozin</name> + </maintainer> + <longdescription> + A cross-platform graphical application framework for Python. + </longdescription> +</pkgmetadata> diff --git a/dev-python/pygui/pygui-2.5.3-r1.ebuild b/dev-python/pygui/pygui-2.5.3-r1.ebuild new file mode 100644 index 000000000000..300afd07c316 --- /dev/null +++ b/dev-python/pygui/pygui-2.5.3-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MY_P="PyGUI-${PV}" + +DESCRIPTION="A cross-platform pythonic GUI API" +HOMEPAGE="http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/" +SRC_URI="http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/${MY_P}.tar.gz" + +LICENSE="PyGUI" +SLOT=0 +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +DEPEND="dev-python/pygtk[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}"/${MY_P} + +python_install_all() { + use doc && local HTML_DOCS=( Doc/. ) + use examples && local EXAMPLES=( Demos/. ) + distutils-r1_python_install_all +} |