[Git][debian-gis-team/pywps][master] 5 commits: Disable rollback in gbp.conf.
Bas Couwenberg
gitlab at salsa.debian.org
Mon Dec 17 19:55:15 GMT 2018
Bas Couwenberg pushed to branch master at Debian GIS Project / pywps
Commits:
05a333b1 by Bas Couwenberg at 2018-12-17T19:46:51Z
Disable rollback in gbp.conf.
- - - - -
e26b3f21 by Bas Couwenberg at 2018-12-17T19:46:55Z
New upstream version 4.2.1
- - - - -
296842c4 by Bas Couwenberg at 2018-12-17T19:47:20Z
Merge tag 'upstream/4.2.1'
Upstream version 4.2.1
- - - - -
b0a9120d by Bas Couwenberg at 2018-12-17T19:47:39Z
New upstream release.
- - - - -
823d8ecf by Bas Couwenberg at 2018-12-17T19:50:00Z
Set distribution to unstable.
- - - - -
9 changed files:
- .travis.yml
- MANIFEST.in
- VERSION.txt
- debian/changelog
- debian/gbp.conf
- pywps/__init__.py
- requirements-dev.txt
- requirements.txt
- setup.py
Changes:
=====================================
.travis.yml
=====================================
@@ -17,6 +17,10 @@ addons:
packages:
- gdal-bin
- libgdal-dev
+ - devscripts
+ - fakeroot
+ - debhelper
+ - python-setuptools
# Handle Git submodules yourself
git:
@@ -37,6 +41,7 @@ script:
after_success:
- coveralls
+ - python setup.py sdist bdist_wheel --universal
- debuild -b -uc -us
# whitelist
=====================================
MANIFEST.in
=====================================
@@ -2,5 +2,6 @@ prune docs/
prune tests/
include *.txt
include *.rst
+include README.md
recursive-include pywps *
global-exclude *.py[co]
=====================================
VERSION.txt
=====================================
@@ -1 +1 @@
-4.2.0
+4.2.1
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+pywps (4.2.1-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Disable rollback in gbp.conf.
+
+ -- Bas Couwenberg <sebastic at debian.org> Mon, 17 Dec 2018 20:49:16 +0100
+
pywps (4.2.0-1) unstable; urgency=medium
* New upstream release.
=====================================
debian/gbp.conf
=====================================
@@ -14,3 +14,6 @@ upstream-tag = upstream/%(version)s
# Always use pristine-tar.
pristine-tar = True
+
+[import-orig]
+rollback = False
=====================================
pywps/__init__.py
=====================================
@@ -9,7 +9,7 @@ import os
from lxml.builder import ElementMaker
-__version__ = '4.2.0'
+__version__ = '4.2.1'
LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
=====================================
requirements-dev.txt
=====================================
@@ -2,6 +2,7 @@ coverage
flake8
flufl.enum
pylint
-Sphinx
six
-jinja2
+Sphinx
+twine
+wheel
=====================================
requirements.txt
=====================================
@@ -1,9 +1,10 @@
-owslib
+flufl.enum
+jinja2
jsonschema
lxml
-werkzeug
-SQLAlchemy
+owslib
+pathlib
python-dateutil
requests
-jinja2
-pathlib
\ No newline at end of file
+SQLAlchemy
+werkzeug
=====================================
setup.py
=====================================
@@ -19,6 +19,9 @@ DESCRIPTION = ('PyWPS is an implementation of the Web Processing Service '
'standard from the Open Geospatial Consortium. PyWPS is '
'written in Python.')
+with open('README.md') as ff:
+ LONG_DESCRIPTION = ff.read()
+
KEYWORDS = 'PyWPS WPS OGC processing'
with open('requirements.txt') as f:
@@ -28,6 +31,7 @@ CONFIG = {
'name': 'pywps',
'version': VERSION,
'description': DESCRIPTION,
+ 'long_description': LONG_DESCRIPTION,
'keywords': KEYWORDS,
'license': 'MIT',
'platforms': 'all',
View it on GitLab: https://salsa.debian.org/debian-gis-team/pywps/compare/bb50b92e67ba2b2973c90d7f81fadcc5e70db2c9...823d8ecf09ff2902184bd466bdfa1436fe68fa40
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/pywps/compare/bb50b92e67ba2b2973c90d7f81fadcc5e70db2c9...823d8ecf09ff2902184bd466bdfa1436fe68fa40
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/20181217/a2bc3753/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list