diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..c82d0f2 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +tree-sitter (0.19.0-1+swh1) unstable-swh; urgency=medium + + * Initial release + + -- Vincent Sellier Tue, 17 Aug 2021 19:01:56 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d2cb889 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: tree-sitter +Section: python +Priority: optional +Maintainer: swh sysadm +Build-Depends: debhelper (>= 9), + dh-python, + libc6, + python3-all, + python3-dev, + python3-setuptools, +Standards-Version: 4.5.1 +X-Python3-Version: >= 3.6 +Homepage: https://github.com/tree-sitter/py-tree-sitter + +Package: python3-tree-sitter +Architecture: any +Multi-Arch: same +Depends: ${shlibs:Depends}, + ${misc:Depends}, + ${python3:Depends}, + libc6 +Description: Python bindings to the Tree-sitter parsing library + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5d1b34d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,11 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: python3-tree-sitter +Source: https://github.com/tree-sitter/py-tree-sitter + +Files: * +Copyright: Copyright (c) 2019 Max Brunsfeld, GitHub +License: The MIT License (MIT) + +Files: debian/* +Copyright: 2021 swh sysadm +License: Apache License 2 diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..7f63e3e --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[DEFAULT] +upstream-branch=debian/upstream +upstream-tag=debian/upstream/%(version)s +debian-branch=debian/unstable-swh +pristine-tar=True diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e49385a --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=tree-sitter + +%: + dh $@ --with python3 --buildsystem=pybuild + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)