[Git][debian-gis-team/pymap3d][master] 6 commits: Better formatting of debian/copyright
Antonio Valentino
gitlab at salsa.debian.org
Thu Apr 23 18:56:03 BST 2020
Antonio Valentino pushed to branch master at Debian GIS Project / pymap3d
Commits:
c214c88d by Antonio Valentino at 2020-03-01T10:16:48+00:00
Better formatting of debian/copyright
- - - - -
dcccd506 by Antonio Valentino at 2020-03-01T10:17:26+00:00
debian/watch cleanup
- - - - -
0e46313f by Antonio Valentino at 2020-04-23T17:45:40+00:00
New upstream version 2.3.1
- - - - -
967f06f6 by Antonio Valentino at 2020-04-23T17:45:40+00:00
Update upstream source from tag 'upstream/2.3.1'
Update to upstream version '2.3.1'
with Debian dir e6d0bccc79f77e69d50cc2e7baaf670eb9bfb71a
- - - - -
e7efefbe by Antonio Valentino at 2020-04-23T17:46:37+00:00
New upstream release
- - - - -
230af74d by Antonio Valentino at 2020-04-23T17:49:06+00:00
Set distribution to unstable
- - - - -
27 changed files:
- CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md
- .github/workflows/ci.yml
- .github/workflows/ci_stdlib_only.yml
- README.md
- debian/changelog
- debian/copyright
- debian/watch
- setup.cfg
- pymap3d/__init__.py → src/pymap3d/__init__.py
- pymap3d/aer.py → src/pymap3d/aer.py
- pymap3d/azelradec.py → src/pymap3d/azelradec.py
- pymap3d/ecef.py → src/pymap3d/ecef.py
- pymap3d/eci.py → src/pymap3d/eci.py
- pymap3d/ellipsoid.py → src/pymap3d/ellipsoid.py
- pymap3d/enu.py → src/pymap3d/enu.py
- pymap3d/haversine.py → src/pymap3d/haversine.py
- pymap3d/latitude.py → src/pymap3d/latitude.py
- pymap3d/los.py → src/pymap3d/los.py
- pymap3d/lox.py → src/pymap3d/lox.py
- pymap3d/ned.py → src/pymap3d/ned.py
- pymap3d/rcurve.py → src/pymap3d/rcurve.py
- pymap3d/rsphere.py → src/pymap3d/rsphere.py
- pymap3d/sidereal.py → src/pymap3d/sidereal.py
- pymap3d/timeconv.py → src/pymap3d/timeconv.py
- pymap3d/utils.py → src/pymap3d/utils.py
- pymap3d/vallado.py → src/pymap3d/vallado.py
- pymap3d/vincenty.py → src/pymap3d/vincenty.py
Changes:
=====================================
CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md
=====================================
=====================================
.github/workflows/ci.yml
=====================================
@@ -5,20 +5,20 @@ on:
paths:
- "**.py"
pull_request:
- paths:
- - "**.py"
+ release:
jobs:
full:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout at v1
+ - uses: actions/checkout at v2
- uses: actions/setup-python at v1
with:
python-version: '3.x'
- run: pip install .[full,tests,lint]
+
- run: flake8
- run: mypy .
+
- run: pytest
- working-directory: tests
=====================================
.github/workflows/ci_stdlib_only.yml
=====================================
@@ -5,18 +5,18 @@ on:
paths:
- "**.py"
pull_request:
- paths:
- - "**.py"
+ release:
jobs:
stdlib_py35:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout at v1
+ - uses: actions/checkout at v2
- uses: actions/setup-python at v1
with:
python-version: 3.5
- run: pip install .[tests]
+
- run: pytest
working-directory: tests
=====================================
README.md
=====================================
@@ -4,9 +4,8 @@
[](https://doi.org/10.21105/joss.00580)
[](https://github.com/Ullaakut/astronomer/)
-[](https://github.com/scivision/pymap3d/actions)
-[](https://github.com/scivision/pymap3d/actions)
-
+
+
[](https://lgtm.com/projects/g/scivision/pymap3d/context:python)
[](https://pypi.python.org/pypi/pymap3d)
@@ -16,14 +15,14 @@ Pure Python (no prerequistes beyond Python itself) 3-D geographic coordinate con
API similar to popular $1000 Matlab Mapping Toolbox routines for:
* Python
-* [Matlab, GNU Octave](https://github.com/scivision/matmap3d)
-* [modern Fortran](https://github.com/scivision/maptran)
+* [Matlab, GNU Octave](https://github.com/geospace-code/matmap3d)
+* [modern Fortran](https://github.com/geospace-code/maptran)
PyMap3D is intended for non-interactive use on massively parallel (HPC) and embedded systems.
Includes some relevant
[Vallado algorithms](http://www.smad.com/vallado/fortran/fortran.html).
-[API docs](https://scivision.github.io/pymap3d/)
+[API docs](https://geospace-code.github.io/pymap3d/)
Thanks to our [contributors](./contributors.md).
@@ -41,7 +40,7 @@ python3 -m pip install pymap3d
or for the latest development code:
```sh
-git clone https://github.com/scivision/pymap3d
+git clone https://github.com/geospace-code/pymap3d
pip install -e pymap3d
```
=====================================
debian/changelog
=====================================
@@ -1,3 +1,13 @@
+pymap3d (2.3.1-1) unstable; urgency=medium
+
+ * New upstream release.
+ * debian/copyright:
+ - better formatting
+ * debian/watch:
+ - cleanup
+
+ -- Antonio Valentino <antonio.valentino at tiscali.it> Thu, 23 Apr 2020 17:48:49 +0000
+
pymap3d (2.3.0-1) unstable; urgency=low
* Initial version (Closes: #952813)
=====================================
debian/copyright
=====================================
@@ -4,13 +4,13 @@ Upstream-Contact: Michael Hirsch, Ph.D. <scivision at users.noreply.github.com>
Source: https://github.com/geospace-code/pymap3d
Files: *
-Copyright: 2014-2018 Michael Hirsch, Ph.D.
- 2013 Felipe Geremia Nievinski
- 2004-2007 Michael Kleder
+Copyright: 2014-2018, Michael Hirsch, Ph.D.
+ 2013, Felipe Geremia Nievinski
+ 2004-2007, Michael Kleder
License: BSD-2-Clause
Files: debian/*
-Copyright: 2020 Antonio Valentino <antonio.valentino at tiscali.it>
+Copyright: 2020, Antonio Valentino <antonio.valentino at tiscali.it>
License: BSD-2-Clause
License: BSD-2-Clause
=====================================
debian/watch
=====================================
@@ -2,7 +2,6 @@ version=4
opts=\
dversionmangle=s/\+(debian|dfsg|ds|deb)\.?\d*$//,\
uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|b|beta|a|alpha)\d*)$/$1~$2/;s/RC/rc/;s/\-/\./g,\
-filenamemangle=s/.+\/(?:rel|v|pymap3d)?[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/pymap3d-$1.$2/,\
-repacksuffix=+ds \
+filenamemangle=s/.+\/(?:rel|v|pymap3d)?[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/pymap3d-$1.$2/ \
https://github.com/geospace-code/pymap3d/tags \
(?:.*?/archive/)?(?:rel|v|pymap3d)?[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
=====================================
setup.cfg
=====================================
@@ -4,7 +4,7 @@ version = 2.3.0
author = Michael Hirsch, Ph.D.
author_email = scivision at users.noreply.github.com
description = pure Python (no prereqs) coordinate conversions, following convention of several popular Matlab routines.
-url = https://github.com/scivision/pymap3d
+url = https://github.com/geospace-code/pymap3d
keywords =
coordinate conversion
classifiers =
@@ -31,7 +31,11 @@ python_requires = >= 3.5.2
packages = find:
zip_safe = False
install_requires =
+package_dir=
+ =src
+[options.packages.find]
+where=src
[options.extras_require]
tests =
=====================================
pymap3d/__init__.py → src/pymap3d/__init__.py
=====================================
@@ -27,8 +27,8 @@ Other languages
Companion packages exist for:
-* Matlab / GNU Octave: [Matmap3D](https://github.com/scivision/matmap3d)
-* Fortran: [Maptran3D](https://github.com/scivision/maptran3d)
+* Matlab / GNU Octave: [Matmap3D](https://github.com/geospace-code/matmap3d)
+* Fortran: [Maptran3D](https://github.com/geospace-code/maptran3d)
"""
from .aer import ecef2aer, aer2ecef, geodetic2aer, aer2geodetic, eci2aer, aer2eci
=====================================
pymap3d/aer.py → src/pymap3d/aer.py
=====================================
=====================================
pymap3d/azelradec.py → src/pymap3d/azelradec.py
=====================================
=====================================
pymap3d/ecef.py → src/pymap3d/ecef.py
=====================================
=====================================
pymap3d/eci.py → src/pymap3d/eci.py
=====================================
=====================================
pymap3d/ellipsoid.py → src/pymap3d/ellipsoid.py
=====================================
=====================================
pymap3d/enu.py → src/pymap3d/enu.py
=====================================
=====================================
pymap3d/haversine.py → src/pymap3d/haversine.py
=====================================
=====================================
pymap3d/latitude.py → src/pymap3d/latitude.py
=====================================
=====================================
pymap3d/los.py → src/pymap3d/los.py
=====================================
=====================================
pymap3d/lox.py → src/pymap3d/lox.py
=====================================
=====================================
pymap3d/ned.py → src/pymap3d/ned.py
=====================================
=====================================
pymap3d/rcurve.py → src/pymap3d/rcurve.py
=====================================
=====================================
pymap3d/rsphere.py → src/pymap3d/rsphere.py
=====================================
=====================================
pymap3d/sidereal.py → src/pymap3d/sidereal.py
=====================================
=====================================
pymap3d/timeconv.py → src/pymap3d/timeconv.py
=====================================
=====================================
pymap3d/utils.py → src/pymap3d/utils.py
=====================================
=====================================
pymap3d/vallado.py → src/pymap3d/vallado.py
=====================================
=====================================
pymap3d/vincenty.py → src/pymap3d/vincenty.py
=====================================
View it on GitLab: https://salsa.debian.org/debian-gis-team/pymap3d/-/compare/1acff41c8c81df79ec2fe11960980b4c7454374b...230af74df38f6735ab991d018de4117b910ae04f
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/pymap3d/-/compare/1acff41c8c81df79ec2fe11960980b4c7454374b...230af74df38f6735ab991d018de4117b910ae04f
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20200423/3708dc45/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list