update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 deletions

View File

@@ -0,0 +1,29 @@
From 3cf8d89cbb44b5c7a0693d0b5d665e68acc3927c Mon Sep 17 00:00:00 2001
From: Thomas Klausner <wiz@NetBSD.org>
Date: Tue, 10 May 2016 00:14:33 +0200
Subject: [PATCH] Fix twisted detection.
Addresses https://github.com/coherence-project/Coherence/issues/25
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
coherence/__init__.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/coherence/__init__.py b/coherence/__init__.py
index 2e4e8f1..4c4d73d 100644
--- a/coherence/__init__.py
+++ b/coherence/__init__.py
@@ -24,8 +24,6 @@ try:
if twisted_version < Version("twisted", 2, 5, 0):
raise ImportError("Twisted >= 2.5 is required. Please install it.")
- if twisted_web_version < Version("twisted.web", 2, 5, 0):
- raise ImportError("Twisted.Web >= 2.5 is required. Please install it")
except ImportError, exc:
# log error to stderr, might be useful for debugging purpose
for arg in exc.args:
--
2.8.1

View File

@@ -0,0 +1,15 @@
config BR2_PACKAGE_PYTHON_COHERENCE
bool "python-coherence"
depends on BR2_PACKAGE_PYTHON
depends on BR2_INSTALL_LIBSTDCPP # python-pyasn
select BR2_PACKAGE_PYTHON_TWISTED
select BR2_PACKAGE_PYTHON_ZOPE_INTERFACE
select BR2_PACKAGE_PYTHON_PYASN
help
A DLNA/UPnP Media Server and Framework for the Digital Living.
http://coherence-project.org/
comment "python-coherence needs a toolchain w/ C++"
depends on BR2_PACKAGE_PYTHON
depends on !BR2_INSTALL_LIBSTDCPP

View File

@@ -0,0 +1,2 @@
# Locally computed:
sha256 fd5a2db9661994a57232ace4a90d259b6554c43b8bf5bfbf8ec2518c03627922 python-coherence-0.6.6.2.tar.gz

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-coherence
#
################################################################################
PYTHON_COHERENCE_VERSION = 0.6.6.2
PYTHON_COHERENCE_SITE = $(call github,coherence-project,Coherence,Coherence-$(PYTHON_COHERENCE_VERSION))
PYTHON_COHERENCE_SETUP_TYPE = setuptools
PYTHON_COHERENCE_LICENSE = MIT
PYTHON_COHERENCE_LICENSE_FILES = LICENCE
PYTHON_COHERENCE_DEPENDENCIES = python-twisted python-zope-interface python-pyasn
$(eval $(python-package))