summaryrefslogtreecommitdiff
path: root/control
diff options
context:
space:
mode:
authorFrédéric Bonnard <frediz@debian.org>2021-06-04 15:32:09 +0200
committerFrédéric Bonnard <frediz@debian.org>2021-06-04 15:32:09 +0200
commit73935b40413502f1e285ae885213c7dc1939277e (patch)
tree56b6d951443fdc724fd8e4c34a554f96805d92c3 /control
Import simplematch_1.3-1.debian.tar.xz
[dgit import tarball simplematch 1.3-1 simplematch_1.3-1.debian.tar.xz]
Diffstat (limited to 'control')
-rw-r--r--control22
1 files changed, 22 insertions, 0 deletions
diff --git a/control b/control
new file mode 100644
index 0000000..ebda385
--- /dev/null
+++ b/control
@@ -0,0 +1,22 @@
+Source: simplematch
+Maintainer: Frédéric Bonnard <frediz@debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper-compat (= 13),
+ dh-python,
+ python3-all,
+Rules-Requires-Root: no
+Standards-Version: 4.5.1
+Homepage: https://github.com/tfeldmann/simplematch
+Vcs-Git: https://salsa.debian.org/debian/simplematch.git
+Vcs-Browser: https://salsa.debian.org/debian/simplematch
+
+Package: python3-simplematch
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Description: Minimal, super readable string pattern matching for Python
+ simplematch aims to fill a gap between parsing with str.split() and
+ regular expressions. It should be as simple as possible, fast and
+ stable.
+ The simplematch syntax is transpiled to regular expressions under the
+ hood, so matching performance should be just as good.