Accepting request 794822 from devel:languages:perl:autoupdate
- updated to 0.10 see /usr/share/doc/packages/perl-Parse-BooleanLogic/Changes 0.10 2020-04-15 * Add dot to require in test files for modern perls OBS-URL: https://build.opensuse.org/request/show/794822 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-BooleanLogic?expand=0&rev=3
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Parse-BooleanLogic
|
||||
#
|
||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 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
|
||||
@@ -12,42 +12,63 @@
|
||||
# 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/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: perl-Parse-BooleanLogic
|
||||
Version: 0.09
|
||||
Version: 0.10
|
||||
Release: 0
|
||||
%define cpan_name Parse-BooleanLogic
|
||||
Summary: Parse::BooleanLogic Perl module
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Summary: Parser of boolean expressions
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/Parse-BooleanLogic/
|
||||
#Source: http://www.cpan.org/authors/id/R/RU/RUZ/Parse-BooleanLogic-%{version}.tar.gz
|
||||
Source: %{cpan_name}-%{version}.tar.gz
|
||||
Url: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/B/BP/BPS/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Module::Install)
|
||||
BuildRequires: perl(Test::Deep)
|
||||
BuildRequires: perl(Regexp::Common)
|
||||
%{perl_requires}
|
||||
BuildRequires: perl(Test::Deep)
|
||||
Requires: perl(Regexp::Common)
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
Parse::BooleanLogic Perl module
|
||||
This module is quite fast parser for boolean expressions. Originally it's
|
||||
been writen for Request Tracker to parse SQL like expressions and it's
|
||||
still capable, but it can be used to parse other boolean logic sentences
|
||||
with OPERANDs joined using binary OPERATORs and grouped and nested using
|
||||
parentheses (OPEN_PAREN and CLOSE_PAREN).
|
||||
|
||||
Operand is not qualified strictly what makes parser flexible enough to
|
||||
parse different things, for example:
|
||||
|
||||
# SQL like expressions
|
||||
(task.status = "new" OR task.status = "open") AND task.owner_id = 123
|
||||
|
||||
# Google like search syntax used in Gmail and other service
|
||||
subject:"some text" (from:me OR to:me) label:todo !label:done
|
||||
|
||||
# Binary boolean logic expressions
|
||||
(a | b) & (c | d)
|
||||
|
||||
You can change literals used for boolean operators and parens. Read more
|
||||
about this in description of constructor's arguments.
|
||||
|
||||
As you can see quoted strings are supported. Read about that below in
|
||||
Quoting and dequoting.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
@@ -56,5 +77,6 @@ Parse::BooleanLogic Perl module
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user