Skip to content

Commit 91f2d94

Browse files
committed
alvistack/9.5.0
git clean -xdf tar zcvf ../python-pillow_9.5.0.orig.tar.gz --exclude=.git . debuild -uc -us cp python-pillow.spec ../python-pillow_9.5.0-1.spec mv ../python*-pil*9.5.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/python-pillow-Pillow-9.5.0/ rm -rf ../python*-pil*9.5.0*.* See python-pillow#7066 See python-pillow#7068 Signed-off-by: Wong Hoi Sing Edison <[email protected]>
1 parent 10794e0 commit 91f2d94

File tree

14 files changed

+272
-66
lines changed

14 files changed

+272
-66
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,4 @@ Tests/images/msp
9090
Tests/images/picins
9191
Tests/images/sunraster
9292

93-
# pyinstaller
94-
*.spec
93+
.pybuild

debian/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.substvars
2+
*debhelper*
3+
.debhelper
4+
files
5+
python3-pil
6+
tmp

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
python-pillow (100:9.5.0-1) UNRELEASED; urgency=medium
2+
3+
* https://github.com/python-pillow/Pillow/releases/tag/9.5.0
4+
5+
-- Wong Hoi Sing Edison <[email protected]> Sat, 01 Apr 2023 19:16:14 +0800

debian/control

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
Source: python-pillow
2+
Section: python
3+
Priority: optional
4+
Standards-Version: 4.5.0
5+
Maintainer: Wong Hoi Sing Edison <[email protected]>
6+
Homepage: https://github.com/python-pillow/Pillow/tags
7+
Vcs-Browser: https://github.com/alvistack/python-pillow-Pillow
8+
Vcs-Git: https://github.com/alvistack/python-pillow-Pillow.git
9+
Build-Depends:
10+
debhelper,
11+
debhelper-compat (= 10),
12+
dh-python,
13+
fdupes,
14+
cython3,
15+
libfreetype-dev,
16+
libfribidi-dev,
17+
libharfbuzz-dev,
18+
libjpeg-dev,
19+
liblcms2-dev,
20+
libopenjp2-7-dev,
21+
libraqm-dev,
22+
libtiff-dev,
23+
libtiff-dev,
24+
libwebp-dev,
25+
libxcb1-dev,
26+
python3-cffi,
27+
python3-dev,
28+
python3-numpy,
29+
python3-olefile,
30+
python3-setuptools,
31+
python3-tk,
32+
tcl8.6-dev,
33+
tk8.6-dev,
34+
zlib1g-dev,
35+
36+
Package: python3-pil
37+
Architecture: amd64
38+
Description: Python Imaging Library (Fork)
39+
The Python Imaging Library adds image processing capabilities to your
40+
Python interpreter.
41+
Depends:
42+
${misc:Depends},
43+
${shlibs:Depends},
44+
${python3:Depends},
45+
python3,
46+
python3-olefile,

debian/copyright

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
3+
Files: debian/*
4+
Copyright: 2022 Wong Hoi Sing Edison <[email protected]>
5+
License: Apache-2.0
6+
7+
License: Apache-2.0
8+
Licensed under the Apache License, Version 2.0 (the "License");
9+
you may not use this file except in compliance with the License.
10+
You may obtain a copy of the License at
11+
.
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
.
14+
Unless required by applicable law or agreed to in writing, software
15+
distributed under the License is distributed on an "AS IS" BASIS,
16+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
See the License for the specific language governing permissions and
18+
limitations under the License.
19+
.
20+
The complete text of the Apache version 2.0 license
21+
can be found in "/usr/share/common-licenses/Apache-2.0".

debian/python3-pil.install

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/lib/python*/*-packages/*
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
python3-pil: copyright-without-copyright-notice
2+
python3-pil: initial-upload-closes-no-bugs
3+
python3-pil: no-manual-page
4+
python3-pil: zero-byte-file-in-doc-directory

debian/rules

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/make -f
2+
3+
SHELL := /bin/bash
4+
5+
override_dh_auto_install:
6+
dh_auto_install --destdir=debian/tmp
7+
find debian/tmp/usr/lib/python*/*-packages -type f -name '*.pyc' -exec rm -rf {} \;
8+
fdupes -qnrps debian/tmp/usr/lib/python*/*-packages
9+
10+
override_dh_auto_test:
11+
12+
override_dh_auto_clean:
13+
14+
%:
15+
dh $@ --buildsystem=pybuild --with python3

debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

debian/source/lintian-overrides

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
python-pillow source: file-without-copyright-information
2+
python-pillow source: license-problem-md5sum-non-free-file
3+
python-pillow source: no-debian-changes
4+
python-pillow source: source-contains-prebuilt-windows-binary
5+
python-pillow source: source-is-missing
6+
python-pillow source: source-package-encodes-python-version

0 commit comments

Comments
 (0)