Gentoo Archives: gentoo-commits

From: "Ali Polatel (hawking)" <hawking@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyvorbis/files: pyvorbis-1.4-python25.patch digest-pyvorbis-1.4-r3
Date: Wed, 19 Sep 2007 23:45:48
Message-Id: E1IY97C-0004rw-Iz@stork.gentoo.org
1 hawking 07/09/19 23:37:54
2
3 Modified: pyvorbis-1.4-python25.patch
4 Added: digest-pyvorbis-1.4-r3
5 Log:
6 revision bump. change python-2.5 patch to work fine and apply it; bug 192858 thanks to Sean McLean
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.3 dev-python/pyvorbis/files/pyvorbis-1.4-python25.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyvorbis/files/pyvorbis-1.4-python25.patch?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyvorbis/files/pyvorbis-1.4-python25.patch?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyvorbis/files/pyvorbis-1.4-python25.patch?r1=1.2&r2=1.3
15
16 Index: pyvorbis-1.4-python25.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyvorbis/files/pyvorbis-1.4-python25.patch,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- pyvorbis-1.4-python25.patch 19 Jul 2007 18:51:54 -0000 1.2
23 +++ pyvorbis-1.4-python25.patch 19 Sep 2007 23:37:54 -0000 1.3
24 @@ -1,12 +1,12 @@
25 -diff -ur pyvorbis-1.4.orig/src/pyvorbiscodec.c pyvorbis-1.4/src/pyvorbiscodec.c
26 ---- pyvorbis-1.4.orig/src/pyvorbiscodec.c 2007-07-19 17:57:15.000000000 +0200
27 -+++ pyvorbis-1.4/src/pyvorbiscodec.c 2007-07-19 20:13:59.000000000 +0200
28 +diff -ur pyvorbis-1.4-old/src/pyvorbiscodec.c pyvorbis-1.4/src/pyvorbiscodec.c
29 +--- pyvorbis-1.4-old/src/pyvorbiscodec.c 2003-05-13 11:17:13.000000000 +0300
30 ++++ pyvorbis-1.4/src/pyvorbiscodec.c 2007-09-20 01:57:54.000000000 +0300
31 @@ -118,7 +118,7 @@
32 {
33 vorbis_dsp_clear(PY_DSP(self));
34 Py_XDECREF(((py_dsp *)self)->parent);
35 - PyMem_DEL(self);
36 -+ PyObject_DEL(self);
37 ++ PyObject_Del(self);
38 }
39
40 static PyObject*
41 @@ -15,13 +15,13 @@
42 vorbis_block_clear(PY_BLOCK(self));
43 Py_XDECREF(((py_block *)self)->parent);
44 - PyMem_DEL(self);
45 -+ PyObject_DEL(self);
46 ++ PyObject_Del(self);
47 }
48
49 static PyObject*
50 -diff -ur pyvorbis-1.4.orig/src/pyvorbisfile.c pyvorbis-1.4/src/pyvorbisfile.c
51 ---- pyvorbis-1.4.orig/src/pyvorbisfile.c 2007-07-19 17:57:15.000000000 +0200
52 -+++ pyvorbis-1.4/src/pyvorbisfile.c 2007-07-19 20:25:27.000000000 +0200
53 +diff -ur pyvorbis-1.4-old/src/pyvorbisfile.c pyvorbis-1.4/src/pyvorbisfile.c
54 +--- pyvorbis-1.4-old/src/pyvorbisfile.c 2003-12-19 09:11:02.000000000 +0200
55 ++++ pyvorbis-1.4/src/pyvorbisfile.c 2007-09-20 01:59:41.000000000 +0300
56 @@ -173,8 +173,7 @@
57 if (ret == NULL) {
58 PyMem_DEL(newobj);
59 @@ -32,30 +32,25 @@
60
61 return (PyObject *) newobj;
62 }
63 -@@ -190,12 +189,9 @@
64 - /* If file was opened from a file object, decref it, so it can
65 - close */
66 - Py_DECREF(py_self->py_file);
67 -- } else {
68 -- /* Otherwise, we opened the file and should close it. */
69 -- fclose(py_self->c_file);
70 +@@ -195,7 +194,8 @@
71 + fclose(py_self->c_file);
72 }
73 --
74 +
75 - PyMem_DEL(self);
76 + free(py_self->ovf);
77 -+ PyObject_DEL(self);
78 ++ PyObject_Del(self);
79 }
80
81 static PyObject *
82 -diff -ur pyvorbis-1.4.orig/src/pyvorbisinfo.c pyvorbis-1.4/src/pyvorbisinfo.c
83 ---- pyvorbis-1.4.orig/src/pyvorbisinfo.c 2007-07-19 17:57:15.000000000 +0200
84 -+++ pyvorbis-1.4/src/pyvorbisinfo.c 2007-07-19 20:36:25.000000000 +0200
85 +diff -ur pyvorbis-1.4-old/src/pyvorbisinfo.c pyvorbis-1.4/src/pyvorbisinfo.c
86 +--- pyvorbis-1.4-old/src/pyvorbisinfo.c 2003-12-19 09:51:36.000000000 +0200
87 ++++ pyvorbis-1.4/src/pyvorbisinfo.c 2007-09-20 02:01:58.000000000 +0300
88 @@ -134,7 +134,7 @@
89 static void
90 py_ov_info_dealloc(PyObject *self)
91 {
92 - PyMem_DEL(self);
93 -+ PyObject_DEL(self);
94 ++ PyObject_Del(self);
95 }
96
97 #define CMP_RET(x) \
98 @@ -64,7 +59,7 @@
99 }
100
101 - PyMem_DEL(self);
102 -+ PyObject_DEL(self);
103 ++ PyObject_Del(self);
104 }
105
106
107
108
109
110 1.1 dev-python/pyvorbis/files/digest-pyvorbis-1.4-r3
111
112 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyvorbis/files/digest-pyvorbis-1.4-r3?rev=1.1&view=markup
113 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyvorbis/files/digest-pyvorbis-1.4-r3?rev=1.1&content-type=text/plain
114
115 Index: digest-pyvorbis-1.4-r3
116 ===================================================================
117 MD5 b4921e792c0a74f75b9d3057df10ee7c pyvorbis-1.4.tar.gz 39045
118 RMD160 c2e921f5f6deb4ebe3ff3ac8017f0f44c733b5ab pyvorbis-1.4.tar.gz 39045
119 SHA256 a7154541cea58304feff30752243eab862131c7589d72c200c8ad722d3bf1647 pyvorbis-1.4.tar.gz 39045
120
121
122
123 --
124 gentoo-commits@g.o mailing list