Hello community, here is the log from the commit of package unoconv for openSUSE:Factory checked in at Fri May 27 11:43:35 CEST 2011. -------- New Changes file: --- /dev/null 2010-08-26 16:28:41.000000000 +0200 +++ /mounts/work_src_done/STABLE/unoconv/unoconv.changes 2011-04-17 01:27:15.000000000 +0200 @@ -0,0 +1,21 @@ +------------------------------------------------------------------- +Sat Apr 16 23:27:12 UTC 2011 - adam@mizerski.pl + +- added install-links + +------------------------------------------------------------------- +Thu Dec 2 22:00:00 UTC 2010 - adam@mizerski.pl + +- fixed LD_LIBRARY_PATH handling + +------------------------------------------------------------------- +Fri Oct 22 20:02:25 UTC 2010 - adam@mizerski.pl + +- update to 0.4 + +------------------------------------------------------------------- +Tue Apr 27 22:54:45 UTC 2010 - adam@mizerski.pl + +- added unoconv-0.3-ooo_path.patch +- some housekeeping in spec file + calling whatdependson for head-i586 New: ---- unoconv-0.4-LD_LIBRARY_PATH.patch unoconv-0.4.tar.bz2 unoconv.changes unoconv.spec ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ unoconv.spec ++++++ # # spec file for package unoconv # # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild Summary: Tool to convert between any document format supported by OpenOffice Name: unoconv Version: 0.4 Release: 1 License: GPL Group: Productivity/File utilities Url: http://dag.wieers.com/home-made/unoconv/ Source: http://dag.wieers.com/home-made/unoconv/%{name}-%{version}.tar.bz2 # PATCH-FIX-UPSTREAM unoconv-0.4-LD_LIBRARY_PATH.patch bnc#657140 adam@mizerski.pl -- fix LD_LIBRARY_PATH handling. fixed in svn rev9235, so it should be in v0.5 Patch0: %{name}-0.4-LD_LIBRARY_PATH.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch Requires: python >= 2.0 Requires: OpenOffice_org-pyuno >= 2.0 %description unoconv converts between any document format that OpenOffice understands. It uses OpenOffice's UNO bindings for non-interactive conversion of documents. Supported document formats include: Open Document Text (.odt), Open Document Draw (.odd), Open Document Presentation (.odp), Open Document calc (.odc), MS Word (.doc), MS PowerPoint (.pps/.ppt), MS Excel (.xls), MS Office Open/OOXML (.xml), Portable Document Format (.pdf), DocBook (.xml), LaTeX (.ltx), HTML, XHTML, RTF, Docbook (.xml), GIF, PNG, JPG, SVG, BMP, EPS and many more... %prep %setup -q %patch0 -p1 %build %install %__make DESTDIR=%{buildroot} install %__make DESTDIR=%{buildroot} install-links %clean %__rm -rf %{buildroot} %files %defattr(-, root, root, 0755) %doc AUTHORS ChangeLog COPYING README TODO WISHLIST docs/*.txt %doc %{_mandir}/man1/unoconv.1* %{_bindir}/* %changelog ++++++ unoconv-0.4-LD_LIBRARY_PATH.patch ++++++ --- unoconv-0.4/unoconv 2010-10-20 04:56:26.000000000 -0500 +++ unoconv-svn/unoconv 2010-11-03 12:13:09.000000000 -0500 @@ -64,7 +64,10 @@ sys.path.append(oolibpath) import uno, unohelper ### Export an environment that OpenOffice is pleased to work with - os.environ['LD_LIBRARY_PATH'] = oolibpath + os.pathsep + os.environ['LD_LIBRARY_PATH'] + if 'LD_LIBRARY_PATH' in os.environ: + os.environ['LD_LIBRARY_PATH'] = oolibpath + os.pathsep + os.environ['LD_LIBRARY_PATH'] + else: + os.environ['LD_LIBRARY_PATH'] = oolibpath break except ImportError, e: sys.path.remove(oolibpath) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org