Dominique Leuenberger
d27062d14f
update to 3.38.1 - TW should be ready OBS-URL: https://build.opensuse.org/request/show/842856 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/avahi?expand=0&rev=177
65 lines
2.2 KiB
Bash
65 lines
2.2 KiB
Bash
#!/bin/bash
|
|
|
|
# Autobuild doesn't support package names with macros. This script will update versions in package names.
|
|
|
|
ORIG_SPEC=${2%-mono}
|
|
ORIG_SPEC=${ORIG_SPEC%-qt5}
|
|
# Never update -mono file when it is already opened. It will break advanced build scripts:
|
|
if test "$2" != "$ORIG_SPEC" ; then
|
|
exit
|
|
fi
|
|
|
|
if ! test -f $1/$ORIG_SPEC.spec ; then
|
|
exit
|
|
fi
|
|
|
|
# Edit file to fit -mono build needs:
|
|
sed '
|
|
s/spec file for package avahi/spec file for package avahi-mono/;
|
|
s/build_core\ 1/build_core 0/;
|
|
s/build_mono\ 0/build_mono 1/;
|
|
s/^.ame:.*/&-mono/;
|
|
# No more needed.
|
|
#s/^..hangelog.*/& mono/;
|
|
/^# WARNING: After editing/,/^# to update spec files/d
|
|
/^%define[[:space:]]*_name/i \
|
|
# Do not edit this auto generated file! Edit avahi.spec.
|
|
' <$1/$ORIG_SPEC.spec >$1/$ORIG_SPEC-mono.spec.new
|
|
perl $1/update_spec.pl $1/$ORIG_SPEC-mono.spec.new attributes > $1/$ORIG_SPEC-mono.spec
|
|
rm $1/$ORIG_SPEC-mono.spec.new
|
|
|
|
# Edit file to fit -glib2 build needs:
|
|
sed '
|
|
s/spec file for package avahi/spec file for package avahi-glib2/;
|
|
s/build_core\ 1/build_core 0/;
|
|
s/build_glib2\ 0/build_glib2 1/;
|
|
s/^.ame:.*/&-glib2/;
|
|
# No more needed.
|
|
#s/^..hangelog.*/& qt/;
|
|
/^# WARNING: After editing/,/^# to update spec files/d
|
|
/^%define[[:space:]]*_name/i \
|
|
# Do not edit this auto generated file! Edit avahi.spec.
|
|
' <$1/$ORIG_SPEC.spec >$1/$ORIG_SPEC-glib2.spec.new
|
|
perl $1/update_spec.pl $1/$ORIG_SPEC-glib2.spec.new attributes > $1/$ORIG_SPEC-glib2.spec
|
|
rm $1/$ORIG_SPEC-glib2.spec.new
|
|
|
|
# Edit file to fit -qt5 build needs:
|
|
sed '
|
|
s/spec file for package avahi/spec file for package avahi-qt5/;
|
|
s/build_core\ 1/build_core 0/;
|
|
s/build_qt5\ 0/build_qt5 1/;
|
|
s/^.ame:.*/&-qt5/;
|
|
# No more needed.
|
|
#s/^..hangelog.*/& qt/;
|
|
/^# WARNING: After editing/,/^# to update spec files/d
|
|
/^%define[[:space:]]*_name/i \
|
|
# Do not edit this auto generated file! Edit avahi.spec.
|
|
' <$1/$ORIG_SPEC.spec >$1/$ORIG_SPEC-qt5.spec.new
|
|
perl $1/update_spec.pl $1/$ORIG_SPEC-qt5.spec.new attributes > $1/$ORIG_SPEC-qt5.spec
|
|
rm $1/$ORIG_SPEC-qt5.spec.new
|
|
|
|
# Not wanted for avahi:
|
|
#cp -a $1/$ORIG_SPEC.changes $1/$ORIG_SPEC-glib2.changes
|
|
#cp -a $1/$ORIG_SPEC.changes $1/$ORIG_SPEC-mono.changes
|
|
#cp -a $1/$ORIG_SPEC.changes $1/$ORIG_SPEC-qt5.changes
|