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
commit78879ac74f8437d4caa9a8eeae49715f774ec059 (patch)
tree887fd4e455963b16afe7b92ff3c93ed4670d4cd9
parentf9a74f80e3f6d4bcaa88e6a9db9e790e7e608dd7 (diff)
parentd24766849414e351e0ede7e4555e9358b136fd2d (diff)
pyaxmlparser (0.3.26-1) unstable; urgency=low
* New upstream release. * Minor update for debian/copyright. * Add new dependency on asn1crypto. [dgit import unpatched pyaxmlparser 0.3.26-1]
-rw-r--r--debian/apkinfo.install2
-rw-r--r--debian/changelog47
-rw-r--r--debian/compat1
-rw-r--r--debian/control33
-rw-r--r--debian/copyright23
-rw-r--r--debian/python3-pyaxmlparser.examples1
-rw-r--r--debian/python3-pyaxmlparser.install1
-rwxr-xr-xdebian/rules10
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch3
10 files changed, 122 insertions, 0 deletions
diff --git a/debian/apkinfo.install b/debian/apkinfo.install
new file mode 100644
index 0000000..2370b4b
--- /dev/null
+++ b/debian/apkinfo.install
@@ -0,0 +1,2 @@
+usr/bin
+usr/man usr/share
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..53ae560
--- /dev/null
+++ b/debian/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/debian/compat b/debian/compat
new file mode 100644
index 0000000..48082f7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+12
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c4f198f
--- /dev/null
+++ b/debian/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/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e21b3cf
--- /dev/null
+++ b/debian/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/debian/python3-pyaxmlparser.examples b/debian/python3-pyaxmlparser.examples
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/python3-pyaxmlparser.examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/python3-pyaxmlparser.install b/debian/python3-pyaxmlparser.install
new file mode 100644
index 0000000..607c065
--- /dev/null
+++ b/debian/python3-pyaxmlparser.install
@@ -0,0 +1 @@
+usr/lib/python*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..65cbe4f
--- /dev/null
+++ b/debian/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/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..963bd66
--- /dev/null
+++ b/debian/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)))