Magellan Linux

Annotation of /smage/trunk/extras/python3-setuptools/python3-setuptools-47.3.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14004 - (hide annotations) (download)
Thu Jul 2 11:59:35 2020 UTC (3 years, 10 months ago) by niro
File size: 927 byte(s)
auto added: ver bump to 47.3.1-r1
1 niro 14000 # $Id$
2    
3 niro 14004 PNAME="python3-setuptools"
4 niro 14000 PVER="47.3.1"
5     PBUILD="r1"
6    
7     DESCRIPTION="A collection of extensions to Distutils for Python3."
8 niro 14003 PCAT="dev-python"
9 niro 14000
10 niro 14004 PYPI_MODULE="setuptools"
11 niro 14003 sminclude multilib python3
12 niro 14000
13     DEPEND=">= dev-python/python3-appdirs-1.4
14     >= dev-python/python3-packaging-20.4"
15    
16     SRCFILE="v${PVER}.tar.gz"
17 niro 14004 SRCDIR="${BUILDDIR}/${PYPI_MODULE}-${PVER}"
18 niro 14000
19     SRC_URI=(
20 niro 14004 https://github.com/pypa/${PYPI_MODULE}/archive/${SRCFILE}
21 niro 14000 mirror://${PNAME}/${SRCFILE}
22     )
23    
24     # use github, only zip files are provided by pypi
25     UP2SEPERATOR="v"
26     UP2DATE="updatecmd https://github.com/pypa/${PNAME}/releases | highesttarball gz"
27    
28 niro 14001 src_prepare()
29     {
30     python3_multilib_src_prepare || die
31     }
32    
33 niro 14000 src_compile()
34     {
35     local abi
36     for abi in ${MULTILIB_ABIS}
37     do
38     cd ${MAGE_PYTHON3_SRCSUBDIR}/$(basename ${SRCDIR})-${abi}
39     ${MAGE_PYTHON3_EXEC} bootstrap.py || die
40     done
41    
42     python3_multilib_src_compile || die
43     }
44 niro 14001
45     src_install()
46     {
47     python3_multilib_src_install || die
48     }