1
0
Fork 0

Add utility for refreshing requirements file

Signed-off-by: Vasilis Tsiligiannis <acinonyx@openwrt.gr>
merge-requests/314/head
Vasilis Tsiligiannis 2019-01-02 18:42:57 +02:00
parent 1fe6579bda
commit b0299e39eb
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,41 @@
#!/bin/sh -e
#
# Script to refresh requirements.txt file
#
# Copyright (C) 2019 Libre Space Foundation <https://libre.space/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
EXCLUDE_REGEXP="^\(pkg-resources\|satnogs-db\)"
VIRTUALENV_DIR=$(mktemp -d)
PIP_COMMAND="$VIRTUALENV_DIR/bin/pip"
# Create virtualenv
virtualenv "$VIRTUALENV_DIR"
# Install package with dependencies
"$PIP_COMMAND" install --no-cache-dir --force-reinstall .
# Create requirements file from installed dependencies
cat << EOF > requirements.txt
# This is a generated file; DO NOT EDIT!
#
# Please edit 'setup.cfg' to add top-level dependencies and use
# './contrib/refresh-requirements.sh to regenerate this file
EOF
"$PIP_COMMAND" freeze | grep -v "$EXCLUDE_REGEXP" >> requirements.txt
# Cleanup
rm -rf "$VIRTUALENV_DIR"

View File

@ -2,6 +2,17 @@ Maintenance
===========
Updating Python dependencies
----------------------------
To update the Python dependencies:
#. Execute script to refresh `requirements.txt` file:
$ ./contrib/refresh-requirements.sh
#. Stage and commit `requirements.txt` file
Updating frontend dependencies
------------------------------
The frontend dependencies are managed with `npm` as defined in the `package.json`.