Stanislav Brabec
b0374a4aa9
OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=259
38 lines
1.5 KiB
Bash
38 lines
1.5 KiB
Bash
#!/bin/sh
|
|
|
|
if test util-linux.spec -ot python-libmount.spec ; then
|
|
echo "util-linux.spec is older than python-libmount.spec. Please merge changes manually and call pre-checkin.sh again."
|
|
exit 1
|
|
fi
|
|
if test util-linux.changes -ot python-libmount.changes ; then
|
|
echo "util-linux.changes is older than python-libmount.changes. Please merge changes manually and call pre-checkin.sh again."
|
|
exit 1
|
|
fi
|
|
|
|
if test util-linux.spec -ot util-linux-systemd.spec ; then
|
|
echo "util-linux.spec is older than util-linux-systemd.spec. Please merge changes manually and call pre-checkin.sh again."
|
|
exit 1
|
|
fi
|
|
if test util-linux.changes -ot util-linux-systemd.changes ; then
|
|
echo "util-linux.changes is older than util-linux-systemd.changes. Please merge changes manually and call pre-checkin.sh again."
|
|
exit 1
|
|
fi
|
|
|
|
sed '
|
|
s/spec file for package util-linux/spec file for package python-libmount/;
|
|
/^Name:/s/util-linux/python-libmount/;
|
|
s/WARNING: After editing this file please/WARNING: Never edit this file!!! Edit util-linux.spec and/
|
|
' <util-linux.spec >python-libmount.spec
|
|
|
|
sed '
|
|
s/spec file for package util-linux/spec file for package util-linux-systemd/;
|
|
/^Name:/s/util-linux/util-linux-systemd/;
|
|
s/WARNING: After editing this file please/WARNING: Never edit this file!!! Edit util-linux.spec and/
|
|
' <util-linux.spec >util-linux-systemd.spec
|
|
|
|
cp -a util-linux.changes python-libmount.changes
|
|
|
|
cp -a util-linux.changes util-linux-systemd.changes
|
|
|
|
touch util-linux.spec util-linux.changes
|