From cb28e9d30589efdbce03778f5692ed9882668b45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 11 Mar 2019 15:04:26 +0100 Subject: [PATCH 01/13] Import Reviewed in bug #1686788. --- .gitignore | 1 + perl-GIS-Distance.spec | 74 ++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 76 insertions(+) create mode 100644 .gitignore create mode 100644 perl-GIS-Distance.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5197e47 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/GIS-Distance-0.11.tar.gz diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec new file mode 100644 index 0000000..7e0ea44 --- /dev/null +++ b/perl-GIS-Distance.spec @@ -0,0 +1,74 @@ +# Use optimized implementation in C +# Enable bootstrapping locally until perl-GIS-Distance-XS is built. +%global perl_bootstrap 1 +%if !%{defined perl_bootstrap} +# Build-cycle: perl-GIS-Distance-XS → perl-GIS-Distance +%bcond_without perl_GIS_Distance_enables_xs +%endif + +Name: perl-GIS-Distance +Version: 0.11 +Release: 1%{?dist} +Summary: Calculate geographic distances +License: GPL+ or Artistic +URL: https://metacpan.org/release/GIS-Distance +Source0: https://cpan.metacpan.org/authors/id/B/BL/BLUEFEET/GIS-Distance-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl-generators +BuildRequires: perl-interpreter +BuildRequires: perl(:VERSION) >= 5.8.1 +BuildRequires: perl(Module::Build::Tiny) >= 0.035 +BuildRequires: perl(strict) +# Run-time: +BuildRequires: perl(Carp) +BuildRequires: perl(Class::Measure::Length) +BuildRequires: perl(Const::Fast) >= 0.014 +BuildRequires: perl(Exporter) +BuildRequires: perl(Math::Trig) +BuildRequires: perl(namespace::clean) >= 0.24 +BuildRequires: perl(strictures) >= 2 +%if %{with perl_GIS_Distance_enables_xs} +# Optional run-time: +BuildRequires: perl(GIS::Distance::Fast) >= 0.09 +%endif +# Tests: +BuildRequires: perl(Test2::V0) >= 0.000094 +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +Requires: perl(Const::Fast) >= 0.014 +%if %{with perl_GIS_Distance_enables_xs} +Recommends: perl(GIS::Distance::Fast) >= 0.09 +%endif +Requires: perl(namespace::clean) >= 0.24 + +# Remove under-specified dependencies +%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\((Const::Fast|namespace::clean)\\)$ + +%description +This Perl module calculates distances between geographic points on, at the +moment, planet Earth. Various "FORMULAS" are available that provide different +levels of accuracy versus speed. + +%prep +%setup -q -n GIS-Distance-%{version} + +%build +perl Build.PL --installdirs=vendor +./Build + +%install +./Build install --destdir=%{buildroot} --create_packlist=0 +%{_fixperms} %{buildroot} + +%check +unset GEO_DISTANCE_PP GIS_DISTANCE_PP +./Build test + +%files +%license LICENSE +%doc Changes README.md +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Fri Mar 08 2019 Petr Pisar 0.11-1 +- Specfile autogenerated by cpanspec 1.78. diff --git a/sources b/sources new file mode 100644 index 0000000..b15ff13 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (GIS-Distance-0.11.tar.gz) = 3a7207250043e5ef4915053b1a1734fc1e97175addf6bccfafafd5e860caa52985f9b171c8dd05c0c6c98d80d2768aee1a23087f7b11426b16c8fecc6ed65170 From 0925510e5dd93584246c11673c6ba9e153131e86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 11 Mar 2019 15:05:02 +0100 Subject: [PATCH 02/13] Remove a white space --- perl-GIS-Distance.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index 7e0ea44..af641f6 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -1,4 +1,4 @@ -# Use optimized implementation in C +# Use optimized implementation in C # Enable bootstrapping locally until perl-GIS-Distance-XS is built. %global perl_bootstrap 1 %if !%{defined perl_bootstrap} From 03c888c0672b60d929dc965f9a03b6eda6b8f193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 11 Mar 2019 15:32:44 +0100 Subject: [PATCH 03/13] Finish boostrapping with perl-GIS-Distance-XS --- perl-GIS-Distance.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index af641f6..1241f21 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -1,6 +1,4 @@ # Use optimized implementation in C -# Enable bootstrapping locally until perl-GIS-Distance-XS is built. -%global perl_bootstrap 1 %if !%{defined perl_bootstrap} # Build-cycle: perl-GIS-Distance-XS → perl-GIS-Distance %bcond_without perl_GIS_Distance_enables_xs @@ -8,7 +6,7 @@ Name: perl-GIS-Distance Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Calculate geographic distances License: GPL+ or Artistic URL: https://metacpan.org/release/GIS-Distance @@ -70,5 +68,8 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Mon Mar 11 2019 Petr Pisar - 0.11-2 +- Finish boostrapping with perl-GIS-Distance-XS + * Fri Mar 08 2019 Petr Pisar 0.11-1 - Specfile autogenerated by cpanspec 1.78. From fb551831ab091d2b0ddeaf3b88fb123c8553866e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 13 Mar 2019 10:23:56 +0100 Subject: [PATCH 04/13] 0.15 bump --- .gitignore | 1 + perl-GIS-Distance.spec | 15 +++++++++++++-- sources | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5197e47..2ec46ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /GIS-Distance-0.11.tar.gz +/GIS-Distance-0.15.tar.gz diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index 1241f21..9c7e956 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -1,3 +1,5 @@ +# Run optional tests +%bcond_without perl_GIS_Distance_enables_optional_test # Use optimized implementation in C %if !%{defined perl_bootstrap} # Build-cycle: perl-GIS-Distance-XS → perl-GIS-Distance @@ -5,8 +7,8 @@ %endif Name: perl-GIS-Distance -Version: 0.11 -Release: 2%{?dist} +Version: 0.15 +Release: 1%{?dist} Summary: Calculate geographic distances License: GPL+ or Artistic URL: https://metacpan.org/release/GIS-Distance @@ -24,13 +26,19 @@ BuildRequires: perl(Const::Fast) >= 0.014 BuildRequires: perl(Exporter) BuildRequires: perl(Math::Trig) BuildRequires: perl(namespace::clean) >= 0.24 +BuildRequires: perl(Scalar::Util) BuildRequires: perl(strictures) >= 2 %if %{with perl_GIS_Distance_enables_xs} # Optional run-time: BuildRequires: perl(GIS::Distance::Fast) >= 0.09 %endif # Tests: +BuildRequires: perl(Test2::Require::Module) BuildRequires: perl(Test2::V0) >= 0.000094 +%if %{with perl_GIS_Distance_enables_optional_test} +# Optional tests: +# Geo::Point not yet packaged +%endif Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) Requires: perl(Const::Fast) >= 0.014 %if %{with perl_GIS_Distance_enables_xs} @@ -68,6 +76,9 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Wed Mar 13 2019 Petr Pisar - 0.15-1 +- 0.15 bump + * Mon Mar 11 2019 Petr Pisar - 0.11-2 - Finish boostrapping with perl-GIS-Distance-XS diff --git a/sources b/sources index b15ff13..73c6ec7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (GIS-Distance-0.11.tar.gz) = 3a7207250043e5ef4915053b1a1734fc1e97175addf6bccfafafd5e860caa52985f9b171c8dd05c0c6c98d80d2768aee1a23087f7b11426b16c8fecc6ed65170 +SHA512 (GIS-Distance-0.15.tar.gz) = b208b10801222816b033ce7861b6ec4fc2100c44cea3677ee4ad51498302d24261658d6fa2111082d9d68b16d48905226eb38521a91fe2eefc4b3e6b8ce2e65a From bfe4b28838142ab2d5d97a710ef0deb57932ec36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 18 Mar 2019 09:41:49 +0100 Subject: [PATCH 05/13] 0.17 bump --- .gitignore | 1 + perl-GIS-Distance.spec | 14 ++++++++++---- sources | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 2ec46ea..4b588b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /GIS-Distance-0.11.tar.gz /GIS-Distance-0.15.tar.gz +/GIS-Distance-0.17.tar.gz diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index 9c7e956..b9c5822 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -1,13 +1,15 @@ # Run optional tests %bcond_without perl_GIS_Distance_enables_optional_test # Use optimized implementation in C +# For perl-GIS-Distance-Fast-0.14 +%global perl_bootstrap 1 %if !%{defined perl_bootstrap} # Build-cycle: perl-GIS-Distance-XS → perl-GIS-Distance %bcond_without perl_GIS_Distance_enables_xs %endif Name: perl-GIS-Distance -Version: 0.15 +Version: 0.17 Release: 1%{?dist} Summary: Calculate geographic distances License: GPL+ or Artistic @@ -26,23 +28,24 @@ BuildRequires: perl(Const::Fast) >= 0.014 BuildRequires: perl(Exporter) BuildRequires: perl(Math::Trig) BuildRequires: perl(namespace::clean) >= 0.24 +BuildRequires: perl(parent) BuildRequires: perl(Scalar::Util) BuildRequires: perl(strictures) >= 2 %if %{with perl_GIS_Distance_enables_xs} # Optional run-time: -BuildRequires: perl(GIS::Distance::Fast) >= 0.09 +BuildRequires: perl(GIS::Distance::Fast) >= 0.13 %endif # Tests: BuildRequires: perl(Test2::Require::Module) BuildRequires: perl(Test2::V0) >= 0.000094 %if %{with perl_GIS_Distance_enables_optional_test} # Optional tests: -# Geo::Point not yet packaged +BuildRequires: perl(Geo::Point) >= 0.95 %endif Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) Requires: perl(Const::Fast) >= 0.014 %if %{with perl_GIS_Distance_enables_xs} -Recommends: perl(GIS::Distance::Fast) >= 0.09 +Recommends: perl(GIS::Distance::Fast) >= 0.13 %endif Requires: perl(namespace::clean) >= 0.24 @@ -76,6 +79,9 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Mon Mar 18 2019 Petr Pisar - 0.17-1 +- 0.17 bump + * Wed Mar 13 2019 Petr Pisar - 0.15-1 - 0.15 bump diff --git a/sources b/sources index 73c6ec7..410441d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (GIS-Distance-0.15.tar.gz) = b208b10801222816b033ce7861b6ec4fc2100c44cea3677ee4ad51498302d24261658d6fa2111082d9d68b16d48905226eb38521a91fe2eefc4b3e6b8ce2e65a +SHA512 (GIS-Distance-0.17.tar.gz) = 89988a51fcb286acdc317d8219dca0b12ed12de73d4bb6b383aad5f801c74f3d8e9c809f4a8af1bd80f631121b9c5ea4501e91b1bdf92c26de32b3e9f3e2644f From 9dcf58b617dbb76b2c7a1bd3a5542498f7f9cf23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 18 Mar 2019 10:08:28 +0100 Subject: [PATCH 06/13] Finish bootstrapping perl-GIS-Distance-Fast-0.14 --- perl-GIS-Distance.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index b9c5822..9e5e75a 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -1,8 +1,6 @@ # Run optional tests %bcond_without perl_GIS_Distance_enables_optional_test # Use optimized implementation in C -# For perl-GIS-Distance-Fast-0.14 -%global perl_bootstrap 1 %if !%{defined perl_bootstrap} # Build-cycle: perl-GIS-Distance-XS → perl-GIS-Distance %bcond_without perl_GIS_Distance_enables_xs @@ -10,7 +8,7 @@ Name: perl-GIS-Distance Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Calculate geographic distances License: GPL+ or Artistic URL: https://metacpan.org/release/GIS-Distance @@ -79,6 +77,9 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Mon Mar 18 2019 Petr Pisar - 0.17-2 +- Finish bootstrapping perl-GIS-Distance-Fast-0.14 + * Mon Mar 18 2019 Petr Pisar - 0.17-1 - 0.17 bump From eb6a4e055f7f133305fc4d8293a69b962d6eb860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 13 May 2019 11:01:13 +0200 Subject: [PATCH 07/13] 0.18 bump --- .gitignore | 1 + perl-GIS-Distance.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 4b588b8..6185d3c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /GIS-Distance-0.11.tar.gz /GIS-Distance-0.15.tar.gz /GIS-Distance-0.17.tar.gz +/GIS-Distance-0.18.tar.gz diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index 9e5e75a..9a65266 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -7,10 +7,10 @@ %endif Name: perl-GIS-Distance -Version: 0.17 -Release: 2%{?dist} +Version: 0.18 +Release: 1%{?dist} Summary: Calculate geographic distances -License: GPL+ or Artistic +License: GPLv3+ URL: https://metacpan.org/release/GIS-Distance Source0: https://cpan.metacpan.org/authors/id/B/BL/BLUEFEET/GIS-Distance-%{version}.tar.gz BuildArch: noarch @@ -77,6 +77,10 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Mon May 13 2019 Petr Pisar - 0.18-1 +- 0.18 bump +- License changed from "GPL+ or Arstistic" to "GPLv3+" + * Mon Mar 18 2019 Petr Pisar - 0.17-2 - Finish bootstrapping perl-GIS-Distance-Fast-0.14 diff --git a/sources b/sources index 410441d..7874cbe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (GIS-Distance-0.17.tar.gz) = 89988a51fcb286acdc317d8219dca0b12ed12de73d4bb6b383aad5f801c74f3d8e9c809f4a8af1bd80f631121b9c5ea4501e91b1bdf92c26de32b3e9f3e2644f +SHA512 (GIS-Distance-0.18.tar.gz) = 78bd535d3f73963a1b7a4815c9da8f8473f37eb0898faa1661a7f0e2abfdeb1d458496729c0c4613870bcc8129499622f34d4ea03a0933ad2bd6097a55804029 From 1b59b55fecd2a6dd8eacf1aa1579ba2b83552eb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 13 May 2019 11:04:46 +0200 Subject: [PATCH 08/13] Correct a typo in a changelog entry --- perl-GIS-Distance.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index 9a65266..a6b0716 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -79,7 +79,7 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %changelog * Mon May 13 2019 Petr Pisar - 0.18-1 - 0.18 bump -- License changed from "GPL+ or Arstistic" to "GPLv3+" +- License changed from "GPL+ or Artistic" to "GPLv3+" * Mon Mar 18 2019 Petr Pisar - 0.17-2 - Finish bootstrapping perl-GIS-Distance-Fast-0.14 From c1075257ac2a89020307a09ec87b7a20797b6085 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Thu, 23 May 2019 12:08:33 +0200 Subject: [PATCH 09/13] Disable option tests when bootstrapping due to circular dependencies --- perl-GIS-Distance.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index a6b0716..12a7a56 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -1,7 +1,8 @@ +%if !%{defined perl_bootstrap} # Run optional tests +# Build-cycle: perl-GIS-Distance ? perl-Geo-Point ? perl-Geo-Distance %bcond_without perl_GIS_Distance_enables_optional_test # Use optimized implementation in C -%if !%{defined perl_bootstrap} # Build-cycle: perl-GIS-Distance-XS → perl-GIS-Distance %bcond_without perl_GIS_Distance_enables_xs %endif From a0400725a2143c53a16048ccf07fd8a06e226855 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 31 May 2019 16:49:43 +0200 Subject: [PATCH 10/13] Perl 5.30 rebuild --- perl-GIS-Distance.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index 12a7a56..8b60b4b 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -9,7 +9,7 @@ Name: perl-GIS-Distance Version: 0.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Calculate geographic distances License: GPLv3+ URL: https://metacpan.org/release/GIS-Distance @@ -78,6 +78,9 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Fri May 31 2019 Jitka Plesnikova - 0.18-2 +- Perl 5.30 rebuild + * Mon May 13 2019 Petr Pisar - 0.18-1 - 0.18 bump - License changed from "GPL+ or Artistic" to "GPLv3+" From 7703a2cb3cc303e34c40a95b5dd7370fb5b23611 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sun, 2 Jun 2019 22:59:20 +0200 Subject: [PATCH 11/13] Perl 5.30 re-rebuild of bootstrapped packages --- perl-GIS-Distance.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index 8b60b4b..bb1fd57 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -9,7 +9,7 @@ Name: perl-GIS-Distance Version: 0.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Calculate geographic distances License: GPLv3+ URL: https://metacpan.org/release/GIS-Distance @@ -78,6 +78,9 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Sun Jun 02 2019 Jitka Plesnikova - 0.18-3 +- Perl 5.30 re-rebuild of bootstrapped packages + * Fri May 31 2019 Jitka Plesnikova - 0.18-2 - Perl 5.30 rebuild From b070e338314f14ca1c9b71b5797297f12a18665a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 03:11:54 +0000 Subject: [PATCH 12/13] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-GIS-Distance.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index bb1fd57..bca5eb3 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -9,7 +9,7 @@ Name: perl-GIS-Distance Version: 0.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Calculate geographic distances License: GPLv3+ URL: https://metacpan.org/release/GIS-Distance @@ -78,6 +78,9 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 0.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Jun 02 2019 Jitka Plesnikova - 0.18-3 - Perl 5.30 re-rebuild of bootstrapped packages From 2643772ab5343d17c2ac5b67e1dc35e8e1690a8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 20 Sep 2019 09:59:49 +0200 Subject: [PATCH 13/13] Disable optional tests because perl-Geo-Point will be retired --- perl-GIS-Distance.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/perl-GIS-Distance.spec b/perl-GIS-Distance.spec index bca5eb3..20cc880 100644 --- a/perl-GIS-Distance.spec +++ b/perl-GIS-Distance.spec @@ -1,7 +1,8 @@ %if !%{defined perl_bootstrap} -# Run optional tests -# Build-cycle: perl-GIS-Distance ? perl-Geo-Point ? perl-Geo-Distance -%bcond_without perl_GIS_Distance_enables_optional_test +# Run optional tests. +# Disabled because perl-Geo-Point was retired (bug #1748923). +# Build-cycle: perl-GIS-Distance → perl-Geo-Point → perl-Geo-Distance +%bcond_with perl_GIS_Distance_enables_optional_test # Use optimized implementation in C # Build-cycle: perl-GIS-Distance-XS → perl-GIS-Distance %bcond_without perl_GIS_Distance_enables_xs @@ -9,7 +10,7 @@ Name: perl-GIS-Distance Version: 0.18 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Calculate geographic distances License: GPLv3+ URL: https://metacpan.org/release/GIS-Distance @@ -78,6 +79,9 @@ unset GEO_DISTANCE_PP GIS_DISTANCE_PP %{_mandir}/man3/* %changelog +* Fri Sep 20 2019 Petr Pisar - 0.18-5 +- Disable optional tests because perl-Geo-Point will be retired (bug #1748923) + * Fri Jul 26 2019 Fedora Release Engineering - 0.18-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild