code
string
repo_name
string
path
string
language
string
license
string
size
int64
config BR2_PACKAGE_PYTHON_SETUPTOOLS bool "python-setuptools" select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 # runtime select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3 # runtime help Download, build, install, upgrade, and uninstall Python packages. http://pypi.python.org/pypi/setuptools
shibajee/buildroot
package/python-setuptools/Config.in
in
mit
447
# From https://pypi.python.org/pypi/setuptools/18.7.1 md5 a0984da9cd8d7b582e1fd7de67dfdbcc setuptools-18.7.1.tar.gz # Locally calculated sha256 aff36c95035e0b311eacb1434e3f7e85f5ccaad477773847e582978f8f45bd74 setuptools-18.7.1.tar.gz
shibajee/buildroot
package/python-setuptools/python-setuptools.hash
hash
mit
236
################################################################################ # # python-setuptools # ################################################################################ PYTHON_SETUPTOOLS_VERSION = 18.7.1 PYTHON_SETUPTOOLS_SOURCE = setuptools-$(PYTHON_SETUPTOOLS_VERSION).tar.gz PYTHON_SETUPTOOLS_SITE = http://pypi.python.org/packages/source/s/setuptools PYTHON_SETUPTOOLS_LICENSE = Python Software Foundation or Zope Public License PYTHON_SETUPTOOLS_LICENSE_FILES = PKG-INFO PYTHON_SETUPTOOLS_SETUP_TYPE = setuptools $(eval $(python-package)) $(eval $(host-python-package))
shibajee/buildroot
package/python-setuptools/python-setuptools.mk
mk
mit
594
config BR2_PACKAGE_PYTHON_SHUTILWHICH bool "python-shutilwhich" depends on BR2_PACKAGE_PYTHON help shutil.which for those not using Python 3.3 yet. https://pypi.python.org/pypi/shutilwhich/
shibajee/buildroot
package/python-shutilwhich/Config.in
in
mit
200
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=915947c5cdae7afd748ac715ee547adb, sha256 locally computed. md5 915947c5cdae7afd748ac715ee547adb shutilwhich-1.1.0.tar.gz sha256 db1f39c6461e42f630fa617bb8c79090f7711c9ca493e615e43d0610ecb64dc6 shutilwhich-1.1.0.tar.gz
shibajee/buildroot
package/python-shutilwhich/python-shutilwhich.hash
hash
mit
284
################################################################################ # # python-shutilwhich # ################################################################################ PYTHON_SHUTILWHICH_VERSION = 1.1.0 PYTHON_SHUTILWHICH_SOURCE = shutilwhich-$(PYTHON_SHUTILWHICH_VERSION).tar.gz PYTHON_SHUTILWHICH_SITE = http://pypi.python.org/packages/source/s/shutilwhich PYTHON_SHUTILWHICH_LICENSE = Python Software Foundation License PYTHON_SHUTILWHICH_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-shutilwhich/python-shutilwhich.mk
mk
mit
513
config BR2_PACKAGE_PYTHON_SIMPLEJSON bool "python-simplejson" depends on BR2_PACKAGE_PYTHON help Simple, fast, extensible JSON encoder/decoder for Python https://pypi.python.org/pypi/simplejson/
shibajee/buildroot
package/python-simplejson/Config.in
in
mit
205
# locally computed sha256 a80dc90320e1c1b8eaceaaa755ae2aed382d64a59321ae9f6ddbe0321c02878a simplejson-3.5.3.tar.gz
shibajee/buildroot
package/python-simplejson/python-simplejson.hash
hash
mit
117
################################################################################ # # python-simplejson # ################################################################################ PYTHON_SIMPLEJSON_VERSION = 3.5.3 PYTHON_SIMPLEJSON_SOURCE = simplejson-$(PYTHON_SIMPLEJSON_VERSION).tar.gz PYTHON_SIMPLEJSON_SITE = http://pypi.python.org/packages/source/s/simplejson PYTHON_SIMPLEJSON_LICENSE = MIT PYTHON_SIMPLEJSON_LICENSE_FILES = LICENSE.txt PYTHON_SIMPLEJSON_SETUP_TYPE = distutils $(eval $(python-package))
shibajee/buildroot
package/python-simplejson/python-simplejson.mk
mk
mit
518
config BR2_PACKAGE_PYTHON_SINGLEDISPATCH bool "python-singledispatch" depends on BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON_SIX # runtime help This library brings functools.singledispatch from Python 3.4 to Python 2.6-3.3 https://pypi.python.org/pypi/singledispatch
shibajee/buildroot
package/python-singledispatch/Config.in
in
mit
282
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=af2fc6a3d6cc5a02d0bf54d909785fcb, sha256 locally computed md5 af2fc6a3d6cc5a02d0bf54d909785fcb singledispatch-3.4.0.3.tar.gz sha256 5b06af87df13818d14f08a028e42f566640aef80805c3b50c5056b086e3c2b9c singledispatch-3.4.0.3.tar.gz
shibajee/buildroot
package/python-singledispatch/python-singledispatch.hash
hash
mit
297
################################################################################ # # python-singledispatch # ################################################################################ PYTHON_SINGLEDISPATCH_VERSION = 3.4.0.3 PYTHON_SINGLEDISPATCH_SOURCE = singledispatch-$(PYTHON_SINGLEDISPATCH_VERSION).tar.gz PYTHON_SINGLEDISPATCH_SITE = https://pypi.python.org/packages/source/s/singledispatch PYTHON_SINGLEDISPATCH_LICENSE = MIT PYTHON_SINGLEDISPATCH_LICENSE_FILES = setup.py PYTHON_SINGLEDISPATCH_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-singledispatch/python-singledispatch.mk
mk
mit
559
comment "python-sip needs a toolchain w/ C++, threads" depends on BR2_USE_MMU depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_PYTHON_SIP bool "python-sip" depends on BR2_INSTALL_LIBSTDCPP # qt depends on BR2_TOOLCHAIN_HAS_THREADS # qt depends on BR2_USE_MMU # qt select BR2_PACKAGE_QT help SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries. It was originally developed to create PyQt, the Python bindings for the Qt toolkit, but can be used to create bindings for any C or C++ library. SIP comprises a code generator and a Python module. The code generator processes a set of specification files and generates C or C++ code which is then compiled to create the bindings extension module. The SIP Python module provides support functions to the automatically generated code. http://www.riverbankcomputing.com/software/sip/intro
shibajee/buildroot
package/python-sip/Config.in
in
mit
944
# From https://sourceforge.net/projects/pyqt/files/sip/sip-4.18/ md5 78724bf2a79878201c3bc81a1d8248ea sip-4.18.tar.gz # Locally calculated: sha256 f1dc5c81c07a9ad97edcd4a0af964a41e420024ba7ca165afd2b351efd249cb6 sip-4.18.tar.gz
shibajee/buildroot
package/python-sip/python-sip.hash
hash
mit
228
################################################################################ # # python-sip # ################################################################################ PYTHON_SIP_VERSION = 4.18 PYTHON_SIP_SOURCE = sip-$(PYTHON_SIP_VERSION).tar.gz PYTHON_SIP_SITE = http://downloads.sourceforge.net/project/pyqt/sip/sip-$(PYTHON_SIP_VERSION) PYTHON_SIP_LICENSE = SIP license or GPLv2 or GPLv3 PYTHON_SIP_LICENSE_FILES = LICENSE LICENSE-GPL2 LICENSE-GPL3 PYTHON_SIP_DEPENDENCIES = qt ifeq ($(BR2_PACKAGE_PYTHON),y) PYTHON_SIP_DEPENDENCIES += python HOST_PYTHON_SIP_DEPENDENCIES += host-python PYTHON_SIP_LIB_DIR = usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages PYTHON_SIP_INCLUDE_DIR = usr/include/python$(PYTHON_VERSION_MAJOR) else ifeq ($(BR2_PACKAGE_PYTHON3),y) PYTHON_SIP_DEPENDENCIES += python3 HOST_PYTHON_SIP_DEPENDENCIES += host-python3 PYTHON_SIP_LIB_DIR = usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages PYTHON_SIP_INCLUDE_DIR = usr/include/python$(PYTHON3_VERSION_MAJOR)m endif define HOST_PYTHON_SIP_CONFIGURE_CMDS (cd $(@D); \ $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python configure.py) endef define HOST_PYTHON_SIP_BUILD_CMDS $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) endef define HOST_PYTHON_SIP_INSTALL_CMDS $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) install -C $(@D) endef define PYTHON_SIP_CONFIGURE_CMDS (cd $(@D); \ $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python configure.py \ --bindir $(TARGET_DIR)/usr/bin \ --destdir $(TARGET_DIR)/$(PYTHON_SIP_LIB_DIR) \ --incdir $(STAGING_DIR)/$(PYTHON_SIP_INCLUDE_DIR) \ --sipdir $(TARGET_DIR)/usr/share/sip \ --sysroot $(STAGING_DIR)/usr \ --use-qmake && \ $(HOST_DIR)/usr/bin/qmake) endef define PYTHON_SIP_BUILD_CMDS $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) endef define PYTHON_SIP_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) install -C $(@D) endef $(eval $(generic-package)) $(eval $(host-generic-package))
shibajee/buildroot
package/python-sip/python-sip.mk
mk
mit
2,044
config BR2_PACKAGE_PYTHON_SIX bool "python-six" help Six is a Python 2 and 3 compatibility library. It provides utility functions for smoothing over the differences between the Python versions with the goal of writing Python code that is compatible on both Python versions. http://pythonhosted.org/six
shibajee/buildroot
package/python-six/Config.in
in
mit
320
# Locally computed: sha256 105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a six-1.10.0.tar.gz
shibajee/buildroot
package/python-six/python-six.hash
hash
mit
112
################################################################################ # # python-six # ################################################################################ PYTHON_SIX_VERSION = 1.10.0 PYTHON_SIX_SOURCE = six-$(PYTHON_SIX_VERSION).tar.gz PYTHON_SIX_SITE = https://pypi.python.org/packages/source/s/six PYTHON_SIX_SETUP_TYPE = setuptools PYTHON_SIX_LICENSE = MIT PYTHON_SIX_LICENSE_FILES = LICENSE $(eval $(python-package))
shibajee/buildroot
package/python-six/python-six.mk
mk
mit
447
config BR2_PACKAGE_PYTHON_SMBUS_CFFI bool "python-smbus-cffi" select BR2_PACKAGE_PYTHON_CFFI help This Python module allows SMBus access through the I2C /dev interface on Linux hosts. The host kernel must have I2C support, I2C device interface support, and a bus adapter driver. https://github.com/bivab/smbus-cffi
shibajee/buildroot
package/python-smbus-cffi/Config.in
in
mit
334
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=f621c871bd658ee665751ad78e3b2df9, sha256 locally computed md5 f621c871bd658ee665751ad78e3b2df9 smbus-cffi-0.5.1.tar.gz sha256 fb4195aaabfc01586863f60d3190b5cb1bf8f12622fd597e23e48768dad6bde8 smbus-cffi-0.5.1.tar.gz
shibajee/buildroot
package/python-smbus-cffi/python-smbus-cffi.hash
hash
mit
286
################################################################################ # # python-smbus-cffi # ################################################################################ PYTHON_SMBUS_CFFI_VERSION = 0.5.1 PYTHON_SMBUS_CFFI_SOURCE = smbus-cffi-$(PYTHON_SMBUS_CFFI_VERSION).tar.gz PYTHON_SMBUS_CFFI_SITE = https://pypi.python.org/packages/source/s/smbus-cffi PYTHON_SMBUS_CFFI_SETUP_TYPE = setuptools PYTHON_SMBUS_CFFI_LICENSE = GPLv2 PYTHON_SMBUS_CFFI_LICENSE_FILES = LICENSE PYTHON_SMBUS_CFFI_DEPENDENCIES = host-python-cffi $(eval $(python-package))
shibajee/buildroot
package/python-smbus-cffi/python-smbus-cffi.mk
mk
mit
568
config BR2_PACKAGE_PYTHON_SOCKETIO bool "python-socketio" select BR2_PACKAGE_PYTHON_SIX # runtime select BR2_PACKAGE_PYTHON_ENGINEIO # runtime help Socket.IO server. http://github.com/miguelgrinberg/python-socketio/
shibajee/buildroot
package/python-socketio/Config.in
in
mit
227
# md5 from https://pypi.python.org/pypi/python-socketio/json md5 44fd24e839dc3102920765f345740646 python-socketio-1.4.1.tar.gz # sha256 calculated by scanpypi sha256 ebd0984d831d602c8ec6d586ecde4466972cc7ed37dbbfe613192864e8263779 python-socketio-1.4.1.tar.gz
shibajee/buildroot
package/python-socketio/python-socketio.hash
hash
mit
262
################################################################################ # # python-socketio # ################################################################################ PYTHON_SOCKETIO_VERSION = 1.4.1 PYTHON_SOCKETIO_SOURCE = python-socketio-$(PYTHON_SOCKETIO_VERSION).tar.gz PYTHON_SOCKETIO_SITE = https://pypi.python.org/packages/da/00/66103df6a116a2ce3ea662a9c8c80f337d43d7f138caf04e9af6dec24ba7 PYTHON_SOCKETIO_SETUP_TYPE = setuptools PYTHON_SOCKETIO_LICENSE = MIT PYTHON_SOCKETIO_LICENSE_FILES = LICENSE $(eval $(python-package))
shibajee/buildroot
package/python-socketio/python-socketio.mk
mk
mit
552
From 3d6e59bff088783f249a60a5f1c900c7f99f933b Mon Sep 17 00:00:00 2001 From: Bernd Kuhls <bernd.kuhls@t-online.de> Date: Sun, 31 Jan 2016 15:03:50 +0100 Subject: [PATCH 1/1] Fix build with musl libc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include missing header to prevent build error: spidev_module.c: In function ‘SpiDev_xfer’: spidev_module.c:330:27: error: ‘_IOC_SIZEBITS’ undeclared (first use in this function) status = ioctl(self->fd, SPI_IOC_MESSAGE(1), &xfer); ^ spidev_module.c:330:27: note: each undeclared identifier is reported only once for each function it appears in spidev_module.c: In function ‘SpiDev_xfer2’: spidev_module.c:421:27: error: ‘_IOC_SIZEBITS’ undeclared (first use in this function) status = ioctl(self->fd, SPI_IOC_MESSAGE(1), &xfer); ^ Signed-off-by: Bernd Kuhls bernd.kuhls@t-online.de Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- Patch sent upstream: https://github.com/doceme/py-spidev/pull/39 spidev_module.c | 1 + 1 file changed, 1 insertion(+) diff --git a/spidev_module.c b/spidev_module.c index d58ef07..bccaacf 100644 --- a/spidev_module.c +++ b/spidev_module.c @@ -25,6 +25,7 @@ #include <linux/spi/spidev.h> #include <linux/types.h> #include <sys/ioctl.h> +#include <linux/ioctl.h> #define SPIDEV_MAXPATH 4096 -- 2.7.0
shibajee/buildroot
package/python-spidev/0001-Fix-build-with-musl-libc.patch
patch
mit
1,417
config BR2_PACKAGE_PYTHON_SPIDEV bool "python-spidev" help Python module for interfacing with SPI devices from user space via the spidev linux kernel driver. https://pypi.python.org/pypi/spidev
shibajee/buildroot
package/python-spidev/Config.in
in
mit
206
# Locally calculated sha256 355391e9ad3024950590626b080324394c12e75bb21923dbd56a978a1eac6ac7 spidev-3.1.tar.gz
shibajee/buildroot
package/python-spidev/python-spidev.hash
hash
mit
111
################################################################################ # # python-spidev # ################################################################################ PYTHON_SPIDEV_VERSION = 3.1 PYTHON_SPIDEV_SOURCE = spidev-$(PYTHON_SPIDEV_VERSION).tar.gz PYTHON_SPIDEV_SITE = https://pypi.python.org/packages/source/s/spidev PYTHON_SPIDEV_SETUP_TYPE = distutils PYTHON_SPIDEV_LICENSE = GPLv2 PYTHON_SPIDEV_LICENSE_FILES = LICENSE.md $(eval $(python-package))
shibajee/buildroot
package/python-spidev/python-spidev.mk
mk
mit
478
config BR2_PACKAGE_PYTHON_THRIFT bool "python-thrift" depends on BR2_PACKAGE_PYTHON help python-thrift is a Python bindings for the Apache Thrift RPC system. http://thrift.apache.org/
shibajee/buildroot
package/python-thrift/Config.in
in
mit
194
# From https://www.apache.org/dist/thrift/0.9.2/thrift-0.9.2.tar.gz.md5 md5 89f63cc4d0100912f4a1f8a9dee63678 thrift-0.9.2.tar.gz
shibajee/buildroot
package/python-thrift/python-thrift.hash
hash
mit
129
################################################################################ # # python-thrift # ################################################################################ PYTHON_THRIFT_VERSION = 0.9.2 PYTHON_THRIFT_SOURCE = thrift-$(PYTHON_THRIFT_VERSION).tar.gz PYTHON_THRIFT_SITE = http://www.us.apache.org/dist/thrift/$(PYTHON_THRIFT_VERSION) PYTHON_THRIFT_LICENSE = Apache-2.0 PYTHON_THRIFT_LICENSE_FILES = LICENSE PYTHON_THRIFT_SETUP_TYPE = setuptools PYTHON_THRIFT_SUBDIR = lib/py $(eval $(python-package))
shibajee/buildroot
package/python-thrift/python-thrift.mk
mk
mit
526
config BR2_PACKAGE_PYTHON_TOMAKO bool "python-tomako" select BR2_PACKAGE_PYTHON_TORNADO # runtime select BR2_PACKAGE_PYTHON_MAKO # runtime help Tomako is the easiest way to use Mako as a template engine for Tornado. https://github.com/rcmachado/tomako
shibajee/buildroot
package/python-tomako/Config.in
in
mit
266
# md5 from https://pypi.python.org/pypi/tomako/json, sha256 locally computed md5 a2e9e99be4ddf2263ed441ddc3dfcf96 tomako-0.1.0.post1.tar.gz sha256 2d8ec113199408eb16ec00361aac6f10b716925779b6331083f304d01dafd150 tomako-0.1.0.post1.tar.gz
shibajee/buildroot
package/python-tomako/python-tomako.hash
hash
mit
240
################################################################################ # # python-tomako # ################################################################################ PYTHON_TOMAKO_VERSION = 0.1.0.post1 PYTHON_TOMAKO_SOURCE = tomako-$(PYTHON_TOMAKO_VERSION).tar.gz PYTHON_TOMAKO_SITE = https://pypi.python.org/packages/30/64/e174248281cb2fa8f5bce955d4bd49b253e622bb540a6001e48dec378a07 PYTHON_TOMAKO_SETUP_TYPE = setuptools PYTHON_TOMAKO_LICENSE = MIT PYTHON_TOMAKO_LICENSE_FILES = LICENSE $(eval $(python-package))
shibajee/buildroot
package/python-tomako/python-tomako.mk
mk
mit
533
From 785fe675d5602e51a559b06861d543c7d37a380c Mon Sep 17 00:00:00 2001 From: Yegor Yefremov <yegorslists@googlemail.com> Date: Wed, 4 May 2016 09:26:22 +0200 Subject: [PATCH] Don't require backports.ssl_match_hostname on Python 2.7.9 and newer As Python 3.2 support was dropped one can check 2.7.x dependency only. Tornado running on Python 2.7.9+ doesn't need this backported package, but some Python packages like circus check package dependencies at runtime and insist on having backports.ssl_match_hostname installed, though they don't even use this particular feature. So checking for exact version makes life of package maintainer easier especially on embedded Linux distributions like Buildroot. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c13eeed..0c24e70 100644 --- a/setup.py +++ b/setup.py @@ -129,7 +129,7 @@ if setuptools is not None: if sys.version_info < (2, 7): # Only needed indirectly, for singledispatch. install_requires.append('ordereddict') - if sys.version_info < (3, 2): + if sys.version_info < (2, 7, 9): install_requires.append('backports.ssl_match_hostname') if sys.version_info < (3, 4): install_requires.append('singledispatch') -- 2.8.1
shibajee/buildroot
package/python-tornado/0001-Don-t-require-backports.ssl_match_hostname-on-Python.patch
patch
mit
1,349
config BR2_PACKAGE_PYTHON_TORNADO bool "python-tornado" select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 select BR2_PACKAGE_PYTHON_SINGLEDISPATCH if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON_BACKPORTS_ABC if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON_CERTIFI if BR2_PACKAGE_PYTHON # runtime help Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. http://www.tornadoweb.org
shibajee/buildroot
package/python-tornado/Config.in
in
mit
530
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=c548d7b77a11d523c3d7255bd7fd6df8, sha256 locally computed md5 d13a99dc0b60ba69f5f8ec1235e5b232 tornado-4.3.tar.gz sha256 c9c2d32593d16eedf2cec1b6a41893626a2649b40b21ca9c4cac4243bde2efbf tornado-4.3.tar.gz
shibajee/buildroot
package/python-tornado/python-tornado.hash
hash
mit
275
################################################################################ # # python-tornado # ################################################################################ PYTHON_TORNADO_VERSION = 4.3 PYTHON_TORNADO_SOURCE = tornado-$(PYTHON_TORNADO_VERSION).tar.gz PYTHON_TORNADO_SITE = https://pypi.python.org/packages/source/t/tornado PYTHON_TORNADO_LICENSE = Apache-2.0 PYTHON_TORNADO_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-tornado/python-tornado.mk
mk
mit
452
config BR2_PACKAGE_PYTHON_TREQ bool "python-treq" select BR2_PACKAGE_PYTHON_REQUESTS # runtime select BR2_PACKAGE_PYTHON_SERVICE_IDENTITY # runtime select BR2_PACKAGE_PYTHON_SIX # runtime select BR2_PACKAGE_PYTHON_TWISTED # runtime select BR2_PACKAGE_PYTHON_PYOPENSSL # runtime depends on BR2_INSTALL_LIBSTDCPP # python-pyopenssl help treq is an HTTP library inspired by requests but written on top of Twisted's Agents. It provides a simple, higher level API for making HTTP requests when using Twisted. https://github.com/twisted/treq comment "python-treq needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP
shibajee/buildroot
package/python-treq/Config.in
in
mit
641
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=b1fb60759ad5a885cb8ea562553f2d4c, sha256 locally computed md5 b1fb60759ad5a885cb8ea562553f2d4c treq-15.1.0.tar.gz sha256 425a47d5d52a993d51211028fb6ade252e5fbea094e878bb4b644096a7322de8 treq-15.1.0.tar.gz
shibajee/buildroot
package/python-treq/python-treq.hash
hash
mit
271
################################################################################ # # python-treq # ################################################################################ PYTHON_TREQ_VERSION = 15.1.0 PYTHON_TREQ_SOURCE = treq-$(PYTHON_TREQ_VERSION).tar.gz PYTHON_TREQ_SITE = http://pypi.python.org/packages/source/t/treq PYTHON_TREQ_LICENSE = MIT PYTHON_TREQ_LICENSE_FILES = LICENSE PYTHON_TREQ_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-treq/python-treq.mk
mk
mit
456
config BR2_PACKAGE_PYTHON_TWISTED bool "python-twisted" select BR2_PACKAGE_PYTHON_ZOPE_INTERFACE # runtime help Twisted is an event-driven networking engine written in Python. https://twistedmatrix.com/trac/
shibajee/buildroot
package/python-twisted/Config.in
in
mit
218
# md5 from https://pypi.python.org/pypi/Twisted/json, sha256 locally computed. md5 8b35a88d5f1a4bfd762a008968fddabf Twisted-16.2.0.tar.bz2 sha256 a090e8dc675e97fb20c3bb5f8114ae94169f4e29fd3b3cbede35705fd3cdbd79 Twisted-16.2.0.tar.bz2
shibajee/buildroot
package/python-twisted/python-twisted.hash
hash
mit
241
################################################################################ # # python-twisted # ################################################################################ PYTHON_TWISTED_VERSION = 16.2.0 PYTHON_TWISTED_SOURCE = Twisted-$(PYTHON_TWISTED_VERSION).tar.bz2 PYTHON_TWISTED_SITE = https://pypi.python.org/packages/18/85/eb7af503356e933061bf1220033c3a85bad0dbc5035dfd9a97f1e900dfcb PYTHON_TWISTED_SETUP_TYPE = setuptools PYTHON_TWISTED_LICENSE = MIT PYTHON_TWISTED_LICENSE_FILES = LICENSE $(eval $(python-package))
shibajee/buildroot
package/python-twisted/python-twisted.mk
mk
mit
538
config BR2_PACKAGE_PYTHON_TXAIO bool "python-txaio" select BR2_PACKAGE_PYTHON_SIX # runtime help Compatibility API between asyncio/Twisted/Trollius. https://pypi.python.org/pypi/txaio
shibajee/buildroot
package/python-txaio/Config.in
in
mit
194
# md5 from https://pypi.python.org/pypi/txaio/json, sha256 locally computed. md5 7b0f5321515d380ad5d32f01666b6ee7 txaio-2.5.1.tar.gz sha256 625076477182e2dde78b79d0b2b0d6b3cecb0e24fe0ea7eaf2abd26a4c0dd1de txaio-2.5.1.tar.gz
shibajee/buildroot
package/python-txaio/python-txaio.hash
hash
mit
226
################################################################################ # # python-txaio # ################################################################################ PYTHON_TXAIO_VERSION = 2.5.1 PYTHON_TXAIO_SOURCE = txaio-$(PYTHON_TXAIO_VERSION).tar.gz PYTHON_TXAIO_SITE = https://pypi.python.org/packages/45/e1/f7d88767d65dbfc20d4b4aa0dad657dbbe8ca629ead2bef24da04630a12a PYTHON_TXAIO_LICENSE = MIT PYTHON_TXAIO_LICENSE_FILES = LICENSE PYTHON_TXAIO_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-txaio/python-txaio.mk
mk
mit
518
config BR2_PACKAGE_PYTHON_U_MSGPACK bool "python-u-msgpack" help A portable, lightweight MessagePack serializer and deserializer written in pure Python. https://github.com/vsergeev/u-msgpack-python
shibajee/buildroot
package/python-u-msgpack/Config.in
in
mit
210
# md5 from https://pypi.python.org/pypi/u-msgpack-python/json md5 2ccadbf06c7e70bbdb58e920d045d50c u-msgpack-python-2.1.tar.gz # sha256 calculated by scanpypi sha256 66a39ddc6830be29b6d304dee9d4ab37104550ac4565eab1aa4c2bd3d34d759f u-msgpack-python-2.1.tar.gz
shibajee/buildroot
package/python-u-msgpack/python-u-msgpack.hash
hash
mit
261
################################################################################ # # python-u-msgpack # ################################################################################ PYTHON_U_MSGPACK_VERSION = 2.1 PYTHON_U_MSGPACK_SOURCE = u-msgpack-python-$(PYTHON_U_MSGPACK_VERSION).tar.gz PYTHON_U_MSGPACK_SITE = https://pypi.python.org/packages/b7/8d/791f037a0954f98a8eceb09c7c14babb97db0a81c985108bb21939b801eb PYTHON_U_MSGPACK_SETUP_TYPE = distutils PYTHON_U_MSGPACK_LICENSE = MIT PYTHON_U_MSGPACK_LICENSE_FILES = umsgpack.py $(eval $(python-package))
shibajee/buildroot
package/python-u-msgpack/python-u-msgpack.mk
mk
mit
562
config BR2_PACKAGE_PYTHON_UBJSON bool "python-ubjson" help This is a Python v3.2+ (and 2.7+) Universal Binary JSON encoder/decoder based on the draft-12 specification. https://pypi.python.org/pypi/py-ubjson
shibajee/buildroot
package/python-ubjson/Config.in
in
mit
219
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=7d7e7b9b67acfb8c6b417dab78ac4639,sha256 locally computed. md5 7d7e7b9b67acfb8c6b417dab78ac4639 py-ubjson-0.8.4.tar.gz sha256 395c0cbbb097d88bb0db92fe1ac82d31b56f3be396946fe02d38f08e86a8efe9 py-ubjson-0.8.4.tar.gz
shibajee/buildroot
package/python-ubjson/python-ubjson.hash
hash
mit
279
################################################################################ # # python-ubjson # ################################################################################ PYTHON_UBJSON_VERSION = 0.8.4 PYTHON_UBJSON_SOURCE = py-ubjson-$(PYTHON_UBJSON_VERSION).tar.gz PYTHON_UBJSON_SITE = https://pypi.python.org/packages/bf/a3/990c47fa0d2d244a3d493ae917d5cbf2a0632c1ac6aa53445f4e53ce3675 PYTHON_UBJSON_LICENSE = Apache-2.0 PYTHON_UBJSON_LICENSE_FILES = LICENSE PYTHON_UBJSON_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-ubjson/python-ubjson.mk
mk
mit
537
config BR2_PACKAGE_PYTHON_UJSON bool "python-ujson" help UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.5+ and 3. https://pypi.python.org/pypi/ujson
shibajee/buildroot
package/python-ujson/Config.in
in
mit
211
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=42f77b0cce686dfa4da2e68480b1dd24,sha256 locally computed. md5 42f77b0cce686dfa4da2e68480b1dd24 ujson-1.35.tar.gz sha256 f66073e5506e91d204ab0c614a148d5aa938bdbf104751be66f8ad7a222f5f86 ujson-1.35.tar.gz
shibajee/buildroot
package/python-ujson/python-ujson.hash
hash
mit
269
################################################################################ # # python-ujson # ################################################################################ PYTHON_UJSON_VERSION = 1.35 PYTHON_UJSON_SOURCE = ujson-$(PYTHON_UJSON_VERSION).tar.gz PYTHON_UJSON_SITE = http://pypi.python.org/packages/source/u/ujson PYTHON_UJSON_LICENSE = BSD-3c PYTHON_UJSON_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-ujson/python-ujson.mk
mk
mit
430
config BR2_PACKAGE_PYTHON_URLLIB3 bool "python-urllib3" select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 # runtime help Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more. http://urllib3.readthedocs.org/
shibajee/buildroot
package/python-urllib3/Config.in
in
mit
338
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=5e1407428ac33b521c71a7ac273b3847, sha256 locally computed md5 5e1407428ac33b521c71a7ac273b3847 urllib3-1.14.tar.gz sha256 dd4fb13a4ce50b18338c7e4d665b21fd38632c5d4b1d9f1a1379276bd3c08d37 urllib3-1.14.tar.gz
shibajee/buildroot
package/python-urllib3/python-urllib3.hash
hash
mit
278
################################################################################ # # python-urllib3 # ################################################################################ PYTHON_URLLIB3_VERSION = 1.14 PYTHON_URLLIB3_SOURCE = urllib3-$(PYTHON_URLLIB3_VERSION).tar.gz PYTHON_URLLIB3_SITE = https://pypi.python.org/packages/source/u/urllib3 PYTHON_URLLIB3_LICENSE = MIT PYTHON_URLLIB3_LICENSE_FILES = LICENSE.txt PYTHON_URLLIB3_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-urllib3/python-urllib3.mk
mk
mit
489
config BR2_PACKAGE_PYTHON_URWID bool "python-urwid" help Urwid is a console user interface library for Python http://urwid.org/
shibajee/buildroot
package/python-urwid/Config.in
in
mit
137
# md5 from https://pypi.python.org/pypi/urwid/1.3.0, sha256 locally computed md5 a989acd54f4ff1a554add464803a9175 urwid-1.3.0.tar.gz sha256 29f04fad3bf0a79c5491f7ebec2d50fa086e9d16359896c9204c6a92bc07aba2 urwid-1.3.0.tar.gz
shibajee/buildroot
package/python-urwid/python-urwid.hash
hash
mit
226
################################################################################ # # python-urwid # ################################################################################ PYTHON_URWID_VERSION = 1.3.0 PYTHON_URWID_SOURCE = urwid-$(PYTHON_URWID_VERSION).tar.gz PYTHON_URWID_SITE = https://pypi.python.org/packages/source/u/urwid PYTHON_URWID_LICENSE = LGPLv2.1+ PYTHON_URWID_LICENSE_FILES = COPYING PYTHON_URWID_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-urwid/python-urwid.mk
mk
mit
472
config BR2_PACKAGE_PYTHON_VERSIONTOOLS bool "python-versiontools" depends on BR2_PACKAGE_PYTHON help Smart replacement for plain tuple used in __version__. https://pypi.python.org/pypi/versiontools
shibajee/buildroot
package/python-versiontools/Config.in
in
mit
208
# locally computed sha256 a969332887a18a9c98b0df0ea4d4ca75972f24ca94f06fb87d591377e83414f6 versiontools-1.9.1.tar.gz
shibajee/buildroot
package/python-versiontools/python-versiontools.hash
hash
mit
119
################################################################################ # # python-versiontools # ################################################################################ PYTHON_VERSIONTOOLS_VERSION = 1.9.1 PYTHON_VERSIONTOOLS_SOURCE = versiontools-$(PYTHON_VERSIONTOOLS_VERSION).tar.gz PYTHON_VERSIONTOOLS_SITE = http://pypi.python.org/packages/source/v/versiontools PYTHON_VERSIONTOOLS_SETUP_TYPE = setuptools PYTHON_VERSIONTOOLS_LICENSE = LGPLv3 $(eval $(python-package))
shibajee/buildroot
package/python-versiontools/python-versiontools.mk
mk
mit
494
config BR2_PACKAGE_PYTHON_WATCHDOG bool "python-watchdog" select BR2_PACKAGE_PYTHON_PYYAML select BR2_PACKAGE_PYTHON_ARGH select BR2_PACKAGE_PYTHON_PATHTOOLS help Python API and shell utilities to monitor file system events. http://github.com/gorakhargosh/watchdog
shibajee/buildroot
package/python-watchdog/Config.in
in
mit
277
# md5 from https://pypi.python.org/pypi/watchdog/json md5 bb16926bccc98eae2a04535e4512ddf1 watchdog-0.8.3.tar.gz # sha256 calculated by scanpypi sha256 7e65882adb7746039b6f3876ee174952f8eaaa34491ba34333ddf1fe35de4162 watchdog-0.8.3.tar.gz
shibajee/buildroot
package/python-watchdog/python-watchdog.hash
hash
mit
241
################################################################################ # # python-watchdog # ################################################################################ PYTHON_WATCHDOG_VERSION = 0.8.3 PYTHON_WATCHDOG_SOURCE = watchdog-$(PYTHON_WATCHDOG_VERSION).tar.gz PYTHON_WATCHDOG_SITE = https://pypi.python.org/packages/54/7d/c7c0ad1e32b9f132075967fc353a244eb2b375a3d2f5b0ce612fd96e107e PYTHON_WATCHDOG_SETUP_TYPE = setuptools PYTHON_WATCHDOG_LICENSE = Apache-2.0 PYTHON_WATCHDOG_LICENSE_FILES = LICENSE COPYING $(eval $(python-package))
shibajee/buildroot
package/python-watchdog/python-watchdog.mk
mk
mit
560
config BR2_PACKAGE_PYTHON_WCWIDTH bool "python-wcwidth" help This library measures number of Terminal column cells of wide-character codes. https://github.com/jquast/wcwidth
shibajee/buildroot
package/python-wcwidth/Config.in
in
mit
186
# md5 from https://pypi.python.org/pypi/wcwidth/json, sha256 locally computed md5 b3b6a0a08f0c8a34d1de8cf44150a4ad wcwidth-0.1.7.tar.gz sha256 3df37372226d6e63e1b1e1eda15c594bca98a22d33a23832a90998faa96bc65e wcwidth-0.1.7.tar.gz
shibajee/buildroot
package/python-wcwidth/python-wcwidth.hash
hash
mit
229
################################################################################ # # python-wcwidth # ################################################################################ PYTHON_WCWIDTH_VERSION = 0.1.7 PYTHON_WCWIDTH_SOURCE = wcwidth-$(PYTHON_WCWIDTH_VERSION).tar.gz PYTHON_WCWIDTH_SITE = https://pypi.python.org/packages/55/11/e4a2bb08bb450fdbd42cc709dd40de4ed2c472cf0ccb9e64af22279c5495 PYTHON_WCWIDTH_SETUP_TYPE = setuptools PYTHON_WCWIDTH_LICENSE = MIT PYTHON_WCWIDTH_LICENSE_FILES = LICENSE.txt $(eval $(python-package))
shibajee/buildroot
package/python-wcwidth/python-wcwidth.mk
mk
mit
540
config BR2_PACKAGE_PYTHON_WEB2PY bool "python-web2py" depends on BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON_PYDAL select BR2_PACKAGE_PYTHON_ZLIB select BR2_PACKAGE_PYTHON_PYEXPAT select BR2_PACKAGE_PYTHON_SQLITE help web2py is a free open source full-stack framework for rapid development of fast, scalable, secure and portable database-driven web-based applications. http://web2py.com if BR2_PACKAGE_PYTHON_WEB2PY config BR2_PACKAGE_PYTHON_WEB2PY_PASSWORD string "admin panel password" default web2py help Set the admin panel password. endif
shibajee/buildroot
package/python-web2py/Config.in
in
mit
574
#!/bin/sh case "$1" in start) printf "Starting web2py: " start-stop-daemon -S -q -m -p /run/web2py.pid \ -c www-data \ -b -x /var/www/web2py/web2py.py \ -- --nogui -a '"<recycle>"' -i 0.0.0.0 -p 8000 [ $? = 0 ] && echo "OK" || echo "FAIL" ;; stop) printf "Stopping web2py: " start-stop-daemon -K -q -p /run/web2py.pid [ $? = 0 ] && echo "OK" || echo "FAIL" ;; restart) "$0" stop sleep 1 "$0" start ;; *) echo "Usage: $0 {start|stop|restart}" ;; esac
shibajee/buildroot
package/python-web2py/S51web2py
none
mit
492
# sha256 locally computed sha256 7e22a5624d8d2909e165110f0bec6b43ee36ff6834d689f4027e06dece662031 python-web2py-R-2.12.3.tar.gz
shibajee/buildroot
package/python-web2py/python-web2py.hash
hash
mit
130
################################################################################ # # python-web2py # ################################################################################ PYTHON_WEB2PY_VERSION = R-2.12.3 PYTHON_WEB2PY_SITE = $(call github,web2py,web2py,$(PYTHON_WEB2PY_VERSION)) PYTHON_WEB2PY_LICENSE = LGPLv3 PYTHON_WEB2PY_LICENSE_FILES = LICENSE PYTHON_WEB2PY_DEPENDENCIES = python python-pydal host-python-pydal define PYTHON_WEB2PY_INSTALL_TARGET_CMDS $(HOST_DIR)/usr/bin/python2 -c 'import os; \ os.chdir("$(@D)"); \ from gluon.main import save_password; \ save_password($(BR2_PACKAGE_PYTHON_WEB2PY_PASSWORD),8000)' mkdir -p $(TARGET_DIR)/var/www/web2py cp -dpfr $(@D)/* $(TARGET_DIR)/var/www/web2py endef define PYTHON_WEB2PY_INSTALL_INIT_SYSV $(INSTALL) -m 0755 -D package/python-web2py/S51web2py \ $(TARGET_DIR)/etc/init.d/S51web2py endef define PYTHON_WEB2PY_INSTALL_INIT_SYSTEMD $(INSTALL) -D -m 0644 package/python-web2py/web2py.service \ $(TARGET_DIR)/usr/lib/systemd/system/web2py.service mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants ln -fs ../../../../usr/lib//systemd/system/web2py.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/web2py.service endef # www-data user and group are used for web2py. Because these user and group # are already set by buildroot, it is not necessary to redefine them. # See system/skeleton/etc/passwd # username: www-data uid: 33 # groupname: www-data gid: 33 # # So, we just need to create the directories used by web2py with the right # ownership. define PYTHON_WEB2PY_PERMISSIONS /var/www/web2py r 750 33 33 - - - - - endef $(eval $(generic-package))
shibajee/buildroot
package/python-web2py/python-web2py.mk
mk
mit
1,693
[Unit] Description=Web2py daemon After=network.target [Service] Type=simple ExecStart=/var/www/web2py/web2py.py --nogui -a '<recycle>' -i 0.0.0.0 -p 8000 User=www-data [Install] WantedBy=multi-user.target
shibajee/buildroot
package/python-web2py/web2py.service
service
mit
207
config BR2_PACKAGE_PYTHON_WEBPY bool "python-webpy" depends on BR2_PACKAGE_PYTHON help web.py is a web framework for Python that is as simple as it is powerful. http://webpy.org/
shibajee/buildroot
package/python-webpy/Config.in
in
mit
192
# Locally computed sha256 c3cb8930739294103b1ad109e5fd1d0efae67c06d5b6d59fce5b5a2ee6b21624 python-webpy-webpy-0.37.tar.gz
shibajee/buildroot
package/python-webpy/python-webpy.hash
hash
mit
124
################################################################################ # # python-webpy # ################################################################################ PYTHON_WEBPY_VERSION = webpy-0.37 PYTHON_WEBPY_SITE = $(call github,webpy,webpy,$(PYTHON_WEBPY_VERSION)) PYTHON_WEBPY_SETUP_TYPE = distutils PYTHON_WEBPY_LICENSE = Public Domain, CherryPy License PYTHON_WEBPY_LICENSE_FILES = LICENSE.txt web/wsgiserver/LICENSE.txt $(eval $(python-package))
shibajee/buildroot
package/python-webpy/python-webpy.mk
mk
mit
473
config BR2_PACKAGE_PYTHON_WERKZEUG bool "python-werkzeug" select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 # runtime help Werkzeug is a WSGI utility library for Python. It's widely used and BSD licensed. http://werkzeug.pocoo.org/
shibajee/buildroot
package/python-werkzeug/Config.in
in
mit
314
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=780967186f9157e88f2bfbfa6f07a893, sha256 locally computed md5 780967186f9157e88f2bfbfa6f07a893 Werkzeug-0.11.10.tar.gz sha256 cc64dafbacc716cdd42503cf6c44cb5a35576443d82f29f6829e5c49264aeeee Werkzeug-0.11.10.tar.gz
shibajee/buildroot
package/python-werkzeug/python-werkzeug.hash
hash
mit
281
################################################################################ # # python-werkzeug # ################################################################################ PYTHON_WERKZEUG_VERSION = 0.11.10 PYTHON_WERKZEUG_SOURCE = Werkzeug-$(PYTHON_WERKZEUG_VERSION).tar.gz PYTHON_WERKZEUG_SITE = https://pypi.python.org/packages/b7/7f/44d3cfe5a12ba002b253f6985a4477edfa66da53787a2a838a40f6415263 PYTHON_WERKZEUG_SETUP_TYPE = setuptools PYTHON_WERKZEUG_LICENSE = BSD-3c PYTHON_WERKZEUG_LICENSE_FILES = LICENSE $(eval $(python-package))
shibajee/buildroot
package/python-werkzeug/python-werkzeug.mk
mk
mit
550
config BR2_PACKAGE_PYTHON_WS4PY bool "python-ws4py" help ws4py is a Python package implementing the WebSocket protocol as defined in RFC 6455. https://ws4py.readthedocs.org
shibajee/buildroot
package/python-ws4py/Config.in
in
mit
185
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=6b47e33cbd13f5c134b04f2a44a480ad, sha256 locally computed md5 6b47e33cbd13f5c134b04f2a44a480ad ws4py-0.3.4.tar.gz sha256 85d5c01bb0d031e151a32fad56094caf54e20c2ddb51cf25b5709421ff92d007 ws4py-0.3.4.tar.gz
shibajee/buildroot
package/python-ws4py/python-ws4py.hash
hash
mit
276
################################################################################ # # python-ws4py # ################################################################################ PYTHON_WS4PY_VERSION = 0.3.4 PYTHON_WS4PY_SOURCE = ws4py-$(PYTHON_WS4PY_VERSION).tar.gz PYTHON_WS4PY_SITE = https://pypi.python.org/packages/source/w/ws4py PYTHON_WS4PY_SETUP_TYPE = setuptools PYTHON_WS4PY_LICENSE = BSD-3c PYTHON_WS4PY_LICENSE_FILES = ws4py/__init__.py $(eval $(python-package))
shibajee/buildroot
package/python-ws4py/python-ws4py.mk
mk
mit
479
config BR2_PACKAGE_PYTHON_WSACCEL bool "python-wsaccel" help Accelerator for ws4py and AutobahnPython. https://pypi.python.org/pypi/wsaccel
shibajee/buildroot
package/python-wsaccel/Config.in
in
mit
149
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=2b4ea3d6847855c0587d37fca9db0557, sha256 locally computed. md5 2b4ea3d6847855c0587d37fca9db0557 wsaccel-0.6.2.tar.gz sha256 425706acf0724d2f6bfa391ec37b4ef121d3432c956029de3cea4e101c218e0c wsaccel-0.6.2.tar.gz
shibajee/buildroot
package/python-wsaccel/python-wsaccel.hash
hash
mit
276
################################################################################ # # python-wsaccel # ################################################################################ PYTHON_WSACCEL_VERSION = 0.6.2 PYTHON_WSACCEL_SOURCE = wsaccel-$(PYTHON_WSACCEL_VERSION).tar.gz PYTHON_WSACCEL_SITE = http://pypi.python.org/packages/source/w/wsaccel PYTHON_WSACCEL_LICENSE = Apache-2.0 PYTHON_WSACCEL_SETUP_TYPE = setuptools $(eval $(python-package))
shibajee/buildroot
package/python-wsaccel/python-wsaccel.mk
mk
mit
453
config BR2_PACKAGE_PYTHON_XLRD bool "python-xlrd" select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3 select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 help Library for developers to extract data from Microsoft Excel (tm) spreadsheet files. http://www.python-excel.org/
shibajee/buildroot
package/python-xlrd/Config.in
in
mit
406
# md5 from https://pypi.python.org/pypi/xlrd/json md5 9a91b688cd4945477ac28187a54f9a3b xlrd-1.0.0.tar.gz # sha256 calculated by scanpypi sha256 0ff87dd5d50425084f7219cb6f86bb3eb5aa29063f53d50bf270ed007e941069 xlrd-1.0.0.tar.gz
shibajee/buildroot
package/python-xlrd/python-xlrd.hash
hash
mit
229
################################################################################ # # python-xlrd # ################################################################################ PYTHON_XLRD_VERSION = 1.0.0 PYTHON_XLRD_SOURCE = xlrd-$(PYTHON_XLRD_VERSION).tar.gz PYTHON_XLRD_SITE = https://pypi.python.org/packages/42/85/25caf967c2d496067489e0bb32df069a8361e1fd96a7e9f35408e56b3aab PYTHON_XLRD_SETUP_TYPE = setuptools PYTHON_XLRD_LICENSE = BSD-3c PYTHON_XLRD_LICENSE_FILES = xlrd/licences.py $(eval $(python-package))
shibajee/buildroot
package/python-xlrd/python-xlrd.mk
mk
mit
521
config BR2_PACKAGE_PYTHON_XLSXWRITER bool "python-xlsxwriter" select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 help A Python module for creating Excel XLSX files. https://github.com/jmcnamara/XlsxWriter
shibajee/buildroot
package/python-xlsxwriter/Config.in
in
mit
273
# md5 from https://pypi.python.org/pypi/XlsxWriter/json md5 545c938f279abcfd7f11e705012302fe XlsxWriter-0.8.9.tar.gz # sha256 locally computed sha256 cb90c5283b88af72549adf82f203d15623a0f4faeae29b6a20733e187dfde882 XlsxWriter-0.8.9.tar.gz
shibajee/buildroot
package/python-xlsxwriter/python-xlsxwriter.hash
hash
mit
241
################################################################################ # # python-xlsxwriter # ################################################################################ PYTHON_XLSXWRITER_VERSION = 0.8.9 PYTHON_XLSXWRITER_SOURCE = XlsxWriter-$(PYTHON_XLSXWRITER_VERSION).tar.gz PYTHON_XLSXWRITER_SITE = https://pypi.python.org/packages/2a/de/4ee20ac103417662865e0e3acde859b002c13f52af0d50a2664d3eca5897 PYTHON_XLSXWRITER_SETUP_TYPE = setuptools PYTHON_XLSXWRITER_LICENSE = BSD-2c PYTHON_XLSXWRITER_LICENSE_FILES = LICENSE.txt $(eval $(python-package))
shibajee/buildroot
package/python-xlsxwriter/python-xlsxwriter.mk
mk
mit
570
config BR2_PACKAGE_PYTHON_XLUTILS bool "python-xlutils" select BR2_PACKAGE_PYTHON_XLRD # runtime select BR2_PACKAGE_PYTHON_XLWT # runtime help Utilities for working with Excel files that require both xlrd and xlwt. http://www.python-excel.org
shibajee/buildroot
package/python-xlutils/Config.in
in
mit
257
# md5 from https://pypi.python.org/pypi/xlutils/json md5 7a6a339ddaacabce244341582ee61353 xlutils-2.0.0.tar.gz # sha256 calculated by scanpypi sha256 7e0e2c233bd185fecf5e2bd3f4e9469ca4a3bd87da64c82cfe5b2af27e7f9e54 xlutils-2.0.0.tar.gz
shibajee/buildroot
package/python-xlutils/python-xlutils.hash
hash
mit
238
################################################################################ # # python-xlutils # ################################################################################ PYTHON_XLUTILS_VERSION = 2.0.0 PYTHON_XLUTILS_SOURCE = xlutils-$(PYTHON_XLUTILS_VERSION).tar.gz PYTHON_XLUTILS_SITE = https://pypi.python.org/packages/93/fe/af6d73e4bc7b0ce359d34bebb2e8d4d129763acfecd66a3a7efc587e54c9 PYTHON_XLUTILS_SETUP_TYPE = setuptools PYTHON_XLUTILS_LICENSE = MIT PYTHON_XLUTILS_LICENSE_FILES = xlutils/license.txt $(eval $(python-package))
shibajee/buildroot
package/python-xlutils/python-xlutils.mk
mk
mit
548
config BR2_PACKAGE_PYTHON_XLWT bool "python-xlwt" help Library to create spreadsheet files compatible with MS Excel 97/2000/XP/2003 XLS files, on any platform, with Python 2.6, 2.7, 3.3+. http://www.python-excel.org/
shibajee/buildroot
package/python-xlwt/Config.in
in
mit
232
# md5 from https://pypi.python.org/pypi/xlwt/json md5 fadf8d1be8c5f071561c4145ed5f5b89 xlwt-1.1.2.tar.gz # sha256 calculated by scanpypi sha256 aed648c17731f40f84550dd2a1aaa53569f0cbcaf5610ba895cd2632587b723c xlwt-1.1.2.tar.gz
shibajee/buildroot
package/python-xlwt/python-xlwt.hash
hash
mit
229
################################################################################ # # python-xlwt # ################################################################################ PYTHON_XLWT_VERSION = 1.1.2 PYTHON_XLWT_SOURCE = xlwt-$(PYTHON_XLWT_VERSION).tar.gz PYTHON_XLWT_SITE = https://pypi.python.org/packages/0b/69/644313df86e6375ec2c6b34ec8ac544b9cc7803b7d943223d32811860f3d PYTHON_XLWT_SETUP_TYPE = setuptools PYTHON_XLWT_LICENSE = BSD-3c, BSD-4c PYTHON_XLWT_LICENSE_FILES = docs/licenses.rst $(eval $(python-package))
shibajee/buildroot
package/python-xlwt/python-xlwt.mk
mk
mit
530