From d24766849414e351e0ede7e4555e9358b136fd2d Mon Sep 17 00:00:00 2001 From: Andres Salomon Date: Sun, 3 Oct 2021 23:33:14 +0200 Subject: Import pyaxmlparser_0.3.26-1.debian.tar.xz [dgit import tarball pyaxmlparser 0.3.26-1 pyaxmlparser_0.3.26-1.debian.tar.xz] --- apkinfo.install | 2 ++ changelog | 47 +++++++++++++++++++++++++++++++++++++++++++ compat | 1 + control | 33 ++++++++++++++++++++++++++++++ copyright | 23 +++++++++++++++++++++ python3-pyaxmlparser.examples | 1 + python3-pyaxmlparser.install | 1 + rules | 10 +++++++++ source/format | 1 + watch | 3 +++ 10 files changed, 122 insertions(+) create mode 100644 apkinfo.install create mode 100644 changelog create mode 100644 compat create mode 100644 control create mode 100644 copyright create mode 100644 python3-pyaxmlparser.examples create mode 100644 python3-pyaxmlparser.install create mode 100755 rules create mode 100644 source/format create mode 100644 watch diff --git a/apkinfo.install b/apkinfo.install new file mode 100644 index 0000000..2370b4b --- /dev/null +++ b/apkinfo.install @@ -0,0 +1,2 @@ +usr/bin +usr/man usr/share diff --git a/changelog b/changelog new file mode 100644 index 0000000..53ae560 --- /dev/null +++ b/changelog @@ -0,0 +1,47 @@ +pyaxmlparser (0.3.26-1) unstable; urgency=low + + * New upstream release. + * Minor update for debian/copyright. + * Add new dependency on asn1crypto. + + -- Andres Salomon Sun, 03 Oct 2021 21:33:14 +0000 + +pyaxmlparser (0.3.24-1) unstable; urgency=low + + * New upstream release. + * Bump debhelper compat and versioned dep. + * Remove the debian-specific apkinfo manpage; upstream now supplies it. + * Switch to dpkg-source 3.0 (quilt) format. + * Install examples/* in the python3-pyaxmlparser package. + * Fix a few pedantic lintian warnings. + + -- Andres Salomon Wed, 13 Nov 2019 05:06:19 +0000 + +pyaxmlparser (0.3.21-1) unstable; urgency=low + + * New upstream release. + * Bump standards-version. + * Document upstream's license change (from MIT to Apache-2). + + -- Andres Salomon Fri, 11 Oct 2019 02:55:05 +0000 + +pyaxmlparser (0.3.13-1) unstable; urgency=low + + * New upstream release. + * Add a watch file. + * Clean up a few minor lintian things. + * Add a dependency on python3-pkg-resources. + + -- Andres Salomon Sun, 02 Dec 2018 00:26:50 +0000 + +pyaxmlparser (0.3.11-1) unstable; urgency=low + + * New upstream release. + + -- Andres Salomon Sat, 13 Oct 2018 04:47:01 +0000 + +pyaxmlparser (0.3.9-1) unstable; urgency=low + + * New upstream release. + + -- Andres Salomon Fri, 08 Jun 2018 03:40:59 +0000 diff --git a/compat b/compat new file mode 100644 index 0000000..48082f7 --- /dev/null +++ b/compat @@ -0,0 +1 @@ +12 diff --git a/control b/control new file mode 100644 index 0000000..c4f198f --- /dev/null +++ b/control @@ -0,0 +1,33 @@ +Source: pyaxmlparser +Section: python +Priority: optional +Maintainer: Andres Salomon +Build-Depends: debhelper (>= 12.0~), + dh-python, + python3, + python3-setuptools, + python3-asn1crypto, + python3-lxml +Standards-Version: 4.4.1.1 +Homepage: https://github.com/appknox/pyaxmlparser + +Package: python3-pyaxmlparser +Architecture: all +Depends: ${python3:Depends}, + ${misc:Depends} +Description: Simple Python library to parse Android XML files + A simple parsing library written in Python to handle Android + XML files. This allows parsing without pulling in larger + dependencies (unlike parsers such as Androguard). + +Package: apkinfo +Architecture: all +Depends: python3-pyaxmlparser, + python3-pkg-resources, + python3-click, + ${python3:Depends}, + ${misc:Depends} +Description: Simple CLI script to display info about an APK file + This command-line tool displays metadata information about an + Android APK file. Simple things like package, version, and + naming information. diff --git a/copyright b/copyright new file mode 100644 index 0000000..e21b3cf --- /dev/null +++ b/copyright @@ -0,0 +1,23 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: pyaxmlparser +Upstream-Contact: Subho Halder +Source: https://github.com/appknox/pyaxmlparser + +Files: * +Copyright: 2012/2013, Anthony Desnos + 2021 Appknox +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS-IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian systems, the complete text of the Apache version 2.0 + license can be found in "/usr/share/common-licenses/Apache-2.0". diff --git a/python3-pyaxmlparser.examples b/python3-pyaxmlparser.examples new file mode 100644 index 0000000..e39721e --- /dev/null +++ b/python3-pyaxmlparser.examples @@ -0,0 +1 @@ +examples/* diff --git a/python3-pyaxmlparser.install b/python3-pyaxmlparser.install new file mode 100644 index 0000000..607c065 --- /dev/null +++ b/python3-pyaxmlparser.install @@ -0,0 +1 @@ +usr/lib/python* diff --git a/rules b/rules new file mode 100755 index 0000000..65cbe4f --- /dev/null +++ b/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/default.mk + +%: + dh $@ --with python3 --buildsystem=pybuild + +override_dh_clean: + dh_clean + rm -rf pyaxmlparser.egg-info/ 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..963bd66 --- /dev/null +++ b/watch @@ -0,0 +1,3 @@ +version=4 +opts=dversionmangle=auto \ +https://github.com/appknox/pyaxmlparser/releases .*/v(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- cgit v1.2.3