summaryrefslogtreecommitdiff
path: root/dev-embedded/platformio
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-09-06 10:28:05 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-09-06 10:28:05 +0100
commitf1af93971b7490792d8541bc790e0d8c6d787059 (patch)
treea38046712bbc3a3844d77452d16c84e716caa3d4 /dev-embedded/platformio
parentfc637fb28da700da71ec2064d65ca5a7a31b9c6c (diff)
gentoo resync : 06.08.2019
Diffstat (limited to 'dev-embedded/platformio')
-rw-r--r--dev-embedded/platformio/Manifest5
-rw-r--r--dev-embedded/platformio/files/platformio-4.0.0-Make-scripts-compatible-with-py2-and-py3.patch65
-rw-r--r--dev-embedded/platformio/platformio-4.0.1.ebuild (renamed from dev-embedded/platformio/platformio-4.0.0.ebuild)2
3 files changed, 2 insertions, 70 deletions
diff --git a/dev-embedded/platformio/Manifest b/dev-embedded/platformio/Manifest
index b6ab5a21e4cb..b491d61001d6 100644
--- a/dev-embedded/platformio/Manifest
+++ b/dev-embedded/platformio/Manifest
@@ -1,4 +1,3 @@
-AUX platformio-4.0.0-Make-scripts-compatible-with-py2-and-py3.patch 1954 BLAKE2B 9bda9ae28cd356710e94153b7b54f649bf47a2899105e22a25763155311ce386df8682db16de89eeda89a468261f726276bda489ee8dadb8ccbb39db006fbeba SHA512 f80658f7f19c138270809d03d9a6dcaf3900d7b154d4ce8ae9413c2a6f10fe6e5549f3111c6eac12fe461780984c0ea4b98e1019d1eb4d74ec2a9668e121dd1f
-DIST platformio-4.0.0.tar.gz 139700 BLAKE2B 1b4e6e244a0596f2713c1c07ca117d55986776a0dbdbdf06a313226b04941e4ae22ceb3444eca943cd130a8dd8546050febebf3f4dc435b0407b32c61212b07a SHA512 dddb717e39d9ede8464090599d6bc636e258120e97327d666f3479c2b55c0c6c73708d5c1306118a6a56fa2a85471cec6865d9465726174486a70832e32bc1d7
-EBUILD platformio-4.0.0.ebuild 994 BLAKE2B bb3d8cfefde2544aafc65a90f7127d4c717739b10f5d6b0b20665bf2c1b07b691a33079f1992131cb5db6b321fabfe57b0e2b8ae4d44fe5cb587c9d76d8e6638 SHA512 c692d79032509a00714791903767665a6655327239945efd01e822e52be6ef4f6f3baddcbe047aa2c23e8a23b2a059ae66b701067e5990ee56acbbdc0e45410f
+DIST platformio-4.0.1.tar.gz 140325 BLAKE2B 82992e97c91fefcdbdb219cae066aa6314cc55f0461e7fffd9d8e7b36a308a7bb8ccffb3fe7a7b676b9866b1e6c18980b40c4f009919f649e68331b316593a63 SHA512 d74784f72d93039eb32fd984dd2cdfeb00d5a36a005bb9aefa7501d8b310ff3f7367ce9b40265095ecb06594e7e3841a7b677bffa1f9215a39b7d3c6e7e4afc2
+EBUILD platformio-4.0.1.ebuild 915 BLAKE2B 0b2fa6eeb7969312640397cce69c7fd6a8f87ff8bebbd9264cc52841f2958fb9824399768306b86001e0b9ef467592f968d8db7bd4b7cbee15f6657f1150b674 SHA512 0ded16bf5ff8e66656e5ef849d22a577e494313720ac7497efcfdbba46eb9c5c513e7b4cf48d2e4f44d8560fe0a0b0b4442893a77058a6606da4247407aa59f8
MISC metadata.xml 248 BLAKE2B 946598a9bc9f658d98c3282fd6affeb3834a4b6071beca852a2f2381d5c17799b6ed17ed427a8f6e10fb3f715cdf2aad9e4fed2886f0dd67dacfdffcd5137f80 SHA512 89d637e180ed3a2c2096be2210633dc5df0760a7d6acd7b2d2ad8a06d473943ee86bad7e74c7df238a50168d1da8044471713e9b044007b9c2f4eb604fb710d5
diff --git a/dev-embedded/platformio/files/platformio-4.0.0-Make-scripts-compatible-with-py2-and-py3.patch b/dev-embedded/platformio/files/platformio-4.0.0-Make-scripts-compatible-with-py2-and-py3.patch
deleted file mode 100644
index c899105dde6c..000000000000
--- a/dev-embedded/platformio/files/platformio-4.0.0-Make-scripts-compatible-with-py2-and-py3.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From e1d5cb23f342269e1e99b017c1082cd6208b8c9d Mon Sep 17 00:00:00 2001
-From: Alexey Shvetsov <alexxy@gentoo.org>
-Date: Fri, 12 Jul 2019 11:26:27 +0300
-Subject: [PATCH] Make scripts compatible with py2 and py3
-
-Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
----
- scripts/docspregen.py | 5 +++--
- scripts/fixsymlink.py | 4 +++-
- 2 files changed, 6 insertions(+), 3 deletions(-)
-
-diff --git a/scripts/docspregen.py b/scripts/docspregen.py
-index b4e5a67f..ab43bd7c 100644
---- a/scripts/docspregen.py
-+++ b/scripts/docspregen.py
-@@ -11,6 +11,7 @@
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
-+from __future__ import print_function
-
- import os
- import urlparse
-@@ -280,7 +281,7 @@ Packages
-
-
- def generate_platform(name, rst_dir):
-- print "Processing platform: %s" % name
-+ print("Processing platform: %s" % name)
-
- compatible_boards = [
- board for board in BOARDS if name == board['platform']
-@@ -439,7 +440,7 @@ def update_platform_docs():
-
-
- def generate_framework(type_, data, rst_dir=None):
-- print "Processing framework: %s" % type_
-+ print("Processing framework: %s" % type_)
-
- compatible_platforms = [
- m for m in PLATFORM_MANIFESTS
-diff --git a/scripts/fixsymlink.py b/scripts/fixsymlink.py
-index a73a0109..b250b04b 100644
---- a/scripts/fixsymlink.py
-+++ b/scripts/fixsymlink.py
-@@ -12,13 +12,15 @@
- # See the License for the specific language governing permissions and
- # limitations under the License.
-
-+from __future__ import print_function
-+
- from os import chdir, getcwd, readlink, remove, symlink, walk
- from os.path import exists, islink, join, relpath
- from sys import exit as sys_exit
-
-
- def fix_symlink(root, fname, brokenlink):
-- print root, fname, brokenlink
-+ print(root, fname, brokenlink)
- prevcwd = getcwd()
-
- chdir(root)
---
-2.22.0
-
diff --git a/dev-embedded/platformio/platformio-4.0.0.ebuild b/dev-embedded/platformio/platformio-4.0.1.ebuild
index 5200247c4260..3062aaa44234 100644
--- a/dev-embedded/platformio/platformio-4.0.0.ebuild
+++ b/dev-embedded/platformio/platformio-4.0.1.ebuild
@@ -30,5 +30,3 @@ RDEPEND="${DEPEND}
<dev-python/requests-3[${PYTHON_USEDEP}]
>=dev-python/semantic_version-2.5.0[${PYTHON_USEDEP}]
<dev-python/semantic_version-3[${PYTHON_USEDEP}]"
-
-PATCHES=( "${FILESDIR}/${P}-Make-scripts-compatible-with-py2-and-py3.patch" )