Commit graph

149 commits

Author SHA1 Message Date
Mathieu Virbel
35cd3f738b rework pip to use --prefix and --isolated, instead of the variable env 2017-05-30 16:05:54 +02:00
Mathieu Virbel
819fa05712 fixes ipv6 for python (tested with ipv4/ipv6 + http/https). Closes #218 2017-05-14 20:39:16 +02:00
Mathieu Virbel
91ecf0fe4a update Kivy to 1.10.0, and fixes import graphics issues. Closes #240 2017-05-14 17:54:14 +02:00
Akshay Arora
9dc04610e8 Merge pull request #243 from shivan1b/add-webview
Add webview
2017-05-14 09:59:36 +05:30
Mathieu Virbel
0ab3c98e6a prevent usage of ftp, not reliable enough. 2017-05-01 14:03:28 +02:00
Mathieu Virbel
cdf664d9bf fixes python3 issue on osx. Closes #224 2017-04-29 17:51:42 +02:00
Dominik Jochym
c5dab82a64 Bump openssl version to 1.0.2k. 2017-03-13 21:06:35 +00:00
Shivani Bhardwaj
399694e0df Add class IOSWebView and wrapper functions 2017-02-27 18:15:20 +05:30
Shivani Bhardwaj
d46da92cc6 Include webview in header 2017-02-27 18:15:01 +05:30
Shivani Bhardwaj
9944c82c7c src: ios_browser: Add support for webview
Add webview support for kivy-ios. Any URL can be opened in webview by
just doing the following:

```
import ios
url = "http://www.google.com"
ios.IOSWebView().open(url)
```

