-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added new `docker-package-pypi.sh` script for Docker based `twine` upload; - changes to `package-pypi.sh` for Docker use: - needs to run in script dir for Docker; - use explicit config file for credentials; - added `twine` installation via `pip`; - `docker-package-win.sh` now uses `cdrx/pyinstaller-windows` Docker image for Wine and Windows Python packaging; - added new `jpylyzer.spec` suitable for win32 and win64 builds, these are now controlled via Docker image choice; - added `requirements.txt` for automatic installation of `six` when building windows packages; - updated packaging documentation; - enabled long description in `setup.py`; - added `realpath` installation to `.travis.yml`; - removed unneeded `Dockerfile-Wine.build`, `buildwin.sh`, `jpylyzer_win32.spec`, `jpylyzer_win64.spec`; - small `README.md` tweaks; and - tidied `.travis.yml`.
- Loading branch information
1 parent
5f0594a
commit e1fa44f
Showing
15 changed files
with
88 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#! /usr/bin/env bash | ||
# | ||
# Build Debian package in a Docker container | ||
# | ||
|
||
set -e | ||
|
||
# Get build platform as 1st argument, and collect project metadata | ||
pypi_name="$(./setup.py --name)" | ||
|
||
# Build in Docker container, save results, and show package info | ||
docker run -v "$PWD":/src -v "$HOME":/pypirc --entrypoint "/src/package-pypi.sh" --rm python:3.6-stretch |
Oops, something went wrong.