recipes: Replace 'outdir' with package hash tags
[dragora.git] / recipes / python / six / recipe
blobe293c31c99d2d670ff41eb66b4a1138bd437f739
1 # Build recipe for six.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (C) 2018-2020 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 program=six
19 version=1.14.0
20 release=2
22 # Define hash tag to categorize the package name output
23 pkghashtag=python
25 tarname=${program}-${version}.tar.gz
27 # Remote source(s)
28 fetch=http://files.pythonhosted.org/packages/21/9f/b251f7f8a76dec1d6651be194dfba8fb8d7781d10ab3987190de8391d08e/$tarname
30 description="
31 A Python 2 and 3 compatibility library.
33 It provides utility functions for smoothing over the differences
34 between the Python versions with the goal of writing Python code
35 that is compatible on both Python versions.
38 homepage=http://github.com/benjaminp/six
39 license=MIT
41 docs="CHANGES LICENSE PKG-INFO README.rst"
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     python3 setup.py build
56     python3 setup.py install --prefix=/usr --root="$destdir" --optimize=1
58     # Copy documentation
59     mkdir -p "${destdir}${docsdir}"
60     cp -p $docs "${destdir}${docsdir}"