Skip to content

Commit 1bd8a69

Browse files
committed
rename: Rename project and files.
1 parent 3cefaeb commit 1bd8a69

10 files changed

+45
-45
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# pylocatable
2-
makes PYthon environment reLOCATABLE.
1+
# pypack
2+
makes PYthon environment PACKageable.
33

4-
By running `pack.py` or `pylocatable.sh`, you can get a locatable to anywhere python environment tar.gz file. You can control which kind python environment you want by customize your config file.
4+
By running `pypack.py` or `pypack.sh`, you can get a locatable to anywhere python environment tar.gz file. You can control which kind python environment you want by customize your config file.
55

66
BTW, don't worry this will mess your current directory up, since all files and all operations will be handled or executed under `build.path` defined by config file.
77

@@ -16,17 +16,17 @@ BTW, don't worry this will mess your current directory up, since all files and a
1616
## How to Run?
1717
Using demo config file and requirements.txt file located at `./files` as example, run
1818
```bash
19-
python pack.py --conf_path ./files/centos_config.json
19+
python pypack.py --conf_path ./files/centos_config.json
2020
# or
21-
python pack.py --conf_path ./files/ubuntu_config.json
21+
python pypack.py --conf_path ./files/ubuntu_config.json
2222
```
2323
After execution, the last line of logs will tell you where to get your python-env tar.gz file.
2424

2525
If you do not want `git clone` the responsitory, you can just run
2626
```bash
27-
curl -s https://raw.githubusercontent.com/innerNULL/pylocatable/main/pylocatable.sh | bash /dev/stdin path/to/config.json
27+
curl -s https://raw.githubusercontent.com/innerNULL/pypack/main/pypack.sh | bash /dev/stdin path/to/config.json
2828
# or (in China Mainland)
29-
curl -s https://ghproxy.com/https://raw.githubusercontent.com/innerNULL/pylocatable/main/pylocatable.sh | bash /dev/stdin path/to/config.json
29+
curl -s https://ghproxy.com/https://raw.githubusercontent.com/innerNULL/pypack/main/pypack.sh | bash /dev/stdin path/to/config.json
3030
```
3131

3232

@@ -39,7 +39,7 @@ curl -s https://ghproxy.com/https://raw.githubusercontent.com/innerNULL/pylocata
3939
* **python**:
4040
* **version**: Target python environment version.
4141
* **env_name**: Target python environment name.
42-
* **dep**: Target python environment's dependencies packages, which is, `requirement.txt` path. Note, no matter you use `pack.py` or `pylocatable.sh`, this path should be an absolute path or **a relative path refer to your current path (the path you execute packaging command)**.
42+
* **dep**: Target python environment's dependencies packages, which is, `requirement.txt` path. Note, no matter you use `pack.py` or `pypack.sh`, this path should be an absolute path or **a relative path refer to your current path (the path you execute packaging command)**.
4343
* **post_running**: The command should be executed after `pip install`.
4444
* **build**:
4545
* **path**: The directroy under which to execute building target python environment. This should be a new path.

files/centos_config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"docker": {
44
"base_img": "centos:centos7.3.1611",
55
"build_img": "centos_py",
6-
"container": "pylocatable_container"
6+
"container": "pypack_container"
77
},
88
"python": {
99
"version": "3.7",

files/ubuntu_config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"docker": {
44
"base_img": "ubuntu:20.04",
55
"build_img": "ubuntu_py",
6-
"container": "pylocatable_container"
6+
"container": "pypack_container"
77
},
88
"python": {
99
"version": "3.9",

pylocatable.sh

-29
This file was deleted.

pack.py pypack.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
import argparse
66
from typing import Dict, List, Union
77

8-
import pylocatable as ploc
9-
import pylocatable.ops as ops
10-
import pylocatable.utils as utils
11-
import pylocatable.templates as templates
8+
import pypack as pypack
9+
import pypack.ops as ops
10+
import pypack.utils as utils
11+
import pypack.templates as templates
1212

1313

1414
argparser = argparse.ArgumentParser()
@@ -22,7 +22,7 @@
2222
print("Starting python-env packing process...")
2323
conf_path: str = args.conf_path
2424

25-
config: ploc.Config = ploc.Config(conf_path)
25+
config: pypack.Config = pypack.Config(conf_path)
2626
ops.predownload(config)
2727
ops.files_relocate(config)
2828
ops.dockerfile_build(config)

pypack.sh

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# file: pypack.sh
2+
3+
4+
set -x
5+
6+
7+
CONF_PATH=$1
8+
9+
CURR_PATH=$(pwd)
10+
WORK_DIR="./_pypack"
11+
WORK_ABS_DIR=$(cd "$(dirname "${WORK_DIR}")"; pwd)/$(basename "${WORK_DIR}")
12+
13+
14+
function get_pypack() {
15+
mkdir -p ${WORK_DIR}
16+
cd ${WORK_DIR} && git clone [email protected]:innerNULL/pypack.git
17+
}
18+
19+
function main() {
20+
get_pypack
21+
cd ${CURR_PATH}
22+
python3 ${WORK_DIR}/pypack/pypack.py --conf_path ${CONF_PATH}
23+
rm -rf ${WORK_DIR}
24+
}
25+
26+
27+
main
28+
29+
File renamed without changes.

pylocatable/ops.py pypack/ops.py

File renamed without changes.

pylocatable/templates.py pypack/templates.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
DOCKERFILE_TEMP: str = """
66
FROM {img}
7-
MAINTAINER "pylocatable@github"
7+
MAINTAINER "pypack@github"
88
99
RUN mkdir /workspace
1010
WORKDIR /workspace
File renamed without changes.

0 commit comments

Comments
 (0)