fix: ci, version 0.5.3
This commit is contained in:
parent
8f21eb95e6
commit
16f223d423
3 changed files with 14 additions and 1 deletions
|
@ -54,6 +54,9 @@ steps:
|
|||
commands:
|
||||
- apt update; apt install -y lintian rsync sudo curl
|
||||
- export SPACEAPI_SERVER_VERSION=$(python -c 'import spaceapi_server; print(spaceapi_server.__version__)')
|
||||
- find package/debian -name .gitkeep -delete
|
||||
# Copy example plugin
|
||||
- install -m0644 examples/plugins/filestate.py package/debian/spaceapi-server/etc/spaceapi-server/plugins/filestate.py
|
||||
- |
|
||||
(for version in "$(cat CHANGELOG.md | grep '<!-- BEGIN CHANGES' | cut -d ' ' -f 4)"; do
|
||||
echo "spaceapi-server ($${version}-1) stable; urgency=medium\n"
|
||||
|
|
10
package/debian/spaceapi-server/DEBIAN/control
Normal file
10
package/debian/spaceapi-server/DEBIAN/control
Normal file
|
@ -0,0 +1,10 @@
|
|||
Package: spaceapi-server
|
||||
Version: __VERSION__
|
||||
Maintainer: s3lph <s3lph@kabelsalat.ch>
|
||||
Section: web
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: python3 (>= 3.9), python3-yaml, python3-bottle
|
||||
Description: Lightweight SpaceAPI endpoint server
|
||||
Lightweight server for SpaceAPI endpoints. Includes support for pluggable
|
||||
templating, so dynamic content, like sensor values, can be added.
|
|
@ -1,2 +1,2 @@
|
|||
|
||||
__version__ = '0.5.1'
|
||||
__version__ = '0.5.3'
|
||||
|
|
Loading…
Reference in a new issue