[fiona] branch ubuntu updated (abfde87 -> 382bed4)
Johan Van de Wauw
johanvdw-guest at moszumanska.debian.org
Wed Jun 10 20:57:47 UTC 2015
This is an automated email from the git hooks/post-receive script.
johanvdw-guest pushed a change to branch ubuntu
in repository fiona.
from abfde87 trusty build
adds 5263767 Imported Upstream version 1.5.0
adds 37c25e3 Merge tag 'upstream/1.5.0'
adds 0371b58 Import new upstream version
adds accec30 Add CC-BY-SA-3.0 license section.
adds 96f8b11 Improve watch file to mangle versions and filename.
adds 97de174 Add Vcs-* URLs.
adds 767e164 Merge branch 'master' of git+ssh://git.debian.org/git/pkg-grass/fiona
adds 0982089 Update dependencies for new version
adds 803fac6 Update manfile
adds 8b1d579 Refresh/Remove old patches
adds 9ca5dc6 Update patches
adds ab3a2ca Update copyright for new test data
adds 89c0526 Fix tests
adds f3ea79a Update public-domain shortname
adds 5190f7c Remove Comment field for public-domain license specification.
adds 901baf2 Re-add pytest
adds 957a43d Add extra license pointer for National Atlas of the United States
adds 53f824f Set shell to UTF8 for tests
adds 1ec3e06 Add gdal-bin (for tests)
adds 89072bb No longer necessary to clean these files (old tests)
adds c3aa803 Prepare for upload
adds fb6ff1b Set doc-base
adds b025200 Remove superfluous install file
new 0df58db Merge branch 'master' into ubuntu
new 382bed4 Trusty build
The 2 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:
.travis.yml | 8 +-
CHANGES.txt | 12 +
CREDITS.txt | 1 +
README.rst | 3 +
debian/changelog | 10 +-
debian/control | 7 +-
debian/copyright | 22 +-
debian/{fiona.docbase => fiona-doc.doc-base} | 2 +-
debian/fiona-doc.install | 1 -
debian/fiona.1 | 2 +-
...-fio-command-to-fiona-to-avoid-name-clash.patch | 4 +-
.../0002-Fix-cython-compilation-error.patch | 31 -
...utside-reference-possible-privacy-breach.patch} | 15 +-
...003-Update-test-to-changed-name-fio-fiona.patch | 74 ---
debian/patches/series | 4 +-
debian/rules | 14 +-
debian/watch | 6 +-
docs/data/test_uk.dbf | Bin 10129 -> 0 bytes
docs/data/test_uk.gpkg | Bin 86016 -> 0 bytes
docs/data/test_uk.shp | Bin 65156 -> 0 bytes
docs/data/test_uk.shx | Bin 484 -> 0 bytes
fiona/__init__.py | 36 +-
fiona/_drivers.pyx | 236 +++++++-
fiona/collection.py | 147 +----
fiona/errors.py | 3 +
fiona/fio/bounds.py | 20 +-
fiona/fio/cat.py | 96 +---
fiona/fio/cli.py | 5 +-
fiona/fio/fio.py | 35 +-
fiona/ograpi.pxd | 3 +-
fiona/ogrext.pyx | 72 +--
requirements.txt | 2 +-
setup.py | 49 +-
tests/__init__.py | 10 +-
tests/data/LICENSE.txt | 4 +
tests/data/collection-pp.txt | 635 +++++++++++++++++++++
tests/data/collection.txt | 1 +
tests/data/coutwildrnp.dbf | Bin 0 -> 43233 bytes
.../data/test_uk.prj => tests/data/coutwildrnp.prj | 0
tests/data/coutwildrnp.shp | Bin 0 -> 109548 bytes
tests/data/coutwildrnp.shx | Bin 0 -> 636 bytes
tests/data/sequence-pp.txt | 630 ++++++++++++++++++++
tests/data/sequence.txt | 2 +
tests/data/test_gpx.gpx | 34 ++
tests/fixtures.py | 10 +
tests/test_bounds.py | 28 +-
tests/test_cli.py | 91 +--
tests/test_collection.py | 116 ++--
tests/test_drivers.py | 6 +-
tests/test_fio_bounds.py | 97 ++--
tests/test_fio_cat.py | 63 +-
tests/test_fio_load.py | 70 +++
tests/test_geojson.py | 4 +-
tests/test_geopackage.py | 8 +-
tests/test_layer.py | 24 +-
tests/test_listing.py | 12 +-
tests/test_multiconxn.py | 7 +-
tests/test_non_counting_layer.py | 35 ++
tests/test_read_drivers.py | 26 +
tests/test_revolvingdoor.py | 3 +-
tests/test_slice.py | 12 +-
tests/test_unicode.py | 15 +-
tests/test_vfs.py | 30 +-
63 files changed, 2193 insertions(+), 700 deletions(-)
rename debian/{fiona.docbase => fiona-doc.doc-base} (89%)
delete mode 100644 debian/fiona-doc.install
delete mode 100644 debian/patches/0002-Fix-cython-compilation-error.patch
rename debian/patches/{0004-Remove-outside-reference-possible-privacy-breach.patch => 0002-Remove-outside-reference-possible-privacy-breach.patch} (63%)
delete mode 100644 debian/patches/0003-Update-test-to-changed-name-fio-fiona.patch
delete mode 100644 docs/data/test_uk.dbf
delete mode 100644 docs/data/test_uk.gpkg
delete mode 100644 docs/data/test_uk.shp
delete mode 100644 docs/data/test_uk.shx
create mode 100644 tests/data/LICENSE.txt
create mode 100644 tests/data/collection-pp.txt
create mode 100644 tests/data/collection.txt
create mode 100644 tests/data/coutwildrnp.dbf
rename docs/data/test_uk.prj => tests/data/coutwildrnp.prj (100%)
create mode 100644 tests/data/coutwildrnp.shp
create mode 100644 tests/data/coutwildrnp.shx
create mode 100644 tests/data/sequence-pp.txt
create mode 100644 tests/data/sequence.txt
create mode 100644 tests/data/test_gpx.gpx
create mode 100644 tests/fixtures.py
create mode 100644 tests/test_fio_load.py
create mode 100644 tests/test_non_counting_layer.py
create mode 100644 tests/test_read_drivers.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