summaryrefslogtreecommitdiff
path: root/list-depends
blob: 76f73064f4645f3b614c89f0ac52a25c9f9c13ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

stat_file='depends_static.txt'
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/.*/\L&/' \
	-e 's/==/>=/' \
	-e 's/^(python2?-)?/python2-/' \
	-e 's/python2-django/django/'