summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Nelson <jnelson@gentoo.org>2002-04-28 17:10:27 +0000
committerJon Nelson <jnelson@gentoo.org>2002-04-28 17:10:27 +0000
commitfffb254077267dee4416bc7db476f2312f9591f8 (patch)
treea11231a2ff3d689142bc353476d8df9291a11004 /dev-python/pygame/files
parentadd snmpy ebuild, closes bug #2027 (diff)
downloadgentoo-2-fffb254077267dee4416bc7db476f2312f9591f8.tar.gz
gentoo-2-fffb254077267dee4416bc7db476f2312f9591f8.tar.bz2
gentoo-2-fffb254077267dee4416bc7db476f2312f9591f8.zip
update to 1.4. Closes 1865
Diffstat (limited to 'dev-python/pygame/files')
-rw-r--r--dev-python/pygame/files/digest-pygame-1.41
-rw-r--r--dev-python/pygame/files/mixer.c-pause.patch21
-rw-r--r--dev-python/pygame/files/music.c-pause.patch21
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/pygame/files/digest-pygame-1.4 b/dev-python/pygame/files/digest-pygame-1.4
new file mode 100644
index 000000000000..a3874fe49f1d
--- /dev/null
+++ b/dev-python/pygame/files/digest-pygame-1.4
@@ -0,0 +1 @@
+MD5 f418f24ba425fc92306a4f8c6904b430 pygame-1.4.tar.gz 819801
diff --git a/dev-python/pygame/files/mixer.c-pause.patch b/dev-python/pygame/files/mixer.c-pause.patch
new file mode 100644
index 000000000000..193464f71750
--- /dev/null
+++ b/dev-python/pygame/files/mixer.c-pause.patch
@@ -0,0 +1,21 @@
+diff -ur pygame-1.4.orig/src/mixer.c pygame-1.4/src/mixer.c
+--- pygame-1.4.orig/src/mixer.c 2002-04-28 11:48:42.000000000 -0500
++++ pygame-1.4/src/mixer.c 2002-04-28 11:48:05.000000000 -0500
+@@ -926,7 +926,7 @@
+ /*DOC*/ "Temporarily stops playback on all the mixer channels.\n"
+ /*DOC*/ ;
+
+-static PyObject* pause(PyObject* self, PyObject* args)
++static PyObject* pause_(PyObject* self, PyObject* args)
+ {
+ if(!PyArg_ParseTuple(args, ""))
+ return NULL;
+@@ -1029,7 +1029,7 @@
+ { "find_channel", find_channel, 1, doc_find_channel },
+ { "fadeout", fadeout, 1, doc_fadeout },
+ { "stop", stop, 1, doc_stop },
+- { "pause", pause, 1, doc_pause },
++ { "pause", pause_, 1, doc_pause },
+ { "unpause", unpause, 1, doc_unpause },
+ /* { "lookup_frequency", lookup_frequency, 1, doc_lookup_frequency },*/
+
diff --git a/dev-python/pygame/files/music.c-pause.patch b/dev-python/pygame/files/music.c-pause.patch
new file mode 100644
index 000000000000..b3bf4ea2f749
--- /dev/null
+++ b/dev-python/pygame/files/music.c-pause.patch
@@ -0,0 +1,21 @@
+diff -ur pygame-1.4.orig/src/music.c pygame-1.4/src/music.c
+--- pygame-1.4.orig/src/music.c 2002-04-28 11:54:03.000000000 -0500
++++ pygame-1.4/src/music.c 2002-04-28 11:54:30.000000000 -0500
+@@ -148,7 +148,7 @@
+ /*DOC*/ "Temporarily stops the current music.\n"
+ /*DOC*/ ;
+
+-static PyObject* pause(PyObject* self, PyObject* args)
++static PyObject* pause_(PyObject* self, PyObject* args)
+ {
+ if(!PyArg_ParseTuple(args, ""))
+ return NULL;
+@@ -365,7 +365,7 @@
+ { "get_busy", get_busy, 1, doc_get_busy },
+ { "fadeout", fadeout, 1, doc_fadeout },
+ { "stop", stop, 1, doc_stop },
+- { "pause", pause, 1, doc_pause },
++ { "pause", pause_, 1, doc_pause },
+ { "unpause", unpause, 1, doc_unpause },
+ { "rewind", mus_rewind, 1, doc_rewind },
+ { "set_volume", set_volume, 1, doc_set_volume },