public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/perl-LaTeX-ToUnicode] f43: 1.94 bump
Date: Tue, 23 Jun 2026 08:56:21 GMT	[thread overview]
Message-ID: <178220498154.1.11048103192023966810.rpms-perl-LaTeX-ToUnicode-482d4d1f6876@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/perl-LaTeX-ToUnicode
Branch : f43
Commit : 482d4d1f68766ca273d1c776693da0deef6f6e32
Author : Petr Písař <ppisar@redhat.com>
Date   : 2026-06-23T10:55:47+02:00
Stats  : +18/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/perl-LaTeX-ToUnicode/c/482d4d1f68766ca273d1c776693da0deef6f6e32?branch=f43

Log:
1.94 bump

---
diff --git a/.gitignore b/.gitignore
index cd9d878..d8367bc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
 /LaTeX-ToUnicode-0.55.tar.gz
 /LaTeX-ToUnicode-1.92.tar.gz
 /LaTeX-ToUnicode-1.93.tar.gz
+/LaTeX-ToUnicode-1.94.tar.gz

diff --git a/perl-LaTeX-ToUnicode.spec b/perl-LaTeX-ToUnicode.spec
index f5e81e5..ab12942 100644
--- a/perl-LaTeX-ToUnicode.spec
+++ b/perl-LaTeX-ToUnicode.spec
@@ -1,7 +1,11 @@
 Name:           perl-LaTeX-ToUnicode
-Version:        1.93
+Version:        1.94
 Release:        1%{?dist}
 Summary:        Convert LaTeX commands to Unicode
+# latex-tounicode.pdf is concatenated ltx2unitxt.pdf and
+#                     lib/LaTeX/ToUnicode.pm POD.
+# ltx2unitxt.pdf is generated from ltx2unitxt.1.
+# ltx2unitxt.1 is generated from script/ltx2unitxt.
 License:        GPL-1.0-or-later OR Artistic-1.0-Perl
 URL:            https://metacpan.org/release/LaTeX-ToUnicode
 Source0:        https://cpan.metacpan.org/authors/id/B/BO/BORISV/LaTeX-ToUnicode-%{version}.tar.gz
@@ -10,9 +14,11 @@ Source0:        https://cpan.metacpan.org/authors/id/B/BO/BORISV/LaTeX-ToUnicode
 Patch0:         LaTeX-ToUnicode-0.53-Do-not-add-bogus-paths-to-INC.patch
 BuildArch:      noarch
 BuildRequires:  coreutils
+BuildRequires:  help2man
 BuildRequires:  make
 BuildRequires:  perl-generators
 BuildRequires:  perl-interpreter
+BuildRequires:  perl(:VERSION) >= 5.8.0
 BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
@@ -42,6 +48,8 @@ with "%{_libexecdir}/%{name}/test".
 
 %prep
 %autosetup -p1 -n LaTeX-ToUnicode-%{version}
+# Remove generated files
+rm latex-tounicode.pdf ltx2unitxt.pdf ltx2unitxt.1
 # Remove always skipped tests
 for F in t/release-pod-coverage.t t/release-pod-syntax.t t/release-synopsis.t; do
     rm "$F"
@@ -51,10 +59,13 @@ done
 %build
 perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
 %{make_build}
+PERL5LIB=lib %{make_build} -f Makefile.TDS ltx2unitxt.1
 
 %install
 %{make_install}
 %{_fixperms} %{buildroot}/*
+# Install regenerated documentation
+install -m 0644 -D -t %{buildroot}/%{_mandir}/man1 ltx2unitxt.1
 # Install tests
 mkdir -p %{buildroot}%{_libexecdir}/%{name}
 cp -a t %{buildroot}%{_libexecdir}/%{name}
@@ -75,6 +86,7 @@ make test
 %{perl_vendorlib}/LaTeX/ToUnicode
 %{perl_vendorlib}/LaTeX/ToUnicode.pm
 %{_bindir}/ltx2unitxt
+%{_mandir}/man1/ltx2unitxt.*
 %{_mandir}/man3/LaTeX::ToUnicode.*
 %{_mandir}/man3/LaTeX::ToUnicode::*
 
@@ -82,6 +94,9 @@ make test
 %{_libexecdir}/%{name}
 
 %changelog
+* Tue Jun 23 2026 Petr Pisar <ppisar@redhat.com> - 1.94-1
+- 1.94 bump
+
 * Mon Sep 01 2025 Petr Pisar <ppisar@redhat.com> - 1.93-1
 - 1.93 bump
 

diff --git a/sources b/sources
index cab9c14..697acc7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (LaTeX-ToUnicode-1.93.tar.gz) = ab38f3e8d76f1cb5ece0f09a5b9be645abd404dcc3226a83e9bae1c772feb06433f1c0facd58748baa6e8e52f471dd8dbe3a33e10dad85066ce658417d735020
+SHA512 (LaTeX-ToUnicode-1.94.tar.gz) = f8a41de672e5e32366a0ea7801f040b0e979a33be54760d3c27b970306c0e36d7893eb4899dfe6c22aa7d6428aa241fd87908f448735a68dfeb0804faddc99a3

                 reply	other threads:[~2026-06-23  8:56 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178220498154.1.11048103192023966810.rpms-perl-LaTeX-ToUnicode-482d4d1f6876@fedoraproject.org \
    --to=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox