0.4.5
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-Tokenizer?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
Text-Tokenizer-0.4.5.tar.gz
Normal file
3
Text-Tokenizer-0.4.5.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:50187191e13041584cdcd9b4b3d6d17c01b2889cb96d1b2f39150a34035cc58b
|
||||||
|
size 65238
|
10
perl-Text-Tokenizer-fix_missing_includes.patch
Normal file
10
perl-Text-Tokenizer-fix_missing_includes.patch
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
--- lex.tokenizer_yy.c.orig 2011-12-04 00:26:18.936001023 +0100
|
||||||
|
+++ lex.tokenizer_yy.c 2011-12-04 00:26:34.083001026 +0100
|
||||||
|
@@ -39,6 +39,7 @@
|
||||||
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
+#include <unistd.h>
|
||||||
|
|
||||||
|
/* end standard C headers. */
|
||||||
|
|
5
perl-Text-Tokenizer.changes
Normal file
5
perl-Text-Tokenizer.changes
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 03 23:27:06 CET 2011 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
- initial version (0.4.5)
|
||||||
|
|
68
perl-Text-Tokenizer.spec
Normal file
68
perl-Text-Tokenizer.spec
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
#
|
||||||
|
# spec file for package perl-Text-Tokenizer
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Name: perl-Text-Tokenizer
|
||||||
|
Version: 0.4.5
|
||||||
|
Release: 0
|
||||||
|
Summary: Perl extension for tokenizing text(config) files
|
||||||
|
Source: http://search.cpan.org/CPAN/authors/id/S/SA/SAMSK/Text-Tokenizer-%{version}.tar.gz
|
||||||
|
Patch1: perl-Text-Tokenizer-fix_missing_includes.patch
|
||||||
|
Url: http://search.cpan.org/dist/Text-Tokenizer
|
||||||
|
Group: Development/Libraries/Perl
|
||||||
|
License: GNU General Public License version 2 or later or Artistic (GPLv2+ or Artistic)
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
%{perl_requires}
|
||||||
|
BuildRequires: perl-macros
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
|
||||||
|
%description
|
||||||
|
Text-Tokenizer is Perl module based on the flex generated lexical analyzer that
|
||||||
|
can be used for parsing of text (configuration) files. With this module, a
|
||||||
|
simple full-featured configuration parser can be written very easily.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n "Text-Tokenizer-%{version}"
|
||||||
|
%patch1
|
||||||
|
%__sed -i '/^auto_install/d' Makefile.PL
|
||||||
|
|
||||||
|
%build
|
||||||
|
%__perl Makefile.PL PREFIX="%{_prefix}"
|
||||||
|
%__make %{?_smp_flags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%perl_make_install
|
||||||
|
%perl_process_packlist
|
||||||
|
|
||||||
|
%check
|
||||||
|
%__make test
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc Changes TODO README
|
||||||
|
%dir %{perl_vendorarch}/Text
|
||||||
|
%{perl_vendorarch}/Text/Tokenizer.pm
|
||||||
|
%dir %{perl_vendorarch}/auto/Text
|
||||||
|
%{perl_vendorarch}/auto/Text/Tokenizer
|
||||||
|
%doc %{perl_man3dir}/Text::Tokenizer.%{perl_man3ext}%{ext_man}
|
||||||
|
|
||||||
|
%changelog
|
Reference in New Issue
Block a user