head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.10 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.8 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.6 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.4 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.2 pkgsrc-2025Q1-base:1.1; locks; strict; comment @# @; 1.1 date 2025.03.10.22.54.38; author gdt; state Exp; branches; next ; commitid DzOUTkbAQyCHGzMF; desc @@ 1.1 log @geography/osm2pgsal: Update to 1.11.0 Upstream NEWS content: Release 1.11.0 This release makes the new middle database format the default. If you have not switched already, you need to reimport your database to take advantage of that. We have changed the way we are parsing the command line options. The new code uses the CLI11 library (a copy of which is included in the repository) and is much cleaner and also much stricter. You now get warnings (and sometimes errors) for many combinations of options that don't make sense. Please check the output from osm2pgsql and osm2pgsql-replication for such messages and fix your command lines accordingly. Note especially that duplicated options are not allowed any more. This can happen, for instance, when using osm2pgsql-replication which adds the database connection parameters (such as -d) when it calls osm2pgsql. Release 1.10.0 This is a relatively small but still important release. The new middle table format has changed slightly: the tags field can now be NULL. This makes storage more efficient and indexing faster. The new middle format is now declared stable and production ready. To use it, use the command line option --middle-database-format=new, in a future version of osm2pgsql this will become the new default. If you have used this option already with one of the 1.9.x versions of osm2pgsql you have to reload your database or use this SQL command to update the table: ALTER TABLE ALTER COLUMN tags DROP NOT NULL;, for use planet_osm_nodes, planet_osm_ways, and planet_osm_rels or the equivalents if you are using a different table name prefix. @ text @$NetBSD: patch-docs_CMakeLists.txt,v 1.1 2025/01/06 19:18:00 gdt Exp $ Ask cmake config to respect CMAKE_INSTALL_MANDIR. \todo File upstream. --- man/CMakeLists.txt.orig 2025-01-06 18:19:00.158960664 +0000 +++ man/CMakeLists.txt @@@@ -62,9 +62,9 @@@@ if(MANPAGE_TARGETS) endif() if(ENABLE_INSTALL) - install(FILES osm2pgsql.1 DESTINATION share/man/man1) - install(FILES osm2pgsql-replication.1 DESTINATION share/man/man1) + install(FILES osm2pgsql.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) + install(FILES osm2pgsql-replication.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) if (BUILD_GEN) - install(FILES osm2pgsql-gen.1 COMPONENT gen EXCLUDE_FROM_ALL DESTINATION share/man/man1) + install(FILES osm2pgsql-gen.1 COMPONENT gen EXCLUDE_FROM_ALL DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) endif() endif() @