Changeset 1157

Show
Ignore:
Timestamp:
11/19/08 08:30:14 (16 months ago)
Author:
seang
Message:

Remove reference to GEOSCoordSeq_getOrdinate (#178)

Location:
Shapely/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • Shapely/trunk/CHANGES.txt

    r1150 r1157  
    11All tickets are children of http://trac.gispython.org/lab/ticket. 
     2 
     31.0.11 (2008-11-19) 
     4------------------- 
     5- Apparently, Debian's 2.2.3 C lib doesn't export a GEOSCoordSeq_getOrdinate 
     6  (#178). 
     7 
     81.0.10 (2008-11-17) 
     9------------------- 
     10- Fixed compatibility with GEOS 2.2.3 that was broken in 1.0.8 release (#176). 
    211 
    3121.0.9 (2008-11-16) 
  • Shapely/trunk/GEOS-C-API.txt

    r1153 r1157  
    4848lgeos.GEOSWKBWriter_setIncludeSRID.restype = None 
    4949lgeos.GEOSWKBWriter_setIncludeSRID.argtypes = [ctypes.c_void_p, ctypes.c_char] 
     50 
     51Furthermore, the following unneeded declarations are removed to avoid problems 
     52with Debian's 2.2.3 package: 
     53 
     54lgeos.GEOSCoordSeq_getOrdinate.restype = ctypes.c_int 
     55lgeos.GEOSCoordSeq_getOrdinate.argtypes = [ctypes.c_void_p, ctypes.c_uint, ctypes.c_uint, ctypes.c_void_p] 
  • Shapely/trunk/setup.py

    r1150 r1157  
    1111 
    1212setup(name          = 'Shapely', 
    13       version       = '1.0.9', 
     13      version       = '1.0.11', 
    1414      description   = 'Geospatial geometries, predicates, and operations', 
    1515      license       = 'BSD', 
  • Shapely/trunk/setup_windows.py

    r1150 r1157  
    1111 
    1212setup(name          = 'Shapely', 
    13       version       = '1.0.9', 
     13      version       = '1.0.11', 
    1414      description   = 'Geospatial geometries, predicates, and operations', 
    1515      license       = 'BSD', 
  • Shapely/trunk/shapely/ctypes_declarations.py

    r1153 r1157  
    5151lgeos.GEOSCoordSeq_getZ.argtypes = [ctypes.c_void_p, ctypes.c_uint, ctypes.c_void_p] 
    5252 
    53 lgeos.GEOSCoordSeq_getOrdinate.restype = ctypes.c_int 
    54 lgeos.GEOSCoordSeq_getOrdinate.argtypes = [ctypes.c_void_p, ctypes.c_uint, ctypes.c_uint, ctypes.c_void_p] 
    55  
    5653lgeos.GEOSCoordSeq_getSize.restype = ctypes.c_int 
    5754lgeos.GEOSCoordSeq_getSize.argtypes = [ctypes.c_void_p, ctypes.c_void_p] 
     
    206203lgeos.GEOSDistance.restype = ctypes.c_int 
    207204lgeos.GEOSDistance.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p] 
    208