Files
perl-Version-Next/perl-Version-Next.spec
2025-08-12 18:18:24 +02:00

74 lines
2.3 KiB
RPMSpec

#
# spec file for package perl-Version-Next
#
# 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 Version-Next
Name: perl-Version-Next
Version: 1.0.0
Release: 0
# 1.000 -> normalize -> 1.0.0
%define cpan_version 1.000
License: Apache-2.0
Summary: Increment module version numbers simply and correctly
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Sub::Exporter)
BuildRequires: perl(Test::Exception) >= 0.29
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(version) >= 0.81
Requires: perl(Sub::Exporter)
Requires: perl(version) >= 0.81
Provides: perl(Version::Next) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
This module provides a simple, correct way to increment a Perl module
version number. It does not attempt to guess what the original version
number author intended, it simply increments in the smallest possible
fashion. Decimals are incremented like an odometer. Dotted decimals are
incremented piecewise and presented in a standardized way.
If more complex version manipulation is necessary, you may wish to consider
Perl::Version.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
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 CONTRIBUTING.mkdn README
%license LICENSE
%changelog