Compare commits
No commits in common. "rawhide" and "f20" have entirely different histories.
5 changed files with 36 additions and 142 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,7 +1,3 @@
|
|||
/vim-latex-1.8.23-20121116.784-git1c17b37.tar.gz
|
||||
/vim-latex-1.8.23-20130116.788-git2ef9956.tar.gz
|
||||
/vim-latex-1.8.23-20141116.812-gitd0f31c9.tar.gz
|
||||
/vim-latex-1.9.0.tar.gz.asc
|
||||
/vim-latex-1.9.0.tar.gz
|
||||
/vim-latex-1.10.0.tar.gz.asc
|
||||
/vim-latex-1.10.0.tar.gz
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1,2 +1 @@
|
|||
SHA512 (vim-latex-1.10.0.tar.gz) = 1d22b675c124e402a280dcc3a675b49a92fb9f4d42efdda0ea97be26379cd6c023589a35e165f4231524d853380e22411901bfbcc98f171c938ba800821a1213
|
||||
SHA512 (vim-latex-1.10.0.tar.gz.asc) = 5515df76cc24cbe7bcb61d371b16b2dc55c30fb6b30a9c040881212c23c6e2d448e0989c1f1f3f3aaa5942c119ac4a4c984e020672c805529b97b36c72ba4d5f
|
||||
c7662fd5ccad9912655ca585626ed515 vim-latex-1.8.23-20141116.812-gitd0f31c9.tar.gz
|
||||
|
|
|
|||
|
|
@ -1,30 +0,0 @@
|
|||
From 40c0bfc2803daa86aa678c8e4b97a32f6da55161 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||
Date: Tue, 9 Jul 2019 14:07:27 +0200
|
||||
Subject: [PATCH] Interpret outline.py by Python 3
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Fedora deprecated Python 2. The script seems working with both
|
||||
Pythons. Because we need to choose a one, use Python 3.
|
||||
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1676189
|
||||
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||
---
|
||||
ftplugin/latex-suite/outline.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/ftplugin/latex-suite/outline.py b/ftplugin/latex-suite/outline.py
|
||||
index ed72b34..475910d 100755
|
||||
--- a/ftplugin/latex-suite/outline.py
|
||||
+++ b/ftplugin/latex-suite/outline.py
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/python3
|
||||
|
||||
# Part of Latex-Suite
|
||||
#
|
||||
--
|
||||
2.20.1
|
||||
|
||||
Binary file not shown.
141
vim-latex.spec
141
vim-latex.spec
|
|
@ -1,36 +1,31 @@
|
|||
%global date 20141116
|
||||
%global commitcount 812
|
||||
%global githash gitd0f31c9
|
||||
|
||||
Name: vim-latex
|
||||
Version: 1.10.0
|
||||
Release: 19%{?dist}
|
||||
Version: 1.8.23
|
||||
Release: 14.%{date}.%{commitcount}.%{githash}%{?dist}
|
||||
Summary: Tools to view, edit and compile LaTeX documents in Vim
|
||||
Group: Applications/Editors
|
||||
# According to doc/latex-suite license is Vim charityware license
|
||||
License: Vim
|
||||
URL: http://vim-latex.sourceforge.net/
|
||||
Source0: http://downloads.sourceforge.net/vim-latex/vim-latex-%{version}.tar.gz
|
||||
Source1: http://downloads.sourceforge.net/vim-latex/vim-latex-%{version}.tar.gz.asc
|
||||
Source2: vim-latex-gpgkeys.gpg
|
||||
# Use Python 3, bug #1676189
|
||||
Patch0: vim-latex-1.10.0-Interpret-outline.py-by-Python-3.patch
|
||||
Source0: http://downloads.sourceforge.net/vim-latex/vim-latex-%{version}-%{date}.%{commitcount}-%{githash}.tar.gz
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
BuildArch: noarch
|
||||
|
||||
# We need vim-filesystem for dir ownership
|
||||
Requires: vim-filesystem
|
||||
# Needed for compilation
|
||||
# We need vim-common for dir ownership
|
||||
Requires: vim-common
|
||||
# Needed for compilation (duh)
|
||||
Requires: tex(latex)
|
||||
# Needed for display
|
||||
Requires: xdvi
|
||||
|
||||
# Needed for vim macros
|
||||
BuildRequires: vim-filesystem
|
||||
|
||||
# Needed to build documentation
|
||||
BuildRequires: make
|
||||
# needed to build documentation
|
||||
BuildRequires: libxslt
|
||||
BuildRequires: docbook-style-xsl
|
||||
BuildRequires: docbook-dtds
|
||||
|
||||
# For source verification with gpgv
|
||||
BuildRequires: gnupg2
|
||||
|
||||
%description
|
||||
A comprehensive set of tools to view, edit and compile LaTeX documents without
|
||||
needing to ever quit Vim. Together, they provide tools starting from macros to
|
||||
|
|
@ -39,118 +34,52 @@ speed up editing LaTeX documents to compiling TeX files to forward searching
|
|||
|
||||
%package doc
|
||||
Summary: Documentation for vim-latex
|
||||
Group: Documentation
|
||||
|
||||
%description doc
|
||||
Documentation for vim-latex.
|
||||
|
||||
%prep
|
||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||
%autosetup -p1
|
||||
%setup -q -n %{name}-%{version}-%{date}.%{commitcount}-%{githash}
|
||||
|
||||
%build
|
||||
# build documentation
|
||||
%make_build -C doc
|
||||
make -C doc
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
# Install files
|
||||
%make_install VIMDIR=%{vimfiles_root} BINDIR=%{_bindir} PREFIX=%{_prefix}
|
||||
make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bindir} PREFIX=%{_prefix}
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%doc %{vimfiles_root}/doc/imaps.txt
|
||||
%doc %{vimfiles_root}/doc/latex*.txt
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/latextags
|
||||
%{_bindir}/ltags
|
||||
%{_datadir}/appdata/vim-latex.metainfo.xml
|
||||
%{vimfiles_root}/compiler/*
|
||||
%{vimfiles_root}/ftplugin/*
|
||||
%{vimfiles_root}/indent/*
|
||||
%{vimfiles_root}/plugin/*
|
||||
%{_datadir}/vim/vimfiles/compiler/tex.vim
|
||||
%doc %{_datadir}/vim/vimfiles/doc/imaps.txt
|
||||
%doc %{_datadir}/vim/vimfiles/doc/latex*.txt
|
||||
%{_datadir}/vim/vimfiles/ftplugin/bib_latexSuite.vim
|
||||
%{_datadir}/vim/vimfiles/ftplugin/tex_latexSuite.vim
|
||||
%{_datadir}/vim/vimfiles/ftplugin/latex-suite/
|
||||
%{_datadir}/vim/vimfiles/indent/tex.vim
|
||||
%{_datadir}/vim/vimfiles/plugin/SyntaxFolds.vim
|
||||
%{_datadir}/vim/vimfiles/plugin/filebrowser.vim
|
||||
%{_datadir}/vim/vimfiles/plugin/imaps.vim
|
||||
%{_datadir}/vim/vimfiles/plugin/libList.vim
|
||||
%{_datadir}/vim/vimfiles/plugin/remoteOpen.vim
|
||||
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
%doc doc/latex-suite doc/latex-suite-quickstart
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Jan 04 2023 Arthur Bols <arthur@bols.dev> - 1.10.0-11
|
||||
- Spec file cleanup
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Tue Jul 09 2019 Petr Pisar <ppisar@redhat.com> - 1.10.0-3
|
||||
- Use Python 3 (bug #1676189)
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Aug 10 2018 Jeremiah Mahler <jmmahler@gmail.com> - 1.10.0-1
|
||||
- Update to release 1.10.0
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Sep 23 2016 Till Maas <opensource@till.name> - 1.9.0-1
|
||||
- Update to new release
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.23-16.20141116.812.gitd0f31c9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.23-15.20141116.812.gitd0f31c9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sun Nov 16 2014 Till Maas <opensource@till.name> - 1.8.23-14.20141116.812.gitd0f31c9
|
||||
- Update to new release
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue