Magellan Linux

Diff of /trunk/include/pypi.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 20742 by niro, Tue Feb 4 16:37:50 2014 UTC revision 22054 by niro, Thu Aug 21 13:51:38 2014 UTC
# Line 28  SRC_URI=( Line 28  SRC_URI=(
28   mirror://${PNAME}/${SRCFILE}   mirror://${PNAME}/${SRCFILE}
29  )  )
30    
31    UP2SUBSTITUTE=".asc"
32  UP2DATE="updatecmd_pypi ${PYPI_MODULE} ${PYPI_ARCHIVE}"  UP2DATE="updatecmd_pypi ${PYPI_MODULE} ${PYPI_ARCHIVE}"
33    
34  pypi_src_prepare()  pypi_src_prepare()
# Line 46  pypi_src_install() Line 47  pypi_src_install()
47   python_src_install || die   python_src_install || die
48  }  }
49    
50  export_inherits pypi src_prepare src_compile src_install  pypi_multilib_src_compile()
51    {
52     local configure_opts="$@"
53     python_multilib_src_compile ${configure_opts} || die
54    }
55    
56    pypi_multilib_src_install()
57    {
58     python_multilib_src_install || die
59    }
60    
61    export_inherits pypi src_prepare
62    if [[ ${MULTILIB_BUILD} = true ]]
63    then
64     export_inherits pypi_multilib src_compile src_install
65    else
66     export_inherits pypi src_compile src_install
67    fi

Legend:
Removed from v.20742  
changed lines
  Added in v.22054