From 73935b40413502f1e285ae885213c7dc1939277e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Bonnard?= Date: Fri, 4 Jun 2021 15:32:09 +0200 Subject: Import simplematch_1.3-1.debian.tar.xz [dgit import tarball simplematch 1.3-1 simplematch_1.3-1.debian.tar.xz] --- changelog | 5 +++++ control | 22 ++++++++++++++++++++++ copyright | 30 ++++++++++++++++++++++++++++++ python3-simplematch.install | 1 + rules | 5 +++++ source/format | 1 + watch | 4 ++++ 7 files changed, 68 insertions(+) create mode 100644 changelog create mode 100644 control create mode 100644 copyright create mode 100644 python3-simplematch.install create mode 100755 rules create mode 100644 source/format create mode 100644 watch 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 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 +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 +License: Expat + +Files: debian/* +Copyright: 2021 Frédéric Bonnard +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 -- cgit v1.2.3