Bug#801573: Don't build with pixman support

2015-10-12 Thread Frederic Junod
Source: mapserver
Version: 7.0.0-5
Severity: important

Hello,

mapserver must not be compiled with pixman support (WITH_PIXMAN) as
this feature is experimental (and buggy).
See https://github.com/mapserver/mapserver/issues/5181#issuecomment-146511176

Thanks,

fredj



-- 
Frédéric Junod
Camptocamp SA

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Bug#794784: Enable memcache support in mapcache

2015-08-06 Thread Frederic Junod
Source: mapcache
Version: 1.4.0-1
Severity: wishlist

Hello,

Can you please consider enabling memcache support in mapcache?

See attached patch.

Thanks,

fredj


-- 
Frédéric Junod
Camptocamp SA
diff --git a/debian/control b/debian/control
index b32ffea..15de496 100644
--- a/debian/control
+++ b/debian/control
@@ -21,6 +21,7 @@ Build-Depends: debhelper (= 9),
libgeos-dev (= 3.3.1-1~),
libharfbuzz-dev,
libjpeg-dev,
+   libmemcached-dev,
libpcre3-dev,
libpixman-1-dev,
libpng-dev,
diff --git a/debian/libmapcache1.symbols b/debian/libmapcache1.symbols
index bbd0887..603d13a 100644
--- a/debian/libmapcache1.symbols
+++ b/debian/libmapcache1.symbols
@@ -73,6 +73,7 @@ libmapcache.so.1 #PACKAGE# #MINVER#
  buffer_write_callback@Base 1.4.0
  crc_table@Base 1.2.0
  (arch=!amd64)crc_table_computed@Base 1.4.0
+ create_memcache@Base 1.4.0
  empty_png_384@Base 1.4.0
  ezxml_add_child@Base 1.0.0
  ezxml_ampencode@Base 1.0.0
@@ -123,6 +124,7 @@ libmapcache.so.1 #PACKAGE# #MINVER#
  mapcache_cache_fallback_create@Base 1.4.0
  mapcache_cache_google_create@Base 1.4.0
  mapcache_cache_mbtiles_create@Base 1.0.0
+ mapcache_cache_memcache_create@Base 1.4.0
  mapcache_cache_multitier_create@Base 1.4.0
  mapcache_cache_rest_create@Base 1.4.0
  mapcache_cache_rest_init@Base 1.4.0
@@ -212,6 +214,13 @@ libmapcache.so.1 #PACKAGE# #MINVER#
  mapcache_locker_fallback_parse_xml@Base 1.4.0
  mapcache_locker_fallback_ping_lock@Base 1.4.0
  mapcache_locker_fallback_release_lock@Base 1.4.0
+ mapcache_locker_memcache_aquire_lock@Base 1.4.0
+ mapcache_locker_memcache_create@Base 1.4.0
+ mapcache_locker_memcache_parse_xml@Base 1.4.0
+ mapcache_locker_memcache_ping_lock@Base 1.4.0
+ mapcache_locker_memcache_release_lock@Base 1.4.0
+ mapcache_memcache_connection_constructor@Base 1.4.0
+ mapcache_memcache_connection_destructor@Base 1.4.0
  mapcache_meters_per_unit@Base 1.0.0
  mapcache_ogc_strptime@Base 1.2.0
  mapcache_prefetch_tiles@Base 1.0.0
diff --git a/debian/rules b/debian/rules
index b6078a0..0cba803 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,7 @@ CMAKE_OPTS:= \
-DWITH_PIXMAN=1 \
-DWITH_SQLITE=1 \
-DWITH_BERKELEY_DB=0 \
-   -DWITH_MEMCACHE=0 \
+   -DWITH_MEMCACHE=1 \
-DWITH_TIFF=1 \
-DWITH_TIFF_WRITE_SUPPORT=0 \
-DWITH_GEOTIFF=0 \
___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Bug#753586: Create a libmapserver1 debug package

2014-07-03 Thread Frederic Junod
Source: mapserver
Version: 6.4.1-4
Severity: wishlist

Hello,

It would be nice to create a debug package for libmapserver1.

See attached patch.

thanks,

fredj


-- 
Frédéric Junod
Camptocamp SA
diff --git a/debian/control b/debian/control
index be5e2b1..142b985 100644
--- a/debian/control
+++ b/debian/control
@@ -70,6 +70,19 @@ Description: Shared library for MapServer
  functionality in MapScript is provided by the suggested mapscript
  library packages.
 
+Package: libmapserver1-dbg
+Architecture: any
+Section: debug
+Priority: extra
+Depends: ${misc:Depends}, libmapserver1 (= ${binary:Version})
+Description: Debugging symbols for libmapserver1
+ MapServer is a CGI-based framework for Internet map services which
+ supports Open Geospatial Consortium (OGC) standards. Scripting
+ functionality in MapScript is provided by the suggested mapscript
+ library packages.
+ .
+ This package contains the debugging symbols for libmapserver1.
+
 Package: libmapserver1-dev
 Architecture: any
 Section: libdevel
diff --git a/debian/rules b/debian/rules
index 54c06a4..604b749 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,6 +28,7 @@ MANPAGES:=$(wildcard debian/man/*.*.xml)
 MS_VERSION=$(shell dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p')
 
 CMAKE_OPTS:= \
+   -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_EXE_LINKER_FLAGS=$(LDFLAGS) \
-DCMAKE_MODULE_LINKER_FLAGS=$(LDFLAGS) \
-DCMAKE_SHARED_LINKER_FLAGS=$(LDFLAGS) \
@@ -70,6 +71,9 @@ CMAKE_OPTS:= \
  --parallel \
  --buildsystem cmake
 
+override_dh_strip:
+   dh_strip --dbg-package=libmapserver1-dbg
+
 override_dh_auto_clean:
dh_clean
 
___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Bug#648176:

2011-11-15 Thread Frederic Junod
Hello,

The attached patch should fix the binaries install issue.

Best regards,

fredj
diff --git a/debian/rules b/debian/rules
index 1868894..b133eb2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -107,7 +107,7 @@ install-arch: build-arch
install -o root -g root -d $(CURDIR)/debian/postgresql-9.1-postgis/usr/lib/postgis/$(VERSION)/postgres/9.1/lib
mv $(CURDIR)/debian/postgresql-9.1-postgis/usr/lib/postgresql/9.1/lib/postgis-$(MAJOR_VERSION).$(MINOR_VERSION).so \
   $(CURDIR)/debian/postgresql-9.1-postgis/usr/lib/postgis/$(VERSION)/postgres/9.1/lib/.
-   #mv $(CURDIR)/debian/postgresql-9.0-postgis/usr/lib/postgresql/9.0/bin $(CURDIR)/debian/postgis/usr
+   mv $(CURDIR)/debian/postgresql-9.1-postgis/usr/lib/postgresql/9.1/bin $(CURDIR)/debian/postgis/usr

# Create custom maint scripts: 9.1


___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Bug#639887: gdal 1.8.0: remove libtool from Build-Depends

2011-08-31 Thread Frederic Junod
Source: gdal
Version: 1.8.0-1

libtool can be removed from Build-Depends because the libtool hack is
no longer here:
http://anonscm.debian.org/gitweb/?p=pkg-grass/gdal.git;a=commitdiff;h=029c9d5d3c72ee6d99f707c380dd7095306d10f0

BTW, please let me know if you don't want to have bug reports for
experimental packages.

Regards,

fredj

-- 
Frédéric Junod
Camptocamp SA



___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Bug#618659: Wrong Vcs-* values

2011-03-17 Thread Frederic Junod
Source: libepsilon
Version: 0.8.1-1

Hello,

The Vcs-Git and Vcs-Browser are wrong, see attached patch.

Regards,
fredj

-- 
Frédéric Junod
Camptocamp SA
diff --git a/debian/control b/debian/control
index d6deb13..1a4db4d 100644
--- a/debian/control
+++ b/debian/control
@@ -6,8 +6,8 @@ Build-Depends: debhelper (= 7.0.50~), autotools-dev, libpopt-dev
 Standards-Version: 3.9.1
 Section: libs
 Homepage: http://sourceforge.net/projects/epsilon-project
-Vcs-Git: git://git.debian.org/collab-maint/libepsilon.git
-Vcs-Browser: http://git.debian.org/?p=collab-maint/libepsilon.git;a=summary
+Vcs-Git: git://git.debian.org/pkg-grass/libepsilon.git
+Vcs-Browser: http://git.debian.org/?p=pkg-grass/libepsilon.git;a=summary
 
 Package: libepsilon-dev
 Section: libdevel

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel

[DebianGIS-dev] Bug#580462: Build-Depends libgeos-dev = 3.1.0

2010-05-06 Thread Frederic Junod
Package: postgresql-8.4-postgis
Version: 1.5.1-1

Hello,

The package has a build depends on libgeos-dev = 3.0.0 but according
to the postgis release notes [1] the minimum accepted version of GEOS
is 3.1.

Thanks,

fredj

[1] http://postgis.refractions.net/news/20100204/

-- 
Frédéric Junod
Camptocamp SA



___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel

[DebianGIS-dev] Bug#580462: Build-Depends libgeos-dev = 3.1.1

2010-05-06 Thread Frederic Junod
The release notes mention 3.1 but the configure requires 3.1.1.

The Build-Depends should be changed from:
  libgeos-dev (= 3.0.0)
to:
  libgeos-dev (= 3.1.1)

Regards,

fredj
-- 
Frédéric Junod
Camptocamp SA



___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel