Bas Couwenberg pushed to branch master at Debian GIS Project / shapelib


Commits:
bf1b10e3 by Bas Couwenberg at 2020-04-09T12:15:39+02:00
Don't rename manpages, not needed for ruby-ronn 0.9.0. (closes: #956280)

- - - - -
e1bc1bcf by Bas Couwenberg at 2020-04-09T12:21:22+02:00
Drop manpages for removed executables.

- - - - -


5 changed files:

- debian/changelog
- debian/control
- − debian/man/shpproj.md
- − debian/man/shptest.md
- debian/rules


Changes:

=====================================
debian/changelog
=====================================
@@ -6,6 +6,9 @@ shapelib (1.5.0-2) UNRELEASED; urgency=medium
     - Drop --parallel option, enabled by default
     - Don't explicitly enable autoreconf, enabled by default
     - Drop dh-autoreconf build dependency
+  * Don't rename manpages, not needed for ruby-ronn 0.9.0.
+    (closes: #956280)
+  * Drop manpages for removed executables.
 
  -- Bas Couwenberg <[email protected]>  Wed, 10 Jul 2019 19:19:41 +0200
 


=====================================
debian/control
=====================================
@@ -5,7 +5,7 @@ Uploaders: Francesco Paolo Lovergine <[email protected]>,
 Section: libs
 Priority: optional
 Build-Depends: debhelper (>= 10~),
-               ronn
+               ronn (>= 0.9.0)
 Standards-Version: 4.5.0
 Vcs-Browser: https://salsa.debian.org/debian-gis-team/shapelib
 Vcs-Git: https://salsa.debian.org/debian-gis-team/shapelib.git


=====================================
debian/man/shpproj.md deleted
=====================================
@@ -1,51 +0,0 @@
-shpproj(1) -- Reproject Shapefiles using PROJ
-==============================================
-
-##SYNOPSIS
-`shpproj` _in_shp_file_ _out_shp_file_ [`-i=`_in_proj_file_ | 
`-i=`"_in_params_" | `-i=geographic`] [`-o=`_out_info_file_ | 
`-o=`"_out_params_" | `-o=geographic`]
-
-##OPTIONS
- * _in_shp_file_:
- the name of an existing shapefile.
-
- * _out_shp_file_:
- the name of the new fixed shapefile that will be created.
-
- * `-i`:
- Input projection. Input can come from one of three sources. A projection 
parameter file, directly through parameters or geographic. If the shapefile has 
an associated prj file, name the same as the shapefile but ending in ".prj" it 
will be used by default ignoring all other parameters. If input is omitted it 
defaults to geographic, unless the default prj file exists.
-
- * `-o`:
- Output can come from one of three sources. A projection parameter file, 
directly through parameters or geographic. If output is omitted it defaults to 
geographic.
-
-##PROJECTION DETAILS
- * PROJECTION PARAMETER FILE:
- This file MUST end with the extension ".prj". It has the form of one 
projection parameter per line. Parameters can be in any order. The projection 
parameters are those used to define a PROJ projection.
-
- * PROJECTION PARAMETERS:
- Are the same as used by proj and invproj.
-
-use:
-    proj -lu   to see available units
-    proj -le   to see available ellipsoid
-
-Or visit the PROJ web page at http://www.remotesensing.org/proj for more 
details.
-
-##EXAMPLE
-The following example projects file _rowtest_ to _row3_, moving data from 
Stateplane NAD83 zone 1002 to utm zone 16 in meters
-
-`shpproj` _rowtest_ _row_ `-i=`"init=nad83:1002 units=us-ft" `-o=`"proj=utm 
zone=16 units=m"
-
-`shpproj` _rowtest_ _row3_ `-o=`"proj=utm zone=18 units=m" `-i=`"zone=16 
proj=utm units=us-ft"
-
-`shpproj` _rowtest_ _row3_ `-o=`"proj=utm zone=18 units=m"
-
-This example uses a prj file and converts to geographic. note that 
`-o=geographic` can be ommitted.
-
-`shpproj` _rowtest_ _row3_ `-i=`_myfile.prj_ `-o=geographic`
-
-##AUTHOR
-`shpproj` is part of shapelib, maintained by Frank Warmerdam. This guide was 
created by Eduardo Patoo Kanegae and converted to manpage by Johan Van de Wauw.
-
-##SEE ALSO
-`proj`(1), `dbfadd`(1), `dbfcat`(1), `dbfcreate`(1), `dbfdump`(1), 
`dbfinfo`(1), `shpadd`(1), `shpcat`(1), `shpcentrd`(1), `shpcreate`(1), 
`shpdump`(1), `shpdxf`(1), `shpfix`(1), `shpinfo`(1), `shprewind`(1), 
`shptest`(1)
-


=====================================
debian/man/shptest.md deleted
=====================================
@@ -1,72 +0,0 @@
-shptest(1) -- create some shapefiles for testing
-================================================
-
-##SYNOPSIS
-`shptest` _num_
-
-##DESCRIPTION
-Writes out a shapefile consisting of files test<num>.shp and test<num>.shx in 
the current directory.  The _num_ argument specifies the type of shapes in the 
shapefile to create and takes values from:
-
- * `0`:
- `NullShape`
-
- * `1`:
- `Point`
-
- * `2`:
- `PointZ`
-
- * `3`:
- `PointM`
-
- * `4`:
- `MultiPoint`
-
- * `5`:
- `MultiPointZ`
-
- * `6`:
- `MultiPointM`
-
- * `7`:
- `Arc`
-
- * `8`:
- `ArcZ`
-
- * `9`:
- `ArcM`
-
- * `10`:
- `Polygon`
-
- * `11`:
- `PolygonZ`
-
- * `12`:
- `PolygonM`
-
- * `13`:
- `MultiPatch`
-
-##EXIT STATUS
- * `0`:
- Successful program execution.
-
- * `1`:
- Missing argument.
-
- * `10`:
- Test `_num_' not recognised.
-
-##DIAGNOSTICS
-The following diagnostics may be issued on stdout:
-
-Test `_num_' not recognised.
-
-##AUTHORS
-Frank Warmerdam ([email protected]) is the maintainer of the shapelib 
shapefile library.  Joonas Pihlaja ([email protected]) wrote this man 
page.
-
-##SEE ALSO
-`dbfadd`(1), `dbfcat`(1), `dbfcreate`(1), `dbfdump`(1), `dbfinfo`(1), 
`shpadd`(1), `shpcat`(1), `shpcentrd`(1), `shpcreate`(1), `shpdump`(1), 
`shpdxf`(1), `shpfix`(1), `shpinfo`(1), `shpproj`(1), `shprewind`(1)
-


=====================================
debian/rules
=====================================
@@ -18,9 +18,6 @@ override_dh_clean:
 override_dh_auto_build:
        dh_auto_build
        ronn -r --date="$(BUILD_DATE)" --manual=shplib debian/man/*.md
-       for FILE in debian/man/*.md.1; do \
-               mv -v $$FILE debian/man/`basename $$FILE .md.1`.1; \
-       done
 
 override_dh_auto_install:
        dh_auto_install



View it on GitLab: 
https://salsa.debian.org/debian-gis-team/shapelib/-/compare/e9210e28723d613d92a37ff533d714a8055cab64...e1bc1bcf08824f6104412b637d4d441c9ad1b2f5

-- 
View it on GitLab: 
https://salsa.debian.org/debian-gis-team/shapelib/-/compare/e9210e28723d613d92a37ff533d714a8055cab64...e1bc1bcf08824f6104412b637d4d441c9ad1b2f5
You're receiving this email because of your account on salsa.debian.org.


_______________________________________________
Pkg-grass-devel mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel

Reply via email to