121 lines
3.1 KiB
RPMSpec
121 lines
3.1 KiB
RPMSpec
%global srcname cartopy
|
|
|
|
# Some tests use the network.
|
|
%bcond_with network
|
|
|
|
Name: python-%{srcname}
|
|
Version: 0.25.0
|
|
Release: %autorelease
|
|
Summary: Cartographic Python library with Matplotlib visualisations
|
|
|
|
License: BSD-3-Clause
|
|
URL: https://scitools.org.uk/cartopy/docs/latest/
|
|
Source0: %pypi_source %{srcname}
|
|
# Set location of Fedora-provided pre-existing data.
|
|
Source1: siteconfig.py
|
|
|
|
# Fedora specific.
|
|
Patch: 0001-Reduce-numpy-build-dependency.patch
|
|
# Might not go upstream in current form.
|
|
Patch: 0002-Increase-tolerance-for-new-FreeType.patch
|
|
|
|
# See https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
|
ExcludeArch: %{ix86}
|
|
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: proj-data-uk
|
|
BuildRequires: python3-devel
|
|
|
|
%global _description %{expand:
|
|
Cartopy is a Python package designed to make drawing maps for data analysis
|
|
and visualisation easy. It features:
|
|
* object oriented projection definitions
|
|
* point, line, polygon and image transformations between projections
|
|
* integration to expose advanced mapping in Matplotlib with a simple and
|
|
intuitive interface
|
|
* powerful vector data handling by integrating shapefile reading with Shapely
|
|
capabilities
|
|
}
|
|
|
|
%description %{_description}
|
|
|
|
|
|
%package -n python3-%{srcname}
|
|
Summary: %{summary}
|
|
|
|
Requires: python-%{srcname}-common = %{version}-%{release}
|
|
Recommends: python3dist(cartopy[ows]) = %{version}-%{release}
|
|
Recommends: python3dist(cartopy[plotting]) = %{version}-%{release}
|
|
Recommends: python3dist(cartopy[speedups]) = %{version}-%{release}
|
|
|
|
%description -n python3-%{srcname} %{_description}
|
|
|
|
|
|
%package -n python-%{srcname}-common
|
|
Summary: Data files for %{srcname}
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: natural-earth-map-data-110m
|
|
BuildRequires: natural-earth-map-data-50m
|
|
|
|
Recommends: natural-earth-map-data-110m
|
|
Suggests: natural-earth-map-data-50m
|
|
Suggests: natural-earth-map-data-10m
|
|
|
|
%description -n python-%{srcname}-common
|
|
Data files for %{srcname}.
|
|
|
|
|
|
%pyproject_extras_subpkg -n python3-cartopy ows plotting speedups
|
|
|
|
|
|
%prep
|
|
%autosetup -n %{srcname}-%{version} -p1
|
|
cp -a %SOURCE1 lib/cartopy/
|
|
|
|
sed -i -e 's/, "pytest-cov", "coveralls"//g' pyproject.toml
|
|
|
|
# Remove generated Cython sources
|
|
rm lib/cartopy/trace.cpp
|
|
|
|
|
|
%generate_buildrequires
|
|
%pyproject_buildrequires -r -x ows,plotting,speedups,test
|
|
|
|
|
|
%build
|
|
export FORCE_CYTHON=1 SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
|
|
%pyproject_wheel
|
|
|
|
|
|
%install
|
|
%pyproject_install
|
|
%pyproject_save_files -l %{srcname}
|
|
|
|
mkdir -p %{buildroot}%{_datadir}/cartopy/shapefiles/natural_earth/
|
|
for theme in physical cultural; do
|
|
ln -s %{_datadir}/natural-earth-map-data/${theme} \
|
|
%{buildroot}%{_datadir}/cartopy/shapefiles/natural_earth/${theme}
|
|
done
|
|
|
|
|
|
%check
|
|
MPLBACKEND=Agg \
|
|
%{pytest} -n auto --doctest-modules --mpl --mpl-generate-summary=html --pyargs cartopy \
|
|
%if %{with network}
|
|
%{nil}
|
|
%else
|
|
-m "not network"
|
|
%endif
|
|
|
|
|
|
%files -n python-%{srcname}-common
|
|
%doc README.md
|
|
%{_datadir}/cartopy/
|
|
|
|
%files -n python3-%{srcname} -f %{pyproject_files}
|
|
%{_bindir}/cartopy_feature_download
|
|
|
|
|
|
%changelog
|
|
%autochangelog
|