- Switch to ghost files to work without modifying filelist.
OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/libreoffice?expand=0&rev=108
This commit is contained in:
parent
800a06f5c7
commit
1eefbf5d13
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 2 14:42:45 UTC 2014 - tchvatal@suse.com
|
||||||
|
|
||||||
|
- Switch to ghost files to work without modifying filelist.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Feb 1 12:09:19 UTC 2014 - tchvatal@suse.com
|
Sat Feb 1 12:09:19 UTC 2014 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -1043,8 +1043,7 @@ grep -v '%{_libdir}/%{name}/help' file-lists/common_list.txt > tmplist
|
|||||||
mv tmplist file-lists/common_list.txt
|
mv tmplist file-lists/common_list.txt
|
||||||
echo "%dir %{_datadir}/%{name}/help" >>file-lists/common_list.txt
|
echo "%dir %{_datadir}/%{name}/help" >>file-lists/common_list.txt
|
||||||
mv %{buildroot}/%{_libdir}/%{name}/help/ %{buildroot}/%{_datadir}/%{name}/
|
mv %{buildroot}/%{_libdir}/%{name}/help/ %{buildroot}/%{_datadir}/%{name}/
|
||||||
ln -s %{_datadir}/%{name}/help/ %{buildroot}/%{_libdir}/%{name}/help
|
echo "%ghost %{_libdir}/%{name}/help" >> file-lists/common_list.txt
|
||||||
echo "%{_libdir}/%{name}/help" >> file-lists/common_list.txt
|
|
||||||
for file in idxcaption.xsl idxcontent.xsl main_transform.xsl ; do
|
for file in idxcaption.xsl idxcontent.xsl main_transform.xsl ; do
|
||||||
echo "%{_datadir}/%{name}/help/$file" >> file-lists/common_list.txt
|
echo "%{_datadir}/%{name}/help/$file" >> file-lists/common_list.txt
|
||||||
done
|
done
|
||||||
@ -1053,8 +1052,7 @@ mkdir -p %{buildroot}/%{_datadir}/%{name}/autotext/
|
|||||||
grep -v '%{_libdir}/%{name}/share/autotext' file-lists/common_list.txt > tmplist
|
grep -v '%{_libdir}/%{name}/share/autotext' file-lists/common_list.txt > tmplist
|
||||||
mv tmplist file-lists/common_list.txt
|
mv tmplist file-lists/common_list.txt
|
||||||
mv %{buildroot}/%{_libdir}/%{name}/share/autotext/ %{buildroot}/%{_datadir}/%{name}/share/
|
mv %{buildroot}/%{_libdir}/%{name}/share/autotext/ %{buildroot}/%{_datadir}/%{name}/share/
|
||||||
ln -s %{_datadir}/%{name}/share/autotext/ %{buildroot}/%{_libdir}/%{name}/share/autotext
|
echo "%ghost %{_libdir}/%{name}/share/autotext" >> file-lists/common_list.txt
|
||||||
echo "%{_libdir}/%{name}/share/autotext" >> file-lists/common_list.txt
|
|
||||||
|
|
||||||
################
|
################
|
||||||
# branding split
|
# branding split
|
||||||
@ -1112,13 +1110,21 @@ rm -rf %{buildroot}%{_libdir}/%{name}/readmes/
|
|||||||
# rather remove it (fdo#53006, fdo#51252, bnc#769448)
|
# rather remove it (fdo#53006, fdo#51252, bnc#769448)
|
||||||
# Remove after 12.2 is out of support/migration scope.
|
# Remove after 12.2 is out of support/migration scope.
|
||||||
bundled_cache="%{_libdir}/%{name}/share/prereg/bundled"
|
bundled_cache="%{_libdir}/%{name}/share/prereg/bundled"
|
||||||
test -d "$bundled_cache" && rm -rf "$bundled_cache"/* || true;
|
if [ -d "$bundled_cache" ]; then
|
||||||
|
rm -rf "$bundled_cache"/* || true
|
||||||
|
fi
|
||||||
# Directory to symlink is not working in RPM so workaround it
|
# Directory to symlink is not working in RPM so workaround it
|
||||||
# FIXME: Remove after 13.1 is out of update scope.
|
# FIXME: Remove after 13.1 is out of update scope.
|
||||||
helpdir="%{_libdir}/%{name}/help"
|
helpdir="%{_libdir}/%{name}/help"
|
||||||
autotextdir="%{_libdir}/%{name}/share/autotext"
|
autotextdir="%{_libdir}/%{name}/share/autotext"
|
||||||
test -d "$helpdir" && rm -rf "$helpdir" || true ;
|
if [ -d "$helpdir" ]; then
|
||||||
test -d "$autotextdir" && rm -rf "$autotextdir" || true ;
|
rm -rf "$helpdir" || true
|
||||||
|
ln -s "%{_datadir}/%{name}/help" "$helpdir"
|
||||||
|
fi
|
||||||
|
if [ -d "$autotextdir" ]; then
|
||||||
|
rm -rf "$autotextdir" || true
|
||||||
|
ln -s "%{_datadir}/%{name}/autotext" "$autotextdir"
|
||||||
|
fi
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
Loading…
x
Reference in New Issue
Block a user