ad70cabb97
This package is not being kept up to date, it's hard to maintain and we will need to tune it from time to time which is painful. Also removes whole layer of bootstrapping. Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
33 lines
875 B
Bash
Executable File
33 lines
875 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ $# -ge 1 ] || {
|
|
cat > /dev/null
|
|
exit 0
|
|
}
|
|
|
|
case $1 in
|
|
-P|--provides)
|
|
shift
|
|
# Match buildroot/payload paths of the form
|
|
# /PATH/OF/BUILDROOT/usr/bin/pythonMAJOR.MINOR
|
|
# generating a line of the form
|
|
# python(abi) = MAJOR.MINOR
|
|
# (Don't match against -config tools e.g. /usr/bin/python2.6-config)
|
|
grep "/usr/bin/python.\..$" \
|
|
| sed -e "s|.*/usr/bin/python\(.\..\)|python(abi) = \1|"
|
|
;;
|
|
-R|--requires)
|
|
shift
|
|
# Match buildroot paths of the form
|
|
# /PATH/OF/BUILDROOT/usr/lib/pythonMAJOR.MINOR/ and
|
|
# /PATH/OF/BUILDROOT/usr/lib64/pythonMAJOR.MINOR/
|
|
# generating (uniqely) lines of the form:
|
|
# python(abi) = MAJOR.MINOR
|
|
grep "/usr/lib[^/]*/python.\../.*" \
|
|
| sed -e "s|.*/usr/lib[^/]*/python\(.\..\)/.*|python(abi) = \1|g" \
|
|
| sort | uniq
|
|
;;
|
|
esac
|
|
|
|
exit 0
|