svn commit: r401903 - in head/graphics/mirage: . files
Pawel Pekala
pawel at FreeBSD.org
Wed Nov 18 22:50:50 UTC 2015
Author: pawel
Date: Wed Nov 18 22:50:48 2015
New Revision: 401903
URL: https://svnweb.freebsd.org/changeset/ports/401903
Log:
- Add patch fixing window under cursor snapshot function [1]
- Regenerate patches, move patch-setyp.py to correct filename
Submitted by: Ivan Brawley via email [1]
Added:
head/graphics/mirage/files/patch-setup.py
- copied, changed from r401902, head/graphics/mirage/files/patch-setyp.py
head/graphics/mirage/files/patch-xmouse.c (contents, props changed)
Deleted:
head/graphics/mirage/files/patch-setyp.py
Modified:
head/graphics/mirage/Makefile
head/graphics/mirage/files/patch-mirage.py
Modified: head/graphics/mirage/Makefile
==============================================================================
--- head/graphics/mirage/Makefile Wed Nov 18 22:20:28 2015 (r401902)
+++ head/graphics/mirage/Makefile Wed Nov 18 22:50:48 2015 (r401903)
@@ -3,7 +3,7 @@
PORTNAME= mirage
PORTVERSION= 0.9.5.2
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}iv
Modified: head/graphics/mirage/files/patch-mirage.py
==============================================================================
--- head/graphics/mirage/files/patch-mirage.py Wed Nov 18 22:20:28 2015 (r401902)
+++ head/graphics/mirage/files/patch-mirage.py Wed Nov 18 22:50:48 2015 (r401903)
@@ -1,6 +1,6 @@
---- mirage.py.orig 2011-02-13 23:40:05.000000000 +0100
-+++ mirage.py 2013-05-22 17:56:33.000000000 +0200
-@@ -71,7 +71,7 @@
+--- mirage.py.orig 2011-02-13 22:40:05 UTC
++++ mirage.py
+@@ -71,7 +71,7 @@ class Base:
def __init__(self):
@@ -9,7 +9,7 @@
# FIX THIS! Does not work on windows and what happens if mo-files exists
# in both dirs?
-@@ -841,9 +841,7 @@
+@@ -841,9 +841,7 @@ class Base:
self.thumbpane_bottom_coord_loaded = bottom_coord
# update images:
if not self.thumbpane_updating:
@@ -20,7 +20,7 @@
def thumbpane_create_dir(self):
if not os.path.exists(os.path.expanduser('~/.thumbnails/')):
-@@ -4579,6 +4577,6 @@
+@@ -4579,6 +4577,6 @@ class Base:
if __name__ == "__main__":
base = Base()
Copied and modified: head/graphics/mirage/files/patch-setup.py (from r401902, head/graphics/mirage/files/patch-setyp.py)
==============================================================================
--- head/graphics/mirage/files/patch-setyp.py Wed Nov 18 22:20:28 2015 (r401902, copy source)
+++ head/graphics/mirage/files/patch-setup.py Wed Nov 18 22:50:48 2015 (r401903)
@@ -1,6 +1,6 @@
---- setup.py.orig 2008-03-27 13:05:28.000000000 +0900
-+++ setup.py 2009-07-24 05:13:46.000000000 +0900
-@@ -56,9 +56,9 @@
+--- setup.py.orig 2011-02-13 22:40:05 UTC
++++ setup.py
+@@ -58,9 +58,9 @@ setup(name='Mirage',
],
py_modules = ['mirage'],
ext_modules = [Extension(name='imgfuncs', sources=['imgfuncs.c']),
Added: head/graphics/mirage/files/patch-xmouse.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/mirage/files/patch-xmouse.c Wed Nov 18 22:50:48 2015 (r401903)
@@ -0,0 +1,12 @@
+--- xmouse.c.orig 2007-11-27 14:26:18 UTC
++++ xmouse.c
+@@ -37,7 +37,8 @@ PyObject* xmouse_geometry(PyObject* self
+
+ PyMethodDef methods[] =
+ {
+- {"geometry", xmouse_geometry, METH_VARARGS},
++ {"geometry", xmouse_geometry, METH_VARARGS, NULL},
++ {NULL, NULL, 0, NULL}
+ };
+
+ void initxmouse(void)
More information about the svn-ports-head
mailing list