Skip to content

Commit

Permalink
require python 3.7+, exclude stretch, jessie and centos
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarek committed Jun 24, 2020
1 parent 653c55f commit b83e354
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.builder
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ifeq ($(PACKAGE_SET),dom0)
RPM_SPEC_FILES := rpm_spec/qpdf-converter-dom0.spec
else ifeq ($(PACKAGE_SET),vm)
ifneq ($(filter $(DISTRIBUTION), debian qubuntu),)
# needs python 3.7+ - exclude stretch, jessie, and centos[78]
ifeq ($(filter $(DIST), stretch jessie centos7 centos8),)
DEBIAN_BUILD_DIRS := debian
RPM_SPEC_FILES := rpm_spec/qpdf-converter.spec
endif

RPM_SPEC_FILES := rpm_spec/qpdf-converter.spec
endif

# vim: filetype=make
1 change: 1 addition & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Architecture: any
Depends:
poppler-utils,
imagemagick,
python3 (>= 3.7.0),
python3-nautilus | python-nautilus,
python3-click,
python3-pillow,
Expand Down
1 change: 1 addition & 0 deletions rpm_spec/qpdf-converter.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ BuildRequires: python%{python3_pkgversion}-devel

Requires: poppler-utils ImageMagick
Requires: nautilus-python
Requires: python%{python3_pkgversion} >= 3.7
Requires: python%{python3_pkgversion}-pillow
Requires: python%{python3_pkgversion}-click
Requires: python%{python3_pkgversion}-tqdm
Expand Down

0 comments on commit b83e354

Please sign in to comment.