[gedit-latex/f16] Add 3.1.1 version

Ignacio Casal Quinteiro nacho at fedoraproject.org
Sat Sep 24 22:04:47 UTC 2011


commit 97b673f28716f7c124f0434baaa8e123482107e0
Author: Ignacio Casal Quinteiro <icq at gnome.org>
Date:   Sun Sep 25 00:07:38 2011 +0200

    Add 3.1.1 version

 .gitignore       |    1 +
 gedit-latex.spec |  115 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources          |    1 +
 3 files changed, 117 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..8563788 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/gedit-latex-3.1.1.tar.xz
diff --git a/gedit-latex.spec b/gedit-latex.spec
new file mode 100644
index 0000000..c816075
--- /dev/null
+++ b/gedit-latex.spec
@@ -0,0 +1,115 @@
+Name:           gedit-latex
+Version:        3.1.1
+Release:        2%{?dist}
+Summary:        gedit plugin for composing and compiling LaTeX documents
+
+Group:          Applications/Editors
+License:        GPLv2+ and GPLv3+
+URL:            http://projects.gnome.org/gedit
+Source0:        ftp://ftp.gnome.org/pub/gnome/sources/gedit-latex/3.1/%{name}-%{version}.tar.xz
+
+BuildRequires:  gedit-devel
+BuildRequires:  gettext
+BuildRequires:  cairo-devel
+BuildRequires:  atk-devel
+BuildRequires:  intltool
+BuildRequires:  libpeas-devel
+BuildRequires:  gtk3-devel
+BuildRequires:  glib2-devel
+
+Requires:       pygobject3
+Requires:       texlive
+# For compiling utilities
+Requires:       rubber
+
+Obsoletes:      gedit-plugins-latex < %{version}-%{release}
+Provides:       gedit-plugins-latex = %{version}-%{release}
+
+
+%description
+This plugin assists you in composing and compiling LaTeX documents using gedit.
+
+# This plugin should be noarch but due to the fact that we need the plugin
+# installed in libdir we need it to be arch dependent. This makes us to not
+# require the debug package.
+%global debug_package %{nil}
+
+%prep
+%setup -q -n %{name}-%{version}
+sed -i -e '/^#!\/.*bin\/perl/d' latex/util/eps2png.pl
+chmod -x latex/util/eps2png.pl
+# Fixing the multilib path
+# https://sourceforge.net/tracker/index.php?func=detail&aid=2130308&group_id=204144&atid=988428
+sed -i -e 's|_CONFIG_FILENAME = "/etc/texmf/texmf.cnf"|_CONFIG_FILENAME = "/usr/share/texmf/web2c/texmf.cnf"|' latex/latex/environment.py
+sed -i -e 's|_DEFAULT_TEXMF_DIR = "/usr/share/texmf-texlive"|_DEFAULT_TEXMF_DIR = "/usr/share/texmf"|' latex/latex/environment.py
+
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+
+%install
+make install DESTDIR=$RPM_BUILD_ROOT
+%find_lang %name
+
+
+%postun
+if [ $1 -eq 0 ]; then
+  glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
+fi
+
+
+%posttrans
+glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
+
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%doc README NEWS COPYING
+%{_libdir}/gedit/plugins/*
+%{_datadir}/gedit/plugins/latex/
+%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.latex.gschema.xml
+
+%changelog
+* Tue Sep 20 2011 Ignacio Casal Quinteiro <icq at gnome.org> - 3.1.1-2
+- No need for debug package.
+
+* Tue Sep 13 2011 Ignacio Casal Quinteiro <icq at gnome.org> - 3.1.1-1
+- New upstream release 3.1.1.
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Apr 21 2010 Sergio Pascual <sergiopr at fedoraproject.org> - 0.2-1
+- New upstream source. Fixes bz #576598
+
+* Thu Mar 04 2010 Sergio Pascual <sergiopr at fedoraproject.org> - 0.2-0.5.rc3
+- New upstream source
+
+* Mon Nov 30 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.2-0.4.rc2
+- Using virtual requires to pull in the TeX packages (bz #542611)
+
+* Tue Nov 10 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.2-0.3.rc2
+- Adding a dependency on pypoppler (bz #509484)
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.2-0.2.rc2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Wed Jun 17 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.2-0.1rc2
+- New upstream source
+
+* Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.1.3.2-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Wed Oct 01 2008 Sergio Pascual <sergiopr at fedoraproject.org> 0.1.3.2-3
+- Disabled debuginfo package
+
+* Wed Oct 01 2008 Sergio Pascual <sergiopr at fedoraproject.org> 0.1.3.2-2
+- Adding %%clean
+- Empty file removed
+- Added empty %%build stage
+- Sholud be noarch, but gedit doesn't allow it, bug filled 
+
+* Fri Sep 26 2008 Sergio Pascual <sergiopr at fedoraproject.org> 0.1.3.2-1
+- Initial RPM file
diff --git a/sources b/sources
index e69de29..e3eb703 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+262276187329b810143bdd712117ba87  gedit-latex-3.1.1.tar.xz


More information about the scm-commits mailing list