perl-Text-BibTeX/cpanspec.yml

50 lines
1.4 KiB
YAML
Raw Normal View History

Accepting request 500142 from home:WernerFink:branches:devel:languages:perl - Remove patches now upstream * Text-BibTeX-rpmlint.patch * perl-Text-BibTeX-uninit.patch - Add file cpanspec.yml - Make if build - Add patch manual-pages-for-libbtparse.patch to get API manual pages for libbtparse into third section as well - Split package for libbtparse.so off from main package - updated to 0.80 see /usr/share/doc/packages/perl-Text-BibTeX/Changes 0.80 2017-03-25 * Fix tests in order to work without dot in @INC (thanks Kent Fredric for the bug report) 0.79 2017-03-13 * Further fixes to allow the parse of multiple files (Karl Wette). 0.78 2017-01-10 * Fixed some issues with uninitialized arrays and s390 * Fixed test with fileno (thanks to Karl Wette). * Allow state of btparse parser to be reset, for parsing multiple files (Karl Wette): - bt_parse_entry(): reset parser state if infile == NULL - BibTeX.xs: add _reset_parse(), _reset_parse_s() methods to Text::BibTeX::Entry - Text::BibTeX::Entry: allow new() or parse() with undefined filehandle; calls _reset_parse() - Text::BibTeX::Entry: allow new() or parse_s() with undefined text; calls _reset_parse_s() - Text::BibTeX::File: close() calls Text::BibTeX::Entry->new($filename, undef) to reset parser 0.77 2016-09-20 * Fixes for testing and installing on Darwin (install_name issues). Thanks to Nuno "smash" Carvalho for the report and debug help. OBS-URL: https://build.opensuse.org/request/show/500142 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-BibTeX?expand=0&rev=17
2017-06-14 12:29:31 +02:00
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
patches:
manual-pages-for-libbtparse.patch: -p1
Accepting request 500142 from home:WernerFink:branches:devel:languages:perl - Remove patches now upstream * Text-BibTeX-rpmlint.patch * perl-Text-BibTeX-uninit.patch - Add file cpanspec.yml - Make if build - Add patch manual-pages-for-libbtparse.patch to get API manual pages for libbtparse into third section as well - Split package for libbtparse.so off from main package - updated to 0.80 see /usr/share/doc/packages/perl-Text-BibTeX/Changes 0.80 2017-03-25 * Fix tests in order to work without dot in @INC (thanks Kent Fredric for the bug report) 0.79 2017-03-13 * Further fixes to allow the parse of multiple files (Karl Wette). 0.78 2017-01-10 * Fixed some issues with uninitialized arrays and s390 * Fixed test with fileno (thanks to Karl Wette). * Allow state of btparse parser to be reset, for parsing multiple files (Karl Wette): - bt_parse_entry(): reset parser state if infile == NULL - BibTeX.xs: add _reset_parse(), _reset_parse_s() methods to Text::BibTeX::Entry - Text::BibTeX::Entry: allow new() or parse() with undefined filehandle; calls _reset_parse() - Text::BibTeX::Entry: allow new() or parse_s() with undefined text; calls _reset_parse_s() - Text::BibTeX::File: close() calls Text::BibTeX::Entry->new($filename, undef) to reset parser 0.77 2016-09-20 * Fixes for testing and installing on Darwin (install_name issues). Thanks to Nuno "smash" Carvalho for the report and debug help. OBS-URL: https://build.opensuse.org/request/show/500142 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-BibTeX?expand=0&rev=17
2017-06-14 12:29:31 +02:00
# bar.patch:
preamble: |-
BuildRequires: glibc-devel
%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.
Accepting request 500142 from home:WernerFink:branches:devel:languages:perl - Remove patches now upstream * Text-BibTeX-rpmlint.patch * perl-Text-BibTeX-uninit.patch - Add file cpanspec.yml - Make if build - Add patch manual-pages-for-libbtparse.patch to get API manual pages for libbtparse into third section as well - Split package for libbtparse.so off from main package - updated to 0.80 see /usr/share/doc/packages/perl-Text-BibTeX/Changes 0.80 2017-03-25 * Fix tests in order to work without dot in @INC (thanks Kent Fredric for the bug report) 0.79 2017-03-13 * Further fixes to allow the parse of multiple files (Karl Wette). 0.78 2017-01-10 * Fixed some issues with uninitialized arrays and s390 * Fixed test with fileno (thanks to Karl Wette). * Allow state of btparse parser to be reset, for parsing multiple files (Karl Wette): - bt_parse_entry(): reset parser state if infile == NULL - BibTeX.xs: add _reset_parse(), _reset_parse_s() methods to Text::BibTeX::Entry - Text::BibTeX::Entry: allow new() or parse() with undefined filehandle; calls _reset_parse() - Text::BibTeX::Entry: allow new() or parse_s() with undefined text; calls _reset_parse_s() - Text::BibTeX::File: close() calls Text::BibTeX::Entry->new($filename, undef) to reset parser 0.77 2016-09-20 * Fixes for testing and installing on Darwin (install_name issues). Thanks to Nuno "smash" Carvalho for the report and debug help. OBS-URL: https://build.opensuse.org/request/show/500142 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-BibTeX?expand=0&rev=17
2017-06-14 12:29:31 +02:00
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
misc: |-
%exclude %{_mandir}/man3/*.3.gz
%files devel
%defattr(-,root,root,755)
%{_libdir}/libbtparse.so
%{_mandir}/man3/*.3%{?ext_man}
%{_includedir}/btparse.h
%post devel -p /sbin/ldconfig
%postun devel -p /sbin/ldconfig
Accepting request 500142 from home:WernerFink:branches:devel:languages:perl - Remove patches now upstream * Text-BibTeX-rpmlint.patch * perl-Text-BibTeX-uninit.patch - Add file cpanspec.yml - Make if build - Add patch manual-pages-for-libbtparse.patch to get API manual pages for libbtparse into third section as well - Split package for libbtparse.so off from main package - updated to 0.80 see /usr/share/doc/packages/perl-Text-BibTeX/Changes 0.80 2017-03-25 * Fix tests in order to work without dot in @INC (thanks Kent Fredric for the bug report) 0.79 2017-03-13 * Further fixes to allow the parse of multiple files (Karl Wette). 0.78 2017-01-10 * Fixed some issues with uninitialized arrays and s390 * Fixed test with fileno (thanks to Karl Wette). * Allow state of btparse parser to be reset, for parsing multiple files (Karl Wette): - bt_parse_entry(): reset parser state if infile == NULL - BibTeX.xs: add _reset_parse(), _reset_parse_s() methods to Text::BibTeX::Entry - Text::BibTeX::Entry: allow new() or parse() with undefined filehandle; calls _reset_parse() - Text::BibTeX::Entry: allow new() or parse_s() with undefined text; calls _reset_parse_s() - Text::BibTeX::File: close() calls Text::BibTeX::Entry->new($filename, undef) to reset parser 0.77 2016-09-20 * Fixes for testing and installing on Darwin (install_name issues). Thanks to Nuno "smash" Carvalho for the report and debug help. OBS-URL: https://build.opensuse.org/request/show/500142 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-BibTeX?expand=0&rev=17
2017-06-14 12:29:31 +02:00
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module