| OLD | NEW |
| 1 package: infra/infra_python/${platform}-${os_ver} | 1 package: infra/infra_python/${platform}-${os_ver} |
| 2 description: Virtual environment + 'infra' package with infra.git python code. | 2 description: Virtual environment + 'infra' package with infra.git python code. |
| 3 root: ../../ | 3 root: ../../ |
| 4 | 4 |
| 5 data: | 5 data: |
| 6 # Virtual environment with all third party packages. | 6 # Virtual environment with all third party packages. |
| 7 - dir: ENV | 7 - dir: ENV |
| 8 exclude: | 8 exclude: |
| 9 # Exclude unneeded and unrelocatable files. | 9 # Exclude unneeded and unrelocatable files. |
| 10 - .*\.pyc | 10 - .*\.pyc |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 - dir: "infra_libs" | 37 - dir: "infra_libs" |
| 38 exclude: | 38 exclude: |
| 39 - .*\.pyc | 39 - .*\.pyc |
| 40 | 40 |
| 41 # Launcher with dependencies, knows how to boot venv. | 41 # Launcher with dependencies, knows how to boot venv. |
| 42 - file: run.py | 42 - file: run.py |
| 43 - file: test.py | 43 - file: test.py |
| 44 - file: bootstrap/run_helper.py | 44 - file: bootstrap/run_helper.py |
| 45 - file: bootstrap/remove_orphaned_pycs.py | 45 - file: bootstrap/remove_orphaned_pycs.py |
| 46 | 46 |
| 47 # Binaries used by infra_python things. |
| 48 - file: go/bin/cloudtail${exe_suffix} |
| 49 |
| 47 # Where to put info about installed package version. | 50 # Where to put info about installed package version. |
| 48 - version_file: CIPD_VERSION.json | 51 - version_file: CIPD_VERSION.json |
| OLD | NEW |