lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 3fe137423840e0da3f018e4a8158cd0c1ccc2183
parent 1c063ad6fb2a7c573b8634b779b23825adb65001
Author: Alexandru Ardelean <ardeleanalex@gmail.com>
Date:   Thu,  3 Dec 2015 21:48:11 +0200

python-pip: add site-wide pip.conf with defaults

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>

Diffstat:
Mlang/python-pip/Makefile | 7++++---
Alang/python-pip/files/pip.conf | 3+++
2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/lang/python-pip/Makefile b/lang/python-pip/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-pip PKG_VERSION:=7.1.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=pip-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pip/ @@ -48,8 +48,9 @@ define PyPackage/python-pip/filespec endef define PyPackage/python-pip/install - $(INSTALL_DIR) $(1)/usr/bin - $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin + $(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 $(eval $(call PyPackage,python-pip)) diff --git a/lang/python-pip/files/pip.conf b/lang/python-pip/files/pip.conf @@ -0,0 +1,3 @@ +[global] +cache-dir=/tmp/.cache +log-file=/tmp/pip-log.txt