forked from pool/perl-XML-SAX-Base
Compare commits
11 Commits
b67d348f03
...
main
Author | SHA256 | Date | |
---|---|---|---|
135ad720c5 | |||
b2961bb85d | |||
|
4b79458f5c | ||
|
1ede142964 | ||
|
0afd505ea6 | ||
|
a43f1681f0 | ||
|
18cf4294d7 | ||
7332dd8f82 | |||
|
b391eaea03 | ||
|
7246fd0f28 | ||
|
bdd0891565 |
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
## Build Results
|
||||
|
||||
Current state of perl in openSUSE:Factory is
|
||||
|
||||

|
||||
|
||||
The current state of perl in the devel project build (devel:languages:perl)
|
||||
|
||||

|
||||
|
||||
|
BIN
XML-SAX-Base-1.06.tar.gz
(Stored with Git LFS)
BIN
XML-SAX-Base-1.06.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
XML-SAX-Base-1.09.tar.gz
(Stored with Git LFS)
Normal file
BIN
XML-SAX-Base-1.09.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
28
cpanspec.yml
Normal file
28
cpanspec.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
#description_paragraphs: 3
|
||||
#description: |-
|
||||
# override description from CPAN
|
||||
#summary: override summary from CPAN
|
||||
#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_build: |-
|
||||
# rm unused.files
|
||||
#post_install: |-
|
||||
# sed on %{name}.files
|
||||
#license: SUSE-NonFree
|
||||
#skip_noarch: 1
|
||||
#custom_build: |-
|
||||
#./Build build flags=%{?_smp_mflags} --myflag
|
||||
#custom_test: |-
|
||||
#startserver && make test
|
||||
#ignore_requires: Bizarre::Module
|
@@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 4 07:15:37 UTC 2017 - coolo@suse.com
|
||||
|
||||
- updated to 1.09
|
||||
see /usr/share/doc/packages/perl-XML-SAX-Base/Changes
|
||||
|
||||
1.09 2017-04-03 21:00:06+12:00 Pacific/Auckland
|
||||
- fix test suite to work without '.' in @INC (RT#120435, pull request
|
||||
from James E Keenan)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 18 09:55:30 UTC 2011 - coolo@suse.com
|
||||
|
||||
- update to 1.08
|
||||
- rename BuildSAXBase.PL => BuildSAXBase.pl
|
||||
- add link to Perl SAX API Reference
|
||||
- modify BuildSAXBase.PL to include version stanzas when run manually
|
||||
- make BuildSAXBase.PL harmless unless run with --force option
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 14 14:26:51 UTC 2011 - andrea.turrini@gmail.com
|
||||
|
||||
- fixed typos in perl-XML-SAX-Base.spec
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 12 09:32:09 UTC 2011 - vcizek@suse.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-XML-SAX-Base (Version 1.06)
|
||||
# spec file for package perl-XML-SAX-Base
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -15,21 +15,23 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: perl-XML-SAX-Base
|
||||
Version: 1.06
|
||||
Release: 1
|
||||
License: GPL-1.0+ or Artistic
|
||||
Version: 1.09
|
||||
Release: 0
|
||||
%define cpan_name XML-SAX-Base
|
||||
Summary: Base class SAX Drivers and Filters
|
||||
Url: http://search.cpan.org/dist/XML-SAX-Base/
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Group: Development/Libraries/Perl
|
||||
Source: http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-%{version}.tar.gz
|
||||
# Source: %{cpan_name}-%{version}.tar.gz
|
||||
# BuildRequires: perl(Test::Pod) perl(Test::Pod::Coverage)
|
||||
Url: http://search.cpan.org/dist/XML-SAX-Base/
|
||||
Source0: https://cpan.metacpan.org/authors/id/G/GR/GRANTM/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
Source100: README.md
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@@ -48,12 +50,10 @@ handlers downstream that might nevertheless be interested in them.
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
%build
|
||||
export AUTOMATED_TESTING=1
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
export AUTOMATED_TESTING=1
|
||||
%{__make} test
|
||||
|
||||
%install
|
||||
@@ -61,11 +61,8 @@ export AUTOMATED_TESTING=1
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(644,root,root,755)
|
||||
%doc Changes dist.ini README
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes README
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user