forked from pool/perl-Pod-Usage
- updated to 1.67 see /usr/share/doc/packages/perl-Pod-Usage/CHANGES 1.67 (marekr) - added options -perlcmd and -perldoc to allow for non-standard installations of perl and the perldoc script. Thanks to Markus Jansen for the patch 1.66 (marekr) - CPAN#102116: pod2usage() -sections omits section with subsection specified added more precise documentation about the -section syntax and semantics - CPAN#102117: pod2usage() changes formatting added documentation to describe what formatting changes pod2usage applies - CPAN#102101: New tests fail when in core changed the way the tests find their dependencies. Thanks to BINGOS for the patch, applied in slightly modified way 1.65 (marekr) - CPAN#81059: [RT #115534]: Pod::Usage Failes to Select -sections with Negation fixed a specific corner case for section selection - CPAN#101538: Pod::Usage doesn't handle E<copy> correctly introduced a utf8 option; this may actually not solve the problem, but it is the best we can do for the moment - CPAN#101581: pod2usage() -sections omits marked-up text from =head lines make sure that marked-up text is not skipped OBS-URL: https://build.opensuse.org/request/show/297205 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Pod-Usage?expand=0&rev=7
36 lines
856 B
YAML
36 lines
856 B
YAML
---
|
|
description_paragraphs: 1
|
|
#no_testing: broken upstream
|
|
#sources:
|
|
# - source1
|
|
# - source2
|
|
#patches:
|
|
# foo.patch: -p1
|
|
# bar.patch:
|
|
#preamble: |-
|
|
# BuildRequires: gcc-c++
|
|
#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_install: |-
|
|
VERSION=$(echo %{version} | sed -e "s|\.|_|g")
|
|
pushd %buildroot%_bindir >/dev/null
|
|
for file in *; do
|
|
mv -v $file $file-${VERSION}
|
|
done
|
|
popd >/dev/null
|
|
pushd %buildroot%_mandir/man1
|
|
for file in *.1; do
|
|
mv -v $file ${file/.1/}-${VERSION}.1
|
|
done
|
|
popd >/dev/null
|
|
pushd %buildroot%_mandir/man3
|
|
for file in *.3pm; do
|
|
mv -v $file ${file/.3pm/}-${VERSION}.3pm
|
|
done
|
|
popd >/dev/null
|
|
license: GPL-1.0+ or Artistic-1.0
|
|
#skip_noarch: 1
|
|
#custom_build: -
|
|
#./Build build flags=%{?_smp_mflags} --myflag
|