mirror of
				https://github.com/openwrt/packages.git
				synced 2025-11-04 05:49:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			921 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			921 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=python-s3transfer
 | 
						|
PKG_VERSION:=0.6.1
 | 
						|
PKG_RELEASE:=1
 | 
						|
 | 
						|
PYPI_NAME:=s3transfer
 | 
						|
PKG_HASH:=640bb492711f4c0c0905e1f62b6aaeb771881935ad27884852411f8e9cacbca9
 | 
						|
 | 
						|
PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
 | 
						|
PKG_LICENSE:=Apache-2.0
 | 
						|
PKG_LICENSE_FILES:=LICENSE.txt
 | 
						|
 | 
						|
include ../pypi.mk
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
include ../python3-package.mk
 | 
						|
 | 
						|
define Package/python3-s3transfer
 | 
						|
  SECTION:=lang
 | 
						|
  CATEGORY:=Languages
 | 
						|
  SUBMENU:=Python
 | 
						|
  TITLE:=Amazon S3 Transfer Manager
 | 
						|
  URL:=https://github.com/boto/s3transfer
 | 
						|
  DEPENDS:= \
 | 
						|
	+python3-light \
 | 
						|
	+python3-logging \
 | 
						|
	+python3-multiprocessing \
 | 
						|
	+python3-botocore
 | 
						|
endef
 | 
						|
 | 
						|
define Package/python3-s3transfer/description
 | 
						|
S3transfer is a Python library for managing Amazon S3 transfers.
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call Py3Package,python3-s3transfer))
 | 
						|
$(eval $(call BuildPackage,python3-s3transfer))
 | 
						|
$(eval $(call BuildPackage,python3-s3transfer-src))
 |