Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with "Unpacking sdl2_image" and "Parent module 'pythonforandroid.recipes' not found" #872

Closed
MatBonv opened this issue Apr 3, 2019 · 6 comments

Comments

@MatBonv
Copy link

MatBonv commented Apr 3, 2019

Versions

  • Python: 2.7
  • OS: Ubuntu (VM)

Description

There are 2 problems:
'RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import' appears every time
and
'Unpacking sdl2_image for armeabi-v7a' results with an error
EDIT: I also tried 'sudo pip install cython==0.20' but didn't solve the error
I have no idea what to do now. Any help is welcome.

buildozer.spec

Command:

buildozer android update

Spec file:

[app]

# (str) Title of your application
title = BirdRecoginition

# (str) Package name
package.name = birdrec

# (str) Package domain (needed for android/ios packaging)
package.domain = org.test

# (str) Source code where the main.py live
source.dir = .

# (list) Source files to include (let empty to include all the files)
source.include_exts = py,png,jpg,kv,atlas,pckl

# (list) List of inclusions using pattern matching
#source.include_patterns = assets/*,images/*.png

# (list) Source files to exclude (let empty to not exclude anything)
source.exclude_exts = spec

# (list) List of directory to exclude (let empty to not exclude anything)
source.exclude_dirs = tests, bin

# (list) List of exclusions using pattern matching
#source.exclude_patterns = license,images/*/*.jpg

# (str) Application versioning (method 1)
version = 0.1

# (str) Application versioning (method 2)
# version.regex = __version__ = ['"](.*)['"]
# version.filename = %(source.dir)s/main.py

# (list) Application requirements
# comma separated e.g. requirements = sqlite3,kivy
requirements = python3,kivy,python_speech_features,scipy,numpy,os,pydub,pickle

# (str) Custom source folders for requirements
# Sets custom source for any requirements with recipes
# requirements.source.kivy = ../../kivy

# (list) Garden requirements
#garden_requirements =

# (str) Presplash of the application
#presplash.filename = %(source.dir)s/data/presplash.png

# (str) Icon of the application
#icon.filename = %(source.dir)s/data/icon.png

# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
orientation = portrait

# (list) List of service to declare
#services = NAME:ENTRYPOINT_TO_PY,NAME2:ENTRYPOINT2_TO_PY

#
# OSX Specific
#

#
# author = © Copyright Info

# change the major version of python used by the app
osx.python_version = 3

# Kivy version to use
osx.kivy_version = 1.9.1

#
# Android specific
#

# (bool) Indicate if the application should be fullscreen or not
fullscreen = 0

# (string) Presplash background color (for new android toolchain)
# Supported formats are: #RRGGBB #AARRGGBB or one of the following names:
# red, blue, green, black, white, gray, cyan, magenta, yellow, lightgray,
# darkgray, grey, lightgrey, darkgrey, aqua, fuchsia, lime, maroon, navy,
# olive, purple, silver, teal.
#android.presplash_color = #FFFFFF

# (list) Permissions
#android.permissions = INTERNET

# (int) Target Android API, should be as high as possible.
#android.api = 27

# (int) Minimum API your APK will support.
#android.minapi = 21

# (int) Android SDK version to use
#android.sdk = 23.0.3

# (str) Android NDK version to use
#android.ndk = 17c

# (int) Android NDK API to use. This is the minimum API your app will support, it should usually match android.minapi.
#android.ndk_api = 21

# (bool) Use --private data storage (True) or --dir public storage (False)
#android.private_storage = True

# (str) Android NDK directory (if empty, it will be automatically downloaded.)
#android.ndk_path =

# (str) Android SDK directory (if empty, it will be automatically downloaded.)
#android.sdk_path =

# (str) ANT directory (if empty, it will be automatically downloaded.)
#android.ant_path =

# (bool) If True, then skip trying to update the Android sdk
# This can be useful to avoid excess Internet downloads or save time
# when an update is due and you just want to test/build your package
# android.skip_update = False

# (bool) If True, then automatically accept SDK license
# agreements. This is intended for automation only. If set to False,
# the default, you will be shown the license when first running
# buildozer.
# android.accept_sdk_license = False

# (str) Android entry point, default is ok for Kivy-based app
#android.entrypoint = org.renpy.android.PythonActivity

# (list) Pattern to whitelist for the whole project
#android.whitelist =

# (str) Path to a custom whitelist file
#android.whitelist_src =

# (str) Path to a custom blacklist file
#android.blacklist_src =

# (list) List of Java .jar files to add to the libs so that pyjnius can access
# their classes. Don't add jars that you do not need, since extra jars can slow
# down the build process. Allows wildcards matching, for example:
# OUYA-ODK/libs/*.jar
#android.add_jars = foo.jar,bar.jar,path/to/more/*.jar

# (list) List of Java files to add to the android project (can be java or a
# directory containing the files)
#android.add_src =

# (list) Android AAR archives to add (currently works only with sdl2_gradle
# bootstrap)
#android.add_aars =

# (list) Gradle dependencies to add (currently works only with sdl2_gradle
# bootstrap)
#android.gradle_dependencies =

# (list) Java classes to add as activities to the manifest.
#android.add_activites = com.example.ExampleActivity

# (str) python-for-android branch to use, defaults to master
p4a.branch = master

# (str) OUYA Console category. Should be one of GAME or APP
# If you leave this blank, OUYA support will not be enabled
#android.ouya.category = GAME

# (str) Filename of OUYA Console icon. It must be a 732x412 png image.
#android.ouya.icon.filename = %(source.dir)s/data/ouya_icon.png

# (str) XML file to include as an intent filters in <activity> tag
#android.manifest.intent_filters =

# (str) launchMode to set for the main activity
#android.manifest.launch_mode = standard

# (list) Android additional libraries to copy into libs/armeabi
#android.add_libs_armeabi = libs/android/*.so
#android.add_libs_armeabi_v7a = libs/android-v7/*.so
#android.add_libs_x86 = libs/android-x86/*.so
#android.add_libs_mips = libs/android-mips/*.so

# (bool) Indicate whether the screen should stay on
# Don't forget to add the WAKE_LOCK permission if you set this to True
#android.wakelock = False

# (list) Android application meta-data to set (key=value format)
#android.meta_data =

# (list) Android library project to add (will be added in the
# project.properties automatically.)
#android.library_references =

# (str) Android logcat filters to use
#android.logcat_filters = *:S python:D

# (bool) Copy library instead of making a libpymodules.so
#android.copy_libs = 1

# (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86
android.arch = armeabi-v7a

#
# Python for android (p4a) specific
#

# (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
p4a.source_dir = /home/kivy/.buildozer/android/platform/python-for-android

# (str) The directory in which python-for-android should look for your own build recipes (if any)
#p4a.local_recipes =

# (str) Filename to the hook for p4a
#p4a.hook =

# (str) Bootstrap to use for android builds
# p4a.bootstrap = sdl2

# (int) port number to specify an explicit --port= p4a argument (eg for bootstrap flask)
#p4a.port =


#
# iOS specific
#

# (str) Path to a custom kivy-ios folder
#ios.kivy_ios_dir = ../kivy-ios
# Alternately, specify the URL and branch of a git checkout:
ios.kivy_ios_url = https://github.com/kivy/kivy-ios
ios.kivy_ios_branch = master

# Another platform dependency: ios-deploy
# Uncomment to use a custom checkout
#ios.ios_deploy_dir = ../ios_deploy
# Or specify URL and branch
ios.ios_deploy_url = https://github.com/phonegap/ios-deploy
ios.ios_deploy_branch = 1.7.0

# (str) Name of the certificate to use for signing the debug version
# Get a list of available identities: buildozer ios list_identities
#ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"

# (str) Name of the certificate to use for signing the release version
#ios.codesign.release = %(ios.codesign.debug)s


[buildozer]

# (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
log_level = 2

# (int) Display warning if buildozer is run as root (0 = False, 1 = True)
warn_on_root = 1

# (str) Path to build artifact storage, absolute or relative to spec file
# build_dir = ./.buildozer

# (str) Path to build output (i.e. .apk, .ipa) storage
# bin_dir = ./bin

#    -----------------------------------------------------------------------------
#    List as sections
#
#    You can define all the "list" as [section:key].
#    Each line will be considered as a option to the list.
#    Let's take [app] / source.exclude_patterns.
#    Instead of doing:
#
#[app]
#source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
#
#    This can be translated into:
#
#[app:source.exclude_patterns]
#license
#data/audio/*.wav
#data/images/original/*
#


#    -----------------------------------------------------------------------------
#    Profiles
#
#    You can extend section / key with a profile
#    For example, you want to deploy a demo version of your application without
#    HD content. You could first change the title to add "(demo)" in the name
#    and extend the excluded directories to remove the HD content.
#
#[app@demo]
#title = My Application (demo)
#
#[app:source.exclude_patterns@demo]
#images/hd/*
#
#    Then, invoke the command line with the "demo" profile:
#
#buildozer --profile demo android debug

Logs