Tested:OK
2017-02-27 18:11:20 +05:30
Richard Larkin
93c792e5e9 Add pyobjus dependency. closes #229 2016-12-14 13:42:57 +02:00
Richard Larkin
81121838c9 Merge pull request #204 from sighthoundinc/master
Update python loader to load from frameworks as well as main exe (i.e…
2016-11-09 23:28:49 +02:00
Henrique Dias
5a07f17f86 The recipe don't download the archive.
If I try download the archive manually, this url "http://vorboss.dl.sourceforge.net/project/libpng/libpng16/1.6.24/libpng-1.6.24.tar.gz" redirect to "https://sourceforge.net/projects/libpng/files/"

...
Extract libpng
Extract libpng for i386
Traceback (most recent call last):
  File "./toolchain.py", line 1311, in <module>
    ToolchainCL()
  File "./toolchain.py", line 1082, in __init__
    getattr(self, args.command)()
  File "./toolchain.py", line 1106, in build
    build_recipes(args.recipe, ctx)
  File "./toolchain.py", line 974, in build_recipes
    recipe.execute()
  File "/Users/prrcarvalho/Development/kivy-ios-master/toolchain.py", line 585, in execute
    self.extract()
  File "/Users/prrcarvalho/Development/kivy-ios-master/toolchain.py", line 56, in _cache_execution
    f(self, *args, **kwargs)
  File "/Users/prrcarvalho/Development/kivy-ios-master/toolchain.py", line 621, in extract
    self.extract_arch(arch.arch)
  File "/Users/prrcarvalho/Development/kivy-ios-master/toolchain.py", line 625, in extract_arch
    dest_dir = join(build_dir, self.archive_root)
  File "/Users/prrcarvalho/Development/kivy-ios-master/toolchain.py", line 577, in archive_root
    value = self.get_archive_rootdir(self.archive_fn)
  File "/Users/prrcarvalho/Development/kivy-ios-master/toolchain.py", line 442, in get_archive_rootdir
    archive = tarfile.open(filename)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tarfile.py", line 1673, in open
    return func(name, "r", fileobj, **kwargs)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tarfile.py", line 1738, in gzopen
    fileobj = gzip.GzipFile(name, mode, compresslevel, fileobj)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/gzip.py", line 94, in __init__
    fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
IOError: [Errno 2] No such file or directory: '/Users/prrcarvalho/Development/kivy-ios-master/.cache/libpng-libpng-1.6.24.tar.gz'
2016-11-09 18:24:16 +00:00
Richard Larkin
77d8d52e59 Merge pull request #209 from filipefigcorreia/libpng-recipe
New recipe for libpng
2016-11-09 20:00:57 +02:00
Robert Niederreiter
7cca79030a Avoid errors from setuptools if installed as egg with .pth mapping on subsequent package installs with hostpython 2016-10-14 16:46:33 +02:00
Robert Niederreiter
d79e7cf1a9 fix host_setuptools
reset kivy download url
2016-10-14 11:02:34 +02:00
Robert Niederreiter
d6f2e3f8d2 merge kivy master 2016-10-12 15:23:51 +02:00
Filipe Correia
48761f778d Recipe for libpng. 2016-09-06 00:04:08 +01:00
Liu Chao
bbf6896423 add sed command for replace setuptools to distutils.core. 2016-07-30 10:52:11 +08:00
Liu Chao
fcae0e45bc Merge remote-tracking branch 'upstream/master' 2016-07-29 15:14:27 +08:00
Richard Larkin
fe5add1699 Merge pull request #176 from strakh/master
pyyaml recipe
2016-07-28 08:36:50 +02:00
Richard Larkin
982b79b232 Merge pull request #146 from cbenhagen/patch-3
build ffpyplayer version 3.2 instead of master
2016-07-24 03:53:24 +02:00
Richard Larkin
a92f98ec5e Merge pull request #202 from kivy/ast_fix
Redirect Python-ast lookup to 'hostpython'. Fixes #201
2016-07-13 11:58:30 +02:00
Richard Larkin
503adbd376 Merge pull request #194 from kivy/keyboard_height
Keyboard height
2016-07-12 22:21:23 +02:00
Zen-CODE
3e4eb4bfed Grammar tweaks 2016-07-11 21:43:44 +02:00
RJ Burnham
987314376b Update python loader to load from frameworks as well as main exe (i.e. we have kivy embedded in a framework) 2016-07-11 15:00:03 -04:00
Richard Larkin
320c0808c0 Added explanatory note 2016-07-11 15:10:46 +02:00
Richard Larkin
24b3ded916 Redirect Python-ast lookup to 'hostpython'. Fixes #201 2016-07-04 12:00:39 +02:00
Richard Larkin
1a6d513099 Merge branch 'master' of git://github.com/kivy/kivy-ios 2016-06-28 15:57:55 +02:00
Richard Larkin
7080a9dadc Updated version of openssl 2016-06-28 15:54:38 +02:00
Richard Larkin
b64efeef31 Merge pull request #182 from ericatkin/master
Remove .exe suffix on make target
2016-06-28 15:50:36 +02:00
akshayaurora
2d174322da take account device density, for softinput_mode 2016-05-26 03:09:31 +05:30
akshayaurora
72cbbd9710 WIP:Initial implementation of keyboard_height, we get correct height.
Moving window part is still not tested, fixed.
2016-05-25 02:37:00 +05:30
Ryan Pessa
2dd764f8db add ccache support 2016-04-16 23:15:15 -05:00
ericatkin
220c0747e1 Remove .exe suffix on make target 2016-04-05 22:56:20 -06:00
Robert Niederreiter
cc8a8a1393 working openssl version 2016-03-08 08:06:09 +01:00
Robert Niederreiter
270160d2cf merge latest master 2016-03-04 09:28:08 +01:00
Ben Hagen
856af14050 build version 3.2 instead of master 2016-02-21 20:19:44 +01:00
Akshay Arora
78a870c5f3 Update openssl version 2016-02-17 19:52:45 +05:30
Stepan Rakhimov
d00ad73752 distriute recipe, may be useless since distribute is already in python 2016-02-14 14:50:43 +01:00
Stepan Rakhimov
3a3cb22666 my failed try to fix setuptools 2016-02-14 14:49:25 +01:00
Stepan Rakhimov
6b09dacfba numpy fix to provide includes for other recipes 2016-02-14 14:47:35 +01:00
Stepan Rakhimov
9c828b2932 pyyaml cleanup 2016-02-14 14:42:47 +01:00
Stepan Rakhimov
0df3712980 PyYaml recipe 2016-01-26 22:37:33 +01:00
Zen-CODE
5fc587901b Updated Kivy version to 1.9.1
Tested and working on iPad, iOS 9.2
2016-01-14 10:52:49 +02:00
Zen-CODE
ea335f77a6 Updated to latest version of OpenSLL 2016-01-13 17:00:02 +02:00
Liu Chao
421ff0df0b add flask and flask depend recipes. 2015-11-27 00:24:35 -08:00
Mathieu Virbel
20e30b1668 Merge pull request #154 from kivy/photolibrary
New Photolibrary recipe for accessing gallery and camera
2015-11-16 15:23:42 +01:00
Mathieu Virbel
727b193bb4 Merge pull request #151 from kivy/pycrypto_recipe
New Pycrypto recipe
2015-11-16 15:23:19 +01:00
Mathieu Virbel
390090b457 Merge pull request #164 from cbenhagen/patch-1
remove duplicate declaration of options
2015-11-16 15:22:27 +01:00