Files
perl-GIS-Distance/perl-GIS-Distance.spec
2025-08-12 18:14:22 +02:00

93 lines
3.4 KiB
RPMSpec

#
# spec file for package perl-GIS-Distance
#
# 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 GIS-Distance
Name: perl-GIS-Distance
Version: 0.200.0
Release: 0
# 0.20 -> normalize -> 0.200.0
%define cpan_version 0.20
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Calculate geographic distances
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/B/BL/BLUEFEET/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Class::Measure::Length)
BuildRequires: perl(Const::Fast) >= 0.014
BuildRequires: perl(Module::Build)
BuildRequires: perl(Module::Build::Tiny) >= 0.035
BuildRequires: perl(Test2::V0) >= 0.000094
BuildRequires: perl(namespace::clean) >= 0.24
BuildRequires: perl(parent)
BuildRequires: perl(strictures) >= 2.000000
Requires: perl(Class::Measure::Length)
Requires: perl(Const::Fast) >= 0.014
Requires: perl(namespace::clean) >= 0.24
Requires: perl(parent)
Requires: perl(strictures) >= 2.000000
Provides: perl(GIS::Distance) = %{version}
Provides: perl(GIS::Distance::ALT) = %{version}
Provides: perl(GIS::Distance::Constants) = %{version}
Provides: perl(GIS::Distance::Cosine) = %{version}
Provides: perl(GIS::Distance::Formula) = %{version}
Provides: perl(GIS::Distance::GreatCircle) = %{version}
Provides: perl(GIS::Distance::Haversine) = %{version}
Provides: perl(GIS::Distance::MathTrig) = %{version}
Provides: perl(GIS::Distance::Null) = %{version}
Provides: perl(GIS::Distance::Polar) = %{version}
Provides: perl(GIS::Distance::Vincenty) = %{version}
%undefine __perllib_provides
Recommends: perl(GIS::Distance::Fast) >= 0.130
%{perl_requires}
%description
This module calculates distances between geographic points on, at the
moment, planet Earth. Various FORMULAS are available that provide different
levels of accuracy versus speed.
GIS::Distance::Fast, a separate distribution, ships with C implementations
of some of the formulas shipped with GIS::Distance. If you're looking for
speed then install it and the ::Fast formulas will be automatically used by
this module.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Build.PL --installdirs=vendor
./Build build --flags=%{?_smp_mflags}
%check
./Build test
%install
./Build install --destdir=%{buildroot} --create_packlist=0
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README.md
%license LICENSE
%changelog