[merkaartor] 01/01: Mark patches as Applied-Upstream.

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository merkaartor.

commit b6c7b9824662394d5a3c9c4b91486dc94dcfccf7
Author: Bas Couwenberg 
Date:   Thu Oct 15 14:42:31 2015 +0200

Mark patches as Applied-Upstream.
---
 debian/patches/desktop-keywords.patch | 1 +
 debian/patches/hardening-buildflags.patch | 1 +
 debian/patches/various-typos.patch| 1 +
 3 files changed, 3 insertions(+)

diff --git a/debian/patches/desktop-keywords.patch 
b/debian/patches/desktop-keywords.patch
index c9b5e29..225f736 100644
--- a/debian/patches/desktop-keywords.patch
+++ b/debian/patches/desktop-keywords.patch
@@ -1,6 +1,7 @@
 Description: Add Keywords to .desktop file.
 Author: Bas Couwenberg 
 Forwarded: https://github.com/openstreetmap/merkaartor/pull/68
+Applied-Upstream: 
https://github.com/openstreetmap/merkaartor/commit/d441932e6704481e48fdc0b6f27adee6b85e38af
 
 --- a/src/merkaartor.desktop
 +++ b/src/merkaartor.desktop
diff --git a/debian/patches/hardening-buildflags.patch 
b/debian/patches/hardening-buildflags.patch
index 56536ff..b3be72f 100644
--- a/debian/patches/hardening-buildflags.patch
+++ b/debian/patches/hardening-buildflags.patch
@@ -1,6 +1,7 @@
 Description: Add hardening buildflags to qmake build.
 Author: Bas Couwenberg 
 Forwarded: https://github.com/openstreetmap/merkaartor/pull/68
+Applied-Upstream: 
https://github.com/openstreetmap/merkaartor/commit/d441932e6704481e48fdc0b6f27adee6b85e38af
 
 --- a/src/Config.pri
 +++ b/src/Config.pri
diff --git a/debian/patches/various-typos.patch 
b/debian/patches/various-typos.patch
index 2333c7a..0370422 100644
--- a/debian/patches/various-typos.patch
+++ b/debian/patches/various-typos.patch
@@ -5,6 +5,7 @@ Description: Fix various typos.
  * Replace 'allows to ' with 'allows to ing' or 'allows one to 
'.
 Author: Bas Couwenberg 
 Forwarded: https://github.com/openstreetmap/merkaartor/pull/68
+Applied-Upstream: 
https://github.com/openstreetmap/merkaartor/commit/d441932e6704481e48fdc0b6f27adee6b85e38af
 
 --- a/src/qextserialport/posix_qextserialport.cpp
 +++ b/src/qextserialport/posix_qextserialport.cpp

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/merkaartor.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


[merkaartor] branch master updated (f433dee -> b6c7b98)

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository merkaartor.

  from  f433dee   Move from experimental to unstable.
   new  b6c7b98   Mark patches as Applied-Upstream.

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/patches/desktop-keywords.patch | 1 +
 debian/patches/hardening-buildflags.patch | 1 +
 debian/patches/various-typos.patch| 1 +
 3 files changed, 3 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/merkaartor.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


[python-mapnik] 02/06: Imported Upstream version 0.0~20151012-a063df4

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

commit 61ad45e6348960b9aff1e78acfce481ceb82775d
Author: Bas Couwenberg 
Date:   Wed Oct 14 23:29:51 2015 +0200

Imported Upstream version 0.0~20151012-a063df4
---
 src/python_grid_utils.cpp | 67 ++-
 src/python_grid_utils.hpp |  7 -
 2 files changed, 2 insertions(+), 72 deletions(-)

diff --git a/src/python_grid_utils.cpp b/src/python_grid_utils.cpp
index df4ea52..dc3037e 100644
--- a/src/python_grid_utils.cpp
+++ b/src/python_grid_utils.cpp
@@ -42,7 +42,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -180,65 +179,6 @@ void grid2utf(T const& grid_type,
 }
 }
 
-
-template 
-void grid2utf2(T const& grid_type,
-  boost::python::list& l,
-  std::vector& key_order,
-  unsigned int resolution)
-{
-using keys_type = std::map< typename T::lookup_type, typename 
T::value_type>;
-using keys_iterator = typename keys_type::iterator;
-
-typename T::data_type const& data = grid_type.data();
-typename T::feature_key_type const& feature_keys = 
grid_type.get_feature_keys();
-typename T::feature_key_type::const_iterator feature_pos;
-
-keys_type keys;
-// start counting at utf8 codepoint 32, aka space character
-uint16_t codepoint = 32;
-
-mapnik::grid::data_type 
target(data.width()/resolution,data.height()/resolution);
-mapnik::scale_grid(target,grid_type.data(),0.0,0.0);
-
-std::size_t array_size = target.width();
-for (std::size_t y = 0; y < target.height(); ++y)
-{
-uint16_t idx = 0;
-const std::unique_ptr line(new Py_UNICODE[array_size]);
-mapnik::grid::value_type * row = target.get_row(y);
-for (std::size_t x = 0; x < target.width(); ++x)
-{
-feature_pos = feature_keys.find(row[x]);
-if (feature_pos != feature_keys.end())
-{
-mapnik::grid::lookup_type val = feature_pos->second;
-keys_iterator key_pos = keys.find(val);
-if (key_pos == keys.end())
-{
-// Create a new entry for this key. Skip the codepoints 
that
-// can't be encoded directly in JSON.
-if (codepoint == 34) ++codepoint;  // Skip "
-else if (codepoint == 92) ++codepoint; // Skip backslash
-keys[val] = codepoint;
-key_order.push_back(val);
-line[idx++] = static_cast(codepoint);
-++codepoint;
-}
-else
-{
-line[idx++] = static_cast(key_pos->second);
-}
-}
-// else, shouldn't get here...
-}
-l.append(boost::python::object(
- boost::python::handle<>(
- PyUnicode_FromUnicode(line.get(), array_size;
-}
-}
-
-
 template 
 void write_features(T const& grid_type,
boost::python::dict& feature_data,
@@ -298,12 +238,9 @@ void grid_encode_utf(T const& grid_type,
 boost::python::list l;
 std::vector key_order;
 
-if (resolution != 1) {
-// resample on the fly - faster, less accurate
+if (resolution != 1)
+{
 mapnik::grid2utf(grid_type,l,key_order,resolution);
-
-// resample first - slower, more accurate
-//mapnik::grid2utf2(grid_type,l,key_order,resolution);
 }
 else
 {
diff --git a/src/python_grid_utils.hpp b/src/python_grid_utils.hpp
index a15a026..a19cab6 100644
--- a/src/python_grid_utils.hpp
+++ b/src/python_grid_utils.hpp
@@ -46,13 +46,6 @@ void grid2utf(T const& grid_type,
 
 
 template 
-void grid2utf2(T const& grid_type,
-  boost::python::list& l,
-  std::vector& key_order,
-  unsigned int resolution);
-
-
-template 
 void write_features(T const& grid_type,
boost::python::dict& feature_data,
std::vector const& 
key_order);

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] branch master updated (7c42da0 -> c6bbc90)

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

  from  7c42da0   Set distribution to unstable.
   new  1d07bb9   Use system fonts instead of mapnik specific fonts.
   new  61ad45e   Imported Upstream version 0.0~20151012-a063df4
   new  0389db5   Merge tag 'upstream/0.0_20151012-a063df4'
   new  74d0926   New upstream git snapshot.
   new  9f5b8b8   Add patch to use system fonts in setup.py.
   new  c6bbc90   Set distribution to unstable.

The 6 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/series |  1 +
 debian/patches/system-fonts.patch | 22 +
 debian/rules  |  3 ++
 src/python_grid_utils.cpp | 67 ++-
 src/python_grid_utils.hpp |  7 
 6 files changed, 35 insertions(+), 72 deletions(-)
 create mode 100644 debian/patches/series
 create mode 100644 debian/patches/system-fonts.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] 06/06: Set distribution to unstable.

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

commit c6bbc905a1461da4c7aef6c97c9acf24ba8f6f97
Author: Bas Couwenberg 
Date:   Thu Oct 15 10:06:09 2015 +0200

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

diff --git a/debian/changelog b/debian/changelog
index 580b46f..5a9b8af 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-python-mapnik (1:0.0~20151012-a063df4-1) UNRELEASED; urgency=medium
+python-mapnik (1:0.0~20151012-a063df4-1) unstable; urgency=medium
 
   * New upstream git snapshot.
   * Use system fonts instead of mapnik specific fonts.
 
- -- Bas Couwenberg   Wed, 14 Oct 2015 23:30:02 +0200
+ -- Bas Couwenberg   Thu, 15 Oct 2015 10:05:56 +0200
 
 python-mapnik (1:0.0~20151010-b223124-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] 03/06: Merge tag 'upstream/0.0_20151012-a063df4'

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

commit 0389db5e8563ddd20e9ae9f1d58aa0f6f9cd02f7
Merge: 1d07bb9 61ad45e
Author: Bas Couwenberg 
Date:   Wed Oct 14 23:29:54 2015 +0200

Merge tag 'upstream/0.0_20151012-a063df4'

Upstream version 0.0~20151012-a063df4

 src/python_grid_utils.cpp | 67 ++-
 src/python_grid_utils.hpp |  7 -
 2 files changed, 2 insertions(+), 72 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] branch pristine-tar updated (c2264ca -> 63bfa15)

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch pristine-tar
in repository python-mapnik.

  from  c2264ca   pristine-tar data for 
python-mapnik_0.0~20151010-b223124.orig.tar.gz
   new  63bfa15   pristine-tar data for 
python-mapnik_0.0~20151012-a063df4.orig.tar.gz

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:
 python-mapnik_0.0~20151012-a063df4.orig.tar.gz.delta | Bin 0 -> 13484 bytes
 python-mapnik_0.0~20151012-a063df4.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 python-mapnik_0.0~20151012-a063df4.orig.tar.gz.delta
 create mode 100644 python-mapnik_0.0~20151012-a063df4.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] 01/01: pristine-tar data for python-mapnik_0.0~20151012-a063df4.orig.tar.gz

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository python-mapnik.

commit 63bfa1500b09eef3eea9ef68ee648ecf5f5206bb
Author: Bas Couwenberg 
Date:   Wed Oct 14 23:29:53 2015 +0200

pristine-tar data for python-mapnik_0.0~20151012-a063df4.orig.tar.gz
---
 python-mapnik_0.0~20151012-a063df4.orig.tar.gz.delta | Bin 0 -> 13484 bytes
 python-mapnik_0.0~20151012-a063df4.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/python-mapnik_0.0~20151012-a063df4.orig.tar.gz.delta 
b/python-mapnik_0.0~20151012-a063df4.orig.tar.gz.delta
new file mode 100644
index 000..5162743
Binary files /dev/null and 
b/python-mapnik_0.0~20151012-a063df4.orig.tar.gz.delta differ
diff --git a/python-mapnik_0.0~20151012-a063df4.orig.tar.gz.id 
b/python-mapnik_0.0~20151012-a063df4.orig.tar.gz.id
new file mode 100644
index 000..85ecf53
--- /dev/null
+++ b/python-mapnik_0.0~20151012-a063df4.orig.tar.gz.id
@@ -0,0 +1 @@
+eee52e36592cb988be9da49cfdf96e77e7ec507c

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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 rasterio_0.28.0-1_amd64.changes

2015-10-15 Thread Debian FTP Masters
rasterio_0.28.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  rasterio_0.28.0-1.dsc
  rasterio_0.28.0.orig.tar.gz
  rasterio_0.28.0-1.debian.tar.xz
  python-rasterio_0.28.0-1_amd64.deb
  python3-rasterio_0.28.0-1_amd64.deb
  rasterio_0.28.0-1_all.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#799473: No fonts in python-mapnik 3

2015-10-15 Thread Sebastiaan Couwenberg
On 14-10-15 23:59, Sebastiaan Couwenberg wrote:
> So we'll need to patch python-mapnik to also support the SYSTEM_FONTS
> option in setup.py.

This should be fixed in todays upload of python-mapnik
(1:0.0~20151012-a063df4-1), it includes a patch to support SYSTEM_FONTS
in setup.py. The patch is likely to be included upstream soon, see:

https://github.com/mapnik/python-mapnik/pull/59

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


python-mapnik_0.0~20151012-a063df4-1_amd64.changes ACCEPTED into unstable

2015-10-15 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 15 Oct 2015 10:05:56 +0200
Source: python-mapnik
Binary: python-mapnik python3-mapnik
Architecture: source amd64
Version: 1:0.0~20151012-a063df4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 python-mapnik - Python 2 interface to the mapnik library
 python3-mapnik - Python 3 interface to the mapnik library
Changes:
 python-mapnik (1:0.0~20151012-a063df4-1) unstable; urgency=medium
 .
   * New upstream git snapshot.
   * Use system fonts instead of mapnik specific fonts.
Checksums-Sha1:
 5d67caf7142cf8db33f4b9cca9bc9a98017aad0b 2282 
python-mapnik_0.0~20151012-a063df4-1.dsc
 0c27d2e5673ce694c7cb27e704272305f7c07b6f 3897667 
python-mapnik_0.0~20151012-a063df4.orig.tar.gz
 7089e8f36dcfaf1dbc36473661a32a52cac0e639 3488 
python-mapnik_0.0~20151012-a063df4-1.debian.tar.xz
 75077c922ecac61fbde039e4696aa1714000f431 831256 
python-mapnik_0.0~20151012-a063df4-1_amd64.deb
 27da7ac588293e6a2ed8c43b08e1d5c9eefc52bd 828870 
python3-mapnik_0.0~20151012-a063df4-1_amd64.deb
Checksums-Sha256:
 45df9c9f67464108f40ce392dab7b0c72b8e4ac5dbe9d8d001470022e6b169a5 2282 
python-mapnik_0.0~20151012-a063df4-1.dsc
 18eeb38f2f7828bec5c24f20b9f296f7a38318b3fdb8a74a86c0f33eb14adea8 3897667 
python-mapnik_0.0~20151012-a063df4.orig.tar.gz
 29cf6df48ec91aaac40778e3aaf48c12b2d1aeccaf5dc96fe6be845e25795742 3488 
python-mapnik_0.0~20151012-a063df4-1.debian.tar.xz
 a890929c09b0648ebe1ad27c7935f39bec04b6c5896201eb7f161f71e032825c 831256 
python-mapnik_0.0~20151012-a063df4-1_amd64.deb
 68837518efd52e6c4a08f058816787d40e889d9fa2f0a9219b6afe6592389192 828870 
python3-mapnik_0.0~20151012-a063df4-1_amd64.deb
Files:
 309b6d324ec284d27d3e9056cb3c41a8 2282 python optional 
python-mapnik_0.0~20151012-a063df4-1.dsc
 5b0461b34ebb5c92624cc6cba370e9ef 3897667 python optional 
python-mapnik_0.0~20151012-a063df4.orig.tar.gz
 67c0820593864a5b5e12a27032edbec7 3488 python optional 
python-mapnik_0.0~20151012-a063df4-1.debian.tar.xz
 c0a35600376e347ef7e46524b7445424 831256 python optional 
python-mapnik_0.0~20151012-a063df4-1_amd64.deb
 18136dc640cccf942de1c16780f4c180 828870 python optional 
python3-mapnik_0.0~20151012-a063df4-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWH2W5AAoJEGdQ8QrojUrxC9MQANNCHQd484ibw7r1O1X25yuZ
gjLvlKbjXN9PmWykVCHCAlMWPlbvrMcESEbJiLq/TjQv+nDJz9ZPRTFpKi8YzaqP
PHS3BdBoCUOcxhnfgrrdBaaRGuwSJ0/X6QAqeyDwz48MJAVBRcyxmaFxt1Dwj+VA
jrjzHx29SeXKHYCU1CI6NNjLLTxn9N0vAovE4NudgYMfymV0f8hGXwncndcRlJMd
NknyThXqWFHF114dEfKkzWrhiCJ1ncdc9SWktKi2y0INqCAQqiNJbEcV83Hl5DmQ
n4+FqPJ1KF6QTJyO02Fwc8uU30BClvZBIZ1A1o4rErM1P/KqqxFC4YFe5zbeb+3o
JETfSd5oPRAoxn+KAbw/pUE1VT/CFMPPqWw4/xlMdZmWYED9Epqshyeif6MGumu/
sxGFm/a/ke1OfzpTEW+Sd3KSpx7WaolhQ1x1P4CpIrQsAga0gLnmBEF1ctBOxoHs
Yja/rY1BLrMHaocs7z0BqqLoKFkMuXnayABe7+FvLZO2acxUaJgv/CEzXMXlSQ5g
Rdr0uCp9sxdMPGfgMJbzB1FVej0QQni/AbXHi58qg8MgAmgVnZyFKo40OV1xFzlF
SHuVwXEubC3wQZBNmM3U5SpFagklG2eGMtTKhDqqC3GO3WJMnxchiF9WRpBy5Jb0
laOTwvGT9M7K0SRZCsIq
=NIJ0
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


rasterio_0.28.0-1_amd64.changes ACCEPTED into unstable

2015-10-15 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Oct 2015 10:37:57 +0200
Source: rasterio
Binary: python-rasterio python3-rasterio rasterio
Architecture: source amd64 all
Version: 0.28.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Johan Van de Wauw 
Description:
 python-rasterio - Python 2 API for using geospatial raster data with Numpy
 python3-rasterio - Python 3 API for using geospatial raster data with Numpy
 rasterio   - Command line tool for investigating geospatial rasters
Changes:
 rasterio (0.28.0-1) unstable; urgency=medium
 .
   * Imported Upstream version 0.28.0
   * Refresh patch
Checksums-Sha1:
 79f3114fa4670c863a587d93f8841f78fa40a61b 2410 rasterio_0.28.0-1.dsc
 edb5b273668028c3cfa810ef9c48de857deda959 2808731 rasterio_0.28.0.orig.tar.gz
 bb31a3f9c67606ac16416d508347d3f32b580671 5444 rasterio_0.28.0-1.debian.tar.xz
 2a25d535b1ccf28659bb892d2d96b11979e1f2e8 508852 
python-rasterio_0.28.0-1_amd64.deb
 0b9155d068fbc9be9277fb7dc067b8bbefb10484 706468 
python3-rasterio_0.28.0-1_amd64.deb
 ababb38722d396a83cdf30c728dfc6b2381a5603 9664 rasterio_0.28.0-1_all.deb
Checksums-Sha256:
 403bdc6c3aa5ba328927b219110bd442d07a38dda5ad600606fbd320dcc14d0a 2410 
rasterio_0.28.0-1.dsc
 6756c4b1f4cffcea6730819b6137c83b495265586d135809774696ecf714a5d0 2808731 
rasterio_0.28.0.orig.tar.gz
 da3391b24af81e5958a67709acc277130c70efce7fc7454fdfc8c0f1ea35b1c4 5444 
rasterio_0.28.0-1.debian.tar.xz
 f8d6fbffb653e6c8bed29036ea5c762320e3fad7ad95d22e4886e54b3eae5ace 508852 
python-rasterio_0.28.0-1_amd64.deb
 536d0f730ab1a05f140d8bcd4b6a1b8c2bba66cf4685e64040f1cfb7a70ca442 706468 
python3-rasterio_0.28.0-1_amd64.deb
 1d21dd39ab20af78dfbf0366c062a71af40bb18d5d072691a80ea4107dd5a09a 9664 
rasterio_0.28.0-1_all.deb
Files:
 27881f18f65d6d7a9b972ab05c22451f 2410 python optional rasterio_0.28.0-1.dsc
 bf49a197edbf6ee6a7286ae670c8dc9e 2808731 python optional 
rasterio_0.28.0.orig.tar.gz
 be3470177e9e5b87d9907b21743ae4a9 5444 python optional 
rasterio_0.28.0-1.debian.tar.xz
 c56d14d38dc8fc25a3494936801415e6 508852 python optional 
python-rasterio_0.28.0-1_amd64.deb
 4dde9b4dc8a8b450474d0c5c4f4933f6 706468 python optional 
python3-rasterio_0.28.0-1_amd64.deb
 7ce061c879007f0546df9ad89ec356b0 9664 science optional 
rasterio_0.28.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJWH2esAAoJEOX0UcKjM1jF23oQAKaBqBKDmYTezQaPC7Ny8nes
eOzJPOCU/W+l0qrGUUzigqjiViNhAX+Z/W3S3tz8iK0VFa3iup0Kpii1ygslt/pK
K73FwWf5WuxhKT7fwea9X3JK9nFaJCjRxnq0Rxzj0s4owdd7Q8iiShPmVaG3KrKd
vumqXlY3SlpIIM88I3NwY6kiSN29tbdrBHKoESrlTSDvsb4QvVNSFCLzzjCZqlyy
HvwIzD52uKjNOPq5VMLISrnadNr+pnCgsanYxgAvYvdLPIwvjYqWFcRSB+ABKqod
pWb1aWIEspiq3ygS6A1Es3ycGE7h6OUzZ7KZHeMHJEFP3UX/AXCiVv1phhm1ho21
kFZZsbAJ9JuUs94m0wqOQU+RER/zxhA9iNlZ6z1hnqejCMwbEogWnMJS5Z04F+M1
nCCw27H1j2jlRLVEih3z43ftkAh3v2U7TgAjvd0pKxcjkN69Puucm8A7DoHtc3ov
dpOfD5fByVWz+gAxgPRa+ZR4CjK+GPKq8GxayN6CpKW4M60n6bhottBdDwHw/Mxq
YnGqJyrykYugrO/D27RCKhmHBrZyNwkXsKq8YjD5xyH7VmAGZnzSRGIZ9bUVmZ2h
Xk97b+LxV7l1Tb+ymss0iVx+Ju2ePROlEY1QLsbDfRm/dJ/KGUiKBAm2pWjawBpF
LCXZlHSs2zQnwSPaw/Qs
=mYbo
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
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 python-mapnik_0.0~20151012-a063df4-1_amd64.changes

2015-10-15 Thread Debian FTP Masters
python-mapnik_0.0~20151012-a063df4-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  python-mapnik_0.0~20151012-a063df4-1.dsc
  python-mapnik_0.0~20151012-a063df4.orig.tar.gz
  python-mapnik_0.0~20151012-a063df4-1.debian.tar.xz
  python-mapnik_0.0~20151012-a063df4-1_amd64.deb
  python3-mapnik_0.0~20151012-a063df4-1_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


[python-mapnik] branch upstream updated (e03ba5e -> 61ad45e)

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream
in repository python-mapnik.

  from  e03ba5e   Imported Upstream version 0.0~20151010-b223124
   new  61ad45e   Imported Upstream version 0.0~20151012-a063df4

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:
 src/python_grid_utils.cpp | 67 ++-
 src/python_grid_utils.hpp |  7 -
 2 files changed, 2 insertions(+), 72 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] annotated tag upstream/0.0_20151012-a063df4 created (now feab5ae)

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to annotated tag upstream/0.0_20151012-a063df4
in repository python-mapnik.

at  feab5ae   (tag)
   tagging  61ad45e6348960b9aff1e78acfce481ceb82775d (commit)
  replaces  upstream/0.0_20151010-b223124
 tagged by  Bas Couwenberg
on  Wed Oct 14 23:29:53 2015 +0200

- Log -
Upstream version 0.0~20151012-a063df4

Bas Couwenberg (1):
  Imported Upstream version 0.0~20151012-a063df4

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] tag debian/0.0.20151012-a063df4-1 created (now c6bbc90)

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/0.0.20151012-a063df4-1
in repository python-mapnik.

at  c6bbc90   (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/python-mapnik.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


[python-mapnik] 01/06: Use system fonts instead of mapnik specific fonts.

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

commit 1d07bb92ecd134df6274e21d304c99d16cb80fdd
Author: Bas Couwenberg 
Date:   Wed Oct 14 23:29:18 2015 +0200

Use system fonts instead of mapnik specific fonts.
---
 debian/changelog | 6 ++
 debian/rules | 3 +++
 2 files changed, 9 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index d676e45..e2f0a52 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-mapnik (1:0.0~20151010-b223124-2) UNRELEASED; urgency=medium
+
+  * Use system fonts instead of mapnik specific fonts.
+
+ -- Bas Couwenberg   Wed, 14 Oct 2015 23:28:36 +0200
+
 python-mapnik (1:0.0~20151010-b223124-1) unstable; urgency=medium
 
   * New upstream git snapshot.
diff --git a/debian/rules b/debian/rules
index 8f6d403..b64cc8a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,6 +6,9 @@
 
 export PYBUILD_NAME=mapnik
 
+# Use system fonts instead of mapnik specific fonts
+export SYSTEM_FONTS=/usr/share/fonts
+
 %:
dh $@ \
--with python2,python3 \

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] 04/06: New upstream git snapshot.

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

commit 74d09267718eed0257855361d6695217df171d43
Author: Bas Couwenberg 
Date:   Wed Oct 14 23:30:12 2015 +0200

New upstream git snapshot.
---
 debian/changelog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index e2f0a52..580b46f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-python-mapnik (1:0.0~20151010-b223124-2) UNRELEASED; urgency=medium
+python-mapnik (1:0.0~20151012-a063df4-1) UNRELEASED; urgency=medium
 
+  * New upstream git snapshot.
   * Use system fonts instead of mapnik specific fonts.
 
- -- Bas Couwenberg   Wed, 14 Oct 2015 23:28:36 +0200
+ -- Bas Couwenberg   Wed, 14 Oct 2015 23:30:02 +0200
 
 python-mapnik (1:0.0~20151010-b223124-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] 05/06: Add patch to use system fonts in setup.py.

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

commit 9f5b8b8bdeee9507e2bd7fdcda23fb89d62f268d
Author: Bas Couwenberg 
Date:   Thu Oct 15 00:10:54 2015 +0200

Add patch to use system fonts in setup.py.
---
 debian/patches/series |  1 +
 debian/patches/system-fonts.patch | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..ad9dfc6
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+system-fonts.patch
diff --git a/debian/patches/system-fonts.patch 
b/debian/patches/system-fonts.patch
new file mode 100644
index 000..d52c3b4
--- /dev/null
+++ b/debian/patches/system-fonts.patch
@@ -0,0 +1,22 @@
+Description: Add support for system fonts to setup.py.
+ The same is supported in build.py if no mapnik/paths.py exists.
+Author: Bas Couwenberg 
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799473#10
+Forwarded: https://github.com/mapnik/python-mapnik/pull/59
+
+--- a/setup.py
 b/setup.py
+@@ -167,8 +167,12 @@ elif create_paths:
+ 
+ if create_paths:
+ f_paths.write("inputpluginspath = os.path.join(mapniklibpath,'input')\n")
++if os.environ.get('SYSTEM_FONTS'):
++font_path = "os.path.normpath('%s')" % os.environ.get('SYSTEM_FONTS')
++else:
++font_path = "os.path.join(mapniklibpath,'fonts')"
+ f_paths.write(
+-"fontscollectionpath = os.path.join(mapniklibpath,'fonts')\n")
++"fontscollectionpath = " + font_path + "\n")
+ f_paths.write(
+ "__all__ = [mapniklibpath,inputpluginspath,fontscollectionpath]\n")
+ f_paths.close()

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] 01/01: Mark patch as Applied-Upstream.

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

commit bb32c676cf4645864383b1ae3f65c9c45c933b3c
Author: Bas Couwenberg 
Date:   Thu Oct 15 19:16:43 2015 +0200

Mark patch as Applied-Upstream.
---
 debian/patches/system-fonts.patch | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/patches/system-fonts.patch 
b/debian/patches/system-fonts.patch
index d52c3b4..bf8d6bf 100644
--- a/debian/patches/system-fonts.patch
+++ b/debian/patches/system-fonts.patch
@@ -3,6 +3,7 @@ Description: Add support for system fonts to setup.py.
 Author: Bas Couwenberg 
 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799473#10
 Forwarded: https://github.com/mapnik/python-mapnik/pull/59
+Applied-Upstream: 
https://github.com/mapnik/python-mapnik/commit/8fd2e85f9add634d162a5c0a2c16ac43e9d1aa02
 
 --- a/setup.py
 +++ b/setup.py

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[python-mapnik] branch master updated (c6bbc90 -> bb32c67)

2015-10-15 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

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

  from  c6bbc90   Set distribution to unstable.
   new  bb32c67   Mark patch as Applied-Upstream.

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/patches/system-fonts.patch | 1 +
 1 file changed, 1 insertion(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/python-mapnik.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


[rasterio] branch pristine-tar updated (a903241 -> 47616f2)

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch pristine-tar
in repository rasterio.

  from  a903241   pristine-tar data for rasterio_0.27.0.orig.tar.gz
   new  47616f2   pristine-tar data for rasterio_0.28.0.orig.tar.gz

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:
 rasterio_0.28.0.orig.tar.gz.delta | Bin 0 -> 5023 bytes
 rasterio_0.28.0.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 rasterio_0.28.0.orig.tar.gz.delta
 create mode 100644 rasterio_0.28.0.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] 03/04: Refresh patch

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository rasterio.

commit ebf0cac12bac655f465f9144271d64e7d71360f8
Author: Johan Van de Wauw 
Date:   Thu Oct 15 10:36:42 2015 +0200

Refresh patch
---
 debian/patches/0001-Rename-rio-to-rasterio-Closes-788463.patch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/patches/0001-Rename-rio-to-rasterio-Closes-788463.patch 
b/debian/patches/0001-Rename-rio-to-rasterio-Closes-788463.patch
index dfded36..f1b5ba8 100644
--- a/debian/patches/0001-Rename-rio-to-rasterio-Closes-788463.patch
+++ b/debian/patches/0001-Rename-rio-to-rasterio-Closes-788463.patch
@@ -9,8 +9,8 @@ There is already another package providing a binary "rio".
 
 --- a/setup.py
 +++ b/setup.py
-@@ -229,7 +229,7 @@ setup_args = dict(
- packages=['rasterio', 'rasterio.rio'],
+@@ -230,7 +230,7 @@
+ packages=['rasterio', 'rasterio.rio', 'rasterio.tools'],
  entry_points='''
  [console_scripts]
 -rio=rasterio.rio.main:main_group

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] 01/04: Imported Upstream version 0.28.0

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository rasterio.

commit 35a7b2a7310e11080550c5f02fe216afcbab7d39
Author: Johan Van de Wauw 
Date:   Thu Oct 15 10:33:28 2015 +0200

Imported Upstream version 0.28.0
---
 CHANGES.txt  | 6 ++
 rasterio/__init__.py | 2 +-
 rasterio/_base.pyx   | 4 ++--
 setup.py | 2 +-
 4 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/CHANGES.txt b/CHANGES.txt
index 01ea66e..03326b6 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,12 @@
 Changes
 ===
 
+0.28.0 (2015-10-06)
+---
+- Ensure that tools module is packaged (#489, #490). The rio-merge command was
+  broken in 0.27.0 and is restored to working order in version 0.28.0.
+- Add `precision` keyword argument to `index()` method (#492).
+
 0.27.0 (2015-09-25)
 ---
 - Ensure local uniqueness of the rio-shapes feature ids (#479).
diff --git a/rasterio/__init__.py b/rasterio/__init__.py
index 11934fd..0460125 100644
--- a/rasterio/__init__.py
+++ b/rasterio/__init__.py
@@ -23,7 +23,7 @@ from rasterio import _err, coords, enums
 
 __all__ = [
 'band', 'open', 'drivers', 'copy', 'pad']
-__version__ = "0.27.0"
+__version__ = "0.28.0"
 
 log = logging.getLogger('rasterio')
 class NullHandler(logging.Handler):
diff --git a/rasterio/_base.pyx b/rasterio/_base.pyx
index 422db77..a5ef369 100644
--- a/rasterio/_base.pyx
+++ b/rasterio/_base.pyx
@@ -389,9 +389,9 @@ cdef class DatasetReader(object):
 row += self.height
 return c+a*col, f+e*row
 
-def index(self, x, y, op=math.floor):
+def index(self, x, y, op=math.floor, precision=6):
 """Returns the (row, col) index of the pixel containing (x, y)."""
-return get_index(x, y, self.affine)
+return get_index(x, y, self.affine, op=op, precision=precision)
 
 def window(self, left, bottom, right, top, boundless=False):
 """Returns the window corresponding to the world bounding box.
diff --git a/setup.py b/setup.py
index fe4cf4d..ed3b07f 100755
--- a/setup.py
+++ b/setup.py
@@ -227,7 +227,7 @@ setup_args = dict(
 url='https://github.com/mapbox/rasterio',
 license='BSD',
 package_dir={'': '.'},
-packages=['rasterio', 'rasterio.rio'],
+packages=['rasterio', 'rasterio.rio', 'rasterio.tools'],
 entry_points='''
 [console_scripts]
 rio=rasterio.rio.main:main_group

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] 02/04: Merge tag 'upstream/0.28.0'

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository rasterio.

commit e213c768a1654c9ad2215eac05611d6435d8857e
Merge: 0aac6d5 35a7b2a
Author: Johan Van de Wauw 
Date:   Thu Oct 15 10:33:29 2015 +0200

Merge tag 'upstream/0.28.0'

Upstream version 0.28.0

 CHANGES.txt  | 6 ++
 debian/changelog | 6 ++
 rasterio/__init__.py | 2 +-
 rasterio/_base.pyx   | 4 ++--
 setup.py | 2 +-
 5 files changed, 16 insertions(+), 4 deletions(-)

diff --cc debian/changelog
index b320708,000..10ac453
mode 100644,00..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,61 -1,0 +1,67 @@@
++rasterio (0.28.0-1) UNRELEASED; urgency=medium
++
++  * Imported Upstream version 0.28.0
++
++ -- Johan Van de Wauw   Thu, 15 Oct 2015 10:34:00 +0200
++
 +rasterio (0.27.0-2) unstable; urgency=medium
 +
 +  * add rasterio/rasterfill.cpp to d/copyright, after FTP-master comments
 +
 + -- Johan Van de Wauw   Mon, 12 Oct 2015 14:50:37 +0200
 +
 +rasterio (0.27.0-1) unstable; urgency=medium
 +
 +  * Imported Upstream version 0.27.0
 +  * Add python3 support
 +  * Remove patches added upstream
 +  * Override tests to always succeed
 +  * Add rule to regenerate manfile
 +  * Remove python3-enum34
 +  * Add Cython3 B/D
 +  * Compatibility with python 3.5
 +  * Base rasterio binary on Python 3 instead of Python 2
 +  * Update manfile/manfile generation
 +
 + -- Johan Van de Wauw   Tue, 29 Sep 2015 08:47:59 +0200
 +
 +rasterio (0.26.0-1) unstable; urgency=medium
 +
 +  * Specify that rasterio requires cligj >0.2
 +  * Imported Upstream version 0.26.0
 +  * Add B/D to python-click-plugins
 +  * Update my mailaddress
 +  * Set section for rasterio
 +
 + -- Johan Van de Wauw   Fri, 25 Sep 2015 12:14:57 +0200
 +
 +rasterio (0.25.0-1) unstable; urgency=medium
 +
 +  * Fix tests on i386 (Closes:  #790549)
 +  * Imported Upstream version 0.25.0
 +  * Fix patches, drop patches included upstream
 +  * Skip failing tests during build
 +  * Update copyright with AUTHORS.txt
 +
 + -- Johan Van de Wauw   Sun, 23 Aug 2015 21:34:03 
+0200
 +
 +rasterio (0.24.0-1) unstable; urgency=medium
 +
 +  * Imported Upstream version 0.24.0
 +  * Add extra dependency to python-snuggs
 +  * Dependency on click via cligj
 +  * Rename-rio-to-rasterio (Closes:#788463)
 +  * Fix compatibility w/Cython 0.22(Closes: #788408)
 +  * Add _io.pyx changes to Cython patch
 +  * Also fix manpage installscript rio --> rasterio
 +  * Update manfile
 +  * Fix compatibility with numpy < 1.9
 +  * Bump copyright year/add myself for packaging copyright
 +
 + -- Johan Van de Wauw   Tue, 30 Jun 2015 00:11:40 
+0200
 +
 +rasterio (0.15.1-1) unstable; urgency=medium
 +
 +  * Initial upload (closes: #767027)
 +
 + -- Johan Van de Wauw   Thu, 25 Sep 2014 21:32:43 
+0200

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] 04/04: Ready for unstable

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository rasterio.

commit 970dfa0d3cdc3eb1f672dc4a6fd5eeb88dcb5b96
Author: Johan Van de Wauw 
Date:   Thu Oct 15 10:38:04 2015 +0200

Ready for unstable
---
 debian/changelog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 10ac453..9204e70 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-rasterio (0.28.0-1) UNRELEASED; urgency=medium
+rasterio (0.28.0-1) unstable; urgency=medium
 
   * Imported Upstream version 0.28.0
+  * Refresh patch
 
- -- Johan Van de Wauw   Thu, 15 Oct 2015 10:34:00 +0200
+ -- Johan Van de Wauw   Thu, 15 Oct 2015 10:37:57 +0200
 
 rasterio (0.27.0-2) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] branch master updated (0aac6d5 -> 970dfa0)

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch master
in repository rasterio.

  from  0aac6d5   Ready for unstable
   new  35a7b2a   Imported Upstream version 0.28.0
   new  e213c76   Merge tag 'upstream/0.28.0'
   new  ebf0cac   Refresh patch
   new  970dfa0   Ready for unstable

The 4 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:
 CHANGES.txt| 6 ++
 debian/changelog   | 7 +++
 debian/patches/0001-Rename-rio-to-rasterio-Closes-788463.patch | 4 ++--
 rasterio/__init__.py   | 2 +-
 rasterio/_base.pyx | 4 ++--
 setup.py   | 2 +-
 6 files changed, 19 insertions(+), 6 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] annotated tag upstream/0.28.0 created (now 0122c99)

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to annotated tag upstream/0.28.0
in repository rasterio.

at  0122c99   (tag)
   tagging  35a7b2a7310e11080550c5f02fe216afcbab7d39 (commit)
  replaces  upstream/0.27.0
 tagged by  Johan Van de Wauw
on  Thu Oct 15 10:33:29 2015 +0200

- Log -
Upstream version 0.28.0

Johan Van de Wauw (1):
  Imported Upstream version 0.28.0

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] tag debian/0.28.0-1 created (now 970dfa0)

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to tag debian/0.28.0-1
in repository rasterio.

at  970dfa0   (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/rasterio.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


[rasterio] branch upstream updated (a423ade -> 35a7b2a)

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch upstream
in repository rasterio.

  from  a423ade   Imported Upstream version 0.27.0
   new  35a7b2a   Imported Upstream version 0.28.0

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:
 CHANGES.txt  | 6 ++
 rasterio/__init__.py | 2 +-
 rasterio/_base.pyx   | 4 ++--
 setup.py | 2 +-
 4 files changed, 10 insertions(+), 4 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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


[rasterio] 01/01: pristine-tar data for rasterio_0.28.0.orig.tar.gz

2015-10-15 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch pristine-tar
in repository rasterio.

commit 47616f2546456fa3876dca3258790f30e7ca0cf2
Author: Johan Van de Wauw 
Date:   Thu Oct 15 10:33:29 2015 +0200

pristine-tar data for rasterio_0.28.0.orig.tar.gz
---
 rasterio_0.28.0.orig.tar.gz.delta | Bin 0 -> 5023 bytes
 rasterio_0.28.0.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/rasterio_0.28.0.orig.tar.gz.delta 
b/rasterio_0.28.0.orig.tar.gz.delta
new file mode 100644
index 000..9e45b62
Binary files /dev/null and b/rasterio_0.28.0.orig.tar.gz.delta differ
diff --git a/rasterio_0.28.0.orig.tar.gz.id b/rasterio_0.28.0.orig.tar.gz.id
new file mode 100644
index 000..29ab977
--- /dev/null
+++ b/rasterio_0.28.0.orig.tar.gz.id
@@ -0,0 +1 @@
+e2435a685c733f73e3ca12a78f5d138cfdc8e6bb

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/rasterio.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