[arch-commits] Commit in mapnik/repos (3 files)

Antonio Rojas arojas at gemini.archlinux.org
Thu Dec 23 16:23:13 UTC 2021


    Date: Thursday, December 23, 2021 @ 16:23:13
  Author: arojas
Revision: 1083294

archrelease: copy trunk to community-staging-x86_64

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

--------------+
 PKGBUILD     |   44 ++++++++++++++++++++++++++++++++++++++++++++
 scons4.patch |   11 +++++++++++
 2 files changed, 55 insertions(+)

Copied: mapnik/repos/community-staging-x86_64/PKGBUILD (from rev 1083293, mapnik/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-12-23 16:23:13 UTC (rev 1083294)
@@ -0,0 +1,44 @@
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: David Dent <thewinch at gmail.com>
+# Contributor: orbisvicis <orbisvicis at gmail.com>
+
+pkgname=mapnik
+pkgver=3.1.0
+pkgrel=8
+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
+        scons4.patch)
+sha256sums=('43d76182d2a975212b4ad11524c74e577576c11039fdab5286b828397d8e6261'
+            '79a85ddba3ec17b86cb216e21442611498a9f2612f03e98708057b3c3a6e8b06')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-v$pkgver
+
+  # 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" \
+    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/scons4.patch (from rev 1083293, mapnik/trunk/scons4.patch)
===================================================================
--- community-staging-x86_64/scons4.patch	                        (rev 0)
+++ community-staging-x86_64/scons4.patch	2021-12-23 16:23:13 UTC (rev 1083294)
@@ -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'):



More information about the arch-commits mailing list