725f3b3051
- update to 2.7.3: * no change - remove static libpython.a from build to avoid packages linking it statically OBS-URL: https://build.opensuse.org/request/show/113577 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=120
12 lines
458 B
Bash
12 lines
458 B
Bash
#!/bin/bash
|
|
# This script is called automatically during autobuild checkin.
|
|
|
|
for spec in python-doc.spec python.spec; do
|
|
{ sed -n -e '1,/COMMON-PATCH-BEGIN/p' $spec
|
|
sed -n -e '/COMMON-PATCH-BEGIN/,/COMMON-PATCH-END/p' python-base.spec
|
|
sed -n -e '/COMMON-PATCH-END/,/COMMON-PREP-BEGIN/p' $spec
|
|
sed -n -e '/COMMON-PREP-BEGIN/,/COMMON-PREP-END/p' python-base.spec
|
|
sed -n -e '/COMMON-PREP-END/,$p' $spec;
|
|
} | uniq > $spec.tmp && mv $spec.tmp $spec
|
|
done
|