commit b2a2937658073837f2ee86bfe3eb48d4362355585acfb1869cb1585bd8287088 Author: OBS User autobuild Date: Fri Aug 13 00:47:36 2010 +0000 Accepting request 45283 from Publishing Copy from Publishing/texmaker based on submit request 45283 from user oertel OBS-URL: https://build.opensuse.org/request/show/45283 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/texmaker?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/texmaker-2.0.tar.bz2 b/texmaker-2.0.tar.bz2 new file mode 100644 index 0000000..1a31abf --- /dev/null +++ b/texmaker-2.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca16ec07b00edbd8305a0486bbc8723638ba878c47956da428fbf129847386df +size 3221516 diff --git a/texmaker.changes b/texmaker.changes new file mode 100644 index 0000000..efddebb --- /dev/null +++ b/texmaker.changes @@ -0,0 +1,33 @@ +------------------------------------------------------------------- +Tue Aug 10 04:18:41 UTC 2010 - badshah400@gmail.com + +- Cleanup spec file and add detailed changes to changelog file + +------------------------------------------------------------------- +Sat Jul 31 04:25:56 UTC 2010 - badshah400@gmail.com + +- Update to upstream version 2.0 + - new: a built-in pdf viewer has been added + - new: option to the quick build command has been added, + which prevents texmaker from launching a new instance + of the dvi/ps/pdf viewer if the file is already opened. + - new: user can now directly create a new document by copying + an existing one. + - new: a new wizard to set the "user quick build command". + - the "tabular" assistant has been completed : + * option to add a vertical margin after a \hline + (for big math formulae) + * new options for the "p{}" column alignment + (center and left alignment : \usepackage{array} is required) + - the required blank space at the end of the metapost command + is verified if the user changed manually this command + - the "AMS align" tag has been added to the "Math" menu. + - bug-fix: the crash when texmaker is compiled with hunspell + and gcc 4.5 has been fixed. + +------------------------------------------------------------------- +Wed Jul 14 22:22:48 UTC 2010 - badshah400@gmail.com + +- Spec file cleanup +- Initial package with upstream version 1.9.9 + diff --git a/texmaker.spec b/texmaker.spec new file mode 100644 index 0000000..81b710c --- /dev/null +++ b/texmaker.spec @@ -0,0 +1,75 @@ +# +# spec file for package texmaker (Version 2.0) +# +# Copyright (c) 2010 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/ +# + + + +Name: texmaker +Summary: Free cross-platform LaTeX editor +Version: 2.0 +Release: 1 +Url: http://www.xm1math.net/texmaker/index.html +Source: texmaker-%{version}.tar.bz2 +License: GPLv2 +Group: Productivity/Publishing/TeX/Frontends +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: libqt4-devel >= 4.6.1 +BuildRequires: libpoppler-qt4-devel +BuildRequires: update-desktop-files +BuildRequires: libQtWebKit-devel +Requires: libQtWebKit4 >= 4.6.1 +Requires: texlive texlive-bin texlive-latex texlive-bin-latex texlive-context hunspell +# + +%description +Texmaker is a free LaTeX editor, that integrates many tools +needed to develop documents with LaTeX, in just one application. +Texmaker runs on unix, macosx and windows systems and is released +under the GPL license . +# +%prep +%setup -q +# + +%build +QTDIR=%{_libdir}/qt4 +PATH=$QTDIR/bin:$PATH +LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH +DYLD_LIBRARY_PATH=$QTDIR/lib:$DYLD_LIBRARY_PATH +export QTDIR PATH LD_LIBRARY_PATH DYLD_LIBRARY_PATH +PREFIX=$RPM_BUILD_ROOT/usr +qmake -unix texmaker.pro +make INSTALL_ROOT=$RPM_BUILD_ROOT +# + +%install +make INSTALL_ROOT=$RPM_BUILD_ROOT install +# +%suse_update_desktop_file %{name} + +%clean +rm -rf %{buildroot} +# + +%files +%defattr(-,root,root,-) +#%doc COPYING README +/usr/bin/texmaker +/usr/share/applications/texmaker.desktop +/usr/share/pixmaps/texmaker.png +/usr/share/texmaker/ + +%changelog