Bug#1054249: (no subject)

2024-03-28 Thread Johan Van de Wauw
Can this solution be brought too bookworm, either through stable-updates 
(preferably) or otherwise backports?


The current package is not useable.



Bug#1009417: saga: FTBFS: configure: error: cannot import Python module "distutils".

2022-04-13 Thread Johan Van de Wauw
I will check.

The mRMR issue has been addressed. I will target a new release (and change
the build system to cmake, as autotools will be deprecated next release).

On Tue, Apr 12, 2022 at 10:55 PM Sebastiaan Couwenberg 
wrote:

> On 4/12/22 20:23, Lucas Nussbaum wrote:
> >> checking for python script directory (pythondir)...
> ${PYTHON_PREFIX}/lib/python3.10/site-packages
> >> checking for python extension module directory (pyexecdir)...
> ${PYTHON_EXEC_PREFIX}/lib/python3.10/site-packages
> >> checking for python3.10... (cached) /usr/bin/python3
> >> checking for a version of Python >= '2.1.0'... yes
> >> checking for the distutils Python package... no
> >> configure: error: cannot import Python module "distutils".
> >> Please check your Python installation. The error was:
> >> :1: DeprecationWarning: The distutils package is deprecated and
> slated for removal in Python 3.12. Use setuptools or check PEP 632 for
> potential alternatives
>
> Johan can you fix this (upstream)?
>
> And has the mRMR license issue been addressed upstream to unblock
> updating the package to 8.x?
>
> Kind Regards,
>
> Bas
>
> --
>   GPG Key ID: 4096R/6750F10AE88D4AF1
> Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1
>


Bug#933464: saga: Please rebuild against wxWidgets GTK 3 package

2019-08-05 Thread Johan Van de Wauw
FYI. I've done some testing and didn't see any issues when using the
wxWidgets GTK3 build.


Bug#893921: libharu: add support for free-form triangle shading objects

2018-03-23 Thread Johan Van de Wauw
Pull request with discussion here:
https://github.com/libharu/libharu/pull/157

Has this been implemented by other distro's?

If kitware can support VTK, perhaps they can invest some time in proposing
a new release with some of the other pull requests? I think this is a
better way forward for the community than having maintainers of different
distro's having to add patches to support features.

On Fri, Mar 23, 2018 at 8:19 PM, Kyle Edwards 
wrote:

