bitbake: bitbake: Drop futures usage since we're python 3

(Bitbake rev: bf25f05ce4db11466e62f134f9a6916f886a93d9)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2016-05-12 08:22:18 +01:00
parent deca147645
commit ef1df51651
6 changed files with 4 additions and 8 deletions

View File

@ -22,7 +22,7 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import print_function
import sys, os, glob, os.path, re, time import sys, os, glob, os.path, re, time
import atexit import atexit
import itertools import itertools

View File

@ -1,4 +1,4 @@
from __future__ import absolute_import
import inspect import inspect
import traceback import traceback
import bb.namedtuple_with_abc import bb.namedtuple_with_abc

View File

@ -25,8 +25,6 @@ BitBake build tools.
# #
# Based on functions from the base bb module, Copyright 2003 Holger Schurig # Based on functions from the base bb module, Copyright 2003 Holger Schurig
from __future__ import absolute_import
from __future__ import print_function
import os, re import os, re
import signal import signal
import logging import logging

View File

@ -25,7 +25,6 @@ BitBake build tools.
# #
# Based on functions from the base bb module, Copyright 2003 Holger Schurig # Based on functions from the base bb module, Copyright 2003 Holger Schurig
from future_builtins import zip
import os import os
import subprocess import subprocess
import logging import logging

View File

@ -21,8 +21,7 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import absolute_import
from future_builtins import filter
import re import re
import string import string
import logging import logging

View File

@ -25,7 +25,7 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import absolute_import
import re, bb, os import re, bb, os
import logging import logging
import bb.build, bb.utils import bb.build, bb.utils