Include Python packages used by Feedmark; all tests pass.
Chris Pressey
2 years ago
17 | 17 |
https://github.com/tcarmelveilleux/dcc6502/archive/680c21299241133449056c2ddfbc0dd087dc3807.tar.gz@dcc6502-2.1-2018.0902.tar.gz
|
18 | 18 |
https://github.com/catseye/minischeme/archive/refs/tags/0.85ce1.tar.gz@minischeme-0.85ce1.tar.gz
|
19 | 19 |
https://github.com/catseye/ee/archive/refs/tags/1.5.2ce1.tar.gz@ee-1.5.2ce1.tar.gz
|
|
20 |
https://files.pythonhosted.org/packages/e3/8a/60c7dbcca21c51dff6df932a10c4b2d453ea474428c64021dd5ba609f8d5/atomize-0.2.0.tar.gz
|
|
21 |
https://files.pythonhosted.org/packages/1d/25/3f6d2cb31ec42ca5bd3bfbea99b63892b735d76e26f20dd2dcc34ffe4f0d/Markdown-2.6.8.tar.gz
|
|
22 |
https://files.pythonhosted.org/packages/4e/2f/63c252850ca79759810a988c0555cdfb67a89750743ae3943a1de106a5d2/beautifulsoup4-4.12.1.tar.gz
|
20 | 23 |
"
|
21 | 24 |
|
22 | 25 |
if [ "x$DISTREPO_ROOT" = "x" ]; then
|
|
59 | 62 |
* Then run:
|
60 | 63 |
sh /cdrom/populate-infra.sh
|
61 | 64 |
sh /cdrom/build-infra.sh 2>&1 | tee build-infra-log.txt
|
|
65 |
sh /cdrom/install-python-packages.sh
|
62 | 66 |
sh /cdrom/populate-catseye.sh
|
63 | 67 |
sh /cdrom/build-catseye.sh 2>&1 | tee build-catseye-log.txt
|
64 | 68 |
shelf_test catseye/* 2>&1 | tee test-catseye-log.txt
|
|
0 |
#!/bin/sh
|
|
1 |
|
|
2 |
cd /home/user/catseye/Python-3.9.13/install/lib/python3.9/site-packages/
|
|
3 |
|
|
4 |
tar zxvf /cdrom/atomize-0.2.0.tar.gz
|
|
5 |
mv atomize-0.2.0/src3/atomize.py atomize.py
|
|
6 |
|
|
7 |
tar zxvf /cdrom/Markdown-2.6.8.tar.gz
|
|
8 |
mv Markdown-2.6.8/markdown markdown
|
|
9 |
|
|
10 |
tar zxvf /cdrom/beautifulsoup4-4.12.1.tar.gz
|
|
11 |
mv beautifulsoup4-4.12.1/bs4 bs4
|