summaryrefslogtreecommitdiffstats
path: root/source/l/python2-module-collection/python2-module-collection.SlackBuild
blob: ad7bbf6b1f549c4c78f818be607a597c864511a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
#!/bin/bash

# Copyright 2020  Patrick J. Volkerding, Sebeka, Minnesota, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
#  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
#  EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
#  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

cd $(dirname $0) ; CWD=$(pwd)

PKGNAM=python2-module-collection
VERSION=2.7.18
BUILD=${BUILD:-3}

# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
  case "$(uname -m)" in
    i?86) ARCH=i586 ;;
    arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
    # Unless $ARCH is already set, use uname -m for all other archs:
    *) ARCH=$(uname -m) ;;
  esac
  export ARCH
fi

# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
  echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
  exit 0
fi

NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}

if [ "$ARCH" = "i586" ]; then
  SLKCFLAGS="-O2 -march=i586 -mtune=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
  SLKCFLAGS="-O2 -march=i686"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "s390" ]; then
  SLKCFLAGS="-O2"
  LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
  SLKCFLAGS="-O2 -fPIC"
  LIBDIRSUFFIX="64"
elif [ "$ARCH" = "armv7hl" ]; then
  SLKCFLAGS="-O3 -march=armv7-a -mfpu=vfpv3-d16"
  LIBDIRSUFFIX=""
else
  SLKCFLAGS="-O2"
  LIBDIRSUFFIX=""
fi

TMP=${TMP:-/tmp}
PKG=$TMP/package-$PKGNAM

rm -rf $PKG
mkdir -p $TMP $PKG

cd $TMP
rm -rf $PKGNAM-$VERSION
mkdir -p $PKGNAM-$VERSION
# This is a trick to allow the directory to be automatically cleaned up by a cron job here:
touch $PKGNAM-$VERSION/configure

fix_perms() {
chown -R root:root .
find . \
  \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
  -exec chmod 755 {} \+ -o \
  \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
  -exec chmod 644 {} \+
}

# setuptools-44.0.0:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/setuptools-44.0.0.tar.lz || exit 1
cd setuptools-44.0.0
fix_perms
# Install setuptools to the system if it's not there:
if [ ! -d /usr/lib${LIBDIRSUFFIX}/python2.7/site-packages/setuptools/version.py ]; then
  python2 setup.py install --root=/ || exit 1
