Skip to content

Commit

Permalink
dev-python/rst2pdf,svglib: version bumps and tool cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen L Arnold <sarnold@vctlabs.com>
  • Loading branch information
sarnold committed May 18, 2023
1 parent 4218216 commit b90c1a1
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ failures.json
# vim
.*.sw[a-z]
tags

# other
.tox/
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: check-useless-excludes
- id: check-hooks-apply
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: trailing-whitespace
exclude: '\.patch$'
Expand All @@ -21,15 +21,15 @@ repos:
- id: check-yaml

- repo: https://github.com/PyCQA/doc8
rev: 0.11.2
rev: v1.1.1
hooks:
- id: doc8
args:
- '--max-line-length=90'
- '--ignore=D001'

- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
rev: v1.10.0
hooks:
- id: rst-backticks
- id: rst-directive-colons
Expand All @@ -38,6 +38,6 @@ repos:
# we need some upstream hooks for https://github.com/pkgcore/pkgcheck
# so use mirror-maker for now
- repo: https://github.com/sarnold/mirrors-pkgcheck.git
rev: v0.10.11
rev: v0.10.23
hooks:
- id: pkgcheck
2 changes: 1 addition & 1 deletion dev-python/rst2pdf/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DIST rst2pdf-0.98.tar.gz 11333895 BLAKE2B 3475966685eb5c614a1f654d306f2e17a3a90b1d28e0c1a32821a06b4f9f3bcb07cac968601e7021cfcc155af3ad4c94eb10e7dcbee5214154f2b9947f3e3283 SHA512 f8fcc269139e1d163fc21a5f92262c1e106b98c8807d45f3b53f9e9164fa667e3508bfe7ca7fd100e7f60e4105980c15dedfe546f0a81d1cc02b3a24b8dd7e48
DIST rst2pdf-0.100.tar.gz 12136709 BLAKE2B bb309a7afc3364116bf3483959feb9ce4a992017befe0a8a0609585006eaf13e06f47d8d25b2640bfaf614786f6e574d28c3392d7e5b925190f3182055ef6d58 SHA512 18085c86db6f721124d7fbd7ef47ae9c7c76c72d00ce0ba800833060c5ba1bf8e34eac88f1d9d77cff51e7d3bb9021095bf64fd2532f4c564f6e7dfed65ad386
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
EAPI=7

PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_SETUPTOOLS=rdepend
DISTUTILS_USE_PEP517=setuptools

inherit distutils-r1

Expand All @@ -20,7 +20,6 @@ IUSE="math sphinx svg"
BDEPEND="${PYTHON_DEPS}
dev-python/jinja[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pdfrw[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
dev-python/smartypants[${PYTHON_USEDEP}]
Expand Down
2 changes: 1 addition & 1 deletion dev-python/svglib/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DIST svglib-1.0.1.gh.tar.gz 1255732 BLAKE2B 3087a9305e9084512240e7afe2ebdd4920fdd56e47211d8ad1e3df2fa0d0f7db431be3359093334025d8157e8d4929f7f97648a19a4c00a7e0f011812bb7775d SHA512 6e97e8136f4d592eeb5f72b8ea68b846c4ca0d5cf87f4c83715813e8fdc754316ef5f9ef24f6e852ee67d1da1f78a4ac4d6af432412050ee80a7cf4719ec44b0
DIST svglib-1.5.1.gh.tar.gz 1265304 BLAKE2B e147df6c5326f0ed27ffa56a158442b7727946cd9f51577df36b05b04ffa7ee6b8112736eab92e214ef26b7d055506844820b323e5342e04efbd615a7b8f982f SHA512 5cd93db39078c7598a51e08afee08b689c4c95e5ac6340d1a51f85b6459fa4635b8edf45add3b39d0a079f0177a99b3d4786e40fb6276aa5ba80c9b5513e6d4c
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_USE_SETUPTOOLS=bdepend
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools

inherit distutils-r1

Expand Down
7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ isolated_build = true
skipsdist = true

[testenv]
basepython = python3.9
#basepython = python3.9
install_command = pip install {opts} {packages}

[testenv:ci]
skip_install = true
passenv = CI PYTHON PYTHONIOENCODING
passenv =
CI
PYTHON
PYTHONIOENCODING

deps =
pip>=20.3
Expand Down

0 comments on commit b90c1a1

Please sign in to comment.