Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Add sphinxdoc:Depends
· ce2e3033
Antonio Valentino
authored
Dec 24, 2018
ce2e3033
Honor DEB_BUILD_OPTIONS nodoc option
· 6d8925e4
Antonio Valentino
authored
Dec 24, 2018
6d8925e4
Add depencency form pygac and pytroll-schedule
· bde05efa
Antonio Valentino
authored
Dec 24, 2018
bde05efa
Standard version bump
· 270b10a9
Antonio Valentino
authored
Dec 24, 2018
270b10a9
Add hidden dependencies
· 5fedfe6b
Antonio Valentino
authored
Dec 24, 2018
5fedfe6b
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
5fedfe6b
...
...
@@ -7,9 +7,11 @@ Build-Depends: debhelper (>= 11),
dh-python,
python3-all,
python3-behave,
python3-bs4,
python3-dask,
python3-gdal,
python3-geotiepoints,
python3-grib,
python3-h5netcdf,
python3-h5py,
python3-imageio,
...
...
@@ -17,19 +19,26 @@ Build-Depends: debhelper (>= 11),
python3-netcdf4,
python3-numpy,
python3-pil,
python3-pygac,
python3-pycoast,
python3-pykdtree,
python3-pyorbital (>= 1.3.1),
python3-pyproj,
python3-pyresample (>= 1.10.3),
python3-rasterio,
python3-requests,
python3-scipy,
python3-setuptools,
python3-six,
python3-sphinx,
python3-sphinx-rtd-theme,
python3-tables,
python3-trollimage,
python3-trollsched,
python3-trollsift,
python3-xarray,
python3-yaml
Standards-Version: 4.
2.1
Standards-Version: 4.
3.0
Vcs-Browser: https://salsa.debian.org/debian-gis-team/satpy
Vcs-Git: https://salsa.debian.org/debian-gis-team/satpy.git
Homepage: https://github.com/pytroll/satpy
...
...
@@ -38,11 +47,15 @@ Package: python3-satpy
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
${sphinxdoc:Depends},
python3-dask,
ptyhon3-grib,
python3-numpy,
python3-pil,
python3-pykdtree,
python3-pyproj,
python3-pyresample (>= 1.10.3),
python3-scipy,
python3-six,
python3-trollimage,
python3-trollsift,
...
...
@@ -50,6 +63,7 @@ Depends: ${misc:Depends},
python3-yaml
Recommends: ${python3:Recommends},
python3-behave,
python3-bs4,
python3-gdal,
python3-geotiepoints,
python3-h5netcdf,
...
...
@@ -57,8 +71,13 @@ Recommends: ${python3:Recommends},
python3-imageio,
python3-libtiff (>= 0.4.2),
python3-netcdf4,
python3-pycoast,
python3-pygac,
python3-pyorbital (>= 1.3.1),
python3-rasterio
python3-rasterio,
python3-requests,
python3-tables,
python3-trollsched
Suggests: ${python3:Suggests}
Description: Python package for earth-observing satellite data processing
The SatPy package is a Python library for reading and manipulating
...
...
debian/rules
View file @
5fedfe6b
...
...
@@ -13,8 +13,10 @@ override_dh_auto_build: export http_proxy=127.0.0.1:9
override_dh_auto_build
:
export https_proxy=127.0.0.1:9
override_dh_auto_build
:
dh_auto_build
ifeq
(,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
PYTHONPATH
=
.
python3
-m
sphinx
-N
-bhtml
doc/source build/html
# HTML generator
# PYTHONPATH=. python3 -m sphinx -N -bman doc/source build/man # Manpage generator
endif
override_dh_auto_clean
:
dh_auto_clean
...
...