summaryrefslogtreecommitdiff
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
Import simplematch_1.3-1.debian.tar.xz
[dgit import tarball simplematch 1.3-1 simplematch_1.3-1.debian.tar.xz]
-rw-r--r--changelog5
-rw-r--r--control22
-rw-r--r--copyright30
-rw-r--r--python3-simplematch.install1
-rwxr-xr-xrules5
-rw-r--r--source/format1
-rw-r--r--watch4
7 files changed, 68 insertions, 0 deletions
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..9b2f9ce
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+simplematch (1.3-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #989641)
+
+ -- Frédéric Bonnard <frediz@debian.org> Fri, 04 Jun 2021 15:32:09 +0200
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.
diff --git a/copyright b/copyright
new file mode 100644
index 0000000..46d6c56
--- /dev/null
+++ b/copyright
@@ -0,0 +1,30 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: simplematch
+Source: https://github.com/tfeldmann/simplematch
+
+Files: *
+Copyright: 2021 Thomas Feldmann <mail@tfeldmann.de>
+License: Expat
+
+Files: debian/*
+Copyright: 2021 Frédéric Bonnard <frediz@debian.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
diff --git a/python3-simplematch.install b/python3-simplematch.install
new file mode 100644
index 0000000..44c9d58
--- /dev/null
+++ b/python3-simplematch.install
@@ -0,0 +1 @@
+simplematch.py /usr/lib/python3/dist-packages
diff --git a/rules b/rules
new file mode 100755
index 0000000..6a5f9c4
--- /dev/null
+++ b/rules
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+export DH_VERBOSE=1
+
+%:
+ dh $@ --with python3
diff --git a/source/format b/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/watch b/watch
new file mode 100644
index 0000000..5e416f9
--- /dev/null
+++ b/watch
@@ -0,0 +1,4 @@
+version=4
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%simplematch-$1.tar.gz%" \
+ https://github.com/tfeldmann/simplematch/tags \
+ (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate