blob: 2a5fa989a52ede23f530a159b7e75f93e77f02a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
[[ -n $stat_file ]] || stat_file='depends_static.txt'
[[ -n $prod_file ]] || prod_file='https://projects.parabolagnulinux.org/parabolaweb.git/plain/requirements_prod.txt'
cat "${stat_file}" |
sed -r \
-e 's/\s*#.*//'
curl -s "${prod_file}" |
sed -r \
-e 's|^-e .*/fredj/cssmin.git@master#egg=cssmin$|python2-cssmin-fredj|' \
-e 's/.*/\L&/' \
-e 's/==/>=/' \
-e 's/^(python2?-)?/python2-/'
|