Files
perl-Workflow/perl-Workflow.spec

131 lines
5.1 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package perl-Workflow
#
# Copyright (c) 2025 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/
#
Accepting request 863100 from devel:languages:perl:autoupdate - updated to 1.49 see /usr/share/doc/packages/perl-Workflow/Changes 1.49 2021-01-08 Maintenance and minor feature release, update not required - Addressed an issue with return values from Workflow::Condition::GreedyOR's `evaluate_condition`, PR #50 from Erik Huelsmann - Fixed a bug in condition caching described in issue #9, PR #27 from Erik Huelsmann - Fixed a bug in Workflow::Condition::LazyAND with wrongful return values, PR #40 from Erik Huelsmann - Fixed a bug in Workflow::Validator::InEnumeratedType with wrongful naming, PR #33 from Erik Huelsmann - Updated Dist::Zilla configuration and added LICENSE file to repository based on generated from Dist::Zilla build, this should be automated like the README generation at some point - Improved internal handling for quoting in internal SQL statements, PR #30 from Erik Huelsmann - Improved the SQL used for database creation by adding referentiel integrity, PR #29 from Erik Huelsmann - Addressed a bug in initialization and improved the ability to handle a database handle, PR #32 from Erik Huelsmann - Improved loading of external of a few dependencies, improving error handling, PR #31 from Erik Huelsmann - Additions to test suite, WIP on better scoped condition caching, PR #26 from Erik Huelsmann - Minor feature addition addressing issue #5 with condition caching, PR #25 from Erik Huelsmann Condition caching can be disabled by setting: $Workflow::Condition::CACHE_RESULTS = 0; # false The default is 1, indicating true, - Improvements to test suite, moved from time to counter, speeding up the test, PR #24 from Erik Huelsmann - Documentation updates, PR #23 from Erik Huelsmann - Addressing issue #21 fixing broken URLs, PR #22 from Erik Huelsmann OBS-URL: https://build.opensuse.org/request/show/863100 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=13
2021-01-14 14:30:27 +00:00
%define cpan_name Workflow
Name: perl-Workflow
Version: 2.50.0
Release: 0
# 2.05 -> normalize -> 2.50.0
%define cpan_version 2.05
License: Artistic-1.0 OR GPL-1.0-or-later
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Summary: Simple, flexible system to implement workflows
Accepting request 863100 from devel:languages:perl:autoupdate - updated to 1.49 see /usr/share/doc/packages/perl-Workflow/Changes 1.49 2021-01-08 Maintenance and minor feature release, update not required - Addressed an issue with return values from Workflow::Condition::GreedyOR's `evaluate_condition`, PR #50 from Erik Huelsmann - Fixed a bug in condition caching described in issue #9, PR #27 from Erik Huelsmann - Fixed a bug in Workflow::Condition::LazyAND with wrongful return values, PR #40 from Erik Huelsmann - Fixed a bug in Workflow::Validator::InEnumeratedType with wrongful naming, PR #33 from Erik Huelsmann - Updated Dist::Zilla configuration and added LICENSE file to repository based on generated from Dist::Zilla build, this should be automated like the README generation at some point - Improved internal handling for quoting in internal SQL statements, PR #30 from Erik Huelsmann - Improved the SQL used for database creation by adding referentiel integrity, PR #29 from Erik Huelsmann - Addressed a bug in initialization and improved the ability to handle a database handle, PR #32 from Erik Huelsmann - Improved loading of external of a few dependencies, improving error handling, PR #31 from Erik Huelsmann - Additions to test suite, WIP on better scoped condition caching, PR #26 from Erik Huelsmann - Minor feature addition addressing issue #5 with condition caching, PR #25 from Erik Huelsmann Condition caching can be disabled by setting: $Workflow::Condition::CACHE_RESULTS = 0; # false The default is 1, indicating true, - Improvements to test suite, moved from time to counter, speeding up the test, PR #24 from Erik Huelsmann - Documentation updates, PR #23 from Erik Huelsmann - Addressing issue #21 fixing broken URLs, PR #22 from Erik Huelsmann OBS-URL: https://build.opensuse.org/request/show/863100 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=13
2021-01-14 14:30:27 +00:00
URL: https://metacpan.org/release/%{cpan_name}
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Source0: https://cpan.metacpan.org/authors/id/J/JO/JONASBN/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
2025-08-12 18:18:28 +02:00
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Class::Accessor) >= 0.18
BuildRequires: perl(Class::Factory) >= 1.0.0
BuildRequires: perl(DBD::Mock) >= 1.590
BuildRequires: perl(DBI)
BuildRequires: perl(Data::UUID)
BuildRequires: perl(DateTime) >= 0.15
BuildRequires: perl(DateTime::Format::Strptime) >= 1.00
BuildRequires: perl(Exception::Class) >= 1.10
BuildRequires: perl(File::Slurp)
BuildRequires: perl(List::MoreUtils)
BuildRequires: perl(Log::Any) >= 1.050
Accepting request 914425 from devel:languages:perl:autoupdate - updated to 1.56 see /usr/share/doc/packages/perl-Workflow/Changes.md ## DEPRECATION NOTICE - With release 2.00 Workflow::Persister::SPOPS will no longer be included in the distribution, it will possibly be made available as a separate distribution, but with decreased maintenance efforts. [SPOPS](https://metacpan.org/pod/SPOPS) does no longer seem to be actively supported and [issues with Perls versions from 5.11.1 and onwards](http://matrix.cpantesters.org/?dist=SPOPS+0.87) underline this fact. SPOPS was developed by the original author of Workflow and the two have worked in parallel for a long time. The Workflow developers have come to a crossroad and focus of resources and efforts are aimed at modernizing workflow. ## 1.56 2021-07-28 Bug fix release, update recommended - PR [#139](https://github.com/jonasbn/perl-workflow/pull/139) addresses an issue introduced in 1.55, where action configurations would contain unnecessary information - Elimination of global state, with improved abstraction the complexity could be removed via PR [#140](https://github.com/jonasbn/perl-workflow/pull/140) - PR [#141](https://github.com/jonasbn/perl-workflow/pull/141) improves test suite, following up on PR [#131](https://github.com/jonasbn/perl-workflow/pull/131) - PR [#132](https://github.com/jonasbn/perl-workflow/pull/132) follows up on issue [#129](https://github.com/jonasbn/perl-workflow/issues/129) by improving documentation on group property of Workflow::Action - Elimination of warning about undefined value, which surfaced with release 1.55, adressed with PR [#135](https://github.com/jonasbn/perl-workflow/pull/135) - PR [#131](https://github.com/jonasbn/perl-workflow/pull/131) documents the importance of overriding `init` for processing of parameters and not using `new` - PR [#130](https://github.com/jonasbn/perl-workflow/pull/130) addresses issue [#129](https://github.com/jonasbn/perl-workflow/issues/129), respects encapsulation by adhering to the API - Improves some error and log messages via PR [#128](https://github.com/jonasbn/perl-workflow/pull/128) ## 1.55 2021-07-09 Minor feature release, update not required - PR [#119](https://github.com/jonasbn/perl-workflow/pull/119) adds capability of configuring custom workflow classes addressing issue [#107](https://github.com/jonasbn/perl-workflow/issues/107) - Simplified logging handing in code base via PR [#108](https://github.com/jonasbn/perl-workflow/pull/108) investigation into possible performance issue described in [#89](https://github.com/jonasbn/perl-workflow/issues/89) determined penalty to be insignificant - `Workflow::State->get_conditions()` now returns all conditions, fixed via PR [#122](https://github.com/jonasbn/perl-workflow/pull/122) addressing issue [#121](https://github.com/jonasbn/perl-workflow/issues/121), This fix actually implements, what is documented, but if you rely on previously undocumented behaviour, you might need to evaluate this fix - Issue with broken support action attribute specified in the state config has been addressed via PR [#123](https://github.com/jonasbn/perl-workflow/pull/123) described in issue [#113](https://github.com/jonasbn/perl-workflow/issues/113) - A warning emitted from the test suite has been addressed via PR [#115](https://github.com/jonasbn/perl-workflow/pull/115) - A timing issue observed with the Travis CI setup have been addressed in PR [#112](https://github.com/jonasbn/perl-workflow/pull/112) OBS-URL: https://build.opensuse.org/request/show/914425 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=19
2021-08-31 09:30:06 +00:00
BuildRequires: perl(Mock::MonkeyPatch)
BuildRequires: perl(Module::Runtime)
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
BuildRequires: perl(Readonly)
BuildRequires: perl(Syntax::Keyword::Try) >= 0.25
BuildRequires: perl(Test::Exception)
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(Test::Without::Module) >= 0.20
BuildRequires: perl(XML::Simple) >= 2.00
BuildRequires: perl(YAML) >= 1.30
BuildRequires: perl(parent)
Requires: perl(Class::Accessor) >= 0.18
Requires: perl(Class::Factory) >= 1.0.0
Requires: perl(DBI)
Requires: perl(Data::UUID)
Requires: perl(DateTime) >= 0.15
Requires: perl(DateTime::Format::Strptime) >= 1.00
Requires: perl(Exception::Class) >= 1.10
Requires: perl(File::Slurp)
Requires: perl(Log::Any) >= 1.050
Requires: perl(Module::Runtime)
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Requires: perl(Readonly)
Requires: perl(Syntax::Keyword::Try) >= 0.25
Requires: perl(XML::Simple) >= 2.00
Requires: perl(YAML) >= 1.30
Requires: perl(parent)
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Provides: perl(Workflow) = %{version}
Provides: perl(Workflow::Action) = %{version}
Provides: perl(Workflow::Action::Null) = %{version}
Provides: perl(Workflow::Base) = %{version}
Provides: perl(Workflow::Condition) = %{version}
Provides: perl(Workflow::Condition::Evaluate) = %{version}
Provides: perl(Workflow::Condition::HasUser) = %{version}
Provides: perl(Workflow::Condition::IsFalse)
Provides: perl(Workflow::Condition::IsTrue)
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Provides: perl(Workflow::Condition::LazyAND) = %{version}
Provides: perl(Workflow::Condition::LazyOR) = %{version}
Provides: perl(Workflow::Condition::Negated) = %{version}
Provides: perl(Workflow::Condition::Result)
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Provides: perl(Workflow::Config) = %{version}
Provides: perl(Workflow::Config::Perl) = %{version}
Provides: perl(Workflow::Config::XML) = %{version}
Provides: perl(Workflow::Config::YAML) = %{version}
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Provides: perl(Workflow::Context) = %{version}
Provides: perl(Workflow::Exception) = %{version}
Provides: perl(Workflow::Factory) = %{version}
Provides: perl(Workflow::History) = %{version}
Provides: perl(Workflow::InputField)
Accepting request 1182921 from devel:languages:perl:autoupdate - updated to 1.620.0 (1.62) see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.62 2023-02-11 bug fix/maintenance release, update recommended - Minor correction to documentation via PR [#208](https://github.com/jonasbn/perl-workflow/pull/208) from @ehuelsmann - Improvement to the overall codebase by localizing `$EVAL_ERROR` in conjunction with `eval` structures, via PR [#211](https://github.com/jonasbn/perl-workflow/pull/211) from @ehuelsmann ## 1.61 2022-10-01 bug fix release, update recommended - We have removed some code, which was no longer used, which was causing some grievance see PR [#203](https://github.com/jonasbn/perl-workflow/pull/203) from by Oliver Welter (@oliwell) ## 1.60 2022-03-02 bug fix release, update recommended - We have discovered a minor regression, founded in our eager to implement more clean code. This has been addressed via PR [#195](https://github.com/jonasbn/perl-workflow/pull/195) by Erik Huelsmann (@ehuelsmann). It was followed up by PR [#196](https://github.com/jonasbn/perl-workflow/pull/196/files) by Oliver Welter (@oliwell). We are now setting the bar a bit lower for the 1.x releases in regard to best practices and code quality and focus on improving the code for 2.x, so we do not experience any more regressions. ## 1.59 2022-02-02 bug fix release, update required - Unfortunately we discovered a minor mishap, where a dependency was referenced without being properly declared as a dependency, which could result in inability for the distribution to work in a clean environment. This has now been addressed via PR [#190](https://github.com/jonasbn/perl-workflow/pull/190) We are sorry about any inconvenience this might have caused ## 1.58 2022-02-02 Maintenance release, update not required - Addressed violations of [Perl::Critic](https://metacpan.org/pod/Perl::Critic) policies: - [Subroutines::ProhibitExplicitReturnUndef](https://metacpan.org/pod/Perl::Critic::Policy::Subroutines::ProhibitExplicitReturnUndef) - [ValuesAndExpressions::ProhibitMixedBooleanOperators](https://metacpan.org/pod/Perl::Critic::Policy::ValuesAndExpressions::ProhibitMixedBooleanOperators) Adjustments to Perl::Critic resourcefile (`t/perlcriticrc`), this somewhat addresses issue [#43](https://github.com/jonasbn/perl-workflow/issues/43), there is more work to be done in this area, this will be adressed eventually By Jonas Brømsø (@jonasbn) - Requirement for Perl 5.14 has been made more explicit, see also PR [#185](https://github.com/jonasbn/perl-workflow/pull/185) by Erik Huelsmann (@ehuelsmann) - Delay of instantation, prevents additional loggings attempts, this makes logging less noisy when running tests. Via PR [#174](https://github.com/jonasbn/perl-workflow/pull/174) from Erik Huelsmann (@ehuelsmann) ## 1.57 2021-10-17 Bug fix release, update recommended - PR [#170](https://github.com/jonasbn/perl-workflow/pull/170) addresses an issue where Workflow tries to log during the execution of `use` statements, at which time it's highly unlikely that the logger has already been initialized, resulting in warnings being printed on the console - PR [#171](https://github.com/jonasbn/perl-workflow/pull/171) adds initialization of context parameters passed at instantiation; currently, parameters need to be added explicily and individually after instantiation - PR [#173](https://github.com/jonasbn/perl-workflow/pull/173) addresses issue [#172](https://github.com/jonasbn/perl-workflow/pull/172), fixing failure to autorun actions from the INITIAL state OBS-URL: https://build.opensuse.org/request/show/1182921 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=20
2024-06-27 17:13:40 +00:00
Provides: perl(Workflow::Persister) = %{version}
Provides: perl(Workflow::Persister::DBI) = %{version}
Provides: perl(Workflow::Persister::DBI::AutoGeneratedId) = %{version}
Provides: perl(Workflow::Persister::DBI::ExtraData) = %{version}
Provides: perl(Workflow::Persister::DBI::SequenceId) = %{version}
Provides: perl(Workflow::Persister::File) = %{version}
Provides: perl(Workflow::Persister::RandomId) = %{version}
Provides: perl(Workflow::Persister::UUID) = %{version}
Provides: perl(Workflow::State) = %{version}
Provides: perl(Workflow::Validator) = %{version}
Provides: perl(Workflow::Validator::HasRequiredField) = %{version}
Provides: perl(Workflow::Validator::InEnumeratedType) = %{version}
Provides: perl(Workflow::Validator::MatchesDateFormat) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
Simple, flexible system to implement workflows
%prep
%autosetup -n %{cpan_name}-%{cpan_version} -p1
%build
Accepting request 871396 from devel:languages:perl:autoupdate - updated to 1.52 see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.52 2021-02-11 Bug fix release, update recommended - Addressed bug/issue [#95](https://github.com/jonasbn/perl-workflow/issues/95) via PR [#96](https://github.com/jonasbn/perl-workflow/pull/96), the issue was introduced with PR [#85](https://github.com/jonasbn/perl-workflow/pull/85) in release 1.51 - Improvements to Dist::Zilla config, only ExtUtils::MakeMaker supported via Dist::Zilla now. Module::Build support having been removed. See the [article by Neil Bowers](https://neilb.org/2015/05/18/two-build-files-considered-harmful.html) (NEILB) on the topic. Thanks to Karen Etheridge (ETHER) for information and link to the above-mentioned article (issue [#93](https://github.com/jonasbn/perl-workflow/issues/95), resolved via PR [#98](https://github.com/jonasbn/perl-workflow/pull/98)) - Documentation in `INSTALL` file updated, the information was somewhat scarce and outdated (issue [#92](https://github.com/jonasbn/perl-workflow/issues/92), resolved via PR [#99](https://github.com/jonasbn/perl-workflow/pull/99)) - Some URLs fixed via PR [#97](https://github.com/jonasbn/perl-workflow/pull/97), thanks to Michiel W. Beijen for the contribution - More unit-tests added via PR [#94](https://github.com/jonasbn/perl-workflow/pull/94), continued work on issue [#36](https://github.com/jonasbn/perl-workflow/pull/94) improving test coverage OBS-URL: https://build.opensuse.org/request/show/871396 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=16
2021-02-15 12:37:43 +00:00
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
Accepting request 871396 from devel:languages:perl:autoupdate - updated to 1.52 see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.52 2021-02-11 Bug fix release, update recommended - Addressed bug/issue [#95](https://github.com/jonasbn/perl-workflow/issues/95) via PR [#96](https://github.com/jonasbn/perl-workflow/pull/96), the issue was introduced with PR [#85](https://github.com/jonasbn/perl-workflow/pull/85) in release 1.51 - Improvements to Dist::Zilla config, only ExtUtils::MakeMaker supported via Dist::Zilla now. Module::Build support having been removed. See the [article by Neil Bowers](https://neilb.org/2015/05/18/two-build-files-considered-harmful.html) (NEILB) on the topic. Thanks to Karen Etheridge (ETHER) for information and link to the above-mentioned article (issue [#93](https://github.com/jonasbn/perl-workflow/issues/95), resolved via PR [#98](https://github.com/jonasbn/perl-workflow/pull/98)) - Documentation in `INSTALL` file updated, the information was somewhat scarce and outdated (issue [#92](https://github.com/jonasbn/perl-workflow/issues/92), resolved via PR [#99](https://github.com/jonasbn/perl-workflow/pull/99)) - Some URLs fixed via PR [#97](https://github.com/jonasbn/perl-workflow/pull/97), thanks to Michiel W. Beijen for the contribution - More unit-tests added via PR [#94](https://github.com/jonasbn/perl-workflow/pull/94), continued work on issue [#36](https://github.com/jonasbn/perl-workflow/pull/94) improving test coverage OBS-URL: https://build.opensuse.org/request/show/871396 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=16
2021-02-15 12:37:43 +00:00
make test
%install
Accepting request 871396 from devel:languages:perl:autoupdate - updated to 1.52 see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.52 2021-02-11 Bug fix release, update recommended - Addressed bug/issue [#95](https://github.com/jonasbn/perl-workflow/issues/95) via PR [#96](https://github.com/jonasbn/perl-workflow/pull/96), the issue was introduced with PR [#85](https://github.com/jonasbn/perl-workflow/pull/85) in release 1.51 - Improvements to Dist::Zilla config, only ExtUtils::MakeMaker supported via Dist::Zilla now. Module::Build support having been removed. See the [article by Neil Bowers](https://neilb.org/2015/05/18/two-build-files-considered-harmful.html) (NEILB) on the topic. Thanks to Karen Etheridge (ETHER) for information and link to the above-mentioned article (issue [#93](https://github.com/jonasbn/perl-workflow/issues/95), resolved via PR [#98](https://github.com/jonasbn/perl-workflow/pull/98)) - Documentation in `INSTALL` file updated, the information was somewhat scarce and outdated (issue [#92](https://github.com/jonasbn/perl-workflow/issues/92), resolved via PR [#99](https://github.com/jonasbn/perl-workflow/pull/99)) - Some URLs fixed via PR [#97](https://github.com/jonasbn/perl-workflow/pull/97), thanks to Michiel W. Beijen for the contribution - More unit-tests added via PR [#94](https://github.com/jonasbn/perl-workflow/pull/94), continued work on issue [#36](https://github.com/jonasbn/perl-workflow/pull/94) improving test coverage OBS-URL: https://build.opensuse.org/request/show/871396 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=16
2021-02-15 12:37:43 +00:00
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes.md CONTRIBUTING.md cpanfile.snapshot README
%license LICENSE
%changelog