Toshaan Bharvani
2 years ago
commit
084c3a8747
4 changed files with 529 additions and 0 deletions
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
From 223b0aab7b431dc1d1d4eb5fb12db5ae30463c5b Mon Sep 17 00:00:00 2001 |
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> |
||||
Date: Tue, 18 May 2021 12:00:07 +0200 |
||||
Subject: [PATCH] Normalize shebangs |
||||
MIME-Version: 1.0 |
||||
Content-Type: text/plain; charset=UTF-8 |
||||
Content-Transfer-Encoding: 8bit |
||||
|
||||
Signed-off-by: Petr Písař <ppisar@redhat.com> |
||||
--- |
||||
bin/biber | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git a/bin/biber b/bin/biber |
||||
index 873550b..48b4419 100755 |
||||
--- a/bin/biber |
||||
+++ b/bin/biber |
||||
@@ -1,4 +1,4 @@ |
||||
-#!/usr/bin/env perl |
||||
+#!perl |
||||
|
||||
use v5.24; |
||||
use strict; |
||||
-- |
||||
2.26.3 |
||||
|
@ -0,0 +1,48 @@
@@ -0,0 +1,48 @@
|
||||
From d9e961710074d266ad6bdf395c98868d91952088 Mon Sep 17 00:00:00 2001 |
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> |
||||
Date: Wed, 25 May 2022 12:41:59 +0200 |
||||
Subject: [PATCH] Adapt to Perl 5.36 |
||||
MIME-Version: 1.0 |
||||
Content-Type: text/plain; charset=UTF-8 |
||||
Content-Transfer-Encoding: 8bit |
||||
|
||||
A developmental release of Perl 5.36.0 fails to run tests with: |
||||
|
||||
$ perl -Ilib t/basic-misc.t |
||||
1..72 |
||||
Can't modify undef operator in scalar assignment at lib/Biber/Section.pm line 433, near "undef;" |
||||
Compilation failed in require at lib/Biber.pm line 24. |
||||
BEGIN failed--compilation aborted at lib/Biber.pm line 24. |
||||
Compilation failed in require at t/basic-misc.t line 11. |
||||
BEGIN failed--compilation aborted at t/basic-misc.t line 11. |
||||
# Looks like your test exited with 255 before it could output anything. |
||||
|
||||
This is because of a missing semicolon between commands in |
||||
del_everykeys(). The new perl is more strict and raises a compile-time |
||||
error: |
||||
|
||||
$ perl -e '$a = undef $b = undef;' |
||||
Can't modify undef operator in scalar assignment at -e line 1, near "undef;" |
||||
Execution of -e aborted due to compilation errors. |
||||
|
||||
Signed-off-by: Petr Písař <ppisar@redhat.com> |
||||
--- |
||||
lib/Biber/Section.pm | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git a/lib/Biber/Section.pm b/lib/Biber/Section.pm |
||||
index 03ed69a5..a78942f5 100644 |
||||
--- a/lib/Biber/Section.pm |
||||
+++ b/lib/Biber/Section.pm |
||||
@@ -429,7 +429,7 @@ sub add_everykey { |
||||
|
||||
sub del_everykeys { |
||||
my $self = shift; |
||||
- $self->{everykey} = undef |
||||
+ $self->{everykey} = undef; |
||||
$self->{everykey_lc} = undef; |
||||
return; |
||||
} |
||||
-- |
||||
2.35.3 |
||||
|
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
From 24e914edf76bde592f4a72673465e9d8d6bd9f6b Mon Sep 17 00:00:00 2001 |
||||
From: "Colin B. Macdonald" <cbm@m.fsf.org> |
||||
Date: Wed, 9 Dec 2015 14:55:37 -0800 |
||||
Subject: [PATCH] Drop unneeded builddeps |
||||
|
||||
These were noted during a package review for Fedora: |
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1165620#c13 |
||||
--- |
||||
Build.PL | 5 +---- |
||||
1 file changed, 1 insertion(+), 4 deletions(-) |
||||
|
||||
diff --git a/Build.PL b/Build.PL |
||||
index d84786d..e97cea5 100644 |
||||
--- a/Build.PL |
||||
+++ b/Build.PL |
||||
@@ -36,10 +36,7 @@ my $builder = $class->new( |
||||
}, |
||||
add_to_cleanup => [ 'biber-*' ], |
||||
configure_requires => { 'Module::Build' => 0.38 }, |
||||
- build_requires => { |
||||
- 'Config::AutoConf' => '0.15', |
||||
- 'ExtUtils::LibBuilder' => '0.02' |
||||
- }, |
||||
+ build_requires => { }, |
||||
requires => { |
||||
'autovivification' => 0, |
||||
'Class::Accessor' => 0, |
@ -0,0 +1,428 @@
@@ -0,0 +1,428 @@
|
||||
# Perform developer tests which exhibit a biber executable |
||||
%bcond_without biber_enables_extra_test |
||||
|
||||
Name: biber |
||||
# Export $BCF_VERSION from lib/Biber/Constants.pm, bug #2048536 |
||||
%define bcfversion 3.8 |
||||
Version: 2.17 |
||||
Release: 4%{?dist} |
||||
Summary: Command-line bibliographic manager, BibTeX replacement |
||||
# bin/biber: Artistic 2.0 |
||||
# data/texmap.xsl: Artistic 2.0 |
||||
# doc/biber.tex: Artistic 2.0 |
||||
# lib/Biber.pm: Artistic 2.0 |
||||
# lib/Biber/LaTeX/recode_data.xml: Artistic 2.0 |
||||
# README.md: Artistic 2.0 |
||||
## Not in any binary package |
||||
# Build.PL: GPL+ or Artistic |
||||
## Not used at all |
||||
# etc/bibtex.g: GPLv2+ |
||||
# etc/parser.dlg: GPLv2+ (generated from etc/bibtex.g) |
||||
# etc/tugboat.bib: Public Domain |
||||
License: (GPL+ or Artistic 2.0) and Artistic 2.0 |
||||
URL: http://biblatex-biber.sourceforge.net/ |
||||
Source0: https://github.com/plk/biber/archive/v%{version}.tar.gz |
||||
# not appropriate for upstream: http://github.com/plk/biber/pull/97 |
||||
Patch0: biber-drop-builddeps-for-monolithic-build.patch |
||||
# Do not use /bin/env in shebangs |
||||
Patch1: biber-2.16-Normalize-shebangs.patch |
||||
# Adapt to Perl 5.36, <https://github.com/plk/biber/pull/411>, |
||||
# proposed to the upstream |
||||
Patch2: biber-2.17-Adapt-to-Perl-5.36.patch |
||||
BuildArch: noarch |
||||
BuildRequires: coreutils |
||||
BuildRequires: perl-interpreter |
||||
BuildRequires: perl-generators |
||||
BuildRequires: perl(Config) |
||||
BuildRequires: perl(Module::Build) |
||||
BuildRequires: perl(strict) |
||||
BuildRequires: perl(utf8) |
||||
BuildRequires: perl(warnings) |
||||
# Run-time: |
||||
BuildRequires: perl(:VERSION) >= 5.24 |
||||
BuildRequires: perl(autovivification) |
||||
BuildRequires: perl(Business::ISBN) |
||||
BuildRequires: perl(Business::ISMN) |
||||
BuildRequires: perl(Business::ISSN) |
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(Class::Accessor) |
||||
BuildRequires: perl(constant) |
||||
BuildRequires: perl(Cwd) |
||||
BuildRequires: perl(Data::Compare) |
||||
BuildRequires: perl(Data::Dump) |
||||
BuildRequires: perl(Data::Uniqid) |
||||
BuildRequires: perl(DateTime) |
||||
BuildRequires: perl(DateTime::Calendar::Julian) |
||||
BuildRequires: perl(DateTime::Format::Builder) |
||||
BuildRequires: perl(DateTime::TimeZone) |
||||
BuildRequires: perl(Digest::MD5) |
||||
BuildRequires: perl(Encode) |
||||
BuildRequires: perl(Encode::Alias) |
||||
BuildRequires: perl(Exporter) |
||||
BuildRequires: perl(File::Copy) |
||||
# File::DosGlob not used on Linux |
||||
BuildRequires: perl(File::Find) |
||||
BuildRequires: perl(File::Slurper) |
||||
BuildRequires: perl(File::Spec) |
||||
BuildRequires: perl(File::Temp) |
||||
%if %{with biber_enables_extra_test} |
||||
BuildRequires: perl(Getopt::Long) |
||||
%endif |
||||
BuildRequires: perl(IO::File) |
||||
BuildRequires: perl(IO::String) |
||||
BuildRequires: perl(IPC::Cmd) |
||||
BuildRequires: perl(IPC::Run3) |
||||
BuildRequires: perl(Lingua::Translit) >= 0.28 |
||||
BuildRequires: perl(List::AllUtils) |
||||
BuildRequires: perl(List::Util) |
||||
BuildRequires: perl(locale) |
||||
BuildRequires: perl(Log::Log4perl) |
||||
BuildRequires: perl(Log::Log4perl::Appender::File) |
||||
BuildRequires: perl(Log::Log4perl::Appender::Screen) |
||||
BuildRequires: perl(Log::Log4perl::Layout::PatternLayout) |
||||
BuildRequires: perl(Log::Log4perl::Layout::SimpleLayout) |
||||
%if %{with biber_enables_extra_test} |
||||
BuildRequires: perl(Log::Log4perl::Level) |
||||
%endif |
||||
BuildRequires: perl(LWP::Protocol::https) |
||||
BuildRequires: perl(LWP::UserAgent) |
||||
# Mozilla::CA is not helpful |
||||
BuildRequires: perl(parent) |
||||
BuildRequires: perl(Parse::RecDescent) |
||||
%if %{with biber_enables_extra_test} |
||||
BuildRequires: perl(Pod::Usage) |
||||
%endif |
||||
BuildRequires: perl(POSIX) |
||||
BuildRequires: perl(Regexp::Common) |
||||
BuildRequires: perl(Scalar::Util) |
||||
BuildRequires: perl(sigtrap) |
||||
BuildRequires: perl(Sort::Key) |
||||
BuildRequires: perl(Storable) |
||||
BuildRequires: perl(Text::BibTeX) >= 0.88 |
||||
BuildRequires: perl(Text::BibTeX::Name) |
||||
BuildRequires: perl(Text::BibTeX::NameFormat) |
||||
BuildRequires: perl(Text::CSV) |
||||
BuildRequires: perl(Text::Roman) |
||||
BuildRequires: perl(Text::Wrap) |
||||
# Unicode::Collate::Locale version from Unicode::Collate in Build.PL |
||||
BuildRequires: perl(Unicode::Collate::Locale) >= 1.29 |
||||
BuildRequires: perl(Unicode::GCString) |
||||
BuildRequires: perl(Unicode::Normalize) >= 1.26 |
||||
BuildRequires: perl(Unicode::UCD) |
||||
BuildRequires: perl(URI) |
||||
BuildRequires: perl(vars) |
||||
# Win32* not used on Linux |
||||
BuildRequires: perl(XML::LibXML) |
||||
BuildRequires: perl(XML::LibXML::Simple) |
||||
BuildRequires: perl(XML::LibXSLT) |
||||
BuildRequires: perl(XML::Writer) |
||||
# Tests: |
||||
BuildRequires: perl(Capture::Tiny) |
||||
BuildRequires: perl(File::Which) |
||||
BuildRequires: perl(open) |
||||
BuildRequires: perl(Test::Differences) |
||||
BuildRequires: perl(Test::More) |
||||
# Optional tests: |
||||
# texlive-plain not helpful; The only "plain.tex" usage in t/utils.t checks |
||||
# that it exist on a file system. |
||||
# It would also create a build cycle: texlive-plain → texlive-biblatex → biber |
||||
# Extra tests: |
||||
%if %{with biber_enables_extra_test} |
||||
BuildRequires: perl(File::Compare) |
||||
%endif |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) |
||||
Requires: perl(autovivification) |
||||
Requires: perl(Business::ISBN) |
||||
Requires: perl(Business::ISMN) |
||||
Requires: perl(Business::ISSN) |
||||
Requires: perl(Lingua::Translit) >= 0.28 |
||||
Requires: perl(LWP::UserAgent) |
||||
Requires: perl(LWP::Protocol::https) |
||||
Requires: perl(Text::BibTeX) >= 0.88 |
||||
# Unicode::Collate::Locale version from Unicode::Collate in Build.PL |
||||
Requires: perl(Unicode::Collate::Locale) >= 1.29 |
||||
Requires: perl(XML::LibXSLT) |
||||
# Biber does not use biblatex, but it requires a compatible version of |
||||
# a biblatex control file (BCF) which is produced by biblatex. See @bcfversion |
||||
# definition in /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty |
||||
# and a corresponding $BCF_VERSION in lib/Biber/Constants.pm. Unfortunally, |
||||
# Biber supports only one version of BCF. See "Compatibility Matrix" in |
||||
# doc/biber.tex. |
||||
# Because Biber does not use texlive-biblatex, Biber cannot Require it's exact |
||||
# version. Because it is expensive to rebuild texlive, it's not good to |
||||
# Require a specific biber version from texlive-biblatex. |
||||
# Hence I proposed a bcfversion dependency which both packages can agree on |
||||
# (bug #2048536). |
||||
Provides: bcfversion = %{bcfversion} |
||||
# Version at least the main module |
||||
Provides: perl(Biber) = %{version} |
||||
|
||||
# Remove under-specified dependencies |
||||
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\((Text::BibTeX|Unicode::Collate::Locale)\\)$ |
||||
%global __provides_exclude %{?__provides_exclude:%{__provides_exclude}|}^perl\\(Biber\\)$ |
||||
|
||||
%description |
||||
Biber is a command-line tool for dealing with bibliographic databases. |
||||
Biber offers a large superset of legacy BibTeX (texlive-bibtex) |
||||
functionality. It is often used with the popular BibLaTeX package |
||||
(texlive-biblatex), where it is required for some features. |
||||
|
||||
|
||||
%package tests |
||||
Summary: Tests for %{name} |
||||
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} |
||||
Requires: coreutils |
||||
Requires: perl-Test-Harness |
||||
|
||||
%description tests |
||||
Tests from %{name}. Execute them |
||||
with "%{_libexecdir}/%{name}/test". |
||||
|
||||
|
||||
%prep |
||||
%autosetup -p1 -n biber-%{version} |
||||
# t/remote-files.t needs the Internet |
||||
for F in \ |
||||
t/remote-files.t \ |
||||
%if !%{with biber_enables_extra_test} |
||||
t/full-*.t \ |
||||
%endif |
||||
; do |
||||
rm "$F"; |
||||
perl -i -ne 'print $_ unless m{\A\Q'"$F"'\E\b}' MANIFEST |
||||
done |
||||
# Help generators to recognize Perl scripts |
||||
for F in t/*.t; do |
||||
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!\s*perl}{$Config{startperl}}' "$F" |
||||
chmod +x "$F" |
||||
done |
||||
|
||||
|
||||
%build |
||||
perl Build.PL installdirs=vendor |
||||
./Build |
||||
|
||||
|
||||
%install |
||||
./Build install destdir=%{buildroot} create_packlist=0 |
||||
%{_fixperms} %{buildroot}/* |
||||
# Install tests |
||||
mkdir -p %{buildroot}%{_libexecdir}/%{name} |
||||
cp -a t %{buildroot}%{_libexecdir}/%{name} |
||||
mkdir -p %{buildroot}%{_libexecdir}/%{name}/data/schemata |
||||
ln -s "$(realpath --relative-to \ |
||||
%{buildroot}%{_libexecdir}/%{name}/data \ |
||||
%{buildroot}%{perl_vendorlib}/Biber/biber-tool.conf)" \ |
||||
%{buildroot}%{_libexecdir}/%{name}/data |
||||
for F in {bcf,config}.{rnc,rng}; do |
||||
# Keep absolute symlinls. Relative ones break the tests. |
||||
ln -s %{perl_vendorlib}/Biber/"$F" \ |
||||
%{buildroot}%{_libexecdir}/%{name}/data/schemata |
||||
done |
||||
%if %{with biber_enables_extra_test} |
||||
mkdir %{buildroot}%{_libexecdir}/%{name}/bin |
||||
ln -s "$(realpath --relative-to \ |
||||
%{buildroot}%{_libexecdir}/%{name}/bin \ |
||||
%{buildroot}%{_bindir}/%{name})" \ |
||||
%{buildroot}%{_libexecdir}/%{name}/bin |
||||
%endif |
||||
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF' |
||||
#!/usr/bin/bash |
||||
set -e |
||||
# t/datalists.t via generate_bltxml_schema() writes into CWD |
||||
DIR=$(mktemp -d) |
||||
cp -a %{_libexecdir}/%{name}/* "$DIR" |
||||
pushd "$DIR" |
||||
unset BIBER_DEV_TESTS ISBN_RANGE_MESSAGE PAR_TEMP PERL_LWP_SSL_CA_FILE |
||||
%if %{with biber_enables_extra_test} |
||||
export BIBER_DEV_TESTS=1 |
||||
%endif |
||||
prove -I . -j "$(getconf _NPROCESSORS_ONLN)" |
||||
popd |
||||
rm -r "$DIR" |
||||
EOF |
||||
chmod +x %{buildroot}%{_libexecdir}/%{name}/test |
||||
|
||||
|
||||
%check |
||||
unset BIBER_DEV_TESTS ISBN_RANGE_MESSAGE PAR_TEMP PERL_LWP_SSL_CA_FILE |
||||
%if %{with biber_enables_extra_test} |
||||
export BIBER_DEV_TESTS=1 |
||||
%endif |
||||
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}') |
||||
./Build test |
||||
|
||||
|
||||
%files |
||||
%doc README.md Changes TODO.org |
||||
%{_bindir}/%{name} |
||||
%{_mandir}/man3/* |
||||
%{_mandir}/man1/* |
||||
%{perl_vendorlib}/Biber* |
||||
|
||||
%files tests |
||||
%{_libexecdir}/%{name} |
||||
|
||||
|
||||
%changelog |
||||
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 2.17-4 |
||||
- Perl 5.36 rebuild |
||||
|
||||
* Wed May 25 2022 Petr Pisar <ppisar@redhat.com> - 2.17-3 |
||||
- Adapt to Perl 5.36 |
||||
- Use relative symbolic links in the tests |
||||
|
||||
* Mon Jan 31 2022 Petr Pisar <ppisar@redhat.com> - 2.17-2 |
||||
- Provide bcfversion for textlive-biblatex to depend on (bug #2048536) |
||||
|
||||
* Wed Jan 26 2022 Petr Pisar <ppisar@redhat.com> - 2.17-1 |
||||
- 2.17 bump |
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.16-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild |
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.16-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild |
||||
|
||||
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.16-3 |
||||
- Perl 5.34 rebuild |
||||
|
||||
* Tue May 18 2021 Petr Pisar <ppisar@redhat.com> - 2.16-2 |
||||
- Fix a typo in a dependency type |
||||
|
||||
* Tue May 18 2021 Petr Pisar <ppisar@redhat.com> - 2.16-1 |
||||
- 2.16 bump |
||||
- Package the tests |
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild |
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild |
||||
|
||||
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.14-3 |
||||
- Perl 5.32 re-rebuild of bootstrapped packages |
||||
|
||||
* Wed Jun 24 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.14-2 |
||||
- Perl 5.32 rebuild |
||||
|
||||
* Thu May 14 2020 Tom Callaway <spot@fedoraproject.org> - 2.14-1 |
||||
- update to 2.14 for TL 2020 |
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild |
||||
|
||||
* Sun Nov 17 2019 Colin B. Macdonald <cbm@m.fsf.org> - 2.12-1 |
||||
- Update to 2.12 (bug #1773172) |
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.11-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.11-5 |
||||
- Perl 5.30 rebuild |
||||
|
||||
* Tue Feb 12 2019 Petr Pisar <ppisar@redhat.com> - 2.11-4 |
||||
- Adapt tests to Unicode-Collate-1.27 (bug #1674692) |
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.11-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||
|
||||
* Thu Oct 18 2018 Colin B. Macdonald <cbm@m.fsf.org> - 2.11-2 |
||||
- Re-enable tests for e.g., #1512848 |
||||
|
||||
* Tue Oct 16 2018 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.11-1 |
||||
- Update to 2.11 |
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.7-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.7-2 |
||||
- Perl 5.28 rebuild |
||||
|
||||
* Wed Apr 11 2018 Colin B. Macdonald <cbm@m.fsf.org> - 2.7-1 |
||||
- Version bump, temporarily disable tests |
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.6-5 |
||||
- Perl 5.26 rebuild |
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Tue Dec 06 2016 Colin B. Macdonald <cbm@m.fsf.org> - 2.6-3 |
||||
- cherry-pick upstream commit for #1401750. |
||||
- more BR. |
||||
|
||||
* Mon Dec 05 2016 Colin B. Macdonald <cbm@m.fsf.org> - 2.6-2 |
||||
- update biblatex dep, add compatibility table to spec |
||||
|
||||
* Wed Oct 12 2016 Tom Callaway <spot@fedoraproject.org> - 2.6-1 |
||||
- update to 2.6 |
||||
|
||||
* Tue May 17 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.1-5 |
||||
- Perl 5.24 rebuild |
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Sun Dec 20 2015 Colin B. Macdonald <cbm@m.fsf.org> - 2.1-3 |
||||
- Add another missing BR for tests. |
||||
|
||||
* Sun Dec 20 2015 Colin B. Macdonald <cbm@m.fsf.org> - 2.1-2 |
||||
- cherry-pick from upstream to avoid braces warning. |
||||
- enable tests, then patch and cherry-pick so they pass. |
||||
- tarball missing two files needed for tests. |
||||
- BR on perl(open) for tests. |
||||
- patches to enquiet build, fix brace warnings. |
||||
- spec formatting fixes. |
||||
|
||||
* Mon Dec 14 2015 Colin B. Macdonald <cbm@m.fsf.org> - 2.1-1 |
||||
- Bump to 2.1, for biblatex-3.0. |
||||
- Update deps. |
||||
- Add more deps based on upstream confirmation. |
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-12 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Thu Jun 11 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.8-11 |
||||
- Perl 5.22 rebuild |
||||
|
||||
* Tue Jun 09 2015 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-10 |
||||
- Add autovivification dep (#1229816). |
||||
|
||||
* Mon Jun 08 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.8-9 |
||||
- Perl 5.22 rebuild |
||||
|
||||
* Wed May 20 2015 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-8 |
||||
- Clean up deps as per review. |
||||
|
||||
* Thu Mar 19 2015 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-7 |
||||
- Upstream thinks ok to relax U::C requirements. |
||||
|
||||
* Wed Dec 3 2014 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-6 |
||||
- Add Requires, taken from Build.pl. |
||||
|
||||
* Tue Nov 25 2014 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-5 |
||||
- Use sourceforge for Source0 instead of particular git commit. |
||||
|
||||
* Tue Nov 25 2014 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-4 |
||||
- lots more BRs, perm fixes. |
||||
|
||||
* Wed Nov 19 2014 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-3 |
||||
- update description and Summary |
||||
|
||||
* Wed Nov 19 2014 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-2 |
||||
- Add dep on (probably overly) specific texlive-biblatex |
||||
|
||||
* Tue Jan 14 2014 Colin B. Macdonald <cbm@m.fsf.org> - 1.8-1 |
||||
- Bump to 1.8 |
||||
- perl-File-Slurp-Unicode no longer needed |
||||
- add perl-autovivification dep |
||||
|
||||
* Wed Aug 22 2012 Mary Ellen Foster <mefoster@gmail.com> - 1.2-1 |
||||
- Initial quick-and-dirty package |
Loading…
Reference in new issue