- #
- # Copyright (C) 2014 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
-
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=python-pip
- PKG_VERSION:=8.1.2
- PKG_RELEASE:=1
-
- PKG_SOURCE:=pip-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=https://pypi.python.org/packages/e7/a8/7556133689add8d1a54c0b14aeff0acb03c64707ce100ecd53934da1aa13/
- PKG_MD5SUM:=87083c0b9867963b29f7aba3613e8f4a
-
- PKG_BUILD_DIR:=$(BUILD_DIR)/python-pip-$(PKG_VERSION)
- PKG_UNPACK=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
- HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/python-pip-$(PKG_VERSION)
- HOST_UNPACK=$(HOST_TAR) -C $(HOST_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
- PKG_USE_MIPS16:=0
-
- HOST_BUILD_DEPENDS:=python python/host python-setuptools/host
-
- include $(INCLUDE_DIR)/host-build.mk
- include $(INCLUDE_DIR)/package.mk
- $(call include_mk, python-package.mk)
- $(call include_mk, python-host.mk)
-
- define Package/python-pip
- SUBMENU:=Python
- SECTION:=lang
- CATEGORY:=Languages
- TITLE:=Tool for installing Python packages.
- URL:=https://pip.pypa.io
- DEPENDS:=+python +python-setuptools +ca-certificates
- MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
- endef
-
- define Package/python-pip/description
- A tool for installing and managing Python packages.
- endef
-
- define Build/Compile
- $(call Build/Compile/PyMod,,\
- install --root="$(PKG_INSTALL_DIR)" --prefix="/usr" \
- --single-version-externally-managed \
- )
- endef
-
- define PyPackage/python-pip/filespec
- +|$(PYTHON_PKG_DIR)
- -|$(PYTHON_PKG_DIR)/pip/_vendor/distlib/*.exe
- endef
-
- define PyPackage/python-pip/install
- $(INSTALL_DIR) $(1)/usr/bin $(1)/etc
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin
- $(INSTALL_CONF) ./files/pip.conf $(1)/etc/
- endef
-
- define Host/Compile
- $(call Build/Compile/HostPyMod,,\
- install --root="$(STAGING_DIR)/host" --prefix="" \
- --single-version-externally-managed \
- )
- endef
-
- define Host/Install
- endef
-
- $(eval $(call HostBuild))
-
- $(eval $(call PyPackage,python-pip))
- $(eval $(call BuildPackage,python-pip))
|