-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try to rewrite pull request #9 to python3
- Loading branch information
Showing
48 changed files
with
1,281 additions
and
476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
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 | ||
ARCH_BUILD_DIRS := archlinux | ||
endif | ||
|
||
RPM_SPEC_FILES := rpm_spec/qpdf-converter.spec | ||
ARCH_BUILD_DIRS := archlinux | ||
endif | ||
|
||
# vim: filetype=make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# WARNING: those requirements are used only for travis-ci.org | ||
# they SHOULD NOT be used under normal conditions; use system package manager | ||
click | ||
pillow | ||
pylint | ||
tqdm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
qubes-pdf-converter (3.0.0-1) unstable; urgency=medium | ||
|
||
[ Neowutran ] | ||
* Add support for libreoffice files type | ||
* Add support for password protected files | ||
qubes-pdf-converter (2.1.8-1) unstable; urgency=medium | ||
|
||
-- Marek Marczykowski-Górecki <[email protected]> Sat, 25 Apr 2020 20:41:05 +0100 | ||
[ Frédéric Pierret (fepitre) ] | ||
* Drop python2 | ||
|
||
-- Marek Marczykowski-Górecki <[email protected]> Mon, 25 May 2020 04:16:24 +0200 | ||
|
||
qubes-pdf-converter (2.1.7-1) unstable; urgency=medium | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ Source: qubes-pdf-converter | |
Section: admin | ||
Priority: optional | ||
Maintainer: Jason Mehring <[email protected]> | ||
Build-Depends: pandoc, debhelper (>= 9) | ||
Build-Depends: pandoc, python3-setuptools, debhelper (>= 9) | ||
# For the futures version of debian, delete the "compat" file, and add the line below in "Build-Depends" | ||
# debhelper-compat (= 12) | ||
Standards-Version: 4.5.0 | ||
|
@@ -11,5 +11,15 @@ Homepage: https://github.com/QubesOS/qubes-app-linux-pdf-converter | |
Package: qubes-pdf-converter | ||
Section: admin | ||
Architecture: any | ||
Depends: poppler-utils, net-tools, file, libreoffice, graphicsmagick, python-nautilus, ${misc:Depends} | ||
Depends: | ||
poppler-utils, | ||
libreoffice, | ||
graphicsmagick, | ||
python3 (>= 3.7.0), | ||
python3-nautilus | python-nautilus, | ||
python3-click, | ||
python3-pillow, | ||
python3-tqdm, | ||
python3-magic, | ||
${misc:Depends} | ||
Description: The Qubes service for converting untrusted PDF files into trusted ones |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Tests: all | ||
Depends: @ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.