Updated orafce to the latest git release which supports pg92 and reworked packaging to support multiple version of postgresql. There are 2 linked packages, postgresql9*-orafce, associated with this package. Please make me the maintainer. OBS-URL: https://build.opensuse.org/request/show/139946 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/orafce?expand=0&rev=2
12 lines
195 B
Bash
12 lines
195 B
Bash
#!/bin/sh
|
|
#
|
|
VERS="91 92"
|
|
#
|
|
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
|