39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=gitdb
|
||
|
PKG_VERSION:=4.0.10
|
||
|
PKG_RELEASE:=$(AUTORELEASE)
|
||
|
|
||
|
PYPI_NAME:=$(PKG_NAME)
|
||
|
PKG_HASH:=6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a
|
||
|
PKG_MAINTAINER:=Lee Miller <lee.miller@tutanota.com>
|
||
|
PKG_LICENSE:=BSD
|
||
|
|
||
|
include $(TOPDIR)/feeds/packages/lang/python/pypi.mk
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk
|
||
|
|
||
|
define Package/python3-$(PKG_NAME)
|
||
|
SECTION:=lang
|
||
|
CATEGORY:=Languages
|
||
|
SUBMENU:=Python
|
||
|
TITLE:=Git Object Database
|
||
|
URL:=https://github.com/gitpython-developers/gitdb
|
||
|
DEPENDS:=+python3 +python3-setuptools +python3-smmap
|
||
|
endef
|
||
|
|
||
|
define Package/python3-$(PKG_NAME)/description
|
||
|
GitDB allows you to access bare git repositories for reading and writing.
|
||
|
It aims at allowing full access to loose objects as well as packs with
|
||
|
performance and scalability in mind. It operates exclusively on streams,
|
||
|
allowing to handle large objects with a small memory footprint.
|
||
|
endef
|
||
|
|
||
|
$(eval $(call Py3Package,python3-$(PKG_NAME)))
|
||
|
$(eval $(call BuildPackage,python3-$(PKG_NAME)))
|
||
|
$(eval $(call BuildPackage,python3-$(PKG_NAME)-src))
|