mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 03:33:25 +02:00
python-six: Removal of python2 & 3 addon versions of six
- six is a python compatibility module to enable modules to run on both python2 and python3. The code from six has to be copied into any other module/project that is intending to use it. - With the planned removal of python2 then neither version of this compatibility module is needed. - Removal of the lfs and rootfiles. Although python-six is an addon its rootfile was installed into the common folder rather than the packages folder. - Removal of the python-six and python3-six entries in make.sh Signed-off-by: Adolf Belka <adolf.belka@ipfire.org> Reviewed-by: Peter Müller <peter.mueller@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
committed by
Michael Tremer
parent
a276dfba7a
commit
3a61ae73fa
@@ -1,9 +0,0 @@
|
|||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/EGG-INFO
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/EGG-INFO/PKG-INFO
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/EGG-INFO/SOURCES.txt
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/EGG-INFO/dependency_links.txt
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/EGG-INFO/not-zip-safe
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/EGG-INFO/top_level.txt
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/six.py
|
|
||||||
#usr/lib/python2.7/site-packages/six-1.10.0-py2.7.egg/six.pyc
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info
|
|
||||||
#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/PKG-INFO
|
|
||||||
#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/SOURCES.txt
|
|
||||||
#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/dependency_links.txt
|
|
||||||
#usr/lib/python3.8/site-packages/six-1.14.0-py3.8.egg-info/top_level.txt
|
|
||||||
usr/lib/python3.8/site-packages/six.py
|
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
###############################################################################
|
|
||||||
# #
|
|
||||||
# IPFire.org - A linux based firewall #
|
|
||||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
|
||||||
# #
|
|
||||||
# This program is free software: you can redistribute it and/or modify #
|
|
||||||
# it under the terms of the GNU General Public License as published by #
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or #
|
|
||||||
# (at your option) any later version. #
|
|
||||||
# #
|
|
||||||
# This program is distributed in the hope that it will be useful, #
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
||||||
# GNU General Public License for more details. #
|
|
||||||
# #
|
|
||||||
# You should have received a copy of the GNU General Public License #
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
||||||
# #
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Definitions
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
include Config
|
|
||||||
|
|
||||||
VER = 1.10.0
|
|
||||||
|
|
||||||
THISAPP = six-$(VER)
|
|
||||||
DL_FILE = $(THISAPP).tar.gz
|
|
||||||
DL_FROM = $(URL_IPFIRE)
|
|
||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
|
||||||
PROG = python-six
|
|
||||||
PAK_VER = 1
|
|
||||||
|
|
||||||
DEPS =
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Top-level Rules
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
objects = $(DL_FILE)
|
|
||||||
|
|
||||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
|
||||||
|
|
||||||
$(DL_FILE)_MD5 = 34eed507548117b2ab523ab14b2f8b55
|
|
||||||
|
|
||||||
install : $(TARGET)
|
|
||||||
|
|
||||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
|
||||||
|
|
||||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
|
||||||
|
|
||||||
md5 : $(subst %,%_MD5,$(objects))
|
|
||||||
|
|
||||||
dist:
|
|
||||||
@$(PAK)
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Downloading, checking, md5sum
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
|
||||||
@$(CHECK)
|
|
||||||
|
|
||||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
|
||||||
@$(LOAD)
|
|
||||||
|
|
||||||
$(subst %,%_MD5,$(objects)) :
|
|
||||||
@$(MD5)
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Installation Details
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
|
||||||
@$(PREBUILD)
|
|
||||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
|
||||||
cd $(DIR_APP) && python setup.py install
|
|
||||||
@rm -rf $(DIR_APP)
|
|
||||||
@$(POSTBUILD)
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
###############################################################################
|
|
||||||
# #
|
|
||||||
# IPFire.org - A linux based firewall #
|
|
||||||
# Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
|
|
||||||
# #
|
|
||||||
# This program is free software: you can redistribute it and/or modify #
|
|
||||||
# it under the terms of the GNU General Public License as published by #
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or #
|
|
||||||
# (at your option) any later version. #
|
|
||||||
# #
|
|
||||||
# This program is distributed in the hope that it will be useful, #
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
||||||
# GNU General Public License for more details. #
|
|
||||||
# #
|
|
||||||
# You should have received a copy of the GNU General Public License #
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
||||||
# #
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Definitions
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
include Config
|
|
||||||
|
|
||||||
VER = 1.14.0
|
|
||||||
|
|
||||||
THISAPP = six-$(VER)
|
|
||||||
DL_FILE = $(THISAPP).tar.gz
|
|
||||||
DL_FROM = $(URL_IPFIRE)
|
|
||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
|
||||||
PROG = python3-six
|
|
||||||
PAK_VER = 3
|
|
||||||
|
|
||||||
DEPS =
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Top-level Rules
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
objects = $(DL_FILE)
|
|
||||||
|
|
||||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
|
||||||
|
|
||||||
$(DL_FILE)_MD5 = 21674588a57e649d1a6d977ec3122140
|
|
||||||
|
|
||||||
install : $(TARGET)
|
|
||||||
|
|
||||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
|
||||||
|
|
||||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
|
||||||
|
|
||||||
md5 : $(subst %,%_MD5,$(objects))
|
|
||||||
|
|
||||||
dist:
|
|
||||||
@$(PAK)
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Downloading, checking, md5sum
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
|
||||||
@$(CHECK)
|
|
||||||
|
|
||||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
|
||||||
@$(LOAD)
|
|
||||||
|
|
||||||
$(subst %,%_MD5,$(objects)) :
|
|
||||||
@$(MD5)
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Installation Details
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
|
||||||
@$(PREBUILD)
|
|
||||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
|
||||||
cd $(DIR_APP) && python3 setup.py build
|
|
||||||
cd $(DIR_APP) && python3 setup.py install --root=/
|
|
||||||
@rm -rf $(DIR_APP)
|
|
||||||
@$(POSTBUILD)
|
|
||||||
2
make.sh
2
make.sh
@@ -1454,7 +1454,6 @@ buildipfire() {
|
|||||||
lfsmake2 igmpproxy
|
lfsmake2 igmpproxy
|
||||||
lfsmake2 fbset
|
lfsmake2 fbset
|
||||||
lfsmake2 opus
|
lfsmake2 opus
|
||||||
lfsmake2 python-six
|
|
||||||
lfsmake2 python-pyparsing
|
lfsmake2 python-pyparsing
|
||||||
lfsmake2 spice-protocol
|
lfsmake2 spice-protocol
|
||||||
lfsmake2 spice
|
lfsmake2 spice
|
||||||
@@ -1543,7 +1542,6 @@ buildipfire() {
|
|||||||
lfsmake2 python-distutils-extra
|
lfsmake2 python-distutils-extra
|
||||||
lfsmake2 ddns
|
lfsmake2 ddns
|
||||||
lfsmake2 python3-setuptools-scm
|
lfsmake2 python3-setuptools-scm
|
||||||
lfsmake2 python3-six
|
|
||||||
lfsmake2 python3-dateutil
|
lfsmake2 python3-dateutil
|
||||||
lfsmake2 python3-jmespath
|
lfsmake2 python3-jmespath
|
||||||
lfsmake2 python3-colorama
|
lfsmake2 python3-colorama
|
||||||
|
|||||||
Reference in New Issue
Block a user