Files
perl-Parse-BooleanLogic/perl-Parse-BooleanLogic.spec
2025-08-12 18:16:19 +02:00

86 lines
2.7 KiB
RPMSpec

#
# spec file for package perl-Parse-BooleanLogic
#
# Copyright (c) 2024 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%define cpan_name Parse-BooleanLogic
Name: perl-Parse-BooleanLogic
Version: 0.100.0
Release: 0
# 0.10 -> normalize -> 0.100.0
%define cpan_version 0.10
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Parser of boolean expressions
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/B/BP/BPS/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.59
BuildRequires: perl(Regexp::Common)
BuildRequires: perl(Test::Deep)
Requires: perl(Regexp::Common)
Provides: perl(Parse::BooleanLogic) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
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
%autosetup -n %{cpan_name}-%{cpan_version}
%build
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes
%changelog