Skip to content

Commit 4daa287

Browse files
author
frmdstryr
committed
Use main repo but apply patch to remove PyQt
1 parent 24f4db4 commit 4daa287

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
From 156a0426f7350bf49bdfae1aad555e13c9494b9a Mon Sep 17 00:00:00 2001
2+
From: frmdstryr <[email protected]>
3+
Date: Thu, 23 Jun 2016 22:04:32 -0400
4+
Subject: [PATCH] Update setup.py
5+
6+
---
7+
setup.py | 2 +-
8+
1 file changed, 1 insertion(+), 1 deletion(-)
9+
10+
diff --git a/setup.py b/setup.py
11+
index 3bfd2a2..99817e5 100644
12+
--- a/setup.py
13+
+++ b/setup.py
14+
@@ -72,7 +72,7 @@ setup(
15+
url='https://github.com/nucleic/enaml',
16+
description='Declarative DSL for building rich user interfaces in Python',
17+
long_description=open('README.rst').read(),
18+
- requires=['atom', 'PyQt', 'ply', 'kiwisolver'],
19+
+ requires=['atom', 'ply', 'kiwisolver'],
20+
install_requires=['distribute', 'atom >= 0.3.8', 'kiwisolver >= 0.1.2', 'ply >= 3.4'],
21+
packages=find_packages(),
22+
package_data={
23+
--
24+
2.7.4
25+

pythonforandroid/recipes/enaml/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
class EnamlRecipe(CppCompiledComponentsPythonRecipe):
44
site_packages_name = 'enaml'
55
version = '0.9.8'
6-
url = 'https://github.com/frmdstryr/enaml/archive/master.zip'
6+
url = 'https://github.com/nucleic/enaml/archive/master.zip'
7+
patches = ['0001-Update-setup.py.patch'] # Remove PyQt dependency
78
depends = ['python2','setuptools','atom','kiwisolver']
89

9-
recipe = EnamlRecipe()
10+
recipe = EnamlRecipe()

0 commit comments

Comments
 (0)