> Source: libharu
> Severity: wishlist
> Tags: patch
>
> Dear Maintainer,
>
> I am working on an official Kitware-supported Debian/Ubuntu package for
> the upcoming VTK 9. We are using a custom shading feature developed
> in-house for libharu. We have submitted our changes upstream, but the
> project has been abandoned and the patch will most likely never be
> accepted. Please backport the included patch so that we can bring VTK 9
> to Debian. Thank you for your support.
>
>
> *** patches/0001-Add-support-for-free-form-triangle-Shading-objects.patch
> From 9e8ba2f5453552909e52fde5ec30856004a616d0 Mon Sep 17 00:00:00 2001
> From: "David C. Lonie" 
> Date: Wed, 10 May 2017 11:07:28 -0400
> Subject: [PATCH] Add support for free-form triangle Shading objects.
>
> ---
>  include/hpdf.h   |  24 -
>  include/hpdf_error.h |   3 +
>  include/hpdf_objects.h   |   2 +
>  include/hpdf_pages.h |   5 +
>  include/hpdf_types.h |  14 +++
>  src/CMakeLists.txt   |   1 +
>  src/hpdf_page_operator.c |  31 +++
>  src/hpdf_pages.c |  55 ++-
>  src/hpdf_shading.c   | 231 ++
> +
>  9 files changed, 362 insertions(+), 4 deletions(-)
>  create mode 100644 src/hpdf_shading.c
>
> diff --git a/include/hpdf.h b/include/hpdf.h
> index e369f67..40e3c41 100644
> --- a/include/hpdf.h
> +++ b/include/hpdf.h
> @@ -77,6 +77,7 @@ typedef HPDF_HANDLE   HPDF_Dict;
>  typedef HPDF_HANDLE   HPDF_EmbeddedFile;
>  typedef HPDF_HANDLE   HPDF_OutputIntent;
>  typedef HPDF_HANDLE   HPDF_Xref;
> +typedef HPDF_HANDLE   HPDF_Shading;
>
>  #else
>
> @@ -1171,6 +1172,11 @@ HPDF_EXPORT(HPDF_STATUS)
>  HPDF_Page_SetExtGState  (HPDF_Pagepage,
>   HPDF_ExtGState   ext_gstate);
>
> +/* sh */
> +HPDF_EXPORT(HPDF_STATUS)
> +HPDF_Page_SetShading  (HPDF_Pagepage,
> +   HPDF_Shading shading);
> +
>
>  /*--- Special graphic state operator --
> */
>
> @@ -1450,7 +1456,23 @@ HPDF_Page_SetCMYKStroke  (HPDF_Page  page,
>
>  /*--- Shading patterns --
> -*/
>
> -/* sh --not implemented yet */
> +/* Notes for docs:
> + * - ShadingType must be HPDF_SHADING_FREE_FORM_TRIANGLE_MESH (the only
> + *   defined option...)
> + * - colorSpace must be HPDF_CS_DEVICE_RGB for now.
> + */
> +HPDF_EXPORT(HPDF_Shading)
> +HPDF_Shading_New  (HPDF_Doc pdf,
> +   HPDF_ShadingType type,
> +   HPDF_ColorSpace  colorSpace,
> +   HPDF_REAL xMin, HPDF_REAL xMax,
> +   HPDF_REAL yMin, HPDF_REAL yMax);
> +
> +HPDF_EXPORT(HPDF_STATUS)
> +HPDF_Shading_AddVertexRGB(HPDF_Shading shading,
> +  HPDF_Shading_FreeFormTriangleMeshEdgeFlag
> edgeFlag,
> +  HPDF_REAL x, HPDF_REAL y,
> +  HPDF_UINT8 r, HPDF_UINT8 g, HPDF_UINT8 b);
>
>  /*--- In-line images --
> ---*/
>
> diff --git a/include/hpdf_error.h b/include/hpdf_error.h
> index b04e2cd..ef4fa61 100644
> --- a/include/hpdf_error.h
> +++ b/include/hpdf_error.h
> @@ -145,6 +145,9 @@ extern "C" {
>  #define HPDF_INVALID_U3D_DATA 0x1083
>  #define HPDF_NAME_CANNOT_GET_NAMES0x1084
>  #define HPDF_INVALID_ICC_COMPONENT_NUM0x1085
> +/*0x1086 */
> +/*0x1087 */
> +#define HPDF_INVALID_SHADING_TYPE 0x1088
>
>  /*--
> -*/
>
> diff --git a/include/hpdf_objects.h b/include/hpdf_objects.h
> index 525adda..b16de02 100644
> --- a/include/hpdf_objects.h
> +++ b/include/hpdf_objects.h
> @@ -61,6 +61,7 @@ extern "C" {
>  #define  HPDF_OSUBCLASS_EXT_GSTATE_R  0x0B00  /* read only object */
>  #define  HPDF_OSUBCLASS_NAMEDICT  0x0C00
>  #define  HPDF_OSUBCLASS_NAMETREE  0x0D00
> +#define  HPDF_OSUBCLASS_SHADING   0x0E00
>
>
>
> @@ -595,6 +596,7 @@ typedef HPDF_Array HPDF_Destination;
>  typedef HPDF_Dict  HPDF_U3D;
>  typedef HPDF_Dict  HPDF_OutputIntent;
>  typedef HPDF_Dict  HPDF_JavaScript;
> +typedef HPDF_Dict  HPDF_Shading;
>
>  #ifdef __cplusplus
>  }
> diff --git a/include/hpdf_pages.h b/include/hpdf_pages.h
> index 44b816c..60b1d84 100644
> --- a/include/hpdf_pages.h
> +++ b/include/hpdf_pages.h
> @@ -55,6 +55,7 

Bug#885416: transition: libharu

2017-12-26 Thread Johan Van de Wauw
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: transition

Hello Release Team,

I would like to request a transition for libharu. The package is in 
experimental for some time.
I have tested the reverse dependencies and they build fine.

Kind Regards,
Johan

Ben file:

title = "libharu";
is_affected = .depends ~ "libhpdf-2.2.1" | .depends ~ "libhpdf-2.3.0";
is_good = .depends ~ "libhpdf-2.3.0";
is_bad = .depends ~ "libhpdf-2.2.1";



Bug#838915: saga: Segmentation fault in CSG_Projections::WKT_to_Proj4() with merge layers

2016-09-26 Thread Johan Van de Wauw
A somewhat dirty workaround, but since the projection on both files is
identical, you can actually skip using proj at all by removing/renaming the
*.prj files. Then merging should work.


Bug#838915: saga: Segmentation fault in CSG_Projections::WKT_to_Proj4() with merge layers

2016-09-26 Thread Johan Van de Wauw
Thanks for your report.

I can confirm this also happens on debian unstable. I'll investigate
further.


Bug#807339: qgis: saga not available in processing toolbox

2016-05-25 Thread Johan Van de Wauw
On Tue, May 24, 2016 at 10:40 PM, Sebastiaan Couwenberg
 wrote:

>> I'd like to hear Johans opinion on SAGA support in QGIS.
>
> Not updating SAGA to newer upstream releases when we have a working
> QGIS/SAGA combination is not a very appealing option. It does seem to me
> the best way to have a working combination in stable without the need
> for additional repositories (backports or 3rd party).
>
> If the SAGA developers were to adopt LTS releases, this would greatly
> getting those versions supported in QGIS. We can then target those
> releases for inclusion in stable.
>
> In the mean time there is not much we as distribution maintainers can do
> about this issue, unless we stop keeping SAGA current to allow QGIS to
> catch up or actively port the SAGA Processing support in QGIS for every
> new SAGA release.
>
> @Johan, what can you tell us about this issue from the SAGA point of view?
>

I agree with the QGIS devs. The changing parameters are also a problem
for those just writing their own saga scripts. I will raise the issue
again on the mailinglist.

Kind Regards,
Johan



Bug#808248: SAGA 2.2.2 (source) contains non-free code

2015-12-17 Thread Johan Van de Wauw

Source: saga
Version: 2.2.2-1
Severity: serious

While starting packaging SAGA 2.2.3 I noticed that the previous package 
somehow contains the files which should have been excluded as documented 
in the debian/copyright file.


Note that this does not really affect the binary package as the code is 
not used in the build- the results should be identical.


I'll proceed creating a package for SAGA 2.2.3, but I wanted to document 
this error in version 2.2.2-1 in Debian.




Bug#796990: Ogr2ogr with wrapdateline fails on armhf

2015-08-26 Thread Johan Van de Wauw
On Wed, Aug 26, 2015 at 7:03 PM, Sebastiaan Couwenberg
sebas...@xs4all.nl wrote:

 I'm not sure what to do with this bugreport, if it's a problem with gdal
 on arm{el,hf} we should forward it upstream, but since it can also very
 likely be caused by the ongoing transitions we should probably keep it
 around for now and check it again when the GCC 5 transitions have completed.
This is not an upstream issue. I checked and ubuntu utopic does not
show this behaviour (with gdal 1.11.2 and before the libstdc++
migration).



Bug#796990: Ogr2ogr with wrapdateline fails on armhf

2015-08-26 Thread Johan Van de Wauw
This function uses GEOS, so we should check again after rebuilding that:

See ogrgeometryfactory.cpp:
2321 if (oEnvelope.MinX  dfLeftBorderX  oEnvelope.MaxX  180)
2322 {
2323 #ifndef HAVE_GEOS
2324 CPLError( CE_Failure, CPLE_NotSupported,
2325 GEOS support not enabled. );
2326 #else
2327 bWrapDateline = TRUE;
2328 #endif
2329 }



Bug#796990: Ogr2ogr with wrapdateline fails on armhf

2015-08-26 Thread Johan Van de Wauw
Package:gdal
Version: 1.11.2+dfsg-1
Severity: normal

Hello Team members,
While investigating the failing tests of rasterio in sid on
armhf/armel [1,2] I tried doing the same command using ogr2ogr:

ogr2ogr new.geojson test.geojson   -t_srs epsg:4326 -f GeoJSON -wrapdateline
ERROR 1: vector::_M_fill_insert
ERROR 1: vector::_M_fill_insert
ERROR 1: vector::_M_fill_insert
ERROR 1: vector::_M_fill_insert

The same error is encountered. This error comes from C++ so I assume
it is related to the libstdc++ transition. Moreover, if I build
rasterio on stretch the error does not occur (and the ogr2ogr command
works fine).

[1] 
https://buildd.debian.org/status/fetch.php?pkg=rasterioarch=armelver=0.25.0-1stamp=1440369003
[2] 
https://buildd.debian.org/status/fetch.php?pkg=rasterioarch=armhfver=0.25.0-1stamp=1440368428


test.geojson
Description: Binary data


Bug#796745: possibly build additional hdf4-tools-alt (without netcdf support)

2015-08-24 Thread Johan Van de Wauw
On Mon, Aug 24, 2015 at 9:42 AM, Andreas Hilboll andr...@hilboll.de wrote:
 Actually my plan is to try to have only one HDF4 library without
 embedded netcdf: packages needing netcdf can link to the netcdf
 library. This is the same way hdf4 is packaged in Fedora.

 Great, this would make things a lot easier, I guess.   All the packages
 depending on libhdf4-0-alt would need to change their dependencies then
 -- do you need help organizing this?
I'll try writing things up later this week, but for the lib-packages I want
to use the actual libnames:
libdf
libmfdf
I guess it is probably also a good idea to rename the -dev package.

I can surely use some help or feedback on the idea. What would be most
helpful is to have this tested by people who actually use netcdf and hdf4
together in one of the tools which rely on the current libhdf4. Such a test
could in fact already happen by linking both libhdf4-alt and netcdf rather
than libhdf4.


 I'd like to test this approach locally after the netcdf transition.
 Can you elaborate?  What transition?
https://release.debian.org/transitions/html/netcdf.html


Bug#796745: possibly build additional hdf4-tools-alt (without netcdf support)

2015-08-23 Thread Johan Van de Wauw
On Sun, Aug 23, 2015 at 10:30 PM, Andreas Hilboll andr...@hilboll.de wrote:
 Package: hdf4-tools
 Version: 4.2r10-0ubuntu1

 hdf4-tools depends on libhdf4-0.  However, libhdf4-0 conflicts with
 libhdf4-0-alt, which in turn is a dependency of libgdal0 and others.

 Would it be possible to provide a hdf4-tools-alt package depending on
 libhdf4-0-alt, without the HDF4-netcdf support?
Actually my plan is to try to have only one HDF4 library without
embedded netcdf: packages needing netcdf can link to the netcdf
library. This is the same way hdf4 is packaged in Fedora.

I'd like to test this approach locally after the netcdf transition. In
the meantime I will already upload the hdf4 4.2.11 package currently
in git.



Bug#796191: RFS: libharu/2.3.0+dfsg-1~exp1

2015-08-20 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package libharu

 * Package name: libharu
   Version : 2.3.0+dfsg-1~exp1
   Upstream Author : [fill in name and email of upstream]
 * URL : http://libharu.org
 * License : Zlib
   Section : libs

  It builds those binary packages:

libhpdf-2.3.0 - C library for generating pdf files
 libhpdf-dev - C library for generating pdf files (development files)

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/libharu

  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/libh/libharu/libharu_2.3.0+dfsg-1~exp1.dsc

  Changes since the last upload:
* Imported Upstream version 2.3.0 (Closes: #726069)
  * Bump standards version (no changes needed)
  * Bump library package number
  * Update install filename
  * Switch to debhelper 9 - enable multiarch
  * Remove unneccessary patches
  * Revert Update copyright/rules file, no dfsg cleaning needed anymore
  * Update rules to new upstream tarball format
  * Add info on how to build dfsg-free version
  * Imported Upstream version 2.3.0+dfsg
  * Make sure autoconf is used (as was in previous packages)
  * Use Files-excluded to repack original tarball
  * Fix version dependency in control file
  * Fix scm urls
  * Add symbols
  * Add gbp.conf
  * Fix rebuild
  * Remove symbols of old library
  * Update copyright year
  * Fix package description (Closes: #753426)



Note that I'm uploading to experimental as this will require a
transition (as upstream uses release sonames)(and I found abi
changes).
Reverse dependencies are:
  witty-examples
  libwt38
  saga
  libsaga
  udav
  python-mathgl
  mathgl
  libmgl7.2.0
  libmgl-wx7.2.0
  libmgl-wnd7.2.0
  libmgl-qt7.2.0
  libmgl-glut7.2.0
  libmgl-fltk7.2.0
  libhpdf-dev
  emboss-lib
  emboss

I was not entirely sure how to handle symbols with a release soname, I
just rebuild them for the package.

  Regards,
   Johan Van de Wauw



Bug#796191: RFS: libharu/2.3.0+dfsg-1~exp1

2015-08-20 Thread Johan Van de Wauw
On Thu, Aug 20, 2015 at 11:19 AM, Gianfranco Costamagna
costamagnagianfra...@yahoo.it wrote:

Looking at the policy I think it is better to document this in
debian/copyright. I like to document why I remove files from the
original source.


 but you didn't remove them anymore, right?
 anyway, let me know your solution :)
 (looks e.g. to Files-Excluded copyright feature)
See:
http://anonscm.debian.org/cgit/collab-maint/libharu.git/commit/?id=63bc1c455053197917b15e3bcee3e25d0b3f1f2a
@@ -2,6 +2,13 @@ Format:
http://www.debian.org/doc/packaging-manuals/copyright-format/1.1/
Upstream-Name: libharu
Upstream-Contact: libh...@googlegroups.com
Files-Excluded: demo/pngsuite win32 demo/*.pdf demo/ttfont demo/type1
+Comment: These files are removed from the upstream archive:
+ demo/pngsuite: non dfsg-free license
+ demo/type1: fonts already in package gsfonts
+ demo/ttfont: font already in package ttf-dustin
+ demo/*.pdf: binary files
+ win32/: binary files and/or unneeded files for debian build
+
Files: *
Copyright: 1999-2006, Takeshi Kanno
diff --git a/debian/readme.source b/debian/readme.source
deleted file mode 100644

I do remove them now. Not in the previous release where the tarball
was made with make dist (vs github snapshot now).

Strictly speaking both are not necessary when you build the package
the first time, however, when you rebuild a source package after
building a binary package (or when using eg git-buildpackage) it will
complain that these files have changed compared to the version in the
tarball/repository.


 I know this so well, the question is:

 isn't something like
 $ cat debian/clean

 _configs.sed
 include/hpdf_config.h
 include/hpdf_version.h


 more elegant that the patch itself?
I tried this but reverted: I still get errors when rebuilding.
Probably the best solution would be to use the debian/clean file and
add these files to Files-Excluded in d/copyright (since I'm
repackaging anyway). Then there would be no difference.
For this release I prefer keeping the patches and not changing my
source tarball.

I've uploaded a new package with these changes and the
multiarch-fields in d/control

Kind Regards,
Johan



Bug#796191: RFS: libharu/2.3.0+dfsg-1~exp1

2015-08-20 Thread Johan Van de Wauw
On Thu, Aug 20, 2015 at 10:29 AM, Gianfranco Costamagna
costamagnagianfra...@yahoo.it wrote:
 Control: owner -1 !
 Control: tag -1 moreinfo

 Hi Johan,


 multiarch should be mentioned in control file.

 https://wiki.debian.org/Multiarch/Implementation

Ok, I will check - some time since I last did this.




 this should be fine, please check if reverse dependencies still builds and ask

 for a transition slot by opening a bug on release.debian.org metapackage
 (shouldn't be needed for ABI only changes, but with the libstdc++6 transition
 ongoing... well, they might not appreciated some more binNMUs :) )
Should I do so before uploading to experimental?


 other stuff

 d/readme.source should be named README.source and maybe just dropped, since 
 the last
 release is dfsg
Looking at the policy I think it is better to document this in
debian/copyright. I like to document why I remove files from the
original source.


 d/rules, the get-orig-source can be dropped, right?
yes, uscan will do so

 d/p/fix-rebuild.diff

 what is the pourpose of this patch?
 if files are autogenerated you might ad


 d/p/fix-version.diff

 well, upstream should pay attention when releasing :)
Strictly speaking both are not necessary when you build the package
the first time, however, when you rebuild a source package after
building a binary package (or when using eg git-buildpackage) it will
complain that these files have changed compared to the version in the
tarball/repository.

Kind Regards,
Johan



Bug#796191: RFS: libharu/2.3.0+dfsg-1~exp1

2015-08-20 Thread Johan Van de Wauw
On Thu, Aug 20, 2015 at 12:29 PM, Gianfranco Costamagna
costamagnagianfra...@yahoo.it wrote:

 now the changelog has one line extra (line 1)

 and maybe you can remove something, like a double
 Imported Upstream version 2.3.0+dfsg

I changed it to avoid confusion.

 regarding multiarch

 Pre-Depends: ${misc:Pre-Depends} should be added, and the dev package 
 should not
 marked as multiarch same.

Given the discussion I have not changed this.

I also made one minor change to the copyright file: it had a wrong
version number (1.1 vs 1.0).

I've uploaded a new version and pushed to alioth.

Kind Regards,
Johan



Bug#790549: rasterio: FTBFS on *-i386: AssertionError in test suite

2015-08-16 Thread Johan Van de Wauw
On Tue, Jun 30, 2015 at 9:54 AM, Johan Van de Wauw
johan.vandew...@gmail.com wrote:
 On Tue, Jun 30, 2015 at 6:06 AM, Aaron M. Ucko u...@debian.org wrote:
 Source: rasterio
 Version: 0.24.0-1
 Severity: important

 Thanks for addressing rasterio's Cython 0.22 incompatibility.  The new
 version builds on most architectures, but fails with test suite errors
 on i386 and kfreebsd-i386:

 Thanks for your report.
 This is a known issue, I already submitted a bug report upstream:
 https://github.com/mapbox/rasterio/issues/229

I've done some more research to the root cause of this issue and it is
in gdal. I will skip these tests on the next update (depending on the
libstdc++ transition, rasterio can currently not be build in sid).



Bug#795223: libgdal1h is not installable because of broken dependencies (maybe through libstdc++6)

2015-08-11 Thread Johan Van de Wauw
On Wed, Aug 12, 2015 at 12:16 AM, Daniel Lord d_l...@gmx.de wrote:
 Package: libgdal1h
 Version: current version in portage
 Severity: normal

 The following packages have unmet dependencies:
 libgdal1h : Depends: libdap17 but it is not going to be installed
  Depends: libdapclient6 but it is not going to be installed
  Depends: libdapserver7 but it is not going to be installed

This is indeed caused by the libstdc++6 transition: libdap needs to be
rebuilt against the new libstdc++ . We are aware of the issue :-)

Kind Regards,
Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#795191: RFS: python-click-plugins/1.0-1 [ITP]

2015-08-11 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-click-plugins

 Package name: python-click-plugins
 Version : 1.0-1
 Upstream Author : Kevin D. Wurster
 URL : https://github.com/click-contrib/click-plugins
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-click-plugins  - Click extension to register external CLI
commands (Python 2)
 python3-click-plugins - Click extension to register external CLI
commands (Python 3)

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-click-plugins


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-click-plugins/python-click-plugins_1.0-1.dsc

More information about click-plugins can be obtained from
https://github.com/click-contrib/click-plugins.

Changes since the last upload:

  * Initial release (Closes: #794816)


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#795204: ITP: jsr-275 -- Java package for the programmatic handling of physical quantities

2015-08-11 Thread Johan Van de Wauw
Package: wnpp
Owner: Johan Van de Wauw johan.vandew...@gmail.com
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: jsr-275
  Version : 1.0.0-beta1
  Upstream Author : JScience
* URL : http://jcp.org/en/jsr/detail?id=275
* License : BSD
  Programming Lang: Java
  Description : JSR-275

JSR-275 specifies Java packages for the programmatic handling of physical
quantities and their expression as numbers of units.

This package was  packaged last year by Jerome Villeneuve-Larouche
jlarou...@mapgears.com for OSGeo live during a Google summer of
school project. I'll try to bring the package to Debian.

Kind Regards,
Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#794816: ITP: python-click-plugins -- Click extension to register external CLI commands (Python 2)

2015-08-06 Thread Johan Van de Wauw
Package: wnpp
Owner: Johan Van de Wauw johan.vandew...@gmail.com
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: python-click-plugins
  Version : 1.0
  Upstream Author : Kevin Wurster (wurst...@gmail.com)
* URL : https://github.com/click-contrib/click-plugins
* License : BSD-3-Clause
  Programming Lang: Python
  Description : Click extension to register external CLI commands

Click plugins allows developers of Click commandline applications to add
a plugin mechanism to their tools. This allows the creation of
subcommands registered by those plugins.

This is the Python 2 version of the package.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#792701: RFS: saga/2.2.0+dfsg-1

2015-07-21 Thread Johan Van de Wauw
On Sat, Jul 18, 2015 at 7:13 PM, Sebastiaan Couwenberg
sebas...@xs4all.nl wrote:

 Unfortunately I cannot build the package because the pristine-tar branch
 hasn't been updated for saga_2.2.0+dfsg.orig.tar.xz. Maybe you forgot to
 push the branch?

I've imported it manually and pushed. No idea why it was not added.
Note that I'm mostly offline the next two weeks.

Kind Regards,
Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#792696: saga: please prepare Saga for libvigraimpex 1.10.0

2015-07-17 Thread Johan Van de Wauw
Hello  Daniel,

No need to provide a fix. I have one which was already applied in ubuntu.
I've prepared a new version of saga which is ready for unstable that
contains this fix.

Kind Regards,
Johan

On Fri, Jul 17, 2015 at 5:13 PM, Daniel Stender
deb...@danielstender.com wrote:
 Source: saga
 Version: 2.1.4+dfsg-1
 Severity: wishlist

 Dear Maintainer,

 current Saga FTBFS with libvigraimex-dev 1.10.0 (1.10.0+dfsg-8 in
 Experimental), could you please fix this for the upcoming transition?

 I'll provide a patch for this issue very soon.

 Thanks in advance,
 Daniel Stender

 -- System Information:
 Debian Release: stretch/sid
   APT prefers testing
   APT policy: (500, 'testing')
 Architecture: amd64 (x86_64)

 Kernel: Linux 4.0.0-2-amd64 (SMP w/4 CPU cores)
 Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash
 Init: systemd (via /run/systemd/system)

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


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#792701: RFS: saga/2.2.0+dfsg-1

2015-07-17 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal [important for RC bugs, wishlist for new packages]
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package saga

 Package name: saga
 Version : 2.2.0+dfsg-1
 Upstream Author : Olaf Conrad ocon...@saga-gis.org
 URL : http://www.saga-gis.org/
 License : GPLV2 + LGPLv2.1
 Section : science

It builds those binary packages:

 saga- System for Automated Geoscientific Analyses
 libsaga-dev - SAGA GIS development files
 libsaga - SAGA GIS shared libraries
 python-saga - SAGA GIS Python bindings

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/saga


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/s/saga/saga_2.2.0+dfsg-1.dsc

More information about SAGA GIS can be obtained from http://www.saga-gis.org/.

Changes since the last upload:

  [ Johan Van de Wauw ]
  * Enable parallel building
  * Add patch to work with recent versions of libvigraimpex
Patch provided by Adam Conrad (closes: #792696)

  [ Bas Couwenberg ]
  * Add repacksuffix in watch file to use +dfsg in version.
  * Remove trailing space after . control statement.

  [ Johan Van de Wauw ]
  * Fix manpages build
  * Remove B/D on liblas
  * Imported Upstream version 2.2.0+dfsg
  * Fix manfile generation once more
  * Add opencv module


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790549: rasterio: FTBFS on *-i386: AssertionError in test suite

2015-06-30 Thread Johan Van de Wauw
On Tue, Jun 30, 2015 at 6:06 AM, Aaron M. Ucko u...@debian.org wrote:
 Source: rasterio
 Version: 0.24.0-1
 Severity: important

 Thanks for addressing rasterio's Cython 0.22 incompatibility.  The new
 version builds on most architectures, but fails with test suite errors
 on i386 and kfreebsd-i386:

Thanks for your report.
This is a known issue, I already submitted a bug report upstream:
https://github.com/mapbox/rasterio/issues/229


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790505: RFS: rasterio/0.24.0-1 [RC]

2015-06-29 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: important
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package rasterio

 Package name: rasterio
 Version : 0.24.0-1
 Upstream Author : Sean Gillies/Mapbox
 URL : https://github.com/mapbox/rasterio
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-rasterio - Python API for using geospatial raster data with Numpy
 rasterio- Command line tool for investigating geospatial rasters

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/rasterio


Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/r/rasterio/rasterio_0.24.0-1.dsc

More information about rasterio can be obtained from
https://github.com/mapbox/rasterio.

Changes since the last upload:

  * 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


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790007: debian-maintainers: Please add Johan Van de Wauw as a Debian Maintainer

2015-06-26 Thread Johan Van de Wauw
Package: debian-maintainers
Severity: normal
Tags: patch

Hi all, 

Please add my key to the DM keyring. See the attached jetring changeset.
Comment: Add Johan Van de Wauw jo...@vandewauw.be as a Debian Maintainer
Date: Fri, 26 Jun 2015 09:32:35 +0200
Action: import
Recommended-By: 
  Sebastiaan Couwenberg sebas...@debian.org
Agreement: 
  http://lists.debian.org/debian-newmaint/2015/06/msg8.html
Advocates: 
  http://lists.debian.org/debian-newmaint/2015/06/msg9.html
Data: 
  -BEGIN PGP PUBLIC KEY BLOCK-
  Version: GnuPG v1
  
  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
  h8H72mTOSON

Bug#789701: RFS: python-geojson/1.2.0-1

2015-06-23 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-geojson

 Package name: python-geojson
 Version : 1.2.0-1
 Upstream Author : Corey Farwell cor...@rwell.org
 URL : https://github.com/frewsxcv/python-geojson
 License : BSD-3-clause
 Section : python

It builds those binary packages:

 python-geojson  - Python 2 bindings and utilities for GeoJSON
 python3-geojson - Python 3 bindings and utilities for GeoJSON

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-geojson


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-geojson/python-geojson_1.2.0-1.dsc

More information about python-geojson can be obtained from
https://github.com/frewsxcv/python-geojson.

Changes since the last upload:

  * Imported Upstream version 1.2.0
  * Add names of copyright holders


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788986: RFS: geolinks/0.1.0-1

2015-06-23 Thread Johan Van de Wauw
Updated.

On Tue, Jun 16, 2015 at 11:54 PM, Sebastiaan Couwenberg
sebas...@xs4all.nl wrote:
 Hi Johan,

 Thanks for your work on this package too.

 On 06/16/2015 09:18 PM, Johan Van de Wauw wrote:
 I am looking for a sponsor for my package geolinks

 This package also as small copyright issue. Please add a Files section
 for debian/* with your copyright unless you want to assign this to upstream.

 Kind Regards,

 Bas

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


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#789522: RFS: pycsw/1.10.1+dfsg-1

2015-06-21 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package pycsw

 Package name: pycsw
 Version : 1.10.1+dfsg-1
 Upstream Author: see copyright
 URL : http://pycsw.org
 License : BSD-3-clause
 Section : non-free/python

It builds those binary packages:

 python-pycsw  - OGC compliant metadata (Catalogue service for the
Web) server
 python-pycsw-wsgi - WSGI Apache CSW service based on python-pycsw
 python-pycsw-doc  - OGC compliant metadata (Catalogue Service for the
Web) server

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/pycsw


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/non-free/p/pycsw/pycsw_1.10.1+dfsg-1.dsc

More information about pycsw can be obtained from http://pycsw.org.

Changes since the last upload:

  * Imported Upstream version 1.10.1+dfsg
  * Fix description (wsgi instead of cgi)
  * Update patches
  * Don't include external references to images
  * Fix description (wsgi instead of cgi)
  * Update patches


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788984: RFS: owslib/0.9.0-1

2015-06-20 Thread Johan Van de Wauw
On Tue, Jun 16, 2015 at 11:22 PM, Sebastiaan Couwenberg
sebas...@xs4all.nl wrote:
 Hi Johan,

 Thanks for your work on this package.

 On 06/16/2015 09:10 PM, Johan Van de Wauw wrote:
 I am looking for a sponsor for my package owslib

 The copyright for several authors is missing from the debian/copyright
 file, among them Luís de Sousa for the newly added wcs111.py for example.

 Please add the missing copyright holders. Other than that the package
 looks good.

I have rewritten the copyright file. Apart from that I've also enabled
Python 3, which is now supported by upstream as well. Note that this
means that the package will have to go through new.

Kind Regards,
JOhan


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788984: RFS: owslib/0.9.0-1

2015-06-16 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package owslib

 Package name: owslib
 Version : 0.9.0-1
 Upstream Author : Tom Kralidis tomkrali...@gmail.com
 URL : http://geopython.github.com/OWSLib/
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-owslib - Client library for Open Geospatial (OGC) web services

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/owslib


Alternatively, one can download the package with dget using this command:

  dget -x http://mentors.debian.net/debian/pool/main/o/owslib/owslib_0.9.0-1.dsc

More information about OWSLib can be obtained from
http://geopython.github.com/OWSLib/.

Changes since the last upload:

  * Imported Upstream version 0.9.0
  * Add dependency to python-requests


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788986: RFS: geolinks/0.1.0-1

2015-06-16 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal [important for RC bugs, wishlist for new packages]
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package geolinks

 Package name: geolinks
 Version : 0.1.0-1
 Upstream Author :Tom Kralidis
 URL : https://pypi.python.org/pypi/geolinks
 License : MIT
 Section : python

It builds those binary packages:

 python-geolinks - Library for using geospatial links (catalogue
interoperablity)

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/geolinks


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/g/geolinks/geolinks_0.1.0-1.dsc

More information about geolinks can be obtained from
https://pypi.python.org/pypi/geolinks.

Changes since the last upload:

  [ Bas Couwenberg ]
  * Fix broken watch file, use pypi.debian.net instead of pypi.python.org.

  [ Johan Van de Wauw ]
  * Imported Upstream version 0.1.0


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788850: RFS: python-cligj/0.2.0-1

2015-06-15 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-cligj

 Package name: python-cligj
 Version : 0.2.0-1
 Upstream Author : Sean Gillies
 URL : https://github.com/mapbox/cligj
 License : BSD
 Section : python

It builds those binary packages:

 python-cligj  - Python 2 library for processing GeoJSON commands
 python3-cligj - Python 3 library for processing GeoJSON commands

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-cligj


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-cligj/python-cligj_0.2.0-1.dsc

More information about cligj can be obtained from
https://github.com/mapbox/cligj.

Changes since the last upload:

  * Imported Upstream version 0.2.0


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788576: ITP: pysal -- Python Spatial Analysis Library

2015-06-12 Thread Johan Van de Wauw
Package: wnpp
Owner: Johan Van de Wauw johan.vandew...@gmail.com
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.debian.org

* Package name: pysal
  Version : 1.9.1
  Upstream Author : Serge Rey and contributors
* URL : https://pysal.readthedocs.org/en/latest/
* License : BSD-3-Clause
  Programming Lang: python
  Description : Python Spatial Analysis Library

PySAL is an open source library of spatial analysis functions written in
Python intended to support the development of high level applications.

It is important to underscore what PySAL is, and is not, designed to do.
First and foremost, PySAL is a library in the fullest sense of the word.
Developers looking for a suite of spatial analytical methods that they
can incorporate into application development should feel at home using
PySAL. Spatial analysts ho may be carrying out research projects
requiring customized scripting, extensive simulation analysis, or those
seeking to advance the state of the art in spatial analysis should also
find PySAL to be a useful foundation for their work.
.
End users looking for a user friendly graphical user interface for
spatial analysis should not turn to PySAL directly. Instead, we would
direct them to projects like STARS and the GeoDaX suite of software
products which wrap PySAL functionality in GUIs. At the same time, we
expect that with developments such as the Python based plug-in
architectures for QGIS, GRASS, and the toolbox extensions for ArcGIS,
that end user access to PySAL functionality will be widening in the near
future.



signature.asc
Description: OpenPGP digital signature


Bug#788385: RFS: fiona/1.5.1-1

2015-06-10 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal [important for RC bugs, wishlist for new packages]
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package fiona

 Package name: fiona
 Version : 1.5.1-1
 Upstream Author : Sean Gillies
 URL : https://github.com/Toblerity/Fiona
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-fiona  - Python API for reading/writing vector geospatial data
 python3-fiona - Python 3 API for reading/writing vector geospatial data
 fiona - Command line tool for reading/writing vector geospatial data
 fiona-doc - Python API for reading/writing vector geospatial data (docs)

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/fiona


Alternatively, one can download the package with dget using this command:

  dget -x http://mentors.debian.net/debian/pool/main/f/fiona/fiona_1.5.1-1.dsc

More information about Fiona can be obtained from
https://github.com/Toblerity/Fiona.

Changes since the last upload:

  * Make build reproducible (Closes: #788308)
  * Imported Upstream version 1.5.1


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788375: RFS: python-geopandas/0.1.1-1 [ITP]

2015-06-10 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-geopandas

 Package name: python-geopandas
 Version : 0.1.1-1
 Upstream Author : Kelsey Jordahl
 URL : http://www.geopandas.org
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-geopandas - Python tools for geographic data
 python3-geopandas- Python3 tools for geographic data
 python-geopandas-doc - Documentation for the geopandas library

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-geopandas


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-geopandas/python-geopandas_0.1.1-1.dsc

More information about geopandas can be obtained from http://www.geopandas.org.

Changes since the last upload:

  * Initial release (Closes: #773394)


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788408: rasterio: FTBFS w/cython 0.22.x

2015-06-10 Thread Johan Van de Wauw
On Thu, Jun 11, 2015 at 5:46 AM, Aaron M. Ucko u...@debian.org wrote:
 Source: rasterio
 Version: 0.15.1-1
 Severity: serious
 Justification: fails to build from source

 Builds of rasterio with cython 0.22.x have been failing because cython
 now checks that signatures' and definitions' exception specifications agree:


This is fixed upstream: https://github.com/mapbox/rasterio/pull/373

I will fix this asap.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786974: RFS: owslib/0.8.13-1

2015-05-27 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package owslib

 Package name: owslib
 Version : 0.8.13-1
 Upstream Author : Tom Kralidis tomkrali...@gmail.com
 URL : http://geopython.github.com/OWSLib/
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-owslib - Client library for Open Geospatial (OGC) web services

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/owslib


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/o/owslib/owslib_0.8.13-1.dsc

More information about OWSLib can be obtained from
http://geopython.github.com/OWSLib/.

Changes since the last upload:

  * Move to unstable


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786968: RFS: python-snuggs/1.3.1-1 [ITP]

2015-05-27 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-snuggs

 Package name: python-snuggs
 Version : 1.3.1-1
 Upstream Author : Sean Gillies sean.gill...@gmail.com
 URL : https://github.com/mapbox/snuggs
 License : BSD-3
 Section : python

It builds those binary packages:

 python-snuggs  - S-expressions for numpy - Python 2 version
 python3-snuggs - S-expressions for numpy - Python 3 version

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-snuggs


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-snuggs/python-snuggs_1.3.1-1.dsc

More information about Snuggs can be obtained from
https://github.com/mapbox/snuggs.

Changes since the last upload:

  * Initial upload (closes: #783712)


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783712: ITP: python-snuggs -- S-expressions for numpy

2015-04-29 Thread Johan Van de Wauw
Package: wnpp
Owner: Johan Van de Wauw johan.vandew...@gmail.com
Severity: wishlist
X-Debbugs-CC: debian-...@lists.debian.org

* Package name: python-snuggs
  Version : 1.3.1-2
  Upstream Author : Sean Gillies sean.gill...@gmail.com
* URL : https://github.com/mapbox/snuggs
* License : MIT
  Programming Lang: python
  Description : S-expressions for numpy - python2 version

This library parses S-expressions using numpy. Available function include
arithmetic (* + / -) and logical ( = == != =   |) operators.
Also members of the numpy module such as asarray(), mean() and where are
available.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783712: ITP: python-snuggs -- S-expressions for numpy

2015-04-29 Thread Johan Van de Wauw
Forgot to mention: snuggs is a new dependency for new versions of
rasterio (in the new queue).

On Wed, Apr 29, 2015 at 2:16 PM, Johan Van de Wauw
johan.vandew...@gmail.com wrote:
 Package: wnpp
 Owner: Johan Van de Wauw johan.vandew...@gmail.com
 Severity: wishlist
 X-Debbugs-CC: debian-...@lists.debian.org

 * Package name: python-snuggs
   Version : 1.3.1-2
   Upstream Author : Sean Gillies sean.gill...@gmail.com
 * URL : https://github.com/mapbox/snuggs
 * License : MIT
   Programming Lang: python
   Description : S-expressions for numpy - python2 version

 This library parses S-expressions using numpy. Available function include
 arithmetic (* + / -) and logical ( = == != =   |) operators.
 Also members of the numpy module such as asarray(), mean() and where are
 available.


 --
 To UNSUBSCRIBE, email to debian-gis-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: 
 https://lists.debian.org/cajop35mfb5t63w4tuvoc0tcqacodvlt1eptoey7sje7eqsq...@mail.gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#715530: JAI alternative

2015-04-15 Thread Johan Van de Wauw
Geotools and geoserver are two widely used java GIS packages which now
rely on their own JAI alternative. I believe this may be an
interesting alternative for other projects as well:

https://github.com/geosolutions-it/jai-ext

JAI-EXT is an open-source project which aims to replace in the long
term the JAI project. JAI is provides a set of high level objects for
the image processing. One feature of the JAI API is the ability to
process the images in a multithreaded environment; this functionality
can be reached by calculating each image tile separately.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#781227: Fwd: [Ubuntu] How to fix the unmet dependencies for grass-gui ?

2015-03-26 Thread Johan Van de Wauw
Package:grass
Version:7.0.0-1~exp1
Severity: wishlist


This Wish was expressed on the ubuntugis mailing list:
On Wed, Mar 25, 2015 at 8:24 PM, César Augusto Ramírez Franco
caesar...@gmail.com wrote:


 According to the Grass Wiki on LIDAR [1] there's a v.in.lidar module
 exclusive of Grass 7, but it needs liblas support, which is available on
 trusty/universe as the liblas-bin package, I use las2txt to read and parse
 las files, but I wanted to test this v.in.lidar module.

 Is there a way the grass packages from this PPA support this module?

[1]: http://grasswiki.osgeo.org/wiki/LIDAR#Import

I will have a look myself, but I'm filing a bug to make sure I don't forget :-)


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#779624: libhdf4: FTBFS on mips64el (again) - lots of segfaults in testsuite

2015-03-03 Thread Johan Van de Wauw
Hi,

The reason I didn't apply the patch yet was that I expected more
things to fail. I will have a look at your patch this evening.
Please don't nmu immediately, I have some fixes to the first upload
(it was not properly cleaned and contained the source twice).

Note that I'm currently packaging the next version of hdf4 for experimental.

Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#778638: Debian Bug Tracking System sub...@bugs.debian.org

2015-02-17 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package owslib

 Package name: owslib
 Version : 0.8.13-1~exp
 Upstream Author : Tom Kralidis tomkrali...@gmail.com
 URL : http://geopython.github.com/OWSLib/
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-owslib - Client library for Open Geospatial (OGC) web services

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/owslib


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/o/owslib/owslib_0.8.13-1~exp.dsc

More information about OWSLib can be obtained from
http://geopython.github.com/OWSLib/.

Changes since the last upload:

  * Import Upstream version 0.8.13
  * Fix Watchfile


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#778488: RFS: python-geojson/1.0.9-1 [ITP]

2015-02-16 Thread Johan Van de Wauw
On Sun, Feb 15, 2015 at 9:56 PM, Sebastiaan Couwenberg
sebas...@xs4all.nl wrote:

 Please increment the Debian revision and add the changes made after the
 REJECT to the changelog.

 Documenting the changes is important.

 See also: https://lists.debian.org/debian-mentors/2008/07/msg00686.html

I fixed this in git and I uploaded to mentors. I have been trying to
find out how to get all the changelog entries int the .changes file. I
managed doing this by specifying a version to -v which is lower than
anything in the changelog.
   -vversion
  Causes changelog information from all  versions  strictly  later
  than version to be used.

For uploading to mentors I used
 debuild -S -v0 -sa

It was not immediately clear how to proceed if you wanted to use a
version older than the changelog. If you use -v0 it will work:
 dpkg-genchanges -S -sa -v0 ../python-geojson_1.0.9-2_source.changes
parsechangelog/debian: warning: 'since' option specifies non-existing version
parsechangelog/debian: warning: use newest entry that is earlier than
the one specified
parsechangelog/debian: warning: none found, starting from the oldest entry



Regards,
Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#778488: RFS: python-geojson/1.0.9-1 [ITP]

2015-02-15 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-geojson

 Package name: python-geojson
 Version : 1.0.9-1
 Upstream Author : Corey Farwell cor...@rwell.org
 URL : https://github.com/frewsxcv/python-geojson
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-geojson  - Python 2 bindings and utilities for GeoJSON
 python3-geojson - Python 3 bindings and utilities for GeoJSON

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-geojson


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-geojson/python-geojson_1.0.9-1.dsc

More information about python-geojson can be obtained from
https://github.com/frewsxcv/python-geojson.

Changes since the last upload:

  * Initial upload (closes: #690833)

Not that this package was previously uploaded but rejected in new
because it contained some cruft (leftovers of a wrong build) in
debian.
This should  now be fixed. I also improved testing and corrected the homepage.


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#777146: Fiona does not build

2015-02-05 Thread Johan Van de Wauw
Strange,

gdal-config (libgdal-dev) and cython are in the control file.
Something strange seems to be happening in that pbuilder.

It works for me in unstable. You will need a recent update of unstable
as fiona relies on python-cligj which was only added yesterday.

Also fiona requires a recent version of Cython, so building under
jessie is not possible without further tweaking.

Johan

On Thu, Feb 5, 2015 at 10:22 PM, Andreas Tille andr...@fam-tille.de wrote:
 Hi Johan,

 when trying to build fiona I get:

 ...
 Cythonizing fiona/ogrext.pyx
 /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution 
 option: 'metadata_version'
   warnings.warn(msg)
 /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution 
 option: 'requires_python'
   warnings.warn(msg)
 /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution 
 option: 'requires_external'
   warnings.warn(msg)
 running clean
 removing 
 '/home/andreas/debian-maintain/alioth/debian-gis/build-area/fiona-1.5.0/.pybuild/pythonX.Y_2.7/build'
  (and everything under it)
 'build/bdist.linux-x86_64' does not exist -- can't clean it
 'build/scripts-2.7' does not exist -- can't clean it
 I: pybuild base:170: python3.4 setup.py clean
 WARNING:root:Failed to get options via gdal-config: [Errno 2] No such file or 
 directory: 'gdal-config'
 CRITICAL:root:Cython.Build.cythonize not found. Cython is required to build 
 from a repo.
 E: pybuild pybuild:256: clean: plugin distutils failed with: exit code=1: 
 python3.4 setup.py clean
 dh_auto_clean: pybuild --clean -i python{version} -p 3.4 --dir . returned 
 exit code 13
 debian/rules:14: recipe for target 'clean' failed
 make: *** [clean] Error 13
 dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2
 gbp:error: '~/bin/git-pbuilder' failed: it exited with 2


 Kind regards

   Andreas.


 --
 http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#777146: RFS: fiona/1.5.0-1 [ITP]

2015-02-05 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package fiona

 Package name: fiona
 Version : 1.5.0-1
 Upstream Author : Sean Gillies
 URL : https://github.com/Toblerity/Fiona
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-fiona  - Python API for reading/writing vector geospatial data
 python3-fiona - Python 3 API for reading/writing vector geospatial data
 fiona - Command line tool for reading/writing vector geospatial data
 fiona-doc - Python API for reading/writing vector geospatial data (docs)

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/fiona


Alternatively, one can download the package with dget using this command:

  dget -x http://mentors.debian.net/debian/pool/main/f/fiona/fiona_1.5.0-1.dsc

More information about Fiona can be obtained from
https://github.com/Toblerity/Fiona.

Changes since the last upload:

  * Initial upload (closes: #765470)


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#777146: Fiona does not build

2015-02-05 Thread Johan Van de Wauw
 Also fiona requires a recent version of Cython, so building under
 jessie is not possible without further tweaking.

 jessie  sid have the same cython version, so it should work. The wheezy
 version is not sufficient though.


Interesting. In that case it got a freeze exception. When I last
checked it was still at an older version [1].
So I really closed a jessie RC bug there :-).

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754752


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#776793: RFS: python-geojson/1.0.9-1 [ITP]

2015-02-01 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-geojson

 Package name: python-geojson
 Version : 1.0.9-1
 Upstream Author : Corey Farwell cor...@rwell.org
 URL : http://geopython.github.com/OWSLib/
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-geojson  - Python 2 bindings and utilities for GeoJSON
 python3-geojson - Python 3 bindings and utilities for GeoJSON

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-geojson


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-geojson/python-geojson_1.0.9-1.dsc

More information about python-geojson can be obtained from
http://geopython.github.com/OWSLib/.

Changes since the last upload:

  * Initial upload (closes: #690833)


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#690833: Fwd:

2015-01-31 Thread Johan Van de Wauw
Control: retitle -1 ITP: python-geojson -- Python bindings and
utilities for GeoJSON


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#690833: Fwd:

2015-01-31 Thread Johan Van de Wauw
Control: retitle -1 ITP: python-geojson -- Python bindings and
utilities for GeoJSON


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#690833:

2015-01-31 Thread Johan Van de Wauw
Control: owner -1 !
Control retitle -1 ITP: python-geojson -- Python bindings and
utilities for GeoJSON


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#776601: ITP: python-geojson -- Python bindings and utilities for GeoJSON

2015-01-29 Thread Johan Van de Wauw
Package: wnpp
Owner: Johan Van de Wauw johan.vandew...@gmail.com
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: python-geojson
  Version : 1.0.9
  Upstream Author : Corey Farwell cor...@rwell.org
* URL : http://geopython.github.com/OWSLib/
* License : BSD-3-Clause
  Programming Lang: Python
  Description : Python 2 bindings and utilities for GeoJSON

This library contains:

- Functions for encoding and decoding GeoJSON formatted data
- Classes for all GeoJSON Objects
- An implementation of the Python geo_interface Specification

This is the Python 2 version of the library


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#775693: RFS: python-cligj/0.1.0-1 [ITP]

2015-01-23 Thread Johan Van de Wauw
On Tue, Jan 20, 2015 at 9:01 PM, Sebastiaan Couwenberg
sebas...@xs4all.nl wrote:
 Hi Johan,

 Sorry for not doing this sooner, but I have reviewed the package now.
 Some comments follow.
Thanks!

 The copyright file only documents the upstream copyright, documenting
 the copyright  license for debian/* is a good idea unless you want to
 assign the copyright to MapBox.

Good catch

 There seems to be an issue with the setup.py and Python 3.2, the package
 fails to build because the clean target fails before even starting the
 build:

 This is on one of my wheezy systems, the package builds fine with Python
 3.4 on sid.
On jessie it works as well. I don't think it is useful to change it.

 lintian reports a duplicate short description. Because the short
 description is already 60 characters long this doesn't leave much room
 to add something like Python 3 module for  Appending for Python
 V would fall within 80 characters, although the line length including
 field name exceeds it.

Improved the short description

 Kind Regards,

 Bas

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



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#775693: RFS: python-cligj/0.1.0-1 [ITP]

2015-01-18 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package python-cligj

 Package name: python-cligj
 Version : 0.1.0-1
 Upstream Author : Sean Gillies
 URL : https://github.com/mapbox/cligj
 License : BSD-3
 Section : python

It builds those binary packages:

 python-cligj  - Common arguments and options for GeoJSON processing commands
 python3-cligj - Common arguments and options for GeoJSON processing commands

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/python-cligj


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/python-cligj/python-cligj_0.1.0-1.dsc

More information about cligj can be obtained from
https://github.com/mapbox/cligj.

Changes since the last upload:

  * Initial upload (closes: #775528)


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#775528: ITP: python-cligj -- Common arguments and options for GeoJSON processing commands

2015-01-16 Thread Johan Van de Wauw
Package: wnpp
Owner: Johan Van de Wauw johan.vandew...@gmail.com
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: python-cligj
  Version : 0.1.0
  Upstream Author : Sean Gillies
* URL : https://github.com/mapbox/cligj
* License : BSD-3-Clause
  Programming Lang: Python
  Description : Common arguments and options for GeoJSON processing commands

Cligj is a small library which can be used to standardise processing
of geoJSON in Python command line programs.

This package provides the Python 2 version of the library.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#774568:

2015-01-16 Thread Johan Van de Wauw
Control: retitle -1 ITP: node-rbush -- High-performance 2D spatial
index for rectangles
Owner: johan.vandew...@gmail.com


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#774568: Fwd:

2015-01-16 Thread Johan Van de Wauw
Control: owner -1 !


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#774512: RFS: python-osmapi/0.5.0-1~exp1 [ITP]

2015-01-04 Thread Johan Van de Wauw
Bas,

Is there a specific reason you are targeting experimental and not unstable?
Can this package be used by Osgeo live or is there a reason not to do
so (Angelos recently packaged version 0.4.1)?

Keep up the good work!
Johan

https://launchpad.net/~osgeolive/+archive/ubuntu/nightly/+packages


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#774106: RFS: owslib/0.8.12-1~exp [put in ITP, ITA, RC, NMU if applicable]

2014-12-28 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package owslib

 Package name: owslib
 Version : 0.8.12-1~exp
 Upstream Author : Tom Kralidis tomkrali...@gmail.com
 URL : http://geopython.github.com/OWSLib/
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-owslib - Client library for Open Geospatial (OGC) web services

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/owslib


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/o/owslib/owslib_0.8.12-1~exp.dsc

More information about OWSLib can be obtained from
http://geopython.github.com/OWSLib/.

Changes since the last upload:

  [ Bas Couwenberg ]
  * Update Vcs-Browser URL to use cgit instead of gitweb.
  * Add Upstream-Contact to copyright file.

  [ Johan Van de Wauw ]
  * Imported Upstream version 0.8.12


Regards,
 Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#773505: python-descartes/1.0.1-1 [ITP]

2014-12-19 Thread Johan Van de Wauw
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org
Package: sponsorship-requests
Severity: wishlist

  Dear mentors,

  I am looking for reviews/a sponsor for my package python-descartes

 * Package name: python-descartes
   Version : 1.0.1-1
   Upstream Author :  Sean Gillies, descartesdevelopers
* URL :
https://pypi.python.org/pypi/descartes,https://bitbucket.org/sgillies/descartes
* License : BSD-3
  Programming Lang: Python

python-descartes - Matplotlib extension to work with geometric
objects (Python2)
 python3-descartes - Matplotlib extension to work with geometric
objects (Python3)

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/python-descartes


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/p/python-descartes/python-descartes_1.0.1-1.dsc


  Changes since the last upload:

Initial upload


  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#773430: ITP: python-descartes

2014-12-18 Thread Johan Van de Wauw
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org
Package: wnpp
Severity: wishlist
Owner: Johan Van de Wauw johan.vandew...@gmail.com

* Package name: python-descartes
  Version : 1.0.1
  Upstream Author : Sean Gillies, descartesdevelopers
* URL :
https://pypi.python.org/pypi/descartes,https://bitbucket.org/sgillies/descartes
* License : BSD-3
  Programming Lang: Python
  Description : Matplotlib extension to work with geometric objects

Descartes allows the usage of geometric objects as matplotlib paths and patches.

Descartes is a dependency of geopandas, for which I filed an ITP yesterday.

I intent to maintain this package in Debian GIS.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#773394: ITP: python-geopandas

2014-12-17 Thread Johan Van de Wauw
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org
Package: wnpp
Severity: wishlist
Owner: Johan Van de Wauw johan.vandew...@gmail.com

* Package name: geopandas
  Version : 0.1.1
  Upstream Author : GeoPandas developers
* URL : http://geopandas.org ,
https://github.com/geopandas/geopandas
* License : BSD-3
  Programming Lang: Python
  Description : Geospatial extension to pandas data structures

GeoPandas is an open source project to make working with geospatial
data in python easier. GeoPandas extends the datatypes used by pandas
to allow spatial operations on geometric types. Geometric operations
are performed by shapely. Geopandas further depends on fiona for file
access and descartes and matplotlib for plotting.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#771373: Non-free ?

2014-12-07 Thread Johan Van de Wauw
I've reuploaded to mentors with the correct section.

Johan

On Sat, Dec 6, 2014 at 11:13 PM, Andreas Tille andr...@an3as.eu wrote:
 Hi Johan,

 the changelog says targeting non-free but d/control has

 Section: python

 instead of

 Section: non-free/python

 Please clarify and ping me once both are consistent.

 Kind regards

Andreas.

 --
 http://fam-tille.de


 --
 To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: https://lists.debian.org/20141206221316.ga22...@an3as.eu



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#770875: Sponsorship for saga package

2014-11-30 Thread Johan Van de Wauw
On Sun, Nov 30, 2014 at 5:55 PM, Giuseppe Sacco eppes...@debian.org wrote:
 Hi Johan,
 I checked your package and I am willing to sponsor its upload.

 I noticed that you are not accepting parallel building. Is this done on
 purpose? Just for testing it, I added --parallel the the first dh
 command in debian/rules and build time went from 18 to about 7 minutes
 when running dpkg-buildpackage with -j8 option on amd64 arch. I would
 not change your package now, but I suggest you to investigate if with a
 parallel build the resulting package is ok or if anything is wrong. In a
 next version you might then add this option.

I was not aware of the option. I will definitely investigate this.

 Would you like me to upload your package, or have you already another
 sponsor or a different planning?

Go ahead and sponsor!

 Bye,
 Giuseppe


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#771600: ITP: geopy -- Python client for several popular geocoding web services

2014-11-30 Thread Johan Van de Wauw
Package: wnpp
Severity: wishlist
Owner: Johan Van de Wauw johan.vandew...@gmail.com

* Package name: geopy
  Version : 1.4.0
  Upstream Author : Brian Beck, other contributors
* URL : https://github.com/geopy/geopy
* License : MIT
  Programming Lang: Python 
  Description : Python client for several popular geocoding web services

 geopy makes it easy for Python developers to locate the coordinates of
 addresses, cities, countries, and landmarks across the globe using
 third-party geocoders and other data sources.
 .
 geopy includes geocoder classes for the OpenStreetMap Nominatim, ESRI
 ArcGIS, Google Geocoding API (V3), Baidu Maps, Bing Maps API, Yahoo!
 PlaceFinder, GeoNames, MapQuest, OpenMapQuest, OpenCage, SmartyStreets,
 geocoder.us, and GeocodeFarm geocoder services. The various geocoder
 classes are located in geopy.geocoders.

I intend to maintain this package in the Debian GIS team.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#771373: RFS: pycsw/1.10.0+dfsg-1 [ITP]

2014-11-28 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package pycsw. Please not that
this package should be uploaded to non-free [1]. I've updated the
copyright file to reflect this.

 * Package name: pycsw
   Version : 1.10.0+dfsg-1
   Upstream Author : Tom Krialdis, Angelos Tzotsos
 * URL : http://pycsw.org
 * License : MIT
   Section : python

  It builds those binary packages:

python-pycsw - OGC compliant metadata (catalog service for web) backend
 python-pycsw-doc - OGC compliant metadata (catalog service for web) server
 python-pycsw-wsgi - WSGI Apache CSW service based on python-pycsw

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/pycsw


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/p/pycsw/pycsw_1.10.0+dfsg-1.dsc

  Changes since the last upload:
  * Initial upload (closes: #762145), targeting non-free after
ftp-masters comments

  Regards,
   Johan Van de Wauw
[1] 
http://lists.alioth.debian.org/pipermail/pkg-grass-devel/2014-November/024520.html


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765470: status update: fiona -- python api for reading/writing vector geospatial data

2014-11-28 Thread Johan Van de Wauw
A short update: this package is almost ready, but I'm waiting for the
next release to seek sponsorship:
Currently the tests contain some shapefiles whose license is not very
clear, this will be fixed in the next release[1].

Feel free to test the package already:
http://anonscm.debian.org/cgit/pkg-grass/fiona.git/

Regards,
Johan
[1] https://github.com/Toblerity/Fiona/issues/185


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#770875: RFS: saga/2.1.4+dfsg-1

2014-11-24 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package saga

 * Package name: saga
   Version : 2.1.4+dfsg-1
   Upstream Author : Olaf Conrad, Volker Wichmann, other contributors
 * URL :  http://www.saga-gis.org
 * License : LPGLv2.1+ GPLv2
   Section : science

  It builds those binary packages:

libsaga- SAGA GIS shared libraries
 libsaga-dev - SAGA GIS development files
 python-saga - SAGA GIS Python bindings
 saga  - System for Automated Geoscientific Analyses

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/saga


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/s/saga/saga_2.1.4+dfsg-1.dsc

  Changes since the last upload:
  * Update to new upstream version
  * Fix order in copyright file



  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#770521: RFS: rasterio/0.15.1-1 [ITP]

2014-11-21 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package rasterio

 * Package name: rasterio
   Version : 0.15.1-1
   Upstream Author : Mapbox, Sean Gillies, other contributors
 * URL : https://github.com/mapbox/rasterio
 * License : BSD-3-Clause
   Section : python

  It builds those binary packages:

python-rasterio - Python API for using geospatial raster data with Numpy
 rasterio   - Command line tool for investigating geospatial rasters

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/rasterio


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/r/rasterio/rasterio_0.15.1-1.dsc

  Changes since the last upload:

  * Initial upload (closes: #767027)



  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#754752: Shouldn't this bug be closed?

2014-11-07 Thread Johan Van de Wauw
It seems that we have cython 0.21.1-1 built on mips in the archives now.
I'm wondering if this bug should not be closed or downgraded now.

Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767309: RFS: python-affine/1.0.1-1 [ITP]

2014-11-03 Thread Johan Van de Wauw
On Mon, Nov 3, 2014 at 7:42 AM, Andrey Rahmatullin w...@debian.org wrote:
 On Sun, Nov 02, 2014 at 09:37:28PM +0100, Johan Van de Wauw wrote:

 Now it doesn't run any tests.

Added setup.cfg

Should now really run all the tests

Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#730670: status of ITP's

2014-11-03 Thread Johan Van de Wauw
Hello Andreas,

I noticed you filed ITP's for cartopy, iris and python-netcdf about
one year ago.
In the mean time Angelos Tzotsos has also packaged these for the osgeo
live dvd (1).
These packages seem a nice fit for debian gis, and we can help you
with packaging if you like.

Johan

(1) https://launchpad.net/~osgeolive/+archive/ubuntu/nightly/+packages


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767309: RFS: python-affine/1.0.1-1 [ITP]

2014-11-03 Thread Johan Van de Wauw
On Mon, Nov 3, 2014 at 9:28 PM, Andrey Rahmatullin w...@debian.org wrote:
 You should use python3:Depends instead of python:Depends in the python3
 subpackage.

Thanks once more for your reviews!

I've changed this line.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767309: RFS: python-affine/1.0.1-1 [ITP]

2014-11-02 Thread Johan Van de Wauw
 Andrey,

Thanks for taking time to review!

On Thu, Oct 30, 2014 at 6:56 PM, Andrey Rahmatullin w...@debian.org wrote:
 Please remove debian/python-rasterio.
Oops
 shlibs:Depends is only needed when you package binaries.
 python:depends is spelled python:Depends (the same for python3).
Both fixed
 dh_auto_test doesn't work, raising ImportError: Start directory is not
 importable: 'cd'
Fixed, a bit ashemed I didn't notice the errors. Anyway, Ive taken
time to check again and now it really builds from source in pbuilder.

I've uploaded a new version to mentors.

Regards,
Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767309: RFS: python-affine/1.0.1-1 [ITP]

2014-10-29 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: pkg-grass-de...@lists.debian.org

  Dear mentors,

  I am looking for a sponsor for my package python-affine

 * Package name: python-affine
   Version : 1.0.1-1
   Upstream Author : Sean Gillies,
 * URL : https://github.com/sgillies/affine

 * License : BSD-3
   Section : python

  It builds those binary packages:

python-affine - Python Library for handling affine transformations
of the plane
 python3-affine - Python 3 Library for handling affine transformations
of the plane

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/python-affine


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/p/python-affine/python-affine_1.0.1-1.dsc

Note that this (small) python lilbrary is a dependency of rasterio
which I'm packaging at :
http://anonscm.debian.org/cgit/pkg-grass/rasterio.git


  Changes since the last upload:

  * Initial upload (closes: #767033)


  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767137: RFS: bsdowl/2.2.1-1 ITP

2014-10-28 Thread Johan Van de Wauw
Michael,

you should add a homepage to your package
add this line to debian/control:
Homepage: https://github.com/michipili/bsdowl

I'd also add a watchfile, this will show whether the version in debian
is in line with the last upstream release. In your case the example
below seems to work well (you can check by running uscan --verbose in
the package directory)
debian/watch
version=3
https://github.com/michipili/bsdowl/tags
.*/v(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))

On Tue, Oct 28, 2014 at 6:13 PM, Michael Grünewald michip...@gmail.com wrote:
 Package: sponsorship-requests
 Severity: wishlist

 Dear mentors,

 I am looking for a sponsor for my package bsdowl.

 Package name: bsdowl
 Version : 2.2.1-1
 Upstream Author : Michael Grünewald michip...@gmail.com
 URL : https://github.com/michipili/bsdowl
 License : CeCILL-B
 Section : devel

 It builds those binary packages:

   bsdowl - Highly portable build system targeting modern UNIX systems

 This collection of BSD Make directives aims at providing a highly
 portable build system targetting modern UNIX systems and supporting
 common or less command languages.

 It can already be used to:

 - Preparation and publication of TeX documents;
 - Development of TeX macros with NOWEB;
 - Development of OCaml software;
 - Maintainance of a FreeBSD workstation configuration files;
 - Preparation of a static website with ONSGMLS.

 It is well tested under:

 - Mac OS X, version 10.6.8 and above
 - FreeBSD, version 9.0 and above
 - Debian Jessie and newer

 To access further information about this package, please visit the
 following URL:

 http://mentors.debian.net/package/bsdowl


 Alternatively, one can download the package with dget using this command:

   dget -x
 http://mentors.debian.net/debian/pool/main/b/bsdowl/bsdowl_2.2.1-1.dsc

 More information about bsdowl can be obtained from
 https://github.com/michipili/bsdowl
 --
 Regards,
 Michael Grünewald


 --
 To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: https://lists.debian.org/544fceb5.7000...@gmail.com



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767027: ITP: rasterio -- Python API for using geospatial raster data with Numpy

2014-10-27 Thread Johan Van de Wauw
Package: wnpp
Severity: wishlist
Owner: Johan Van de Wauw johan.vandew...@gmail.com

* Package name: rasterio
  Version : 0.15
  Upstream Author : Mapbox Satellite team, Sean Gillies
* URL : https://github.com/mapbox/rasterio
* License : BSD-3-clause
  Programming Lang: Python
  Description : Python API for using geospatial raster data with Numpy

 Rasterio reads and writes geospatial raster datasets.
 .
 Rasterio employs GDAL under the hood for file I/O and raster formatting.
 Its functions typically accept and return Numpy ndarrays. Rasterio is designed
 to make working with geospatial raster data more productive and more fun.
 .
 Apart from the rasterio library the package also contains a command-line
 interface rio which can be used to inspect raster datasets.

I intent to maintain this package in Debian GIS.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767033: ITP: python-affine -- Python library for handling affine planar transformations

2014-10-27 Thread Johan Van de Wauw
Package: wnpp
Severity: wishlist
Owner: Johan Van de Wauw johan.vandew...@gmail.com

* Package name: python-affine
  Version : 1.0.1
  Upstream Author : Sean Gillies
* URL : https://github.com/sgillies/affine
* License : BSD-3 clause
  Programming Lang: Python
  Description : Python library for handling affine planar transformations

This library contains functions for handling affine transformations of the 
plane.
It can be used in georeferenced datasets to transfer image to world coordinates.


This (tiny) library is a prerequisite for rasterio for which I filed an ITP 
(#767027)
earlier today.

I intent to maintain this package in Debian GIS.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#766583: RFS: libgeotiff-dfsg/1.4.0-3

2014-10-24 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal

 Dear mentors,

  I am looking for a sponsor for my package libgeotiff-dfsg

 * Package name: libgeotiff-dfsg
   Version : 1.4.0-3
 * URL :  http://geotiff.osgeo.org/
   Section : science

  It builds those binary packages:

geotiff-bin - GeoTIFF (geografic enabled TIFF) library -- tools
 libgeotiff-dev - GeoTIFF (geografic enabled TIFF) library -- development files
 libgeotiff2 - GeoTIFF (geografic enabled TIFF) library -- run-time files

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/libgeotiff-dfsg


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/libg/libgeotiff-dfsg/libgeotiff-dfsg_1.4.0-3.dsc

  Changes since the last upload:

  * Team Upload
  * Enable hardening
  * Update debian/control (standards version, vcs url)
  * Update short descriptions
  * Install manfile for listgeo.1
  * Fix macro error in manfile
  * Update debhelper dep to 9

  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#766583: [ti...@debian.org: [libgeotiff-dfsg] 01/01: pristine-tar data for libgeotiff-dfsg_1.4.0.orig.tar.gz]

2014-10-24 Thread Johan Van de Wauw
Yep, thought about it when I saw the mail on pkg-grass-devel passing by


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765883: Did anybody just upload avce00?

2014-10-22 Thread Johan Van de Wauw
Andreas,

Given the fact that there was a -3 and -4 version in the old changelog
(see discussion [1] and solution [2]), I suspect that a version -3 has
been uploaded long before but somehow didn't make it to unstable.
Is there a way to check this? Or should we just ask the ftp-masters.

Johan
[1] https://lists.debian.org/debian-gis/2014/10/msg00151.html
[2] 
http://anonscm.debian.org/cgit/pkg-grass/avce00.git/commit/?id=3924566b2160ae7074f29b4368b0a1c01e7fcf4e


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765883: Fwd: Did anybody just upload avce00?

2014-10-22 Thread Johan Van de Wauw
Dear FTP masters,

It seems avce00_2.0.0-3 failed to upload (sponsored by Tille) because
a previous file was present.


$ dput avce00_2.0.0-3_amd64.changes
...
Uploading avce00_2.0.0-3.dsc
Upload permissions error

You either don't have the rights to upload a file, or, if this is on
ftp-master, you may have tried to overwrite a file already on the server.
...

Can you verify what is the latest version of avce00 present?  In
unstable the last version is 2.0.0-2, however the changelog in git
(before updating this package) suggested that versions -3 and -4 also
exist. Have they been uploaded and  have they disappeared (I could not
find any error in our mailing list archives)? Or was there an entirely
different reason responsible for this error and should I just prepare
a new upload of the same version.

Regards,
Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#766421: RFS: libharu/2.2.1-2

2014-10-22 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal


Dear mentors,

  I am looking for a sponsor for my package libharu

 * Package name: libharu
   Version : 2.2.1-2
   Upstream Author : [fill in name and email of upstream]
 * URL : http://libharu.org/
 * License : zlib
   Section : libs

  It builds those binary packages:

libhpdf-2.2.1 - C library for generating pdf files
 libhpdf-dev - C library for generating pdf files (development files)

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/libharu

  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/libh/libharu/libharu_2.2.1-2.dsc

Changes since previous version in the archive:

libharu (2.2.1-2) unstable; urgency=low
  * Fix copyright file formatting
  * Support huge patch (Closes: #726069)
  * Update watchfile
  * Update vcs-field to be canonical
  * Switch to debhelper 9 - enable multiarch
  * cme-fix d/control
  * Fix typo in package description (closes:#753246)
  * properly clean all build files

Note that previously I packaged a new upstream release. However that
would require a transition, so I've now created a package with only
minor changes.

  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#766177: RFS: libhdf4/4.2.10-3 [RC]

2014-10-21 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: important
X-Debbugs-CC: debian-...@lists.debian.org


  Dear mentors,

  I am looking for a sponsor for my package libhdf4

 * Package name: libhdf4
   Version : 4.2.10-3
   Upstream Author : HDFGROUP
 * URL : http://www.hdfgroup.org/
 * License : BSD-4clause
   Section : graphics

  It builds those binary packages:

hdf4-tools - Hierarchical Data Format library -- runtime package
 libhdf4-0  - Hierarchical Data Format library (embedded NetCDF)
 libhdf4-0-alt - Hierarchical Data Format library (without NetCDF)
 libhdf4-alt-dev - Hierarchical Data Format development files (without NetCDF)
 libhdf4-dev - Hierarchical Data Format development files (embedded NetCDF)
 libhdf4-doc - Hierarchical Data Format library -- documentation
 libhdf4g-dev - Hierarchical Data Format library -- transitional
development pack

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/libhdf4


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/libh/libhdf4/libhdf4_4.2.10-3.dsc

  Changes since the last upload:

  [ Fernando Seiti Furusato ]
  * Fix endianness definition for ppc64el.

  [ Johan Van de Wauw ]
  * Disable tests on s390x (closes: #764353)
  * Remove unneeded build dep groff


  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765883: RFS: avce00/2.0.0-5

2014-10-21 Thread Johan Van de Wauw
After uploading the package (and filing this RFS) I noticed that the
version number was much higher than in wheezy. It appeared that there
were two versions mentioned in the changelog in the repository that
didn't make their way to unstable in the end.
I've therefore adjusted the version number to 2.0.0-3

dget -x 
http://mentors.debian.net/debian/pool/main/a/avce00/avce00_2.0.0-3.dsc
The full changelog, including the other changes:
  [ Johan Van de Wauw ]
  * Move to debhelper 9
  * Enable hardening when compiling/linking
  * Bump standards version, fix vcs links (cme fix dpkg-control)
  * Remove duplicate changelog
  * Add doc-base
  * Add myself to uploaders

  [ Francesco Paolo Lovergine ]
  * Fixed short and long descriptions to make lintian happy.
  * Policy bumped to 3.8.3.
  * Debhelper level set to 7. Now using dh_prep.
  * Removed Jean-Denis Giguere among Uploaders.
  * Moved to source format 3.0
  * Repository moved to git and Vcs-* changed in debian/control.
  * Debhelper level set to 8. No changes required.
  * Policy bumped to 3.9.1. No changes required.
  * Added ${misc:Depends} by dh use.
  * Make lintian happy about debian-rules-ignores-make-clean-error.
  * Fixed extended-description-line-too-long lintian warning.



  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765661: Pristine-tar is missing

2014-10-20 Thread Johan Van de Wauw
This was done yesterday.

Regards,
Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#764958: Moved to collab-maint

2014-10-19 Thread Johan Van de Wauw
Alexandre,

Note that you can (and should) add this to your d/control file:
Vcs-Browser and Vcs-Git.

Also make sure you use the canonical version[1]: of the URL to do so,
they should look like:

Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/python-click.git
Vcs-Git: git://anonscm.debian.org/collab-maint/python-click.git

Since anonscm seems  down currently, I have not actually tested these
links, so double check before you copy.

Regards,
Johan

[1] https://lists.debian.org/debian-devel-announce/2011/05/msg9.html


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765883: RFS: avce00/2.0.0-5

2014-10-18 Thread Johan Van de Wauw
Package: sponsorship-requests
Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package avce00

 * Package name: avce00
   Version : 2.0.0-5
   Upstream Author : Daniel Morissette
 * URL : http://avce00.maptools.org/
 * License : MIT
   Section : science

  It builds those binary packages:

avce00 - Conversion of ESRI Arcinfo Vector Coverage in E00 format

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/avce00


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/a/avce00/avce00_2.0.0-5.dsc

  Changes since the last upload:

  * Move to debhelper 9

  * Enable hardening when compiling/linking
  * Bump standards version, fix vcs links (cme fix dpkg-control)
  * Remove duplicate changelog
  * Add doc-base
  * Add myself to uploaders



  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765661: RFS: owslib/0.8.10-1

2014-10-17 Thread Johan Van de Wauw
Package: sponsorships-requests
Severity: normal

Package: sponsorship-requests
  Severity: normal [important for RC bugs, wishlist for new packages]

  Dear mentors,

  I am looking for a sponsor for my package owslib

 * Package name: owslib
   Version : 0.8.10-1
   Upstream Author : Several authors 
 * URL : https://pypi.python.org/pypi/OWSLib
 * License : BSD-3 clause
   Section : python

  It builds those binary packages:

python-owslib - Client library for Open Geospatial (OGC) web services

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/owslib


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/o/owslib/owslib_0.8.10-1.dsc

  Changes since the last upload:


  [Bas Couwenberg ]
  * Add Vcs-* URLs.
  * Fix copyright-format version.

  [ Johan Van de Wauw ]
  * Update to new version
  * Imported Upstream version 0.8.10
  * Fix error in copyright text (cfr changed license.txt)
  * Bump standards

  Regards,
   Johan Van de Wauw


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#764958: RFS: click/3.3-1 [ITP #764953]

2014-10-16 Thread Johan Van de Wauw
Alexandre,

Thanks for you contribution to debian. I've filed an ITP for fiona
[1] which depends on python-click so I hope you find a sponsor.

One remark on your pacakge: I would use debhelper 9 (set in d/compat
and update  d/control).

Regards,
Johan
[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765470


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765470: ITP: fiona -- python api for reading/writing vector geospatial data

2014-10-15 Thread Johan Van de Wauw
Package: wnpp
Severity: wishlist
Owner: Johan Van de Wauw johan.vandew...@gmail.com

* Package name: fiona
  Version : 1.4.4
  Upstream Author : Sean Gillies and others

* URL : https://github.com/Toblerity/Fiona
* License : MIT/X
  Programming Lang: Python
  Description : python api for reading/writing vector geospatial data

Fiona is a python wrapper around the OGR vector data abstraction library.
Fiona is designed to be simple and dependable. It focuses on reading
and writing data in standard Python IO style and relies upon familiar
Python types and protocols such as files, dictionaries, mappings, and
iterators instead of classes specific to OGR. Fiona can read and write
real-world data using multi-layered GIS formats and zipped virtual
file systems and integrates readily with other Python GIS packages
such as pyproj, Rtree, and Shapely.


This program was already packaged for the OSGeo live dvd (ubuntu based) by
Angelos Tzotsos. It will need fixes to be compliant with the debian file system
hierarchy.
Iintent to maintain this package in the Debian-GIS team.
x-debug-cc: pkg-grass-de...@lists.debian.org


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765421: jmapviewer/josm issue

2014-10-15 Thread Johan Van de Wauw
Maybe we can download the logo when the user activates bing maps and
keep it in a local configuration dir? Privacy concerns should not be
an issue since we are downloading the bing tiles anyway.

Johan


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#764353:

2014-10-13 Thread Johan Van de Wauw
Thanks for your patch,

It indeed looks logical, i've sent it upstream as well.

I just started looking deeper into the issue on s390x. The issue is
produced when running the fortran tests. Since fedora does not build
fortran extensions for hdf4 their patches will not be of any use here.

If I don't manage to find/receive a reasonable fix this week I think I
will disable the failing test and upload a new version containing your
fixes (and file a seperate bug for the disabled test).

Johan

On Mon, Oct 13, 2014 at 2:46 AM,  ferse...@br.ibm.com wrote:
 Hello Johan.

 I have applied one of the patches gathered from the link you sent. That
 allowed the package to build successfully.
 The other one does not seem to work.
 The debdiff is attached to this msg.

 Regards.

 Fernando



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#764832: lintian: W: python-pycsw: empty-binary-package

2014-10-12 Thread Johan Van de Wauw
Andreas,

I've fixed the package.

Johan

On Sat, Oct 11, 2014 at 6:18 PM, Andreas Tille andr...@an3as.eu wrote:
 Hi,

 lintian says:

 W: python-pycsw: empty-binary-package

 which is in fact true.

 Kind regards

Andreas.

 --
 http://fam-tille.de


 --
 To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: https://lists.debian.org/20141011161824.gb11...@an3as.eu



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



  1   2   >