head 1.3; access; symbols pkgsrc-2016Q4:1.2.0.4 pkgsrc-2016Q4-base:1.2 pkgsrc-2016Q3:1.2.0.2 pkgsrc-2016Q3-base:1.2 pkgsrc-2016Q2:1.1.0.4 pkgsrc-2016Q2-base:1.1 pkgsrc-2016Q1:1.1.0.2 pkgsrc-2016Q1-base:1.1; locks; strict; comment @# @; 1.3 date 2017.02.05.13.18.24; author wiz; state dead; branches; next 1.2; commitid uicTiWl65962uLEz; 1.2 date 2016.07.01.16.15.18; author bouyer; state Exp; branches; next 1.1; commitid AGMUnigpKGDCuDcz; 1.1 date 2016.02.02.04.33.58; author dbj; state Exp; branches; next ; commitid 4wuuTR72A9DbriTy; desc @@ 1.3 log @Remove patch that is not in distinfo. @ text @$NetBSD: patch-cmake_SIPMacros.cmake,v 1.2 2016/07/01 16:15:18 bouyer Exp $ Always use MODULE with ADD_LIBRARY for modules. This keeps it enabled whether or not APPLE is defined since we have hacks in Makefile to override the APPLE define when we are not building an Application Bundlea --- cmake/SIPMacros.cmake.orig 2016-05-20 14:05:10.000000000 +0200 +++ cmake/SIPMacros.cmake 2016-06-26 14:49:35.000000000 +0200 @@@@ -112,11 +112,7 @@@@ DEPENDS ${_abs_module_sip} ${SIP_EXTRA_FILES_DEPEND} ) # not sure if type MODULE could be uses anywhere, limit to cygwin for now - IF (CYGWIN OR APPLE) - ADD_LIBRARY(${_logical_name} MODULE ${_sip_output_files} ) - ELSE (CYGWIN OR APPLE) - ADD_LIBRARY(${_logical_name} SHARED ${_sip_output_files} ) - ENDIF (CYGWIN OR APPLE) + ADD_LIBRARY(${_logical_name} MODULE ${_sip_output_files} ) IF (NOT APPLE) TARGET_LINK_LIBRARIES(${_logical_name} ${PYTHON_LIBRARY}) ENDIF (NOT APPLE) @ 1.2 log @Update to 2.14.3. Changes since 2.12.3 (for more detailed changelog see http://www.qgis.org/en/site/forusers/visualchangelog214/index.html) General Feature: Changed behaviour of strpos function Feature: Zoom to feature with right-click in attribute table Feature: Speed and memory improvements Feature: More expression variables Feature: Better control over placement of map elements Feature: Paid bugfixing programme Feature: Field calculator can be used to update feature's geometry Feature: New expression functions in 2.14 Analysis tools Feature: More statistics available in merge attributes tool Feature: z/m values are shown when using the identify tool Feature: Unified handling of distance and area units and coordinate formats Browser Feature: Browser Improvements Data Providers Feature: Cache WMS capabililies Feature: Curved geometry support expanded Feature: Better handling of time and datetime fields Feature: Z/M support in delimited text provider Feature: Transaction groups for postgres editing Feature: Postgres provider PKI authentication Feature: Virtual layers Feature: More file extensions for GDAL and OGR providers file selectors Feature: Use ST_RemoveRepeatedPoints for server-side simplification with PostGIS 2.2 (or newer) layers Data management Feature: Removal of SPIT plugin Feature: DXF export: option to use title instead of name as DXF layer name in application and server Feature: Geometry type can be overridden in the vector save as dialog Feature: Vector joins are now saved within QLR layer-definition-files Feature: External Resource widget Feature: N:M relation editing Digitising Feature: Configurable rubber band color Feature: Trace digitising tool Labelling Feature: "Cartographic" placement mode for point labels Feature: Applying label distance from symbol bounds Feature: Control over label rendering order Feature: Actual rendered symbol is now considered as an obstacle for point feature labels Layer Legend Feature: Paste a style to multiple selected layers or to all layers in a legend group Feature: Filter legend by expression Map Composer Feature: New options for filtering legend elements Feature: Additional paths for composer templates Feature: Multiple selection of compositions in manager Plugins Feature: Authentication system support for plugin manager Processing Feature: New algorithms in 2.14 QGIS geoalgorithms: GDAL/OGR geoalgorithms: Feature: Unit Tests Q/A Feature: Improved toolbox Feature: Batch processes can be saved and later recovered from the batch processing interface Feature: More informative algorithm dialog Feature: GRASS7 v.net modules Programmability Feature: Redesign expression function editor Feature: Store python init code into the project Feature: New filtering and sorting options for QgsFeatureRequest Feature: Custom feature form Python code options Feature: New PyQGIS classes in 2.14 New core classes New GUI classes Reusable widgets: Reusable dialogs: QGIS Server Feature: STARTINDEX param in WFS GetFeature Request Feature: showFeatureCount in GetLegendGraphic Feature: Option to avoid rendering artefacts at edges of tiles Feature: Configuration checker in project properties Feature: WMS INSPIRE Capabilities Feature: Add short name to layers, groups and project Symbology Feature: Size assistant for varying line width Feature: Support for transparency in SVG color parameters Feature: Easy duplication of symbol layers Feature: 2.5D Renderer Feature: Allow definition of rendering order for features Feature: Geometry generator symbols Examples Translate a geometry Fill style for polygon border User Interface Feature: Attribute table can be refreshed Feature: Directly set renderer and class symbol colors from context menu in legend Feature: Edit legend symbols directly from layer tree Feature: Show/hide all legend items via the context menu @ text @d1 1 a1 1 $NetBSD: patch-cmake_SIPMacros.cmake,v 1.1 2016/02/02 04:33:58 dbj Exp $ @ 1.1 log @update qgis to 12.2.3 New Features in QGIS 2.12 ‘Lyon’ This is the next release in our 4-monthly release series. It gives you access to the new features we have been working on and represents the ‘cutting edge’ of QGIS development. QGIS ‘Lyon’ is jam-packed with awesome new features. Special highlights are support for rule based labelling, rule based styling of attribute tables, and advanced geometry checker, support for digitising curve based geometries, better authentication management and much, much more! QGIS 2.12 also has many bug fixes and memory leaks addressed. The features provided in QGIS 2.12 will be included in the next LTR release (slated for release in 2016), so using this release provides you with an excellent opportunity to test new features that will make their way into the next LTR. @ text @d1 1 a1 1 $NetBSD$ d8 3 a10 4 --- cmake/SIPMacros.cmake.orig 2016-02-01 04:15:41.000000000 +0000 +++ cmake/SIPMacros.cmake @@@@ -108,12 +108,7 @@@@ MACRO(ADD_SIP_PYTHON_MODULE MODULE_NAME COMMAND ${SIP_BINARY_PATH} ${_sip_tags} -w -e ${_sip_x} ${SIP_EXTRA_OPTIONS} -j ${SIP_CONCAT_PARTS} -c ${CMAKE_CURRENT_BINARY_DIR}/${_module_path} ${_sip_includes} ${_abs_module_sip} d13 1 a13 1 - # not sure if type MODULE could be uses anywhere, limit to cygwin for now @