pyresample 1.2.5-2 MIGRATED to testing

2016-09-11 Thread Debian testing watch
FYI: The status of the pyresample source package
in Debian's testing distribution has changed.

  Previous version: 1.2.5-1
  Current version:  1.2.5-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

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


postgis 2.2.2+dfsg-5 MIGRATED to testing

2016-09-11 Thread Debian testing watch
FYI: The status of the postgis source package
in Debian's testing distribution has changed.

  Previous version: 2.2.2+dfsg-4
  Current version:  2.2.2+dfsg-5

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

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


[mapnik-vector-tile] 01/01: Add upstream patches for node-mapnik 3.5.14.

2016-09-11 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository mapnik-vector-tile.

commit fe902da6cd61a1160090d3ea9e1aef233583e64a
Author: Bas Couwenberg 
Date:   Sun Sep 11 15:27:20 2016 +0200

Add upstream patches for node-mapnik 3.5.14.
---
 debian/changelog   |   7 +
 debian/patches/avoid-unused-variable-warning.patch |  20 +
 debian/patches/port-to-protozero-v1.4.2.patch  | 409 +
 debian/patches/series  |   2 +
 4 files changed, 438 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index c2cf971..865a17f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mapnik-vector-tile (1.2.1+dfsg-2) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Add upstream patches for node-mapnik 3.5.14.
