From ab40fd81e77070b581de4c9bffd3df92d7b06953 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 3 Sep 2016 00:45:53 +0300 Subject: [PATCH 1/2] Fix issue with packages configuring --- platform.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform.py b/platform.py index 3af2669..3f077ca 100644 --- a/platform.py +++ b/platform.py @@ -18,8 +18,9 @@ class Linux_x86_64Platform(PlatformBase): - def get_packages(self): - packages = PlatformBase.get_packages(self) + @property + def packages(self): + packages = PlatformBase.packages.fget(self) if (get_systype() == "linux_x86_64" and "toolchain-gcclinux64" in packages): del packages['toolchain-gcclinux64'] From 427e9e93c65549abb06e66d84f61e54a44bcf51f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 3 Sep 2016 00:49:52 +0300 Subject: [PATCH 2/2] Bump version to v1.0.1 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index ddb3df6..1fa34ef 100644 --- a/platform.json +++ b/platform.json @@ -13,7 +13,7 @@ "type": "git", "url": "https://github.com/platformio/platform-linux_x86_64.git" }, - "version": "1.0.0", + "version": "1.0.1", "packageRepositories": [ "https://dl.bintray.com/platformio/dl-packages/manifest.json", "https://sourceforge.net/projects/platformio-storage/files/packages/manifest.json/download",