File: _04_pypi_dowload.sh

package info (click to toggle)
imediff 3.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 820 kB
  • sloc: python: 6,397; sh: 904; xml: 336; makefile: 28
file content (20 lines) | stat: -rwxr-xr-x 454 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh -e
# vim: set sw=2 et sw=2 sts=2:
#
# script for downloading wheel package from official pypi.org
#
type imediff
type git-ime
git reset --hard HEAD
git clean -dfx
echo -n "I: starting test download environment at pwd = "
pwd
python3 -m venv venv
. venv/bin/activate
type imediff
python3 -m pip install --no-deps imediff
type imediff
type git-ime
echo "I: starting subshell to continue.  Type ^D to exit"
bash -i
echo "I: exit test environment"