Dirk Mueller
d426c44f07
RC4 is legacy provided since openSSL3 and requires explicit loading, disable openssl3 depricated API warnings. * Add cyrus-sasl-make-digestmd5-work-ssl3.patch - Make DIGEST-MD5 work with openssl3 ( bsc#1230111 ) RC4 is legacy provided since openSSL3 and requires explicit loading, dDisable openssl3 depricated API warnings. * Add cyrus-sasl-make-digestmd5-work-ssl3.patch OBS-URL: https://build.opensuse.org/package/show/network/cyrus-sasl?expand=0&rev=110
14 lines
578 B
Bash
14 lines
578 B
Bash
#!/bin/bash
|
|
|
|
echo -n "Generating cyrus-sasl-saslauthd "
|
|
|
|
cp cyrus-sasl.changes cyrus-sasl-saslauthd.changes
|
|
cp cyrus-sasl.changes cyrus-sasl-saslauthd.changes
|
|
cp cyrus-sasl.changes cyrus-sasl-bdb.changes
|
|
cp cyrus-sasl.changes cyrus-sasl-saslauthd-bdb.changes
|
|
SASLVERSION=$(awk '/^Version/ {print $2; exit;} {next;};' < cyrus-sasl.spec)
|
|
perl -pi -e "s/^Version:.*/Version: $SASLVERSION/" cyrus-sasl-saslauthd.spec
|
|
perl -pi -e "s/^Version:.*/Version: $SASLVERSION/" cyrus-sasl-bdb.spec
|
|
perl -pi -e "s/^Version:.*/Version: $SASLVERSION/" cyrus-sasl-saslauthd-bdb.spec
|
|
echo "Done."
|