mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-26 05:35:12 +02:00
* par is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
26 lines
624 B
Diff
26 lines
624 B
Diff
--- a/CHANGELOG.md
|
|
+++ b/CHANGELOG.md
|
|
@@ -3,6 +3,11 @@ All notable changes in pdfminer.six will be documented in this file.
|
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
|
+## [Unreleased]
|
|
+
|
|
+### Removed
|
|
+- Unused dependency on `sortedcontainers` package ([#525](https://github.com/pdfminer/pdfminer.six/pull/525))
|
|
+
|
|
## [20201018]
|
|
|
|
### Deprecated
|
|
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -15,7 +15,6 @@
|
|
install_requires=[
|
|
'chardet ; python_version > "3.0"',
|
|
'cryptography',
|
|
- 'sortedcontainers',
|
|
],
|
|
extras_require={
|
|
"dev": ["nose", "tox"],
|
|
|