[Pkg-octave-commit] [octave-mapping] branch master updated (24cfcf3 -> 8d5225e)

Rafael Laboissiere rafael at debian.org
Wed Nov 2 15:27:56 UTC 2016


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

rafael pushed a change to branch master
in repository octave-mapping.

      from  24cfcf3   Add Rafael Laboissiere and Mike Miller to Uploaders.
      adds  2bab124   Imported Upstream version 1.2.1
      adds  73248f8   Merge tag 'upstream/1.2.1'
      adds  3acee67   d/copyright: Reflect upstream changes
      adds  9c1423b   d/copyright: Add 2016 copyright notice for debian/* files
      adds  6f0e528   d/control: Keep only myself in the Uploaders list
      adds  c9ba37a   d/control: Bump Standards-Version to 3.9.8
      adds  71400ed   d/control: Use secure URIs in the Vcs-* fields
      adds  e988b1d   d/control: Reflect upstream changes in package description
      adds  9c893bf   d/p/autoload-yes.diff: Drop obsolete patch
      adds  81e39c6   d/control: Add libgdal-dev to Build-Depends
      adds  70511ce   d/s/options: Set the extend-diff-ignore option
      adds  4d52f14   d/changelog: Add entry for release 1.2.1-1
      adds  8d5225e   Update list of exclusions for Git

No new revisions were added by this update.

Summary of changes:
 .gitignore                       |   12 +
 COPYING                          |  899 ++++++---
 ChangeLog                        | 3160 ------------------------------
 DESCRIPTION                      |   18 +-
 INDEX                            |   60 +-
 Makefile                         |   75 -
 NEWS                             |  107 ++
 bootstrap                        |    9 +
 configure                        |    7 -
 debian/changelog                 |   20 +
 debian/control                   |   26 +-
 debian/copyright                 |   40 +-
 debian/patches/autoload-yes.diff |   11 -
 debian/patches/series            |    1 -
 debian/source/options            |    1 +
 inst/azimuth.m                   |   36 +-
 inst/deg2km.m                    |   48 +
 inst/deg2rad.m                   |   24 -
 inst/degrees2dm.m                |  124 ++
 inst/degrees2dms.m               |  134 ++
 inst/degtorad.m                  |   31 +
 inst/distance.m                  |  103 +-
 inst/dm2degrees.m                |   78 +
 inst/dms2degrees.m               |   93 +
 inst/extractfield.m              |  118 ++
 inst/fromDegrees.m               |   75 +
 inst/fromRadians.m               |   75 +
 inst/geoshow.m                   |   60 +
 inst/km2deg.m                    |   61 +-
 inst/km2nm.m                     |   42 +
 inst/km2rad.m                    |   57 +
 inst/km2sm.m                     |   42 +
 inst/makesymbolspec.m            |  200 ++
 inst/mapshow.m                   |  418 ++++
 inst/nm2deg.m                    |   58 +
 inst/nm2km.m                     |   42 +
 inst/nm2rad.m                    |   58 +
 inst/nm2sm.m                     |   42 +
 inst/private/clipplg.m           |  207 ++
 inst/private/clippln.m           |  185 ++
 inst/private/spheres_radius.m    |   36 +
 inst/rad2deg.m                   |   24 -
 inst/rad2km.m                    |   56 +
 inst/radtodeg.m                  |   31 +
 inst/rasterdraw.m                |  203 ++
 inst/rasterinfo.m                |   71 +
 inst/rasterread.m                |   85 +
 inst/reckon.m                    |   29 +-
 inst/removeExtraNanSeparators.m  |  128 ++
 inst/roundn.m                    |   48 +
 inst/shapedraw.m                 |  739 +++++++
 inst/shapeinfo.m                 |  176 ++
 inst/shaperead.m                 |  930 +++++++++
 inst/shapewrite.m                |  270 +++
 inst/sm2deg.m                    |   58 +
 inst/sm2km.m                     |   42 +
 inst/sm2nm.m                     |   42 +
 inst/sm2rad.m                    |   58 +
 inst/toDegrees.m                 |   75 +
 inst/toRadians.m                 |   75 +
 inst/unitsratio.m                |  380 ++++
 inst/validateLengthUnit.m        |  242 +++
 inst/wrapTo180.m                 |   60 +
 inst/wrapTo2Pi.m                 |   59 +
 inst/wrapTo360.m                 |   59 +
 inst/wrapToPi.m                  |   59 +
 src/Makefile.in                  |   12 +
 src/aclocal.m4                   |   15 +
 src/config.h.in                  |    2 +
 src/configure                    | 3914 ++++++++++++++++++++++++++++++++++++++
 src/configure.ac                 |   54 +
 src/deg2rad.m.in                 |   34 +
 src/gdalread.cc                  |  298 +++
 src/m4/pkg.m4                    |  214 +++
 src/misc.cpp                     |   33 +
 src/misc.h                       |   30 +
 src/rad2deg.m.in                 |   34 +
 77 files changed, 11824 insertions(+), 3708 deletions(-)
 delete mode 100644 ChangeLog
 delete mode 100644 Makefile
 create mode 100644 NEWS
 create mode 100755 bootstrap
 delete mode 100755 configure
 delete mode 100644 debian/patches/autoload-yes.diff
 delete mode 100644 debian/patches/series
 create mode 100644 debian/source/options
 create mode 100644 inst/deg2km.m
 delete mode 100644 inst/deg2rad.m
 create mode 100644 inst/degrees2dm.m
 create mode 100644 inst/degrees2dms.m
 create mode 100644 inst/degtorad.m
 create mode 100644 inst/dm2degrees.m
 create mode 100644 inst/dms2degrees.m
 create mode 100644 inst/extractfield.m
 create mode 100644 inst/fromDegrees.m
 create mode 100644 inst/fromRadians.m
 create mode 100644 inst/geoshow.m
 create mode 100644 inst/km2nm.m
 create mode 100644 inst/km2rad.m
 create mode 100644 inst/km2sm.m
 create mode 100644 inst/makesymbolspec.m
 create mode 100644 inst/mapshow.m
 create mode 100644 inst/nm2deg.m
 create mode 100644 inst/nm2km.m
 create mode 100644 inst/nm2rad.m
 create mode 100644 inst/nm2sm.m
 create mode 100644 inst/private/clipplg.m
 create mode 100644 inst/private/clippln.m
 create mode 100644 inst/private/spheres_radius.m
 delete mode 100644 inst/rad2deg.m
 create mode 100644 inst/rad2km.m
 create mode 100644 inst/radtodeg.m
 create mode 100644 inst/rasterdraw.m
 create mode 100644 inst/rasterinfo.m
 create mode 100644 inst/rasterread.m
 create mode 100644 inst/removeExtraNanSeparators.m
 create mode 100644 inst/roundn.m
 create mode 100644 inst/shapedraw.m
 create mode 100644 inst/shapeinfo.m
 create mode 100644 inst/shaperead.m
 create mode 100644 inst/shapewrite.m
 create mode 100644 inst/sm2deg.m
 create mode 100644 inst/sm2km.m
 create mode 100644 inst/sm2nm.m
 create mode 100644 inst/sm2rad.m
 create mode 100644 inst/toDegrees.m
 create mode 100644 inst/toRadians.m
 create mode 100644 inst/unitsratio.m
 create mode 100644 inst/validateLengthUnit.m
 create mode 100644 inst/wrapTo180.m
 create mode 100644 inst/wrapTo2Pi.m
 create mode 100644 inst/wrapTo360.m
 create mode 100644 inst/wrapToPi.m
 create mode 100644 src/Makefile.in
 create mode 100644 src/aclocal.m4
 create mode 100644 src/config.h.in
 create mode 100755 src/configure
 create mode 100644 src/configure.ac
 create mode 100644 src/deg2rad.m.in
 create mode 100644 src/gdalread.cc
 create mode 100644 src/m4/pkg.m4
 create mode 100644 src/misc.cpp
 create mode 100644 src/misc.h
 create mode 100644 src/rad2deg.m.in

-- 
Alioth's /home/groups/pkg-octave/bin/git-commit-notice on /srv/git.debian.org/git/pkg-octave/octave-mapping.git



More information about the Pkg-octave-commit mailing list