mirror of
https://github.com/openwrt/packages.git
synced 2026-01-10 03:41:29 +00:00
python3: Add new package python3-pip
Signed-off-by: Florian Fieber <florian@florianfieber.de>
This commit is contained in:
60
lang/python3-pip/Makefile
Normal file
60
lang/python3-pip/Makefile
Normal file
@@ -0,0 +1,60 @@
|
||||
#
|
||||
# Copyright (C) 2014-2015 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:=python3-pip
|
||||
PKG_VERSION:=7.1.2
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=pip-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pip/
|
||||
PKG_MD5SUM:=3823d2343d9f3aaab21cf9c917710196
|
||||
|
||||
PKG_LICENSE:=MIT
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/pip-$(PKG_VERSION)
|
||||
PKG_USE_MIPS16:=0
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
$(call include_mk, python3-package.mk)
|
||||
|
||||
define Package/python3-pip
|
||||
SUBMENU:=Python
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=Tool for installing Python $(PYTHON3_VERSION) packages.
|
||||
URL:=https://pip.pypa.io
|
||||
DEPENDS:=+python3 +python3-dev +python3-lib2to3 +python3-setuptools
|
||||
MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
||||
endef
|
||||
|
||||
define Package/python3-pip/description
|
||||
A tool for installing and managing Python $(PYTHON3_VERSION) packages.
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Py3Mod,,\
|
||||
install --root="$(PKG_INSTALL_DIR)" --prefix="/usr" \
|
||||
--single-version-externally-managed \
|
||||
)
|
||||
endef
|
||||
|
||||
define Py3Package/python3-pip/filespec
|
||||
+|$(PYTHON3_PKG_DIR)
|
||||
-|$(PYTHON3_PKG_DIR)/_vendor/distlib/*.exe
|
||||
-|$(PYTHON3_PKG_DIR)/utils/outdated.py
|
||||
endef
|
||||
|
||||
define Py3Package/python3-pip/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/pip$(PYTHON3_VERSION) $(1)/usr/bin
|
||||
$(LN) pip$(PYTHON3_VERSION) $(1)/usr/bin/pip3
|
||||
endef
|
||||
|
||||
$(eval $(call Py3Package,python3-pip))
|
||||
$(eval $(call BuildPackage,python3-pip))
|
||||
Reference in New Issue
Block a user