From c2fb2204b78dc2924d0875a429e1ab4d98a5110b Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:29 +0100 Subject: [PATCH 01/21] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- vim-latex.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/vim-latex.spec b/vim-latex.spec index 88d3b84..10e0cdb 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -7,7 +7,6 @@ Version: 1.10.0 #Release: 16.%{date}.%{commitcount}.%{githash}%{?dist} Release: 1%{?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/ @@ -40,7 +39,6 @@ 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. From d1907106731485f883a340c8663344d2f867989d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 11:18:14 +0000 Subject: [PATCH 02/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 10e0cdb..cf73119 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%{date}.%{commitcount}.%{githash}%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -80,6 +80,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 1.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Aug 10 2018 Jeremiah Mahler - 1.10.0-1 - Update to release 1.10.0 From 3ec27fea093177963aacb41baa3409de20d6065d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 9 Jul 2019 14:12:13 +0200 Subject: [PATCH 03/21] Use Python 3 --- ...0.0-Interpret-outline.py-by-Python-3.patch | 30 +++++++++++++++++++ vim-latex.spec | 8 ++++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 vim-latex-1.10.0-Interpret-outline.py-by-Python-3.patch diff --git a/vim-latex-1.10.0-Interpret-outline.py-by-Python-3.patch b/vim-latex-1.10.0-Interpret-outline.py-by-Python-3.patch new file mode 100644 index 0000000..f8e1bc3 --- /dev/null +++ b/vim-latex-1.10.0-Interpret-outline.py-by-Python-3.patch @@ -0,0 +1,30 @@ +From 40c0bfc2803daa86aa678c8e4b97a32f6da55161 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +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ř +--- + 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 + diff --git a/vim-latex.spec b/vim-latex.spec index cf73119..7737cbb 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%{date}.%{commitcount}.%{githash}%{?dist} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -14,6 +14,8 @@ 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 BuildArch: noarch # We need vim-common for dir ownership @@ -47,6 +49,7 @@ Documentation for vim-latex. gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0} #setup -q -n %{name}-%{version}-%{date}.%{commitcount}-%{githash} %setup -q -n %{name}-%{version} +%patch0 -p1 %build # build documentation @@ -80,6 +83,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Tue Jul 09 2019 Petr Pisar - 1.10.0-3 +- Use Python 3 (bug #1676189) + * Sun Feb 03 2019 Fedora Release Engineering - 1.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 6129a4fccd9f38f4254af5c3914a20f3eb6ce624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 9 Jul 2019 14:13:06 +0200 Subject: [PATCH 04/21] Escape spec comments correctly --- vim-latex.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vim-latex.spec b/vim-latex.spec index 7737cbb..6d4a7ae 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -4,13 +4,13 @@ Name: vim-latex Version: 1.10.0 -#Release: 16.%{date}.%{commitcount}.%{githash}%{?dist} +#Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} Release: 3%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # 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}-%{date}.%{commitcount}-%{githash}.tar.gz +#Source0: http://downloads.sourceforge.net/vim-latex/vim-latex-%%{version}-%%{date}.%%{commitcount}-%%{githash}.tar.gz 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 @@ -47,7 +47,7 @@ Documentation for vim-latex. %prep gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0} -#setup -q -n %{name}-%{version}-%{date}.%{commitcount}-%{githash} +#setup -q -n %%{name}-%%{version}-%%{date}.%%{commitcount}-%%{githash} %setup -q -n %{name}-%{version} %patch0 -p1 From fec2242fb029a671323c3f7fa5519261ee2c1639 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 03:00:27 +0000 Subject: [PATCH 05/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 6d4a7ae..96f9bf4 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -83,6 +83,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 1.10.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Tue Jul 09 2019 Petr Pisar - 1.10.0-3 - Use Python 3 (bug #1676189) From 5ad45222a80aa8d1a2bb3473903999628c7a13bb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 03:11:19 +0000 Subject: [PATCH 06/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 96f9bf4..8624733 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -83,6 +83,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 1.10.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 1.10.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From dab19303e725f6ad81af4d99acab34b9732948d5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:44:12 +0000 Subject: [PATCH 07/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 8624733..d5b0955 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -83,6 +83,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.10.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 1.10.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 6368b5f97330f242f4504a23b9ab97413a3d2613 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 00:42:53 +0000 Subject: [PATCH 08/21] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- vim-latex.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/vim-latex.spec b/vim-latex.spec index d5b0955..00c7aa7 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -26,6 +26,7 @@ Requires: tex(latex) Requires: xdvi # needed to build documentation +BuildRequires: make BuildRequires: libxslt BuildRequires: docbook-style-xsl BuildRequires: docbook-dtds From f026ed6a8c0459e6badc281eebad0dadad900bfd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:05:44 +0000 Subject: [PATCH 09/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 00c7aa7..6e76107 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -84,6 +84,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.10.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 1.10.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From d40f40d67ff7e574a015e16d788a96bfd3201d56 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:30:03 +0000 Subject: [PATCH 10/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 6e76107..6d2bb12 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 7%{?dist} +Release: 8%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -84,6 +84,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.10.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.10.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 22ee43fad52bc815ae9bf76e9d9ff6d84aaed842 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:00:29 +0000 Subject: [PATCH 11/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 6d2bb12..54d2dbf 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 8%{?dist} +Release: 9%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -84,6 +84,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 1.10.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 1.10.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 3b11f0d7c4c87fd44ac58de02f687687955fa696 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:55:11 +0000 Subject: [PATCH 12/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 54d2dbf..d31c72b 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -5,7 +5,7 @@ Name: vim-latex Version: 1.10.0 #Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 9%{?dist} +Release: 10%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -84,6 +84,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.10.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 1.10.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From bf98fc7b467556effc85b737b9a000f12526b140 Mon Sep 17 00:00:00 2001 From: Arthur Bols Date: Wed, 4 Jan 2023 13:41:17 +0100 Subject: [PATCH 13/21] Spec file cleanup --- vim-latex.spec | 52 +++++++++++++++++++++----------------------------- 1 file changed, 22 insertions(+), 30 deletions(-) diff --git a/vim-latex.spec b/vim-latex.spec index d31c72b..29a4ff8 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,16 +1,10 @@ -%global date 20141116 -%global commitcount 812 -%global githash gitd0f31c9 - Name: vim-latex Version: 1.10.0 -#Release: 16.%%{date}.%%{commitcount}.%%{githash}%%{?dist} -Release: 10%{?dist} +Release: 11%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # 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}-%%{date}.%%{commitcount}-%%{githash}.tar.gz 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 @@ -18,15 +12,18 @@ Source2: vim-latex-gpgkeys.gpg Patch0: vim-latex-1.10.0-Interpret-outline.py-by-Python-3.patch BuildArch: noarch -# We need vim-common for dir ownership -Requires: vim-common -# Needed for compilation (duh) +# We need vim-filesystem for dir ownership +Requires: vim-filesystem +# Needed for compilation Requires: tex(latex) # Needed for display Requires: xdvi -# needed to build documentation -BuildRequires: make +# Needed for vim macros +BuildRequires: vim-filesystem + +# Needed to build documentation +BuildRequires: make BuildRequires: libxslt BuildRequires: docbook-style-xsl BuildRequires: docbook-dtds @@ -47,36 +44,28 @@ Summary: Documentation for vim-latex Documentation for vim-latex. %prep -gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0} -#setup -q -n %%{name}-%%{version}-%%{date}.%%{commitcount}-%%{githash} -%setup -q -n %{name}-%{version} -%patch0 -p1 +%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}' +%autosetup -p1 %build # build documentation -make -C doc +%make_build -C doc %install -rm -rf %{buildroot} # Install files -make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bindir} PREFIX=%{_prefix} +%make_install VIMDIR=%{vimfiles_root} BINDIR=%{_bindir} PREFIX=%{_prefix} %files +%doc %{vimfiles_root}/doc/imaps.txt +%doc %{vimfiles_root}/doc/latex*.txt %{_bindir}/latextags %{_bindir}/ltags %{_datadir}/appdata/vim-latex.metainfo.xml -%{_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/remoteOpen.vim +%{vimfiles_root}/compiler/* +%{vimfiles_root}/ftplugin/* +%{vimfiles_root}/indent/* +%{vimfiles_root}/plugin/* %files doc @@ -84,6 +73,9 @@ make install DESTDIR=%{buildroot} VIMDIR=%{_datadir}/vim/vimfiles BINDIR=%{_bind %changelog +* Wed Jan 04 2023 Arthur Bols - 1.10.0-11 +- Spec file cleanup + * Sat Jul 23 2022 Fedora Release Engineering - 1.10.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 274403d4022b445d4d3e445e5ad942720566417e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:19:55 +0000 Subject: [PATCH 14/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 29a4ff8..8f4e007 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 1.10.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Jan 04 2023 Arthur Bols - 1.10.0-11 - Spec file cleanup From 2098ef19e3c590cb034ebb791c04db6dde77e374 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:40:50 +0000 Subject: [PATCH 15/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 8f4e007..f0dd931 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 1.10.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 1.10.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 8cbd57affe8d539a68588d9d6488412d48ff7839 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 07:51:03 +0000 Subject: [PATCH 16/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index f0dd931..47de9f2 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 1.10.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 1.10.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 87d250b628070877384a9fc566c9428c4956cd29 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:49:10 +0000 Subject: [PATCH 17/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 47de9f2..3111af9 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 1.10.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 1.10.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 122bb0ecf34dd34d392c0a3d4fa9535201daacec Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:23:42 +0000 Subject: [PATCH 18/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 3111af9..be48fb5 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 1.10.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 1.10.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 6bc2966ce729bc324baec2914a9ea8e75bf6592a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:06:46 +0000 Subject: [PATCH 19/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index be48fb5..050183a 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.10.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 1.10.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 6a27101a87d8d793a590a694beb44bb8141efcb9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 19:56:00 +0000 Subject: [PATCH 20/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index 050183a..d4da7ec 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 1.10.0-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 1.10.0-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 8d0f5791e18be990102ebdc00e82bbfb264644f5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:30:20 +0000 Subject: [PATCH 21/21] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- vim-latex.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-latex.spec b/vim-latex.spec index d4da7ec..47a634c 100644 --- a/vim-latex.spec +++ b/vim-latex.spec @@ -1,6 +1,6 @@ Name: vim-latex Version: 1.10.0 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Tools to view, edit and compile LaTeX documents in Vim # According to doc/latex-suite license is Vim charityware license License: Vim @@ -73,6 +73,9 @@ Documentation for vim-latex. %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 1.10.0-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 1.10.0-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild