summaryrefslogtreecommitdiff
path: root/packaging/pre_checkin.sh
blob: 08fd96cb6f6ede8d957343a6860ff2b6515a30d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# This script is called automatically during autobuild checkin.

for spec in 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