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

Compile and distribute immutables along with Python3 #3939

Merged
merged 2 commits into from
Apr 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions cross/immutables/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
PKG_NAME = immutables
PKG_VERS = 0.11
PKG_EXT = tar.gz
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
PKG_DIST_SITE = https://files.pythonhosted.org/packages/source/i/$(PKG_NAME)
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)

HOMEPAGE = https://github.com/MagicStack/immutables
COMMENT = A high-performance immutable mapping type for Python.
LICENSE = Apache-2.0

include ../../mk/spksrc.python-wheel.mk
Empty file added cross/immutables/PLIST
Empty file.
3 changes: 3 additions & 0 deletions cross/immutables/digests
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
immutables-0.11.tar.gz SHA1 070277bbe664474ff4e0eae4aad7e8f1d37c08f8
immutables-0.11.tar.gz SHA256 d6850578a0dc6530ac19113cfe4ddc13903df635212d498f176fe601a8a5a4a3
hgy59 marked this conversation as resolved.
Show resolved Hide resolved
immutables-0.11.tar.gz MD5 2478a4009ed371232fc9e4d00fac1159
5 changes: 2 additions & 3 deletions spk/python3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ SPK_REV = 11
SPK_ICON = src/python3.png

DEPENDS = cross/busybox cross/$(SPK_NAME)
#Build-time dependencies
DEPENDS += cross/setuptools cross/pip cross/wheel
DEPENDS += cross/cffi cross/bcrypt cross/sqlite
# Cross-compiled wheels
DEPENDS += cross/lxml cross/pycrypto cross/pycurl cross/pyyaml
DEPENDS += cross/msgpack-python cross/ruamel.yaml
DEPENDS += cross/msgpack-python cross/ruamel.yaml cross/immutables

WHEELS = src/requirements.txt

Expand All @@ -21,7 +20,7 @@ DESCRIPTION_SPN = Lenguaje de programación Python.
RELOAD_UI = yes
STARTABLE = no
DISPLAY_NAME = Python3
CHANGELOG = "1. Update to Python 3.6.10<br/>2. Update of dependencies and wheels"
CHANGELOG = "1. Update to Python 3.6.10<br/>2. Add immutables<br/>3. Update of dependencies and wheels"

HOMEPAGE = http://www.python.org
LICENSE = PSF
Expand Down
3 changes: 2 additions & 1 deletion spk/python3/src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#pycrypto==2.6.1
#Pillow==5.3.0
#pycurl==7.43.0.2
pyyaml==5.3
#pyyaml==5.3
#immutables==0.11

## Cross-compiled via spksrc.wheel.mk
markupsafe==1.1.1
Expand Down