[fiona] branch master updated (db1f615 -> 5059ac5)

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Sat Jun 11 12:40:41 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository fiona.

      from  db1f615   Set DEB_BUILD_ARCH variable for dh_auto_test override.
       new  6a548b7   Update watch file to handle pre-releases.
       new  2714a9f   Imported Upstream version 1.7~a1
       new  82fbe2c   Imported Upstream version 1.7~b1
       new  7e19902   Merge tag 'upstream/1.7_b1'
       new  f3de573   New upstream pre-release.
       new  393c842   Add python{,3}-munch to build dependencies.
       new  3b3b706   Reorder build dependencies.
       new  bebe629   Drop patches applied/included upstream. Refresh remaining patches.
       new  0edafa4   Update watch file to handle more tag conventions in filenamemangle.
       new  5059ac5   Set distribution to unstable.

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


Summary of changes:
 .gitignore                                         |   75 +
 .travis.yml                                        |   50 +-
 CHANGES.txt                                        |   13 +
 CODE_OF_CONDUCT.md                                 |   22 +
 CREDITS.txt                                        |   18 +-
 README.rst                                         |   13 +-
 debian/changelog                                   |    9 +-
 debian/control                                     |   22 +-
 ...-fio-command-to-fiona-to-avoid-name-clash.patch |    2 +-
 debian/patches/0003-GDAL-2.0.patch                 | 4582 --------------------
 .../0004-Just-use-int-as-a-plain-old-builtin.patch |   36 -
 ...at-fiona.remove-for-deleting-data-sources.patch |  246 --
 .../0006-Remove-unknown-distribution-options.patch |    2 +-
 debian/patches/0007-clean.patch                    |  123 -
 .../patches/0008-Disable-GDAL-2-ImportError.patch  |   20 -
 debian/patches/series                              |    5 -
 debian/watch                                       |    6 +-
 docs/cli.rst                                       |   48 +-
 fiona/__init__.py                                  |   92 +-
 fiona/_cpl.pxd                                     |   26 +
 fiona/_crs.pxd                                     |   18 +
 fiona/_crs.pyx                                     |   68 +
 fiona/_drivers.pyx                                 |  130 -
 fiona/collection.py                                |   74 +-
 fiona/crs.py                                       |   41 +-
 fiona/{_drivers.pyx => drvsupport.py}              |  172 +-
 fiona/errors.py                                    |    8 -
 fiona/fio/bounds.py                                |   16 +-
 fiona/fio/calc.py                                  |   63 +
 fiona/fio/cat.py                                   |  528 +--
 fiona/fio/collect.py                               |  215 +
 fiona/fio/distrib.py                               |   41 +
 fiona/fio/dump.py                                  |  176 +
 fiona/fio/env.py                                   |   29 +
 fiona/fio/filter.py                                |   55 +
 fiona/fio/helpers.py                               |   84 +-
 fiona/fio/info.py                                  |   94 +-
 fiona/fio/insp.py                                  |   46 +
 fiona/fio/load.py                                  |  107 +
 fiona/fio/ls.py                                    |   26 +
 fiona/fio/options.py                               |    9 +
 fiona/{ograpi.pxd => ograpi1.pxd}                  |    2 +
 fiona/{ograpi.pxd => ograpi2.pxd}                  |   62 +-
 fiona/{ogrext.pyx => ogrext1.pyx}                  |   69 +-
 fiona/{ogrext.pyx => ogrext2.pyx}                  |  234 +-
 fiona/transform.py                                 |   81 +-
 pep-508-install                                    |   34 +
 pyproject.toml                                     |    3 +
 requirements-dev.txt                               |    3 +
 requirements.txt                                   |    1 +
 scripts/travis_gdal_install.sh                     |   89 +
 setup.py                                           |  137 +-
 tests/test_bigint.py                               |   69 +
 tests/test_bytescollection.py                      |  102 +-
 tests/test_cli.py                                  |   38 -
 tests/test_collection.py                           |  339 +-
 tests/test_collection_crs.py                       |    4 +-
 tests/test_crs.py                                  |   70 +-
 tests/test_feature.py                              |   14 +-
 tests/test_fio_calc.py                             |   71 +
 tests/test_fio_cat.py                              |   67 +-
 tests/test_fio_collect.py                          |   98 +
 tests/test_fio_distrib.py                          |   23 +
 tests/test_fio_dump.py                             |   16 +
 tests/test_fio_filter.py                           |   29 +
 tests/test_fio_info.py                             |   73 +
 tests/test_fio_load.py                             |   37 +
 tests/test_fio_ls.py                               |   58 +
 tests/test_geometry.py                             |   62 +-
 tests/test_layer.py                                |   14 +-
 tests/test_props.py                                |    4 +-
 tests/test_remove.py                               |   77 +
 tests/test_rfc3339.py                              |   14 +-
 tests/test_unicode.py                              |   67 +-
 tests/test_vfs.py                                  |   24 +-
 75 files changed, 2894 insertions(+), 6601 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 CODE_OF_CONDUCT.md
 delete mode 100644 debian/patches/0003-GDAL-2.0.patch
 delete mode 100644 debian/patches/0004-Just-use-int-as-a-plain-old-builtin.patch
 delete mode 100644 debian/patches/0005-Initial-attempt-at-fiona.remove-for-deleting-data-sources.patch
 delete mode 100644 debian/patches/0007-clean.patch
 delete mode 100644 debian/patches/0008-Disable-GDAL-2-ImportError.patch
 create mode 100644 fiona/_cpl.pxd
 create mode 100644 fiona/_crs.pxd
 create mode 100644 fiona/_crs.pyx
 copy fiona/{_drivers.pyx => drvsupport.py} (54%)
 create mode 100644 fiona/fio/calc.py
 create mode 100644 fiona/fio/collect.py
 create mode 100644 fiona/fio/distrib.py
 create mode 100644 fiona/fio/dump.py
 create mode 100644 fiona/fio/env.py
 create mode 100644 fiona/fio/filter.py
 create mode 100644 fiona/fio/insp.py
 create mode 100644 fiona/fio/load.py
 create mode 100644 fiona/fio/ls.py
 copy fiona/{ograpi.pxd => ograpi1.pxd} (98%)
 rename fiona/{ograpi.pxd => ograpi2.pxd} (76%)
 copy fiona/{ogrext.pyx => ogrext1.pyx} (96%)
 rename fiona/{ogrext.pyx => ogrext2.pyx} (85%)
 create mode 100755 pep-508-install
 create mode 100644 pyproject.toml
 create mode 100755 scripts/travis_gdal_install.sh
 create mode 100644 tests/test_bigint.py
 delete mode 100644 tests/test_cli.py
 create mode 100644 tests/test_fio_calc.py
 create mode 100644 tests/test_fio_collect.py
 create mode 100644 tests/test_fio_distrib.py
 create mode 100644 tests/test_fio_dump.py
 create mode 100644 tests/test_fio_filter.py
 create mode 100644 tests/test_fio_info.py
 create mode 100644 tests/test_fio_ls.py
 create mode 100644 tests/test_remove.py

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



More information about the Pkg-grass-devel mailing list