kivy@kivy-VirtualBox:/media/sf_share$ buildozer android update# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Read available permissions from api-versions.xml
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
Debian `dpkg' package management program version 1.17.5 (amd64).
This is free software; see the GNU General Public License version 2 or
later for copying conditions. There is NO warranty.
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /usr/local/bin/cython
# Search for Java compiler (javac)
#  -> found at /usr/lib/jvm/java-8-oracle/bin/javac
# Search for Java keytool (keytool)
#  -> found at /usr/lib/jvm/java-8-oracle/jre/bin/keytool
# Install platform
# Run '/usr/bin/python -m pip install -q --user \'appdirs\' \'colorama>=0.3.3\' \'jinja2\' \'six\' \'enum34; python_version<"3.4"\' \'sh>=1.10; sys_platform!="nt"\''
# Cwd None
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
# Apache ANT found at /home/kivy/.buildozer/android/platform/apache-ant-1.9.4
# Android SDK found at /home/kivy/.buildozer/android/platform/android-sdk
# Android NDK found at /home/kivy/.buildozer/android/platform/android-ndk-r17c
# Read available permissions from api-versions.xml
# Check application requirements
# Check garden requirements
# Compile platform
# Run '/usr/bin/python -m pythonforandroid.toolchain create --dist_name=birdrec --bootstrap=sdl2 --requirements=python3,kivy,python_speech_features,scipy,numpy,os,pydub,pickle --arch armeabi-v7a --copy-libs --color=always --storage-dir="/media/sf_share/.buildozer/android/platform/build" --ndk-api=21'
# Cwd /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Found Android API target in $ANDROIDAPI: 27
[INFO]:    Available Android APIs are (27)
[INFO]:    Requested API target 27 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK: /home/kivy/.buildozer/android/platform/android-ndk-r17c
[INFO]:    Found NDK revision 17.2.4988734
[INFO]:    Getting NDK API version (i.e. minimum supported API) from user argument
[INFO]:    Found virtualenv at /usr/local/bin/virtualenv
[INFO]:    ccache is missing, the build will not be optimized in the future.
[INFO]:    Found the following toolchain versions: ['4.9']
[INFO]:    Picking the latest gcc toolchain, here 4.9
[WARNING]: Missing executable: libtoolize is not installed
[INFO]:    No existing dists meet the given requirements!
[INFO]:    No dist exists that meets your requirements, so one will be built.
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/numpy/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import CompiledComponentsPythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/numpy/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from multiprocessing import cpu_count
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/numpy/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl2/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import BootstrapNDKRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl2/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import current_directory, shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl2/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/kivy/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import CythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/kivy/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import current_directory, shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/kivy/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import exists, join, basename
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/kivy/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/kivy/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import glob
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from __future__ import unicode_literals
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import CythonRecipe, IncludedFilesBehaviour
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.util import current_directory
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.patching import will_build
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid import logger
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/__init__.py:7: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.python import GuestPythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import Recipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl2_image/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import BootstrapNDKRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl2_mixer/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import BootstrapNDKRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl2_ttf/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import BootstrapNDKRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pyjnius/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import CythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pyjnius/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import shprint, current_directory, info
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pyjnius/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.patching import will_build
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pyjnius/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pyjnius/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython3/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.python import HostPythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sqlite3/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import NDKRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sqlite3/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import shutil
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sqlite3/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sqlite3/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/openssl/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/openssl/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import Recipe, shprint, current_directory
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/openssl/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/libffi/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import exists, join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/libffi/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from multiprocessing import cpu_count
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/libffi/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import Recipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/libffi/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.logger import shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/libffi/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.util import current_directory, ensure_dir
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/libffi/__init__.py:6: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/six/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import PythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import TargetPythonRecipe, Recipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import shprint, current_directory, info
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.patching import (is_darwin, is_api_gt,
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from multiprocessing import cpu_count
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:6: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import exists, join, realpath
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:7: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os import walk
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:8: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import glob
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2legacy/__init__.py:9: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython2legacy/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import os
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython2legacy/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython2legacy/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join, exists
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython2legacy/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import Recipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython2legacy/__init__.py:6: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.logger import info, warning, shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython2legacy/__init__.py:7: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.util import current_directory
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join, exists
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import Recipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.python import GuestPythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.logger import shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python2/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3crystax/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import TargetPythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3crystax/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3crystax/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.logger import info, error
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3crystax/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.util import ensure_dir, temp_directory
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3crystax/__init__.py:6: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import exists, join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/python3crystax/__init__.py:7: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython2/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.python import HostPythonRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython3crystax/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import Recipe, shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython3crystax/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython3crystax/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import BootstrapNDKRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import current_directory, info, shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import exists, join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/sdl/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/genericndkbuild/__init__.py:1: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import BootstrapNDKRecipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/genericndkbuild/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.toolchain import current_directory, shprint
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/genericndkbuild/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pygame/__init__.py:2: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.recipe import Recipe
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pygame/__init__.py:3: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.util import current_directory, ensure_dir
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pygame/__init__.py:4: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from pythonforandroid.logger import debug, shprint, info, warning
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pygame/__init__.py:5: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  from os.path import join
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pygame/__init__.py:6: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import sh
/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/pygame/__init__.py:7: RuntimeWarning: Parent module 'pythonforandroid.recipes' not found while handling absolute import
  import glob
[INFO]:    Found a single valid recipe set: ['hostpython3', 'libffi', 'openssl', u'os', u'pickle', u'pydub', u'python_speech_features', u'scipy', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', u'numpy', 'six', 'pyjnius', 'android', u'kivy']
[INFO]:    The selected bootstrap is sdl2
[INFO]:    # Creating dist with sdl2 bootstrap
[INFO]:    Dist will have name birdrec and requirements (python3, kivy, python_speech_features, scipy, numpy, os, pydub, pickle)
[INFO]:    Dist contains the following requirements as recipes: ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', u'numpy', 'six', 'pyjnius', 'android', u'kivy']
[INFO]:    Dist will also contain modules (pickle, python_speech_features, scipy, os, pydub) installed from pip
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/build/bootstrap_builds/sdl2-python3
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Recipe build order is ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', u'numpy', 'six', 'pyjnius', 'android', u'kivy']
[INFO]:    The requirements (os, pickle, pydub, python_speech_features, scipy) were not found as recipes, they will be installed with pip.
[INFO]:    # Downloading recipes 
[INFO]:    Downloading hostpython3
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 48 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/hostpython3
[INFO]:    -> running basename https://www.python.org...(and 34 more)
[INFO]:    hostpython3 download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading libffi
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 43 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/libffi
[INFO]:    -> running basename https://github.com/lib...(and 32 more)
[INFO]:    libffi download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading openssl
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 44 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/openssl
[INFO]:    -> running basename https://www.openssl.or...(and 29 more)
[INFO]:    openssl download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_image
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 47 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/sdl2_image
[INFO]:    -> running basename https://www.libsdl.or...(and 52 more)
[INFO]:    sdl2_image download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_mixer
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 47 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/sdl2_mixer
[INFO]:    -> running basename https://www.libsdl.or...(and 52 more)
[INFO]:    sdl2_mixer download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_ttf
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 45 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/sdl2_ttf
[INFO]:    -> running basename https://www.libsdl.org...(and 48 more)
[INFO]:    sdl2_ttf download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sqlite3
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 44 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/sqlite3
[INFO]:    -> running basename https://www.sqlite.org...(and 37 more)
     [INFO]:    sqlite3 download already cached, skipping                      
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading python3
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 44 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/python3
[INFO]:    -> running basename https://www.python.org...(and 34 more)
[INFO]:    python3 download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 41 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/sdl2
[INFO]:    -> running basename https://www.libsdl.org...(and 26 more)
[INFO]:    sdl2 download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading numpy
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 42 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/numpy
[INFO]:    -> running basename https://pypi.python.or...(and 42 more)
[INFO]:    numpy download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading six
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 40 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/six
[INFO]:    -> running basename https://pypi.python.or...(and 40 more)
[INFO]:    six download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading pyjnius
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 44 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/pyjnius
[INFO]:    -> running basename https://github.com/kiv...(and 29 more)
[INFO]:    pyjnius download already cached, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Downloading android
[INFO]:    Skipping android download as no URL is set
[INFO]:    Downloading kivy
[INFO]:    -> running mkdir -p /media/sf_share/.build...(and 41 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/packages/kivy
[INFO]:    -> running basename https://github.com/kiv...(and 26 more)
           work[INFO]:    kivy download already cached, skipping               
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    # Building all recipes for arch armeabi-v7a
[INFO]:    # Unpacking recipes
[INFO]:    Unpacking hostpython3 for armeabi-v7a
[INFO]:    -> running basename https://www.python.org...(and 34 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/build/other_builds/hostpython3/desktop
[INFO]:    hostpython3 is already unpacked, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking libffi for armeabi-v7a
[INFO]:    -> running basename https://github.com/lib...(and 32 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/build/other_builds/libffi/armeabi-v7a__ndk_target_21
[INFO]:    libffi is already unpacked, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking openssl for armeabi-v7a
[INFO]:    -> running basename https://www.openssl.or...(and 29 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/build/other_builds/openssl/armeabi-v7a__ndk_target_21
[INFO]:    openssl is already unpacked, skipping
[INFO]:    <- directory context /home/kivy/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking sdl2_image for armeabi-v7a
[INFO]:    -> running basename https://www.libsdl.or...(and 52 more)
[INFO]:    -> directory context /media/sf_share/.buildozer/android/platform/build/build/bootstrap_builds/sdl2-python3/jni
Traceback (most recent call last):
  File "/usr/lib/python2.7/runpy.py", line 162, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
    exec code in run_globals
  File "/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1081, in <module>
    main()
  File "/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1075, in main
    ToolchainCL()
  File "/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 577, in __init__
    getattr(self, args.subparser_name.replace('-', '_'))(args)
  File "/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 151, in wrapper_func
    build_dist_from_args(ctx, dist, args)
  File "/home/kivy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 200, in build_dist_from_args
    build_recipes(build_order, python_modules, ctx)
  File "pythonforandroid/build.py", line 548, in build_recipes
  File "pythonforandroid/recipe.py", line 506, in prepare_build_dir
  File "pythonforandroid/recipe.py", line 405, in unpack
  File "/usr/local/lib/python2.7/dist-packages/sh.py", line 1427, in __call__
    return RunningCommand(cmd, call_args, stdin, stdout, stderr)
  File "/usr/local/lib/python2.7/dist-packages/sh.py", line 774, in __init__
    self.wait()
  File "/usr/local/lib/python2.7/dist-packages/sh.py", line 792, in wait
    self.handle_command_exit_code(exit_code)
  File "/usr/local/lib/python2.7/dist-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_2
# Command failed: /usr/bin/python -m pythonforandroid.toolchain create --dist_name=birdrec --bootstrap=sdl2 --requirements=python3,kivy,python_speech_features,scipy,numpy,os,pydub,pickle --arch armeabi-v7a --copy-libs --color=always --storage-dir="/media/sf_share/.buildozer/android/platform/build" --ndk-api=21
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2

@AndreMiras
Copy link
Member

It looks like you didn't share the some important part of the log that must say something like tar command not found or something to do with the tar command, right? Also the title of the bug is misleading, it has nothing to do with your problem

@MatBonv
Copy link
Author

MatBonv commented Apr 4, 2019

Thank you for replying.

It looks like you didn't share the some important part of the log that must say something like tar command not found or something to do with the tar command, right?

There is nothing missing from the log, I copied the whole output of the command and pasted it here. There is no tar command.

Also the title of the bug is misleading, it has nothing to do with your problem

And why is that, if I may ask? For me, it seems that the error occurs right after Unpacking sdl2_image for armeabi-v7a. Tell me if I'm missing something, but I didn't leave out a thing from the log and I'm a noob in these things.

@AndreMiras
Copy link
Member

OK that's weird, could you try to:

tar -tf .buildozer/android/platform/build/packages/sdl2_image/SDL2_image-2.0.4.tar.gz

And share the output?

@MatBonv
Copy link
Author

MatBonv commented Apr 6, 2019

Ok, the output is very large so I skipped some lines here (with ...). The output has no warnings or errors.

SDL2_image-2.0.4/
SDL2_image-2.0.4/IMG_svg.c
SDL2_image-2.0.4/Xcode/
SDL2_image-2.0.4/COPYING.txt
SDL2_image-2.0.4/IMG_tif.c
...
SDL2_image-2.0.4/SDL_image.h
SDL2_image-2.0.4/SDL2_image.spec
SDL2_image-2.0.4/Xcode-iOS/
SDL2_image-2.0.4/autogen.sh
SDL2_image-2.0.4/IMG_webp.c
SDL2_image-2.0.4/Xcode-iOS/SDL_image.xcodeproj/
SDL2_image-2.0.4/Xcode-iOS/SDL_image.xcodeproj/project.pbxproj
SDL2_image-2.0.4/external/libwebp-1.0.0.patch
SDL2_image-2.0.4/external/jpeg-9b/
SDL2_image-2.0.4/external/zlib-1.2.11.patch
SDL2_image-2.0.4/external/libpng-1.6.32.patch
...
SDL2_image-2.0.4/external/tiff-4.0.8/man/TIFFFieldReadCount.3tiff
SDL2_image-2.0.4/external/tiff-4.0.8/man/TIFFPrintDirectory.3tiff
SDL2_image-2.0.4/external/tiff-4.0.8/man/TIFFWriteScanline.3tiff
SDL2_image-2.0.4/external/tiff-4.0.8/man/TIFFFieldPassCount.3tiff
SDL2_image-2.0.4/external/tiff-4.0.8/man/TIFFReadEncodedStrip.3tiff
SDL2_image-2.0.4/external/libpng-1.6.32/intel/
SDL2_image-2.0.4/external/libpng-1.6.32/pnginfo.h
SDL2_image-2.0.4/external/libpng-1.6.32/pngtest.c
...
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/vstudio.sln
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/README.txt
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/pngtest/
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/pngtest/pngtest.vcxproj
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/pnglibconf/pnglibconf.vcxproj
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/pngvalid/pngvalid.vcxproj
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/zlib/zlib.vcxproj
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/pngunknown/pngunknown.vcxproj
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/libpng/libpng.vcxproj
SDL2_image-2.0.4/external/libpng-1.6.32/projects/vstudio/pngstest/pngstest.vcxproj
SDL2_image-2.0.4/external/libpng-1.6.32/powerpc/filter_vsx_intrinsics.c
SDL2_image-2.0.4/external/libpng-1.6.32/powerpc/powerpc_init.c
SDL2_image-2.0.4/external/libpng-1.6.32/intel/intel_init.c
SDL2_image-2.0.4/external/libpng-1.6.32/intel/filter_sse2_intrinsics.c
SDL2_image-2.0.4/external/zlib-1.2.11/zutil.h
SDL2_image-2.0.4/external/zlib-1.2.11/make-cross-x86.sh
SDL2_image-2.0.4/external/zlib-1.2.11/inftrees.h
SDL2_image-2.0.4/external/zlib-1.2.11/make-cross-x64.sh
SDL2_image-2.0.4/external/zlib-1.2.11/inflate.c
SDL2_image-2.0.4/external/zlib-1.2.11/CMakeLists.txt
SDL2_image-2.0.4/external/zlib-1.2.11/zlib.map
SDL2_image-2.0.4/external/zlib-1.2.11/zlib.pc.cmakein
SDL2_image-2.0.4/external/zlib-1.2.11/zlib.3.pdf
SDL2_image-2.0.4/external/zlib-1.2.11/test/
SDL2_image-2.0.4/external/zlib-1.2.11/configure
...
SDL2_image-2.0.4/external/zlib-1.2.11/contrib/masmx86/inffas32.asm
SDL2_image-2.0.4/external/zlib-1.2.11/contrib/masmx86/readme.txt
SDL2_image-2.0.4/external/zlib-1.2.11/contrib/masmx86/match686.asm
SDL2_image-2.0.4/external/zlib-1.2.11/old/Makefile.riscos
SDL2_image-2.0.4/external/zlib-1.2.11/old/os2/
SDL2_image-2.0.4/external/zlib-1.2.11/old/Makefile.emx
SDL2_image-2.0.4/external/zlib-1.2.11/old/README
SDL2_image-2.0.4/external/zlib-1.2.11/old/descrip.mms
SDL2_image-2.0.4/external/zlib-1.2.11/old/visual-basic.txt
SDL2_image-2.0.4/external/zlib-1.2.11/old/os2/Makefile.os2
SDL2_image-2.0.4/external/zlib-1.2.11/old/os2/zlib.def
SDL2_image-2.0.4/external/zlib-1.2.11/os400/README400
SDL2_image-2.0.4/external/zlib-1.2.11/os400/make.sh
SDL2_image-2.0.4/external/zlib-1.2.11/os400/bndsrc
SDL2_image-2.0.4/external/zlib-1.2.11/os400/zlib.inc
SDL2_image-2.0.4/external/zlib-1.2.11/msdos/Makefile.bor
SDL2_image-2.0.4/external/zlib-1.2.11/msdos/Makefile.msc
SDL2_image-2.0.4/external/zlib-1.2.11/msdos/Makefile.emx
SDL2_image-2.0.4/external/zlib-1.2.11/msdos/Makefile.dj2
SDL2_image-2.0.4/external/zlib-1.2.11/msdos/Makefile.tc
SDL2_image-2.0.4/external/zlib-1.2.11/qnx/package.qpg
SDL2_image-2.0.4/external/zlib-1.2.11/test/infcover.c
SDL2_image-2.0.4/external/zlib-1.2.11/test/example.c
SDL2_image-2.0.4/external/zlib-1.2.11/test/minigzip.c
SDL2_image-2.0.4/external/libwebp-1.0.0/man/
SDL2_image-2.0.4/external/libwebp-1.0.0/install-sh
SDL2_image-2.0.4/external/libwebp-1.0.0/configure.ac
...
SDL2_image-2.0.4/external/libwebp-1.0.0/man/webpmux.1
SDL2_image-2.0.4/external/libwebp-1.0.0/man/dwebp.1
SDL2_image-2.0.4/external/libwebp-1.0.0/man/img2webp.1
SDL2_image-2.0.4/external/libwebp-1.0.0/man/Makefile.in
SDL2_image-2.0.4/external/libwebp-1.0.0/man/webpinfo.1
SDL2_image-2.0.4/external/jpeg-9b/rdcolmap.c
SDL2_image-2.0.4/external/jpeg-9b/coderules.txt
SDL2_image-2.0.4/external/jpeg-9b/jconfig.dj
SDL2_image-2.0.4/external/jpeg-9b/makvms.opt
...
SDL2_image-2.0.4/external/jpeg-9b/jidctint.c
SDL2_image-2.0.4/external/jpeg-9b/jdapimin.c
SDL2_image-2.0.4/external/jpeg-9b/makewvcx.v10
SDL2_image-2.0.4/external/jpeg-9b/jctrans.c
SDL2_image-2.0.4/external/jpeg-9b/Makefile.in
SDL2_image-2.0.4/external/jpeg-9b/aclocal.m4
SDL2_image-2.0.4/external/jpeg-9b/makejdsw.vc6
SDL2_image-2.0.4/external/jpeg-9b/makecvcx.v10
SDL2_image-2.0.4/external/jpeg-9b/testimg.jpg
SDL2_image-2.0.4/external/jpeg-9b/jidctflt.c
SDL2_image-2.0.4/external/jpeg-9b/rdbmp.c
SDL2_image-2.0.4/external/jpeg-9b/wrjpgcom.1
SDL2_image-2.0.4/external/jpeg-9b/jcinit.c
SDL2_image-2.0.4/external/jpeg-9b/makedmak.vc6
SDL2_image-2.0.4/external/jpeg-9b/makedfil.v10
SDL2_image-2.0.4/external/jpeg-9b/jconfig.txt
SDL2_image-2.0.4/external/jpeg-9b/makeddsp.vc6
SDL2_image-2.0.4/external/jpeg-9b/jdmainct.c
SDL2_image-2.0.4/external/jpeg-9b/jdcoefct.c
SDL2_image-2.0.4/external/jpeg-9b/usage.txt
SDL2_image-2.0.4/external/jpeg-9b/jdsample.c
SDL2_image-2.0.4/external/jpeg-9b/rdjpgcom.c
SDL2_image-2.0.4/external/jpeg-9b/rdgif.c
SDL2_image-2.0.4/external/jpeg-9b/filelist.txt
SDL2_image-2.0.4/external/jpeg-9b/jpegint.h
SDL2_image-2.0.4/external/jpeg-9b/jdpostct.c
SDL2_image-2.0.4/VisualCE/showimage/
SDL2_image-2.0.4/VisualCE/resource.h
SDL2_image-2.0.4/VisualCE/clean.sh
SDL2_image-2.0.4/VisualCE/SDL_image.sln
SDL2_image-2.0.4/VisualCE/Version.rc
SDL2_image-2.0.4/VisualCE/SDL_image.dsw
SDL2_image-2.0.4/VisualCE/SDL_image.dsp
SDL2_image-2.0.4/VisualCE/SDL_image.vcproj
SDL2_image-2.0.4/VisualCE/showimage/showimage.sln
...
SDL2_image-2.0.4/VisualC/external/include/webp/decode.h
SDL2_image-2.0.4/VisualC/showimage/showimage.vcxproj
SDL2_image-2.0.4/VisualC/showimage/showimage.vcxproj.filters
SDL2_image-2.0.4/acinclude/ltversion.m4
SDL2_image-2.0.4/acinclude/pkg.m4
SDL2_image-2.0.4/acinclude/libtool.m4
SDL2_image-2.0.4/acinclude/ltoptions.m4
SDL2_image-2.0.4/acinclude/ltsugar.m4
SDL2_image-2.0.4/acinclude/lt~obsolete.m4
SDL2_image-2.0.4/acinclude/sdl2.m4
SDL2_image-2.0.4/debian/compat
SDL2_image-2.0.4/debian/changelog
SDL2_image-2.0.4/debian/source/
SDL2_image-2.0.4/debian/libsdl2-image.install
SDL2_image-2.0.4/debian/docs
SDL2_image-2.0.4/debian/examples/
SDL2_image-2.0.4/debian/rules
SDL2_image-2.0.4/debian/watch
SDL2_image-2.0.4/debian/copyright
SDL2_image-2.0.4/debian/libsdl2-image-dev.install
SDL2_image-2.0.4/debian/libsdl2-image.lintian-overrides
SDL2_image-2.0.4/debian/libsdl2-image-dev.examples
SDL2_image-2.0.4/debian/control
SDL2_image-2.0.4/debian/examples/Makefile
SDL2_image-2.0.4/debian/source/format
SDL2_image-2.0.4/debian/source/lintian-overrides
SDL2_image-2.0.4/VisualC-WinRT/WinRT80_VS2012/
SDL2_image-2.0.4/VisualC-WinRT/WinPhone80_VS2012/
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/
SDL2_image-2.0.4/VisualC-WinRT/libwebp.def
SDL2_image-2.0.4/VisualC-WinRT/jpeg.def
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/libpng-WinPhone81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/zlib-WinPhone81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/SDL_image-WinPhone81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/libwebp-WinPhone81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/zlib-WinPhone81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/jpeg-WinPhone81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/libwebp-WinPhone81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/libpng-WinPhone81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/SDL_image-WinPhone81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/jpeg-WinPhone81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinPhone81_VS2013/SDL_image-WinPhone81.sln
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/jpeg-WinRT81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/SDL_image-WinRT81.sln
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/SDL_image-WinRT81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/zlib-WinRT81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/libpng-WinRT81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/libwebp-WinRT81.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/libwebp-WinRT81.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinRT81_VS2013/jpeg-WinRT81.vcxproj.filters
...
SDL2_image-2.0.4/VisualC-WinRT/WinRT80_VS2012/libpng-WinRT80.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinRT80_VS2012/SDL_image-WinRT80.vcxproj
SDL2_image-2.0.4/VisualC-WinRT/WinRT80_VS2012/jpeg-WinRT80.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinRT80_VS2012/libwebp-WinRT80.vcxproj.filters
SDL2_image-2.0.4/VisualC-WinRT/WinRT80_VS2012/zlib-WinRT80.vcxproj
SDL2_image-2.0.4/Xcode/SDL_image.xcodeproj/
SDL2_image-2.0.4/Xcode/showimage/
SDL2_image-2.0.4/Xcode/pkg-support/
SDL2_image-2.0.4/Xcode/Info-Framework.plist
SDL2_image-2.0.4/Xcode/Frameworks/
SDL2_image-2.0.4/Xcode/package
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Resources
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/webp
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Headers
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/Current
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Resources/
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/webp
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Headers/
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/types.h
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/demux.h
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/mux_types.h
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/encode.h
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/decode.h
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Resources/English.lproj/
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Resources/LICENSE.webp.txt
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Resources/Info.plist
SDL2_image-2.0.4/Xcode/Frameworks/webp.framework/Versions/A/Resources/English.lproj/InfoPlist.strings
SDL2_image-2.0.4/Xcode/pkg-support/resources/
SDL2_image-2.0.4/Xcode/pkg-support/SDL_image.info
SDL2_image-2.0.4/Xcode/pkg-support/mkpackage.sh
SDL2_image-2.0.4/Xcode/pkg-support/resources/Welcome.txt
SDL2_image-2.0.4/Xcode/pkg-support/resources/ReadMe.txt
SDL2_image-2.0.4/Xcode/showimage/English.lproj/
SDL2_image-2.0.4/Xcode/showimage/SDLMain.h
SDL2_image-2.0.4/Xcode/showimage/showimage.xcodeproj/
SDL2_image-2.0.4/Xcode/showimage/Info-showimage__Upgraded_.plist
SDL2_image-2.0.4/Xcode/showimage/SDLMain.m
SDL2_image-2.0.4/Xcode/showimage/showimage.xcodeproj/project.pbxproj
SDL2_image-2.0.4/Xcode/showimage/English.lproj/InfoPlist.strings
SDL2_image-2.0.4/Xcode/SDL_image.xcodeproj/project.pbxproj

@MatBonv
Copy link
Author

MatBonv commented Apr 8, 2019

I did everything again in a new VM, now there are no errors anymore.
I probably have done something really wrong the first time.

@AndreMiras
Copy link
Member

Yes the warning was fixed recently via kivy/python-for-android#1789
I decided it was time to fix it since it was misleading people to think it was a meaningful error. And also it was polluting (host) python2 logs

@MatBonv MatBonv closed this as completed Apr 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants