Date: Tuesday, January 3, 2023 @ 02:06:50
  Author: felixonmars
Revision: 1374300

archrelease: copy trunk to community-staging-x86_64

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

------------------+
 PKGBUILD         |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 boost-1.80.patch |   38 ++++++++++++++++++++++++++++++++++++++
 scons4.patch     |   11 +++++++++++
 3 files changed, 96 insertions(+)

Copied: mapnik/repos/community-staging-x86_64/PKGBUILD (from rev 1374299, 
mapnik/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2023-01-03 02:06:50 UTC (rev 1374300)
@@ -0,0 +1,47 @@
+# 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=16
+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)
+sha256sums=('43d76182d2a975212b4ad11524c74e577576c11039fdab5286b828397d8e6261'
+            'b80085fba71ea6ecd86ff98ebdf652490bf56507cb798076192ab3ce136f5eeb'
+            '79a85ddba3ec17b86cb216e21442611498a9f2612f03e98708057b3c3a6e8b06')
+
+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
+}
+
+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 
1374299, 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-01-03 02:06:50 UTC (rev 
1374300)
@@ -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/scons4.patch (from rev 1374299, 
mapnik/trunk/scons4.patch)
===================================================================
--- community-staging-x86_64/scons4.patch                               (rev 0)
+++ community-staging-x86_64/scons4.patch       2023-01-03 02:06:50 UTC (rev 
1374300)
@@ -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