forked from QubesOS/qubes-app-linux-pdf-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
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 QubesOS#9 to python
- Loading branch information
Showing
25 changed files
with
1,296 additions
and
447 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ rpm/ | |
deb/ | ||
pkgs/ | ||
*.gz | ||
debian/changelog.* |
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,22 @@ | ||
[MASTER] | ||
persistent=no | ||
ignore=qubespdfconverter/tests | ||
|
||
[MESSAGES CONTROL] | ||
disable= | ||
bad-continuation, | ||
bare-except, | ||
blacklisted-name, | ||
deprecated-method, | ||
duplicate-code, | ||
expression-not-assigned, | ||
file-ignored, | ||
fixme, | ||
invalid-name, | ||
locally-disabled, | ||
locally-enabled, | ||
missing-docstring, | ||
protected-access, | ||
too-few-public-methods, | ||
unused-argument, | ||
wrong-import-order |
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,18 +1,15 @@ | ||
sudo: required | ||
dist: bionic | ||
language: generic | ||
install: git clone https://github.com/QubesOS/qubes-builder ~/qubes-builder | ||
script: ~/qubes-builder/scripts/travis-build | ||
env: | ||
- DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 | ||
- DISTS_VM=fc30 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 | ||
- DISTS_VM=fc31 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 | ||
- DISTS_VM=stretch USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 | ||
- DISTS_VM=buster USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 | ||
- DIST_DOM0=fc31 USE_QUBES_REPO_VERSION=4.1 USE_QUBES_REPO_TESTING=1 | ||
- DISTS_VM=bullseye USE_QUBES_REPO_VERSION=4.1 USE_QUBES_REPO_TESTING=1 | ||
import: | ||
- source: QubesOS/qubes-continuous-integration:R4.1/travis-base-r4.1.yml | ||
- source: QubesOS/qubes-continuous-integration:R4.1/travis-dom0-r4.1.yml | ||
- source: QubesOS/qubes-continuous-integration:R4.0/travis-dom0-r4.0.yml | ||
- source: QubesOS/qubes-continuous-integration:R4.1/travis-vms-r4.1.yml | ||
|
||
jobs: | ||
include: | ||
- script: | ||
- shellcheck qpdf-convert-client qpdf-convert-server | ||
- language: python | ||
python: | ||
- '3.7' | ||
install: | ||
- pip install --quiet -r ci/requirements.txt | ||
script: | ||
- python3 -m pylint --rcfile=.pylintrc qubespdfconverter |
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
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
Oops, something went wrong.