fi
python2 setup.py install --root=$PKG || exit 1
# Drop the python2 version of easy_install so the python 3.x
# one is the default:
rm -f $PKG/usr/bin/easy_install
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/setuptools-44.0.0
cp -a CHANGES.rst PKG-INFO README.rst docs/*.txt \
  $PKG/usr/doc/$PKGNAM-$VERSION/setuptools-44.0.0
find $PKG/usr/doc/$PKGNAM-$VERSION/setuptools-44.0.0 -type f -exec chmod 0644 {} \+
# If there's a CHANGES.rst, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGES.rst ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/setuptools-44.0.0)
  cat CHANGES.rst | head -n 1000 > $DOCSDIR/CHANGES.rst
  touch -r CHANGES.rst $DOCSDIR/CHANGES.rst
fi

# Cython-0.29.16:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/Cython-0.29.16.tar.lz || exit 1
cd Cython-0.29.16
fix_perms
python2 setup.py install --root=$PKG --prefix=/usr || exit 1
# Rename the python2 version with "2" suffix:
for i in cython cythonize cygdb; do
  mv $PKG/usr/bin/$i $PKG/usr/bin/${i}2
done
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/Cython-0.29.16
cp -a *.rst *.txt $PKG/usr/doc/$PKGNAM-$VERSION/Cython-0.29.16
# If there's a CHANGES.rst, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGES.rst ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/Cython-0.29.16)
  cat CHANGES.rst | head -n 1000 > $DOCSDIR/CHANGES.rst
  touch -r CHANGES.rst $DOCSDIR/CHANGES.rst
fi

# pip-20.0.2:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/pip-20.0.2.tar.lz || exit 1
cd pip-20.0.2
fix_perms
python2 setup.py install --root=$PKG || exit 1
# Don't package this. We want /usr/bin/pip in the main python-pip package to be
# the python3 version:
rm -f $PKG/usr/bin/pip
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/pip-20.0.2
cp -a *.txt PKG-INFO README.rst \
  $PKG/usr/doc/$PKGNAM-$VERSION/pip-20.0.2
find $PKG/usr/doc/$PKGNAM-$VERSION/pip-20.0.2 -type f -exec chmod 0644 {} \+

# M2Crypto-0.35.2 and typing-3.7.4.1:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/M2Crypto-0.35.2.tar.xz || exit 1
cd M2Crypto-0.35.2
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/M2Crypto-0.35.2
cp -a \
  CHANGES INSTALL* LICENCE* PKG-INFO README* \
  $PKG/usr/doc/$PKGNAM-$VERSION/M2Crypto-0.35.2
# Embed required dep typing module:
cd ..
rm -rf typing-3.7.4.1
tar xf $CWD/modules/typing-3.7.4.1.tar.xz || exit 1
cd typing-3.7.4.1 || exit 1
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/typing-3.7.4.1
cp -a \
  CHANGES INSTALL* LICENCE* PKG-INFO README* doc/* \
  $PKG/usr/doc/$PKGNAM-$VERSION/typing-3.7.4.1

# Mako-1.1.2:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/Mako-1.1.2.tar.lz || exit 1
cd Mako-1.1.2
fix_perms
python2 setup.py install --root=$PKG || exit 1
# Don't package this:
rm -f $PKG/usr/bin/mako-render
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/Mako-1.1.2
cp -a AUTHORS CHANGES LICENSE PKG-INFO *.rst *.txt \
  $PKG/usr/doc/$PKGNAM-$VERSION/Mako-1.1.2
find $PKG/usr/doc/$PKGNAM-$VERSION/Mako-1.1.2 -type f -exec chmod 0644 {} \+

# pycairo-1.18.2:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/pycairo-1.18.2.tar.lz || exit 1
cd pycairo-1.18.2
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/pycairo-1.18.2
cp -a \
  AUTHORS COPYING* INSTALL NEWS PKG-INFO README* \
  $PKG/usr/doc/$PKGNAM-$VERSION/pycairo-1.18.2

# pycups-1.9.74:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/pycups-1.9.74.tar.lz || exit 1
cd pycups-1.9.74
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/pycups-1.9.74
cp -a COPYING* NEWS README TODO $PKG/usr/doc/$PKGNAM-$VERSION/pycups-1.9.74

# pycurl-7.43.0.3:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/pycurl-7.43.0.3.tar.lz || exit 1
cd pycurl-7.43.0.3
fix_perms
python2 setup.py --with-openssl install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/pycurl-7.43.0.3
cp -a COPYING* NEWS README TODO \
  $PKG/usr/doc/$PKGNAM-$VERSION/pycurl-7.43.0.3
rm -rf $PKG/usr/share/doc/pycurl
rmdir $PKG/usr/share/doc
rmdir $PKG/usr/share

# pyparsing-2.4.6:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/pyparsing-2.4.6.tar.lz || exit 1
cd pyparsing-2.4.6
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/pyparsing-2.4.6
cp -a CHANGES LICENSE* PKG-INFO README* docs/HowToUsePyparsing.* \
  $PKG/usr/doc/$PKGNAM-$VERSION/pyparsing-2.4.6
# If there's a CHANGES file, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGES ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/pyparsing-2.4.6)
  cat CHANGES | head -n 1000 > $DOCSDIR/CHANGES
  touch -r CHANGES $DOCSDIR/CHANGES
fi

# appdirs-1.4.3:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/appdirs-1.4.3.tar.xz || exit 1
cd appdirs-1.4.3
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/appdirs-1.4.3
cp -a *.rst LICENSE* PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/appdirs-1.4.3
find $PKG/usr/doc/$PKGNAM-$VERSION/appdirs-1.4.3 -type f -exec chmod 0644 {} \+
# If there's a CHANGES.rst, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGES.rst ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/appdirs-1.4.3)
  cat CHANGES.rst | head -n 1000 > $DOCSDIR/CHANGES.rst
  touch -r CHANGES.rst $DOCSDIR/CHANGES.rst
fi

# certifi-2019.11.28:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/certifi-2019.11.28.tar.lz || exit 1
cd certifi-2019.11.28
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/certifi-2019.11.28
cp -a *.rst LICENSE PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/certifi-2019.11.28
find $PKG/usr/doc/$PKGNAM-$VERSION/certifi-2019.11.28 -type f -exec chmod 0644 {} \+

# chardet-3.0.4:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/chardet-3.0.4.tar.xz || exit 1
cd chardet-3.0.4
fix_perms
python2 setup.py install --root=$PKG || exit 1
mv $PKG/usr/bin/chardetect $PKG/usr/bin/chardetect2
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/chardet-3.0.4
cp -a *.rst LICENSE* PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/chardet-3.0.4
find $PKG/usr/doc/$PKGNAM-$VERSION/chardet-3.0.4 -type f -exec chmod 0644 {} \+

# docutils-0.16:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/docutils-0.16.tar.lz || exit 1
cd docutils-0.16
fix_perms
python2 setup.py build --build-lib=build/python install --root=$PKG || exit 1
# Don't package python2 versions of /usr/bin scripts:
for file in rst2html.py rst2html4.py rst2html5.py rst2latex.py rst2man.py rst2odt.py rst2odt_prepstyles.py rst2pseudoxml.py rst2s5.py rst2xetex.py rst2xml.py rstpep2html.py ; do
  rm -f $PKG/usr/bin/$file
done
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/docutils-0.16
cp -a *.txt PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/docutils-0.16
find $PKG/usr/doc/$PKGNAM-$VERSION/docutils-0.16 -type f -exec chmod 0644 {} \+
# If there's a HISTORY.txt, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r HISTORY.txt ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/docutils-0.16)
  cat HISTORY.txt | head -n 1000 > $DOCSDIR/HISTORY.txt
  touch -r HISTORY.txt $DOCSDIR/HISTORY.txt
fi

# enum34-1.1.10:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/enum34-1.1.10.tar.gz || exit 1
cd enum34-1.1.10
fix_perms
python2 setup.py install --root=$PKG
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/enum34-1.1.10
cp -a \
  PKG-INFO enum/LICENSE enum/README enum/doc/* \
  $PKG/usr/doc/$PKGNAM-$VERSION/enum34-1.1.10

# future-0.18.2:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/future-0.18.2.tar.lz || exit 1
cd future-0.18.2
fix_perms
python2 setup.py install --root=$PKG || exit 1
# Move the python2 versions:
mv $PKG/usr/bin/futurize $PKG/usr/bin/futurize2
mv $PKG/usr/bin/pasteurize $PKG/usr/bin/pasteurize2
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/future-0.18.2
cp -a *.rst LICENSE* NOTICE PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/future-0.18.2
find $PKG/usr/doc/$PKGNAM-$VERSION/future-0.18.2 -type f -exec chmod 0644 {} \+

# idna-2.9:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/idna-2.9.tar.lz || exit 1
cd idna-2.9
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/idna-2.9
cp -a *.rst PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/idna-2.9
find $PKG/usr/doc/$PKGNAM-$VERSION/idna-2.9 -type f -exec chmod 0644 {} \+
# If there's a HISTORY.rst, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r HISTORY.rst ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/idna-2.9)
  cat HISTORY.rst | head -n 1000 > $DOCSDIR/HISTORY.rst
  touch -r HISTORY.rst $DOCSDIR/HISTORY.rst
fi

# notify2-0.3.1:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/notify2-0.3.1.tar.gz || exit 1
cd notify2-0.3.1
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/notify2-0.3.1
cp -a *.rst LICENSE PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/notify2-0.3.1
find $PKG/usr/doc/$PKGNAM-$VERSION/notify2-0.3.1 -type f -exec chmod 0644 {} \+

# packaging-20.3:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/packaging-20.3.tar.lz || exit 1
cd packaging-20.3
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/packaging-20.3
cp -a *.rst LICENSE* PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/packaging-20.3
find $PKG/usr/doc/$PKGNAM-$VERSION/packaging-20.3 -type f -exec chmod 0644 {} \+
# If there's a CHANGELOG.rst, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGELOG.rst ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/packaging-20.3)
  cat CHANGELOG.rst | head -n 1000 > $DOCSDIR/CHANGELOG.rst
  touch -r CHANGELOG.rst $DOCSDIR/CHANGELOG.rst
fi

# ply-3.11:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/ply-3.11.tar.lz || exit 1
cd ply-3.11
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/ply-3.11
cp -a *.rst LICENSE PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/ply-3.11
find $PKG/usr/doc/$PKGNAM-$VERSION/ply-3.11 -type f -exec chmod 0644 {} \+

# Pygments-2.5.2:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/Pygments-2.5.2.tar.lz || exit 1
cd Pygments-2.5.2
fix_perms
python2 setup.py install --root=$PKG || exit 1
mv $PKG/usr/bin/pygmentize $PKG/usr/bin/pygmentize2
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/Pygments-2.5.2
cp -a *.rst LICENSE PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/Pygments-2.5.2
find $PKG/usr/doc/$PKGNAM-$VERSION/Pygments-2.5.2 -type f -exec chmod 0644 {} \+

# requests-2.23.0:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/requests-2.23.0.tar.lz || exit 1
cd requests-2.23.0
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/requests-2.23.0
cp -a *.rst LICENSE* NOTICE PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/requests-2.23.0
find $PKG/usr/doc/$PKGNAM-$VERSION/requests-2.23.0 -type f -exec chmod 0644 {} \+
# If there's a HISTORY.rst, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r HISTORY.rst ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/requests-2.23.0)
  cat HISTORY.rst | head -n 1000 > $DOCSDIR/HISTORY.rst
  touch -r HISTORY.rst $DOCSDIR/HISTORY.rst
fi

# Sane-2.8.3:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/Sane-2.8.3.tar.xz || exit 1
cd Sane-2.8.3
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/Sane-2.8.3
cp -a \
  *.md *.rst COPYING \
  $PKG/usr/doc/$PKGNAM-$VERSION/Sane-2.8.3

# six-1.14.0:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/six-1.14.0.tar.lz || exit 1
cd six-1.14.0
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/six-1.14.0
cp -a LICENSE* PKG-INFO README* $PKG/usr/doc/$PKGNAM-$VERSION/six-1.14.0

# urllib3-1.25.8:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/urllib3-1.25.8.tar.lz || exit 1
cd urllib3-1.25.8
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/urllib3-1.25.8
cp -a *.rst *.txt PKG-INFO \
  $PKG/usr/doc/$PKGNAM-$VERSION/urllib3-1.25.8
find $PKG/usr/doc/$PKGNAM-$VERSION/urllib3-1.25.8 -type f -exec chmod 0644 {} \+
# If there's a CHANGES.rst, installing at least part of the recent history
# is useful, but don't let it get totally out of control:
if [ -r CHANGES.rst ]; then
  DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION/urllib3-1.25.8)
  cat CHANGES.rst | head -n 1000 > $DOCSDIR/CHANGES.rst
  touch -r CHANGES.rst $DOCSDIR/CHANGES.rst
fi

# pyxdg-0.26:
cd $TMP/$PKGNAM-$VERSION || exit 1
tar xf $CWD/modules/pyxdg-0.26.tar.lz || exit 1
cd pyxdg-0.26
fix_perms
python2 setup.py install --root=$PKG || exit 1
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/pyxdg-0.26
cp -a \
  AUTHORS COPYING ChangeLog INSTALL PKG-INFO README TODO \
  $PKG/usr/doc/$PKGNAM-$VERSION/pyxdg-0.26

# Strip binaries:
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null

mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc

cd $PKG
/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz