Date: Sunday, May 14, 2023 @ 10:52:40
  Author: arojas
Revision: 1461573

archrelease: copy trunk to community-staging-x86_64

Added:
  mapnik/repos/community-staging-x86_64/
  mapnik/repos/community-staging-x86_64/PKGBUILD
    (from rev 1461572, mapnik/trunk/PKGBUILD)
  mapnik/repos/community-staging-x86_64/boost-1.80.patch
    (from rev 1461572, mapnik/trunk/boost-1.80.patch)
  mapnik/repos/community-staging-x86_64/gcc-13.patch
    (from rev 1461572, mapnik/trunk/gcc-13.patch)
  mapnik/repos/community-staging-x86_64/scons4.patch
    (from rev 1461572, mapnik/trunk/scons4.patch)

------------------+
 PKGBUILD         |   52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 boost-1.80.patch |   38 ++++++++++++++++++++++++++++++++++++++
 gcc-13.patch     |   23 +++++++++++++++++++++++
 scons4.patch     |   11 +++++++++++
 4 files changed, 124 insertions(+)

Copied: mapnik/repos/community-staging-x86_64/PKGBUILD (from rev 1461572, 
mapnik/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2023-05-14 10:52:40 UTC (rev 1461573)
@@ -0,0 +1,52 @@
+# Maintainer: Jaroslav Lichtblau <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: David Dent <[email protected]>
+# Contributor: orbisvicis <[email protected]>
+
+pkgname=mapnik
+pkgver=3.1.0
+pkgrel=18
+pkgdesc="Free Toolkit for developing mapping applications and rendering 
beautiful maps"
+arch=('x86_64')
+url="https://mapnik.org/";
+license=('LGPL')
+depends=('boost-libs' 'cairo' 'freetype2' 'gdal' 'harfbuzz' 'icu' 
'libjpeg-turbo' 'libpng'
+         'libtiff' 'libwebp' 'libxml2' 'postgresql-libs' 'proj' 'sqlite' 
'zlib')
+makedepends=('boost' 'scons')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2
+        boost-1.80.patch
+        scons4.patch
+        gcc-13.patch)
+sha256sums=('43d76182d2a975212b4ad11524c74e577576c11039fdab5286b828397d8e6261'
+            'b80085fba71ea6ecd86ff98ebdf652490bf56507cb798076192ab3ce136f5eeb'
+            '79a85ddba3ec17b86cb216e21442611498a9f2612f03e98708057b3c3a6e8b06'
+            '84ddba271d74fd4ed1d26501789c50c5e6bda509c238986eb69f96b10cf1465a')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-v$pkgver
+  patch -Np1 -i ../boost-1.80.patch
+
+  # Partial fix to build with SCons 4 (https://bugs.archlinux.org/task/71630)
+  patch -Np1 -i ../scons4.patch
+
+  # Fix build with GCC 13
+  patch -p1 -i ../gcc-13.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-v$pkgver
+  scons configure  FAST=True \
+    PREFIX="/usr" \
+    INPUT_PLUGINS=all \
+    XMLPARSER=libxml2 \
+    DESTDIR="$pkgdir" \
+    CUSTOM_CXXFLAGS="$CXXFLAGS -ffat-lto-objects" \
+    CUSTOM_LDFLAGS="$LDFLAGS" \
+    CUSTOM_DEFINES="-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1"
+  scons $(expr "$MAKEFLAGS" : '.*\(\-j[0-9]\+\)')
+}
+
+package(){
+  cd "${srcdir}"/$pkgname-v$pkgver
+  scons install
+}

Copied: mapnik/repos/community-staging-x86_64/boost-1.80.patch (from rev 
1461572, mapnik/trunk/boost-1.80.patch)
===================================================================
--- community-staging-x86_64/boost-1.80.patch                           (rev 0)
+++ community-staging-x86_64/boost-1.80.patch   2023-05-14 10:52:40 UTC (rev 
1461573)
@@ -0,0 +1,38 @@
+From f741d58fd686d71896b9107049108c1a4414dba4 Mon Sep 17 00:00:00 2001
+From: Artem Pavlenko <[email protected]>
+Date: Tue, 30 Aug 2022 10:40:25 +0100
+Subject: [PATCH] Fix building with boost_1_80 (#4340)
+
+(cherry picked from commit 81103491b467e17218140f50bc0bb9dc8c1f0317)
+---
+ test/unit/serialization/wkb_test.cpp | 17 +++++++++++++++++
+ 1 file changed, 17 insertions(+)
+
+diff --git a/test/unit/serialization/wkb_test.cpp 
b/test/unit/serialization/wkb_test.cpp
+index 8a617df26..26b019951 100644
+--- a/test/unit/serialization/wkb_test.cpp
++++ b/test/unit/serialization/wkb_test.cpp
+@@ -57,6 +57,23 @@ struct spatially_equal_visitor
+         return true;
+     }
+ 
++    result_type operator()(mapnik::geometry::multi_line_string<double> const& 
lhs,
++                           mapnik::geometry::multi_line_string<double> const& 
rhs) const
++    {
++
++        std::size_t size0 = lhs.size();
++        std::size_t size1 = rhs.size();
++        if (size0 != size1)
++            return false;
++
++        for (std::size_t index = 0; index < size0; ++index)
++        {
++            if (!boost::geometry::equals(lhs[index], rhs[index]))
++                return false;
++        }
++        return true;
++    }
++
+     template <typename T>
+     result_type operator() (T const& lhs, T const& rhs) const
+     {

Copied: mapnik/repos/community-staging-x86_64/gcc-13.patch (from rev 1461572, 
mapnik/trunk/gcc-13.patch)
===================================================================
--- community-staging-x86_64/gcc-13.patch                               (rev 0)
+++ community-staging-x86_64/gcc-13.patch       2023-05-14 10:52:40 UTC (rev 
1461573)
@@ -0,0 +1,23 @@
+From c62e03344fe3af8d061f3ff881ab3cb7bfa0e1e9 Mon Sep 17 00:00:00 2001
+From: Tom Hughes <[email protected]>
+Date: Mon, 23 Jan 2023 19:01:17 +0000
+Subject: [PATCH] Include cstdint for uint16_t
+
+---
+ include/mapnik/wkb.hpp | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/include/mapnik/wkb.hpp b/include/mapnik/wkb.hpp
+index 939fc17b74..52b902ae97 100644
+--- a/include/mapnik/wkb.hpp
++++ b/include/mapnik/wkb.hpp
+@@ -28,6 +28,9 @@
+ #include <mapnik/geometry.hpp>
+ #include <mapnik/util/noncopyable.hpp>
+ 
++// stl
++#include <cstdint>
++
+ namespace mapnik
+ {
+ 

Copied: mapnik/repos/community-staging-x86_64/scons4.patch (from rev 1461572, 
mapnik/trunk/scons4.patch)
===================================================================
--- community-staging-x86_64/scons4.patch                               (rev 0)
+++ community-staging-x86_64/scons4.patch       2023-05-14 10:52:40 UTC (rev 
1461573)
@@ -0,0 +1,11 @@
+diff -upr mapnik-v3.1.0.orig/SConstruct mapnik-v3.1.0/SConstruct
+--- mapnik-v3.1.0.orig/SConstruct      2021-01-08 13:23:24.000000000 +0200
++++ mapnik-v3.1.0/SConstruct   2021-11-22 11:41:03.413991679 +0200
+@@ -126,7 +126,6 @@ PLUGINS = { # plugins with external depe
+ 
+ def init_environment(env):
+     env.Decider('MD5-timestamp')
+-    env.SourceCode(".", None)
+     if os.environ.get('RANLIB'):
+         env['RANLIB'] = os.environ['RANLIB']
+     if os.environ.get('AR'):

Reply via email to