- generate specs for PG 9.3 - udpated to verion 3.0.6 - udpated to verion 3.0.6 - udpated to verion 3.0.6 - patch for compilation error with Bison >=2.6 See also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710633 - renamed orafce.spec to orafce.spec.in - updated name in template - set proper install location - added pre_checkin.sh to generate .spec and .changes - updated to orafce-HEAD-36ccc5b from git repository which supports postgresql 9.2. As there's no official release i'm calling it 5a - created .specs to support multiple versions of PG - removed/renamed orafce.spec - Fixed non-standard Group - added FLEX=/usr/bin/flex to make statement in %build. OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/orafce?expand=0&rev=5
12 lines
198 B
Bash
12 lines
198 B
Bash
#!/bin/sh
|
|
#
|
|
VERS="91 92 93"
|
|
#
|
|
spec=orafce.spec.in
|
|
|
|
for ii in $VERS
|
|
do
|
|
sed "s/pgversion ##/pgversion $ii/" $spec > postgresql${ii}-orafce.spec
|
|
cp orafce.changes postgresql${ii}-orafce.changes
|
|
done
|