2012-05-25 10:59:21 +02:00
|
|
|
#
|
|
|
|
# spec file for package perl-Text-BibTeX
|
|
|
|
#
|
2024-03-09 00:06:21 +01:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2012-05-25 10:59:21 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-06-17 19:15:08 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2012-05-25 10:59:21 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2019-06-17 19:15:08 +02:00
|
|
|
%define cpan_name Text-BibTeX
|
2012-05-25 10:59:21 +02:00
|
|
|
Name: perl-Text-BibTeX
|
2023-08-14 17:49:47 +02:00
|
|
|
Version: 0.890.0
|
2012-05-25 10:59:21 +02:00
|
|
|
Release: 0
|
2023-08-14 17:49:47 +02:00
|
|
|
%define cpan_version 0.89
|
2018-04-20 15:46:33 +02:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
2023-08-14 17:49:47 +02:00
|
|
|
Summary: Interface to read and parse BibTeX files
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/A/AM/AMBS/%{cpan_name}-%{cpan_version}.tar.gz
|
2017-06-14 12:29:31 +02:00
|
|
|
Source1: cpanspec.yml
|
|
|
|
Patch0: manual-pages-for-libbtparse.patch
|
2012-05-25 10:59:21 +02:00
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Capture::Tiny) >= 0.06
|
2023-08-14 17:49:47 +02:00
|
|
|
BuildRequires: perl(Config::AutoConf) >= 0.320
|
2012-05-25 10:59:21 +02:00
|
|
|
BuildRequires: perl(ExtUtils::CBuilder) >= 0.27
|
|
|
|
BuildRequires: perl(ExtUtils::LibBuilder) >= 0.02
|
2023-08-14 17:49:47 +02:00
|
|
|
BuildRequires: perl(Module::Build) >= 0.3603
|
2016-06-08 19:07:35 +02:00
|
|
|
BuildRequires: perl(Scalar::Util) >= 1.42
|
|
|
|
Requires: perl(Scalar::Util) >= 1.42
|
2023-08-14 17:49:47 +02:00
|
|
|
Provides: perl(Text::BibTeX) = 0.890.0
|
|
|
|
Provides: perl(Text::BibTeX::BibEntry) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::BibFormat) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::BibSort) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::BibStructure) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::Entry) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::File) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::Name) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::NameFormat) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::SimpleValue) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::Structure) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::StructuredEntry) = 0.88
|
|
|
|
Provides: perl(Text::BibTeX::Value) = 0.88
|
2024-03-09 00:06:21 +01:00
|
|
|
%undefine __perllib_provides
|
2012-05-25 10:59:21 +02:00
|
|
|
%{perl_requires}
|
2023-08-14 17:49:47 +02:00
|
|
|
# MANUAL BEGIN
|
|
|
|
BuildRequires: glibc-devel
|
2012-05-25 10:59:21 +02:00
|
|
|
|
2023-08-14 17:49:47 +02:00
|
|
|
%package devel
|
|
|
|
Summary: C library for parsing and processing BibTeX files
|
|
|
|
Group: Development/Libraries/Other
|
|
|
|
Provides: %{name}:%{_libdir}/libbtparse.so
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The libbtparse is a C library for parsing and processing BibTeX files.
|
|
|
|
Note that the interface provided by libbtparse, while complete, is fairly
|
|
|
|
low-level. If you have more sophisticated needs, you might be interested
|
|
|
|
the "Text::BibTeX" module for Perl.
|
|
|
|
|
|
|
|
|
2024-03-09 00:06:21 +01:00
|
|
|
|
2023-08-14 17:49:47 +02:00
|
|
|
# MANUAL END
|
2012-05-25 10:59:21 +02:00
|
|
|
%description
|
|
|
|
The 'Text::BibTeX' module serves mainly as a high-level introduction to the
|
|
|
|
'Text::BibTeX' library, for both code and documentation purposes. The code
|
|
|
|
loads the two fundamental modules for processing BibTeX files
|
|
|
|
('Text::BibTeX::File' and 'Text::BibTeX::Entry'), and this documentation
|
|
|
|
gives a broad overview of the whole library that isn't available in the
|
|
|
|
documentation for the individual modules that comprise it.
|
|
|
|
|
|
|
|
In addition, the 'Text::BibTeX' module provides a number of miscellaneous
|
|
|
|
functions that are useful in processing BibTeX data (especially the kind
|
|
|
|
that comes from bibliographies as defined by BibTeX 0.99, rather than
|
|
|
|
generic database files). These functions don't generally fit in the
|
|
|
|
object-oriented class hierarchy centred around the 'Text::BibTeX::Entry'
|
|
|
|
class, mainly because they are specific to bibliographic data and operate
|
|
|
|
on generic strings (rather than being tied to a particular BibTeX entry).
|
2017-06-14 12:29:31 +02:00
|
|
|
These are also documented here, in "MISCELLANEOUS FUNCTIONS".
|
2012-05-25 10:59:21 +02:00
|
|
|
|
|
|
|
Note that every module described here begins with the 'Text::BibTeX'
|
|
|
|
prefix. For brevity, I have dropped this prefix from most class and module
|
|
|
|
names in the rest of this manual page (and in most of the other manual
|
|
|
|
pages in the library).
|
|
|
|
|
|
|
|
%prep
|
2023-08-14 17:49:47 +02:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
|
|
|
|
|
|
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
2012-05-25 10:59:21 +02:00
|
|
|
|
|
|
|
%build
|
2023-08-14 17:49:47 +02:00
|
|
|
perl Build.PL --installdirs=vendor optimize="%{optflags}"
|
|
|
|
./Build build --flags=%{?_smp_mflags}
|
2012-05-25 10:59:21 +02:00
|
|
|
|
|
|
|
%check
|
|
|
|
./Build test
|
|
|
|
|
|
|
|
%install
|
2023-08-14 17:49:47 +02:00
|
|
|
./Build install --destdir=%{buildroot} --create_packlist=0
|
2012-05-25 10:59:21 +02:00
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2023-08-14 17:49:47 +02:00
|
|
|
%doc Changes examples README README.OLD THANKS
|
2017-06-14 12:29:31 +02:00
|
|
|
%exclude %{_mandir}/man3/*.3.gz
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,755)
|
2012-05-25 10:59:21 +02:00
|
|
|
%{_libdir}/libbtparse.so
|
2019-06-17 19:15:08 +02:00
|
|
|
%{_mandir}/man3/*.3%{?ext_man}
|
|
|
|
%{_includedir}/btparse.h
|
2012-05-25 10:59:21 +02:00
|
|
|
|
2023-08-14 17:49:47 +02:00
|
|
|
%post devel -p /sbin/ldconfig
|
|
|
|
%postun devel -p /sbin/ldconfig
|
|
|
|
|
2012-05-25 10:59:21 +02:00
|
|
|
%changelog
|