summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@debian.org>2021-10-03 23:33:14 +0200
committerAndres Salomon <dilinger@debian.org>2021-10-03 23:33:14 +0200
commitd24766849414e351e0ede7e4555e9358b136fd2d (patch)
tree57c315ca7de75e6c8fb62e022b0d91363e285138
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]
-rw-r--r--apkinfo.install2
-rw-r--r--changelog47
-rw-r--r--compat1
-rw-r--r--control33
-rw-r--r--copyright23
-rw-r--r--python3-pyaxmlparser.examples1
-rw-r--r--python3-pyaxmlparser.install1
-rwxr-xr-xrules10
-rw-r--r--source/format1
-rw-r--r--watch3
10 files changed, 122 insertions, 0 deletions
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 <dilinger@debian.org> 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 <dilinger@debian.org> 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 <dilinger@debian.org> 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 <dilinger@debian.org> Sun, 02 Dec 2018 00:26:50 +0000
+
+pyaxmlparser (0.3.11-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Andres Salomon <dilinger@debian.org> Sat, 13 Oct 2018 04:47:01 +0000
+
+pyaxmlparser (0.3.9-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Andres Salomon <dilinger@debian.org> 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 <dilinger@debian.org>
+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 <sunny@appknox.com>
+Source: https://github.com/appknox/pyaxmlparser
+
+Files: *
+Copyright: 2012/2013, Anthony Desnos <desnos at t0t0.fr>
+ 2021 Appknox <engineering@appknox.com>
+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)))