+
+ -- Bas Couwenberg   Sun, 11 Sep 2016 15:26:53 +0200
+
 mapnik-vector-tile (1.2.1+dfsg-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/patches/avoid-unused-variable-warning.patch 
b/debian/patches/avoid-unused-variable-warning.patch
new file mode 100644
index 000..f036149
--- /dev/null
+++ b/debian/patches/avoid-unused-variable-warning.patch
@@ -0,0 +1,20 @@
+From 2ac762171c741fbc054a01adf0793872cf17b3f1 Mon Sep 17 00:00:00 2001
+From: Dane Springmeyer 
+Date: Tue, 6 Sep 2016 13:31:24 -0700
+Subject: [PATCH] avoid unused variable warning
+
+---
+ src/vector_tile_featureset_pbf.ipp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/src/vector_tile_featureset_pbf.ipp
 b/src/vector_tile_featureset_pbf.ipp
+@@ -306,7 +306,7 @@ feature_ptr tile_featureset_pbf:
+ #endif
+ feature->set_geometry(std::move(geom));
+ }
+-catch (std::exception const& e)
++catch (std::exception const&)
+ {
+ // For v1 any invalid geometry errors lets just skip the 
feature
+ continue;
diff --git a/debian/patches/port-to-protozero-v1.4.2.patch 
b/debian/patches/port-to-protozero-v1.4.2.patch
new file mode 100644
index 000..c86fcaa
--- /dev/null
+++ b/debian/patches/port-to-protozero-v1.4.2.patch
@@ -0,0 +1,409 @@
+From de6628c00c1b757f397450f2ea3ae20018fe0e4b Mon Sep 17 00:00:00 2001
+From: Dane Springmeyer 
+Date: Fri, 9 Sep 2016 10:03:00 -0700
+Subject: [PATCH] port to protozero v1.4.2
+
+---
+ Makefile |  2 +-
+ src/vector_tile_composite.hpp|  8 
+ src/vector_tile_datasource_pbf.ipp   |  6 +++---
+ src/vector_tile_featureset_pbf.ipp   | 10 +-
+ src/vector_tile_geometry_decoder.hpp |  6 --
+ src/vector_tile_geometry_decoder.ipp | 35 ++-
+ src/vector_tile_is_valid.hpp |  2 +-
+ src/vector_tile_load_tile.hpp| 10 +-
+ test/geometry_visual_test.cpp|  2 +-
+ test/unit/load/merge.cpp | 18 +-
+ test/utils/encoding_util.cpp |  2 +-
+ test/utils/round_trip.cpp|  2 +-
+ test/vector_tile.cpp |  2 +-
+ test/vector_tile_pbf.cpp |  2 +-
+ 14 files changed, 55 insertions(+), 52 deletions(-)
+
+--- a/Makefile
 b/Makefile
+@@ -2,7 +2,7 @@ MAPNIK_PLUGINDIR := $(shell mapnik-confi
+ BUILDTYPE ?= Release
+ 
+ CLIPPER_REVISION=ac8d6bf2517f46c05647b5c19cac113fb180ffb4
+-PROTOZERO_REVISION=v1.3.0
++PROTOZERO_REVISION=v1.4.2
+ GYP_REVISION=3464008
+ 
+ all: libvtile
+--- a/src/vector_tile_composite.hpp
 b/src/vector_tile_composite.hpp
+@@ -57,8 +57,8 @@ void composite(merc_tile & target_vt,
+ while (tile_message.next(Tile_Encoding::LAYERS))
+ {
+ bool reencode_layer = reencode_tile;
+-auto data_pair = tile_message.get_data();
+-protozero::pbf_reader layer_message(data_pair);
++const auto data_view = tile_message.get_view();
++protozero::pbf_reader layer_message(data_view);
+ if (!layer_message.next(Layer_Encoding::NAME))
+ {
+ continue;
+@@ -68,7 +68,7 @@ void composite(merc_tile & target_vt,
+ 
+ if (!reencode_layer)
+ {
+-target_vt.append_layer_buffer(data_pair.first, 
data_pair.second, layer_name);
++target_vt.append_layer_buffer(data_view.data(), 
data_view.size(), layer_name);
+ }
+ 
+ if (target_vt.has_layer(layer_name))
+@@ -76,7 +76,7 @@ void composite(merc_tile & target_vt,
+ continue;
+ }
+ 
+-protozero::pbf_reader layer_pbf(data_pair);
++protozero::pbf_reader layer_pbf(data_view);
+ auto ds = 
std::make_shared(
+ layer_pbf,
+ vt->x(),
+--- a/src/vector_tile_datasource_pbf.ipp
 

[mapnik-vector-tile] branch master updated (8be6806 -> fe902da)

2016-09-11 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository mapnik-vector-tile.

  from  8be6806   Set distribution to unstable.
   new  fe902da   Add upstream patches for node-mapnik 3.5.14.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   |   7 +
 debian/patches/avoid-unused-variable-warning.patch |  20 +
 debian/patches/port-to-protozero-v1.4.2.patch  | 409 +
 debian/patches/series  |   2 +
 4 files changed, 438 insertions(+)
 create mode 100644 debian/patches/avoid-unused-variable-warning.patch
 create mode 100644 debian/patches/port-to-protozero-v1.4.2.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/mapnik-vector-tile.git

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


[qgis] 02/03: Update symbols for amd64.

2016-09-11 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository qgis.

commit 100042bbc9e18218feae1256129b0c2e32718088
Author: Bas Couwenberg 
Date:   Sun Sep 11 13:58:26 2016 +0200

Update symbols for amd64.
---
 debian/libqgis-app2.14.6.symbols | 4 ++--
 debian/libqgis-gui2.14.6.symbols | 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/debian/libqgis-app2.14.6.symbols b/debian/libqgis-app2.14.6.symbols
index d0749d6..94dbffd 100644
--- a/debian/libqgis-app2.14.6.symbols
+++ b/debian/libqgis-app2.14.6.symbols
@@ -1,4 +1,4 @@
-# SymbolsHelper-Confirmed: 2.14.6 mips
+# SymbolsHelper-Confirmed: 2.14.6 amd64 mips
 libqgis_app.so.2.14.6 #PACKAGE# #MINVER#
  (optional=templinst|arch=!amd64 
!i386)_Z10qDeleteAllI5QListIPN13QFormInternal11DomPropertyEEEvRKT_@Base 2.14.0
  
(optional=templinst)_Z13qvariant_castI26QUiTranslatableStringValueET_RK8QVariant@Base
 2.14.0
@@ -4065,7 +4065,7 @@ libqgis_app.so.2.14.6 #PACKAGE# #MINVER#
  
(optional=templinst)_ZNK5QHashI7QStringPN13QFormInternal11DomPropertyEE5valueERKS0_@Base
 2.14.0
  (optional=templinst|arch=!amd64 
!i386)_ZNK5QHashI7QStringPN13QFormInternal11DomPropertyEE5valueERKS0_RKS3_@Base 
2.14.0
  
(optional=templinst)_ZNK5QHashI7QStringPN13QFormInternal11DomPropertyEE8findNodeERKS0_Pj@Base
 2.14.0
- (optional=templinst)_ZNK5QListIP7QObjectE7indexOfERKS1_i@Base 2.14.0
+ (optional=templinst|arch=mips)_ZNK5QListIP7QObjectE7indexOfERKS1_i@Base 2.14.0
  _ZNK7QgisApp10metaObjectEv@Base 2.14.0
  _ZNK7QgisApp14editableLayersEb@Base 2.14.0
  _ZNK7QgisApp15autoTransactionEv@Base 2.14.0
diff --git a/debian/libqgis-gui2.14.6.symbols b/debian/libqgis-gui2.14.6.symbols
index 1b52be3..875b92e 100644
--- a/debian/libqgis-gui2.14.6.symbols
+++ b/debian/libqgis-gui2.14.6.symbols
@@ -1,4 +1,4 @@
-# SymbolsHelper-Confirmed: 2.14.5 amd64 arm64 hppa i386 mips mips64el mipsel 
powerpc ppc64el s390x sparc64
+# SymbolsHelper-Confirmed: 2.14.6 amd64
 libqgis_gui.so.2.14.6 #PACKAGE# #MINVER#
  (optional=templinst|arch=!amd64 
!i386)_Z10qDeleteAllI5QListIPN13QFormInternal11DomPropertyEEEvRKT_@Base 2.8.3
  
(optional=templinst)_Z13qvariant_castI26QUiTranslatableStringValueET_RK8QVariant@Base
 2.0.1
@@ -7214,7 +7214,6 @@ libqgis_gui.so.2.14.6 #PACKAGE# #MINVER#
  
(optional=templinst)_ZNK5QHashI7QStringPN13QFormInternal11DomPropertyEE5valueERKS0_@Base
 2.0.1
  (optional=templinst|arch=!amd64 
!i386)_ZNK5QHashI7QStringPN13QFormInternal11DomPropertyEE5valueERKS0_RKS3_@Base 
2.8.3
  
(optional=templinst)_ZNK5QHashI7QStringPN13QFormInternal11DomPropertyEE8findNodeERKS0_Pj@Base
 2.0.1
- (optional=templinst)_ZNK5QListIP7QObjectE7indexOfERKS1_i@Base 2.4.0
  _ZNK7QgsDial10metaObjectEv@Base 2.4.0
  _ZNK7QgsDial12variantValueEv@Base 2.8.3
  _ZNK9QUiLoader10metaObjectEv@Base 2.0.1

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/qgis.git

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


[qgis] tag debian/2.14.6+dfsg-3 created (now aea6b48)

2016-09-11 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.14.6+dfsg-3
in repository qgis.

at  aea6b48   (commit)
No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/qgis.git

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


[qgis] 01/03: Remove obsolete diversions in postinst & prerm. (closes: #836993)

2016-09-11 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository qgis.

commit 5ff5f3e7f0732e149aa2bf12427eb991ba60ad05
Author: Bas Couwenberg 
Date:   Sun Sep 11 13:04:19 2016 +0200

Remove obsolete diversions in postinst & prerm. (closes: #836993)
---
 debian/changelog | 7 +++
 debian/qgis.postinst | 2 +-
 debian/{qgis.postinst => qgis.prerm} | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 0b16960..cecd927 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+qgis (2.14.6+dfsg-3) UNRELEASED; urgency=medium
+
+  * Remove obsolete diversions in postinst & prerm.
+(closes: #836993)
+
+ -- Bas Couwenberg   Sun, 11 Sep 2016 12:55:10 +0200
+
 qgis (2.14.6+dfsg-2) unstable; urgency=medium
 
   * Move obsolete diversion removal from preinst to postinst.
diff --git a/debian/qgis.postinst b/debian/qgis.postinst
index eb81103..859d2aa 100644
--- a/debian/qgis.postinst
+++ b/debian/qgis.postinst
@@ -2,7 +2,7 @@
 
 set -e
 
-if [ "$1" = "install" -o "$1" = "upgrade" ]; then
+if [ "$1" = "configure" ]; then
# Remove obsolete diversions
for i in /usr/bin/qgis /usr/bin/qbrowser; do
pkg=$(dpkg-divert --listpackage $i)
diff --git a/debian/qgis.postinst b/debian/qgis.prerm
similarity index 85%
copy from debian/qgis.postinst
copy to debian/qgis.prerm
index eb81103..3d3f8cf 100644
--- a/debian/qgis.postinst
+++ b/debian/qgis.prerm
@@ -2,7 +2,7 @@
 
 set -e
 
-if [ "$1" = "install" -o "$1" = "upgrade" ]; then
+if [ "$1" = "remove" -o "$1" = "upgrade" ]; then
# Remove obsolete diversions
for i in /usr/bin/qgis /usr/bin/qbrowser; do
pkg=$(dpkg-divert --listpackage $i)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/qgis.git

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


[qgis] 03/03: Set distribution to unstable.

2016-09-11 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository qgis.

commit aea6b48d2ddd1bad0b4ca5c54c79035a4ee39608
Author: Bas Couwenberg 
Date:   Sun Sep 11 13:04:31 2016 +0200

Set distribution to unstable.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index cecd927..c7b373c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-qgis (2.14.6+dfsg-3) UNRELEASED; urgency=medium
+qgis (2.14.6+dfsg-3) unstable; urgency=medium
 
   * Remove obsolete diversions in postinst & prerm.
 (closes: #836993)
 
- -- Bas Couwenberg   Sun, 11 Sep 2016 12:55:10 +0200
+ -- Bas Couwenberg   Sun, 11 Sep 2016 13:04:21 +0200
 
 qgis (2.14.6+dfsg-2) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/qgis.git

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


[qgis] branch master updated (dccd03c -> aea6b48)

2016-09-11 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository qgis.

  from  dccd03c   Set distribution to unstable.
   new  5ff5f3e   Remove obsolete diversions in postinst & prerm. (closes: 
#836993)
   new  100042b   Update symbols for amd64.
   new  aea6b48   Set distribution to unstable.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/libqgis-app2.14.6.symbols | 4 ++--
 debian/libqgis-gui2.14.6.symbols | 3 +--
 debian/qgis.postinst | 2 +-
 debian/{qgis.postinst => qgis.prerm} | 2 +-
 5 files changed, 12 insertions(+), 6 deletions(-)
 copy debian/{qgis.postinst => qgis.prerm} (85%)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/qgis.git

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


Processing of qgis_2.14.6+dfsg-3_amd64.changes

2016-09-11 Thread Debian FTP Masters
qgis_2.14.6+dfsg-3_amd64.changes uploaded successfully to localhost
along with the files:
  qgis_2.14.6+dfsg-3.dsc
  qgis_2.14.6+dfsg-3.debian.tar.xz
  libqgis-analysis2.14.6_2.14.6+dfsg-3_amd64.deb
  libqgis-app2.14.6_2.14.6+dfsg-3_amd64.deb
  libqgis-core2.14.6_2.14.6+dfsg-3_amd64.deb
  libqgis-customwidgets_2.14.6+dfsg-3_amd64.deb
  libqgis-dev_2.14.6+dfsg-3_amd64.deb
  libqgis-gui2.14.6_2.14.6+dfsg-3_amd64.deb
  libqgis-networkanalysis2.14.6_2.14.6+dfsg-3_amd64.deb
  libqgis-server2.14.6_2.14.6+dfsg-3_amd64.deb
  libqgisgrass7-2.14.6_2.14.6+dfsg-3_amd64.deb
  libqgispython2.14.6_2.14.6+dfsg-3_amd64.deb
  python-qgis-common_2.14.6+dfsg-3_all.deb
  python-qgis_2.14.6+dfsg-3_amd64.deb
  qgis-api-doc_2.14.6+dfsg-3_all.deb
  qgis-common_2.14.6+dfsg-3_all.deb
  qgis-dbg_2.14.6+dfsg-3_amd64.deb
  qgis-plugin-grass-common_2.14.6+dfsg-3_all.deb
  qgis-plugin-grass_2.14.6+dfsg-3_amd64.deb
  qgis-provider-grass_2.14.6+dfsg-3_amd64.deb
  qgis-providers-common_2.14.6+dfsg-3_all.deb
  qgis-providers_2.14.6+dfsg-3_amd64.deb
  qgis-server_2.14.6+dfsg-3_amd64.deb
  qgis_2.14.6+dfsg-3_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
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#836993: qgis: fails to upgrade from 'jessie': dpkg-divert: error: rename involves overwriting `/usr/bin/qgis'

2016-09-11 Thread Sebastiaan Couwenberg
Control: tags -1 pending

On 09/11/2016 01:59 AM, Andreas Beckmann wrote:
> looks like you are doing a more complicated diversion transition ...

Yes. And a lovely mess it has created now that we don't need it any
more. The situation is complicated by the fact that upstream moved the
diversion around in non-LTRs which were never in Debian. Fortunately we
don't have to care about the upstream use-case in Debian.


The jessie version (2.4.0-1) added the diversion in
qgis-plugin-grass.preinst:

 if [ "$1" = "install" -o "$1" = "upgrade" ]; then
 dpkg-divert --package qgis-plugin-grass --add --rename \
 --divert /usr/bin/qgis.bin /usr/bin/qgis
 dpkg-divert --package qgis-plugin-grass --add --rename \
 --divert /usr/bin/qbrowser.bin /usr/bin/qbrowser
 fi

And removed it qgis-plugin-grass.postrm:

 if [ "$1" = "remove" ]; then
 dpkg-divert --package qgis-plugin-grass --remove --rename \
 --divert /usr/bin/qgis.bin /usr/bin/qgis
 dpkg-divert --package qgis-plugin-grass --remove --rename \
 --divert /usr/bin/qbrowser.bin /usr/bin/qbrowser
 fi


The sid version (2.14.6+dfsg-1) just removed it in qgis.preinst:

 if [ "$1" = "install" -o "$1" = "upgrade" ]; then
 # Remove obsolete diversions
 for i in /usr/bin/qgis /usr/bin/qbrowser; do
 pkg=$(dpkg-divert --listpackage $i)
 if [ -n "$pkg" -a "$pkg" = qgis-plugin-grass -o \
   "$pkg" = qgis-provider-grass ]; then
 dpkg-divert --package $pkg --rename --remove $i
 fi
 done
 fi

The above has been moved in -2 to postinst, which doesn't get called
with the install or upgrade arguments, which I've not fixed by checking
for the configure argument.

It seems the underlaying issue was not removing the diversion in prerm
as well, I've now added that too. If that is still not sufficient to fix
this issue, I guess we need the removals in qgis-plugin-grass package too.

Kind Regards,

Bas

-- 
 GPG Key ID: 4096R/6750F10AE88D4AF1
Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1

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


Processed: Re: Bug#836993: qgis: fails to upgrade from 'jessie': dpkg-divert: error: rename involves overwriting `/usr/bin/qgis'

2016-09-11 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending
Bug #836993 [qgis] qgis: fails to upgrade from 'jessie': dpkg-divert: error: 
rename involves overwriting `/usr/bin/qgis'
Added tag(s) pending.

-- 
836993: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836993
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
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#837354: proj: FTBFS on kfreebsd

2016-09-11 Thread Sebastiaan Couwenberg
On 09/11/2016 12:32 AM, Andreas Beckmann wrote:
> On 2016-09-10 22:54, Sebastiaan Couwenberg wrote:
>> On 09/10/2016 10:42 PM, Andreas Beckmann wrote:
>>> proj FTBFS on kfreebsd, but it built there up to version 4.9.2-2:
>>
>> The Java/ant combination is broken on kFreeBSD, that's not something we
>> can fix in proj.
> 
> Is there a bug report about this? Someone working on a fix?

Apparently not.

> Or is it possible to just not build libproj-java on kfreebsd*?
> Removing proj from kfreebsd* would affect a lot of packages:

libproj-java doesn't have reverse dependencies are a very low popcon, so
dropping the package is an option. Now is not the time to do that though.

Since kfreebsd-* isn't a release architecture any more, this kind of
breakage is expected. hurd-i386 and x32 have similar issue for example.
Because maintainers don't care enough about the ports essential GIS
packages cannot be built. And apparently the porters don't care enough
either to assist the maintainers to get the packages fixed on those
architectures.

Kind Regards,

Bas

-- 
 GPG Key ID: 4096R/6750F10AE88D4AF1
Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1

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