gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [ascension] branch master updated: fixed ascension-bind con


From: gnunet
Subject: [GNUnet-SVN] [ascension] branch master updated: fixed ascension-bind configure script, added python3-ascension files
Date: Mon, 20 May 2019 10:15:50 +0200

This is an automated email from the git hooks/post-receive script.

rexxnor pushed a commit to branch master
in repository ascension.

The following commit(s) were added to refs/heads/master by this push:
     new 9413c13  fixed ascension-bind configure script, added 
python3-ascension files
9413c13 is described below

commit 9413c13b43e7b2e67b651995b33180cf033dc562
Author: rexxnor <address@hidden>
AuthorDate: Fri May 17 20:22:34 2019 +0200

    fixed ascension-bind configure script, added python3-ascension files
---
 ascension-0.5.0.tar.gz                             | Bin 0 -> 9836 bytes
 ascension-0.6.1.tar.gz                             | Bin 0 -> 10607 bytes
 .../debian/python3-ascension.postinst              |  44 +++++++++++
 .../ascension-0.6.1/debian/python3-ascension.prerm |  22 ++++++
 deb_dist/ascension_0.5.0-1.debian.tar.xz           | Bin 0 -> 1792 bytes
 deb_dist/ascension_0.5.0-1.dsc                     |  20 +++++
 .../ascension_0.5.0-1_amd64.buildinfo              |  81 ++++++---------------
 deb_dist/ascension_0.5.0-1_amd64.changes           |  34 +++++++++
 .../ascension_0.5.0-1_source.buildinfo             |  78 ++++++--------------
 deb_dist/ascension_0.5.0-1_source.changes          |  31 ++++++++
 deb_dist/ascension_0.5.0.orig.tar.gz               | Bin 0 -> 9836 bytes
 deb_dist/ascension_0.6.1-1.debian.tar.xz           | Bin 0 -> 1680 bytes
 deb_dist/ascension_0.6.1-1.dsc                     |  19 +++++
 .../ascension_0.6.1-1_amd64.buildinfo              |  71 +++++-------------
 deb_dist/ascension_0.6.1-1_amd64.changes           |  34 +++++++++
 .../ascension_0.6.1-1_source.buildinfo             |  68 +++++------------
 deb_dist/ascension_0.6.1-1_source.changes          |  31 ++++++++
 deb_dist/ascension_0.6.1.orig.tar.gz               | Bin 0 -> 10607 bytes
 .../debian/ascension-bind.config                   |  27 ++-----
 .../debian/ascension-bind.templates                |   8 --
 .../debian/ascension-bind/DEBIAN/config            |  27 ++-----
 .../debian/ascension-bind/DEBIAN/templates         |   8 --
 debian/ascension-bind_0.0.1-1.debian.tar.xz        | Bin 4576 -> 4300 bytes
 debian/ascension-bind_0.0.1-1.dsc                  |   6 +-
 debian/ascension-bind_0.0.1-1_amd64.buildinfo      |  14 ++--
 debian/ascension-bind_0.0.1-1_amd64.changes        |  24 +++---
 debian/ascension-bind_0.0.1-1_amd64.deb            | Bin 4092 -> 3874 bytes
 27 files changed, 351 insertions(+), 296 deletions(-)

diff --git a/ascension-0.5.0.tar.gz b/ascension-0.5.0.tar.gz
new file mode 100644
index 0000000..b0468bc
Binary files /dev/null and b/ascension-0.5.0.tar.gz differ
diff --git a/ascension-0.6.1.tar.gz b/ascension-0.6.1.tar.gz
new file mode 100644
index 0000000..ca36286
Binary files /dev/null and b/ascension-0.6.1.tar.gz differ
diff --git a/deb_dist/ascension-0.6.1/debian/python3-ascension.postinst 
b/deb_dist/ascension-0.6.1/debian/python3-ascension.postinst
new file mode 100644
index 0000000..539925a
--- /dev/null
+++ b/deb_dist/ascension-0.6.1/debian/python3-ascension.postinst
@@ -0,0 +1,44 @@
+#!/bin/sh
+# postinst script for ascension-bind
+#
+# see: dh_installdeb(1)
+# load debconf library
+set -e
+
+if ! id ascension; then
+    adduser --system ascension
+fi
+# ok if this fails as gnunet is not yet a dependency
+if ! id gnunet; then
+    addgroup --system gnunet
+    adduser ascension gnunet
+fi
+
+mkdir -p /etc/ascension.d/
+
+# add systemd unit file
+    cat > "/etc/ascension.d/gnunet-ascension.service" << EOF
+[Unit]
+Description=Starting GNUnet peer for ascension
+After=network.target
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+User=ascension
+ExecStart=/usr/bin/gnunet-arm -s
+ExecStop=/usr/bin/gnunet-arm -e
+ExecReload=/usr/bin/gnunet-arm -r
+
+[Install]
+WantedBy=multi-user.target
+EOF
+
+# link the systemd unit file
+ln -sf "/etc/ascension.d/gnunet-ascension.service" 
"/lib/systemd/system/gnunet-ascension.service"
+
+# start and enable service
+deb-systemd-invoke start gnunet-ascension
+deb-systemd-invoke enable gnunet-ascension
+
+#DEBHELPER#
diff --git a/deb_dist/ascension-0.6.1/debian/python3-ascension.prerm 
b/deb_dist/ascension-0.6.1/debian/python3-ascension.prerm
new file mode 100644
index 0000000..c35f93a
--- /dev/null
+++ b/deb_dist/ascension-0.6.1/debian/python3-ascension.prerm
@@ -0,0 +1,22 @@
+#!/bin/sh
+# prerm script for ascension-bind
+#
+# see: dh_installdeb(1)
+# load debconf library
+set -e
+
+mkdir -p /etc/ascension.d/
+
+# remove systemd stuff
+deb-systemd-invoke disable gnunet-ascension
+deb-systemd-invoke stop gnunet-ascension
+
+# remove the systemd files
+unlink /lib/systemd/system/gnunet-ascension.service
+rm /etc/ascension.d/gnunet-ascension.service
+
+# link the systemd unit file
+deb-systemd-invoke daemon-reload
+
+exit 0
+#DEBHELPER#
diff --git a/deb_dist/ascension_0.5.0-1.debian.tar.xz 
b/deb_dist/ascension_0.5.0-1.debian.tar.xz
new file mode 100644
index 0000000..9e7c128
Binary files /dev/null and b/deb_dist/ascension_0.5.0-1.debian.tar.xz differ
diff --git a/deb_dist/ascension_0.5.0-1.dsc b/deb_dist/ascension_0.5.0-1.dsc
new file mode 100644
index 0000000..b31ace5
--- /dev/null
+++ b/deb_dist/ascension_0.5.0-1.dsc
@@ -0,0 +1,20 @@
+Format: 3.0 (quilt)
+Source: ascension
+Binary: python3-ascension
+Architecture: all
+Version: 0.5.0-1
+Maintainer: rexxnor <address@hidden>
+Homepage: https://gnunet.org/git/ascension.git/
+Standards-Version: 3.9.6
+Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9)
+Package-List:
+ python3-ascension deb python optional arch=all
+Checksums-Sha1:
+ d3e63b150d5f4edd8c893072874aab93cb4b36ac 9836 ascension_0.5.0.orig.tar.gz
+ 68622af6c1d2ed314ff13a977ec8b71afe3f24de 1792 ascension_0.5.0-1.debian.tar.xz
+Checksums-Sha256:
+ 3959924e9ac60366fa682724c358eb96dbbff02071ef8db5ba0f2e9999e3baf2 9836 
ascension_0.5.0.orig.tar.gz
+ 1352fb94269a102747e6bbd583ea1bb96795eecf9fac90855aba571dab2aeef4 1792 
ascension_0.5.0-1.debian.tar.xz
+Files:
+ ad84dbb8c5b8236650fd9d71b759040d 9836 ascension_0.5.0.orig.tar.gz
+ 417a57f8ca7fedc227176f97c4ce3aa7 1792 ascension_0.5.0-1.debian.tar.xz
diff --git a/debian/ascension-bind_0.0.1-1_amd64.buildinfo 
b/deb_dist/ascension_0.5.0-1_amd64.buildinfo
similarity index 67%
copy from debian/ascension-bind_0.0.1-1_amd64.buildinfo
copy to deb_dist/ascension_0.5.0-1_amd64.buildinfo
index bb81169..160dda8 100644
--- a/debian/ascension-bind_0.0.1-1_amd64.buildinfo
+++ b/deb_dist/ascension_0.5.0-1_amd64.buildinfo
@@ -1,31 +1,28 @@
 Format: 1.0
-Source: ascension-bind
-Binary: ascension-bind
-Architecture: amd64 source
-Version: 0.0.1-1
+Source: ascension
+Binary: python3-ascension
+Architecture: all source
+Version: 0.5.0-1
 Checksums-Md5:
- dacbfb5bc9f40ec6e42e46963b2b3aea 911 ascension-bind_0.0.1-1.dsc
- 2c43a66f53f6b4d07c9c58dd52a6bfea 4092 ascension-bind_0.0.1-1_amd64.deb
+ a8f97e653d40766d1b22246c4ec7e073 891 ascension_0.5.0-1.dsc
+ f44a7e514a50dbb02f906e694742ad61 11380 python3-ascension_0.5.0-1_all.deb
 Checksums-Sha1:
- ffc1af95ef245f7145a6acf8275035960bb2adc4 911 ascension-bind_0.0.1-1.dsc
- 103ed8a46edd191ce37b09b75b5404976f530f1d 4092 ascension-bind_0.0.1-1_amd64.deb
+ a6926bc20fb5ca5730b82289b647cccf5431ee10 891 ascension_0.5.0-1.dsc
+ 492fae12699a67c85eb88da1453c742b736d46e1 11380 
python3-ascension_0.5.0-1_all.deb
 Checksums-Sha256:
- 12b1219d515e1b8e8405d256edfeb5d433de4e09ca2d590796b7d7db93124cc8 911 
ascension-bind_0.0.1-1.dsc
- 4b057cd0cc9a95a2839dc6ee02615dc941f28cb5086751496f1284c6c7c963a2 4092 
ascension-bind_0.0.1-1_amd64.deb
+ 9be4f56fde58d55b59bfb2ad2457c60d3de5f40e825e16aa352b6d557be995e8 891 
ascension_0.5.0-1.dsc
+ a46d843ac18f551d20985c43e6cc764e73ec5a2a136927d63e1cab9ba01005c3 11380 
python3-ascension_0.5.0-1_all.deb
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Fri, 17 May 2019 11:46:51 +0000
+Build-Date: Tue, 30 Apr 2019 19:01:11 +0000
 Installed-Build-Depends:
- adduser (= 3.115),
  autoconf (= 2.69-10),
  automake (= 1:1.15-6),
  autopoint (= 0.19.8.1-2),
  autotools-dev (= 20161112.1),
- base-files (= 9.9+deb9u4),
+ base-files (= 9.9+deb9u7),
  base-passwd (= 3.5.43),
  bash (= 4.4-5),
- bind9 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- bind9utils (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  binutils (= 2.28-5),
  bsdmainutils (= 9.0.12+nmu1),
  bsdutils (= 1:2.29.2-1+deb9u1),
@@ -36,16 +33,14 @@ Installed-Build-Depends:
  cpp-6 (= 6.3.0-18+deb9u1),
  dash (= 0.5.8-2.4),
  debconf (= 1.5.61),
- debhelper (= 12.1.1~bpo9+1),
+ debhelper (= 10.2.5),
  debianutils (= 4.8.1.1),
- dh-autoreconf (= 17~bpo9+1),
+ dh-autoreconf (= 14),
  dh-python (= 2.20170125),
  dh-strip-nondeterminism (= 0.034-1),
  diffutils (= 1:3.5-3),
- dns-root-data (= 2019031302~deb9u1),
- dpkg (= 1.18.24),
+ dpkg (= 1.18.25),
  dpkg-dev (= 1.18.25),
- dwz (= 0.12-1+b1),
  e2fslibs (= 1.43.4-2),
  e2fsprogs (= 1.43.4-2),
  file (= 1:5.30-1+deb9u2),
@@ -70,7 +65,6 @@ Installed-Build-Depends:
  libattr1 (= 1:2.4.47-2+b2),
  libaudit-common (= 1:2.6.7-2),
  libaudit1 (= 1:2.6.7-2),
- libbind9-161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libblkid1 (= 2.29.2-1+deb9u1),
  libbsd0 (= 0.8.3-1),
  libbz2-1.0 (= 1.0.6-8.1),
@@ -79,45 +73,29 @@ Installed-Build-Depends:
  libc6 (= 2.24-11+deb9u4),
  libc6-dev (= 2.24-11+deb9u4),
  libcap-ng0 (= 0.7.7-3+b1),
- libcap2 (= 1:2.25-1),
  libcc1-0 (= 6.3.0-18+deb9u1),
  libcilkrts5 (= 6.3.0-18+deb9u1),
  libcomerr2 (= 1.43.4-2),
  libcroco3 (= 0.6.11-3),
  libdb5.3 (= 5.3.28-12+deb9u1),
  libdebconfclient0 (= 0.227),
- libdns1104 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libdpkg-perl (= 1.18.25),
- libelf1 (= 0.168-1),
  libexpat1 (= 2.2.0-2+deb9u1),
  libfdisk1 (= 2.29.2-1+deb9u1),
  libffi6 (= 3.2.1-6),
  libfile-stripnondeterminism-perl (= 0.034-1),
- libfstrm0 (= 0.3.0-1),
  libgcc-6-dev (= 6.3.0-18+deb9u1),
  libgcc1 (= 1:6.3.0-18+deb9u1),
  libgcrypt20 (= 1.7.6-2+deb9u3),
  libgdbm3 (= 1.8.3-14),
- libgeoip1 (= 1.6.9-4),
  libglib2.0-0 (= 2.50.3-2),
  libgmp10 (= 2:6.1.2+dfsg-1),
  libgomp1 (= 6.3.0-18+deb9u1),
- libgpg-error0 (= 1.35-1~bpo9+1),
- libgssapi-krb5-2 (= 1.15-1+deb9u1),
+ libgpg-error0 (= 1.26-2),
  libicu57 (= 57.1-6+deb9u2),
- libisc1100 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccc161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccfg163 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libisl15 (= 0.18-1),
  libitm1 (= 6.3.0-18+deb9u1),
- libjson-c3 (= 0.12.1-1.1),
- libk5crypto3 (= 1.15-1+deb9u1),
- libkeyutils1 (= 1.5.9-9),
- libkrb5-3 (= 1.15-1+deb9u1),
- libkrb5support0 (= 1.15-1+deb9u1),
- liblmdb0 (= 0.9.18-5),
  liblsan0 (= 6.3.0-18+deb9u1),
- liblwres161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  liblz4-1 (= 0.0~r131-2+b1),
  liblzma5 (= 5.2.2-1.2+b1),
  libmagic-mgc (= 1:5.30-1+deb9u2),
@@ -136,7 +114,6 @@ Installed-Build-Depends:
  libpcre3 (= 2:8.39-3),
  libperl5.24 (= 5.24.1-3+deb9u5),
  libpipeline1 (= 1.4.1-2),
- libprotobuf-c1 (= 1.2.1-2),
  libpython3-stdlib (= 3.5.3-1),
  libpython3.5-minimal (= 3.5.3-1+deb9u1),
  libpython3.5-stdlib (= 3.5.3-1+deb9u1),
@@ -148,25 +125,24 @@ Installed-Build-Depends:
  libsepol1 (= 2.6-2),
  libsigsegv2 (= 2.10-5),
  libsmartcols1 (= 2.29.2-1+deb9u1),
- libsqlite3-0 (= 3.27.2-2~bpo9+1),
+ libsqlite3-0 (= 3.16.2-5+deb9u1),
  libss2 (= 1.43.4-2),
- libssl1.1 (= 1.1.0f-3+deb9u1),
+ libssl1.1 (= 1.1.0j-1~deb9u1),
  libstdc++-6-dev (= 6.3.0-18+deb9u1),
  libstdc++6 (= 6.3.0-18+deb9u1),
- libsystemd0 (= 237-3~bpo9+1),
+ libsystemd0 (= 232-25+deb9u8),
  libtimedate-perl (= 2.3000-2),
  libtinfo5 (= 6.0+20161126-1+deb9u2),
  libtool (= 2.4.6-2),
  libtsan0 (= 6.3.0-18+deb9u1),
  libubsan0 (= 6.3.0-18+deb9u1),
- libudev1 (= 237-3~bpo9+1),
+ libudev1 (= 232-25+deb9u8),
  libunistring0 (= 0.9.6+really0.9.3-0.1),
  libustr-1.0-1 (= 1.0.4-6),
  libuuid1 (= 2.29.2-1+deb9u1),
  libxml2 (= 2.9.4+dfsg1-2.2+deb9u2),
- linux-libc-dev (= 4.19.28-2~bpo9+1),
+ linux-libc-dev (= 4.9.168-1),
  login (= 1:4.4-4.1),
- lsb-base (= 9.20161125),
  m4 (= 1.4.18-1),
  make (= 4.1-9.1),
  man-db (= 2.7.6.1-2),
@@ -176,26 +152,17 @@ Installed-Build-Depends:
  multiarch-support (= 2.24-11+deb9u3),
  ncurses-base (= 6.0+20161126-1+deb9u2),
  ncurses-bin (= 6.0+20161126-1+deb9u2),
- net-tools (= 1.60+git20161116.90da8a0-1),
- netbase (= 5.4),
  passwd (= 1:4.4-4.1),
- patch (= 2.7.5-1+b2),
+ patch (= 2.7.5-1+deb9u1),
  perl (= 5.24.1-3+deb9u5),
  perl-base (= 5.24.1-3+deb9u5),
  perl-modules-5.24 (= 5.24.1-3+deb9u5),
  po-debconf (= 1.0.20),
  python3 (= 3.5.3-1),
- python3-ascension (= 0.6.1-1),
- python3-coverage (= 4.2+dfsg.1-2),
- python3-dnspython (= 1.15.0-1+deb9u1),
- python3-docopt (= 0.6.2-1),
+ python3-all (= 3.5.3-1),
  python3-minimal (= 3.5.3-1),
- python3-mock (= 2.0.0-3),
- python3-pbr (= 4.2.0-4~bpo9+2),
  python3-pkg-resources (= 33.1.1-1),
- python3-ply (= 3.9-1),
  python3-setuptools (= 33.1.1-1),
- python3-six (= 1.10.0-3),
  python3.5 (= 3.5.3-1+deb9u1),
  python3.5-minimal (= 3.5.3-1+deb9u1),
  readline-common (= 7.0-3),
@@ -208,4 +175,4 @@ Installed-Build-Depends:
  zlib1g (= 1:1.2.8.dfsg-5)
 Environment:
  DEB_BUILD_OPTIONS="parallel=2"
- SOURCE_DATE_EPOCH="1553074112"
+ SOURCE_DATE_EPOCH="1556650863"
diff --git a/deb_dist/ascension_0.5.0-1_amd64.changes 
b/deb_dist/ascension_0.5.0-1_amd64.changes
new file mode 100644
index 0000000..cc39e8e
--- /dev/null
+++ b/deb_dist/ascension_0.5.0-1_amd64.changes
@@ -0,0 +1,34 @@
+Format: 1.8
+Date: Tue, 30 Apr 2019 19:01:03 +0000
+Source: ascension
+Binary: python3-ascension
+Architecture: source all
+Version: 0.5.0-1
+Distribution: unstable
+Urgency: low
+Maintainer: rexxnor <address@hidden>
+Changed-By: rexxnor <address@hidden>
+Description:
+ python3-ascension - Tool to migrate DNS Zones to the GNU Name System
+Changes:
+ ascension (0.5.0-1) unstable; urgency=low
+ .
+   * source package automatically created by stdeb 0.8.5
+Checksums-Sha1:
+ a6926bc20fb5ca5730b82289b647cccf5431ee10 891 ascension_0.5.0-1.dsc
+ d3e63b150d5f4edd8c893072874aab93cb4b36ac 9836 ascension_0.5.0.orig.tar.gz
+ 68622af6c1d2ed314ff13a977ec8b71afe3f24de 1792 ascension_0.5.0-1.debian.tar.xz
+ 01997d59e20d262b41e72b96ecd975fba19adea6 5361 
ascension_0.5.0-1_amd64.buildinfo
+ 492fae12699a67c85eb88da1453c742b736d46e1 11380 
python3-ascension_0.5.0-1_all.deb
+Checksums-Sha256:
+ 9be4f56fde58d55b59bfb2ad2457c60d3de5f40e825e16aa352b6d557be995e8 891 
ascension_0.5.0-1.dsc
+ 3959924e9ac60366fa682724c358eb96dbbff02071ef8db5ba0f2e9999e3baf2 9836 
ascension_0.5.0.orig.tar.gz
+ 1352fb94269a102747e6bbd583ea1bb96795eecf9fac90855aba571dab2aeef4 1792 
ascension_0.5.0-1.debian.tar.xz
+ 53813623af8d3aca6e106861f7c45f1287acecf3c0769603365e4fe6c81434aa 5361 
ascension_0.5.0-1_amd64.buildinfo
+ a46d843ac18f551d20985c43e6cc764e73ec5a2a136927d63e1cab9ba01005c3 11380 
python3-ascension_0.5.0-1_all.deb
+Files:
+ a8f97e653d40766d1b22246c4ec7e073 891 python optional ascension_0.5.0-1.dsc
+ ad84dbb8c5b8236650fd9d71b759040d 9836 python optional 
ascension_0.5.0.orig.tar.gz
+ 417a57f8ca7fedc227176f97c4ce3aa7 1792 python optional 
ascension_0.5.0-1.debian.tar.xz
+ ac4e430e6495294e1eb002a87a7dd46f 5361 python optional 
ascension_0.5.0-1_amd64.buildinfo
+ f44a7e514a50dbb02f906e694742ad61 11380 python optional 
python3-ascension_0.5.0-1_all.deb
diff --git a/debian/ascension-bind_0.0.1-1_amd64.buildinfo 
b/deb_dist/ascension_0.5.0-1_source.buildinfo
similarity index 67%
copy from debian/ascension-bind_0.0.1-1_amd64.buildinfo
copy to deb_dist/ascension_0.5.0-1_source.buildinfo
index bb81169..b527a1b 100644
--- a/debian/ascension-bind_0.0.1-1_amd64.buildinfo
+++ b/deb_dist/ascension_0.5.0-1_source.buildinfo
@@ -1,31 +1,25 @@
 Format: 1.0
-Source: ascension-bind
-Binary: ascension-bind
-Architecture: amd64 source
-Version: 0.0.1-1
+Source: ascension
+Binary: python3-ascension
+Architecture: source
+Version: 0.5.0-1
 Checksums-Md5:
- dacbfb5bc9f40ec6e42e46963b2b3aea 911 ascension-bind_0.0.1-1.dsc
- 2c43a66f53f6b4d07c9c58dd52a6bfea 4092 ascension-bind_0.0.1-1_amd64.deb
+ 20ca94d169bcfc0a2ca552b7b9b94420 891 ascension_0.5.0-1.dsc
 Checksums-Sha1:
- ffc1af95ef245f7145a6acf8275035960bb2adc4 911 ascension-bind_0.0.1-1.dsc
- 103ed8a46edd191ce37b09b75b5404976f530f1d 4092 ascension-bind_0.0.1-1_amd64.deb
+ 898a5ff25d6a8f3f0585cc8fdefaba4c93ea15b2 891 ascension_0.5.0-1.dsc
 Checksums-Sha256:
- 12b1219d515e1b8e8405d256edfeb5d433de4e09ca2d590796b7d7db93124cc8 911 
ascension-bind_0.0.1-1.dsc
- 4b057cd0cc9a95a2839dc6ee02615dc941f28cb5086751496f1284c6c7c963a2 4092 
ascension-bind_0.0.1-1_amd64.deb
+ df34c5cc1e5c57a17b269821181ddcd9ed04a9352e0da2aac46540ebd63bc610 891 
ascension_0.5.0-1.dsc
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Fri, 17 May 2019 11:46:51 +0000
+Build-Date: Tue, 30 Apr 2019 19:01:05 +0000
 Installed-Build-Depends:
- adduser (= 3.115),
  autoconf (= 2.69-10),
  automake (= 1:1.15-6),
  autopoint (= 0.19.8.1-2),
  autotools-dev (= 20161112.1),
- base-files (= 9.9+deb9u4),
+ base-files (= 9.9+deb9u7),
  base-passwd (= 3.5.43),
  bash (= 4.4-5),
- bind9 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- bind9utils (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  binutils (= 2.28-5),
  bsdmainutils (= 9.0.12+nmu1),
  bsdutils (= 1:2.29.2-1+deb9u1),
@@ -36,16 +30,14 @@ Installed-Build-Depends:
  cpp-6 (= 6.3.0-18+deb9u1),
  dash (= 0.5.8-2.4),
  debconf (= 1.5.61),
- debhelper (= 12.1.1~bpo9+1),
+ debhelper (= 10.2.5),
  debianutils (= 4.8.1.1),
- dh-autoreconf (= 17~bpo9+1),
+ dh-autoreconf (= 14),
  dh-python (= 2.20170125),
  dh-strip-nondeterminism (= 0.034-1),
  diffutils (= 1:3.5-3),
- dns-root-data (= 2019031302~deb9u1),
- dpkg (= 1.18.24),
+ dpkg (= 1.18.25),
  dpkg-dev (= 1.18.25),
- dwz (= 0.12-1+b1),
  e2fslibs (= 1.43.4-2),
  e2fsprogs (= 1.43.4-2),
  file (= 1:5.30-1+deb9u2),
@@ -70,7 +62,6 @@ Installed-Build-Depends:
  libattr1 (= 1:2.4.47-2+b2),
  libaudit-common (= 1:2.6.7-2),
  libaudit1 (= 1:2.6.7-2),
- libbind9-161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libblkid1 (= 2.29.2-1+deb9u1),
  libbsd0 (= 0.8.3-1),
  libbz2-1.0 (= 1.0.6-8.1),
@@ -79,45 +70,29 @@ Installed-Build-Depends:
  libc6 (= 2.24-11+deb9u4),
  libc6-dev (= 2.24-11+deb9u4),
  libcap-ng0 (= 0.7.7-3+b1),
- libcap2 (= 1:2.25-1),
  libcc1-0 (= 6.3.0-18+deb9u1),
  libcilkrts5 (= 6.3.0-18+deb9u1),
  libcomerr2 (= 1.43.4-2),
  libcroco3 (= 0.6.11-3),
  libdb5.3 (= 5.3.28-12+deb9u1),
  libdebconfclient0 (= 0.227),
- libdns1104 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libdpkg-perl (= 1.18.25),
- libelf1 (= 0.168-1),
  libexpat1 (= 2.2.0-2+deb9u1),
  libfdisk1 (= 2.29.2-1+deb9u1),
  libffi6 (= 3.2.1-6),
  libfile-stripnondeterminism-perl (= 0.034-1),
- libfstrm0 (= 0.3.0-1),
  libgcc-6-dev (= 6.3.0-18+deb9u1),
  libgcc1 (= 1:6.3.0-18+deb9u1),
  libgcrypt20 (= 1.7.6-2+deb9u3),
  libgdbm3 (= 1.8.3-14),
- libgeoip1 (= 1.6.9-4),
  libglib2.0-0 (= 2.50.3-2),
  libgmp10 (= 2:6.1.2+dfsg-1),
  libgomp1 (= 6.3.0-18+deb9u1),
- libgpg-error0 (= 1.35-1~bpo9+1),
- libgssapi-krb5-2 (= 1.15-1+deb9u1),
+ libgpg-error0 (= 1.26-2),
  libicu57 (= 57.1-6+deb9u2),
- libisc1100 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccc161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccfg163 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libisl15 (= 0.18-1),
  libitm1 (= 6.3.0-18+deb9u1),
- libjson-c3 (= 0.12.1-1.1),
- libk5crypto3 (= 1.15-1+deb9u1),
- libkeyutils1 (= 1.5.9-9),
- libkrb5-3 (= 1.15-1+deb9u1),
- libkrb5support0 (= 1.15-1+deb9u1),
- liblmdb0 (= 0.9.18-5),
  liblsan0 (= 6.3.0-18+deb9u1),
- liblwres161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  liblz4-1 (= 0.0~r131-2+b1),
  liblzma5 (= 5.2.2-1.2+b1),
  libmagic-mgc (= 1:5.30-1+deb9u2),
@@ -136,7 +111,6 @@ Installed-Build-Depends:
  libpcre3 (= 2:8.39-3),
  libperl5.24 (= 5.24.1-3+deb9u5),
  libpipeline1 (= 1.4.1-2),
- libprotobuf-c1 (= 1.2.1-2),
  libpython3-stdlib (= 3.5.3-1),
  libpython3.5-minimal (= 3.5.3-1+deb9u1),
  libpython3.5-stdlib (= 3.5.3-1+deb9u1),
@@ -148,25 +122,24 @@ Installed-Build-Depends:
  libsepol1 (= 2.6-2),
  libsigsegv2 (= 2.10-5),
  libsmartcols1 (= 2.29.2-1+deb9u1),
- libsqlite3-0 (= 3.27.2-2~bpo9+1),
+ libsqlite3-0 (= 3.16.2-5+deb9u1),
  libss2 (= 1.43.4-2),
- libssl1.1 (= 1.1.0f-3+deb9u1),
+ libssl1.1 (= 1.1.0j-1~deb9u1),
  libstdc++-6-dev (= 6.3.0-18+deb9u1),
  libstdc++6 (= 6.3.0-18+deb9u1),
- libsystemd0 (= 237-3~bpo9+1),
+ libsystemd0 (= 232-25+deb9u8),
  libtimedate-perl (= 2.3000-2),
  libtinfo5 (= 6.0+20161126-1+deb9u2),
  libtool (= 2.4.6-2),
  libtsan0 (= 6.3.0-18+deb9u1),
  libubsan0 (= 6.3.0-18+deb9u1),
- libudev1 (= 237-3~bpo9+1),
+ libudev1 (= 232-25+deb9u8),
  libunistring0 (= 0.9.6+really0.9.3-0.1),
  libustr-1.0-1 (= 1.0.4-6),
  libuuid1 (= 2.29.2-1+deb9u1),
  libxml2 (= 2.9.4+dfsg1-2.2+deb9u2),
- linux-libc-dev (= 4.19.28-2~bpo9+1),
+ linux-libc-dev (= 4.9.168-1),
  login (= 1:4.4-4.1),
- lsb-base (= 9.20161125),
  m4 (= 1.4.18-1),
  make (= 4.1-9.1),
  man-db (= 2.7.6.1-2),
@@ -176,26 +149,17 @@ Installed-Build-Depends:
  multiarch-support (= 2.24-11+deb9u3),
  ncurses-base (= 6.0+20161126-1+deb9u2),
  ncurses-bin (= 6.0+20161126-1+deb9u2),
- net-tools (= 1.60+git20161116.90da8a0-1),
- netbase (= 5.4),
  passwd (= 1:4.4-4.1),
- patch (= 2.7.5-1+b2),
+ patch (= 2.7.5-1+deb9u1),
  perl (= 5.24.1-3+deb9u5),
  perl-base (= 5.24.1-3+deb9u5),
  perl-modules-5.24 (= 5.24.1-3+deb9u5),
  po-debconf (= 1.0.20),
  python3 (= 3.5.3-1),
- python3-ascension (= 0.6.1-1),
- python3-coverage (= 4.2+dfsg.1-2),
- python3-dnspython (= 1.15.0-1+deb9u1),
- python3-docopt (= 0.6.2-1),
+ python3-all (= 3.5.3-1),
  python3-minimal (= 3.5.3-1),
- python3-mock (= 2.0.0-3),
- python3-pbr (= 4.2.0-4~bpo9+2),
  python3-pkg-resources (= 33.1.1-1),
- python3-ply (= 3.9-1),
  python3-setuptools (= 33.1.1-1),
- python3-six (= 1.10.0-3),
  python3.5 (= 3.5.3-1+deb9u1),
  python3.5-minimal (= 3.5.3-1+deb9u1),
  readline-common (= 7.0-3),
@@ -208,4 +172,4 @@ Installed-Build-Depends:
  zlib1g (= 1:1.2.8.dfsg-5)
 Environment:
  DEB_BUILD_OPTIONS="parallel=2"
- SOURCE_DATE_EPOCH="1553074112"
+ SOURCE_DATE_EPOCH="1556650863"
diff --git a/deb_dist/ascension_0.5.0-1_source.changes 
b/deb_dist/ascension_0.5.0-1_source.changes
new file mode 100644
index 0000000..e7ca2d2
--- /dev/null
+++ b/deb_dist/ascension_0.5.0-1_source.changes
@@ -0,0 +1,31 @@
+Format: 1.8
+Date: Tue, 30 Apr 2019 19:01:03 +0000
+Source: ascension
+Binary: python3-ascension
+Architecture: source
+Version: 0.5.0-1
+Distribution: unstable
+Urgency: low
+Maintainer: rexxnor <address@hidden>
+Changed-By: rexxnor <address@hidden>
+Description:
+ python3-ascension - Tool to migrate DNS Zones to the GNU Name System
+Changes:
+ ascension (0.5.0-1) unstable; urgency=low
+ .
+   * source package automatically created by stdeb 0.8.5
+Checksums-Sha1:
+ 898a5ff25d6a8f3f0585cc8fdefaba4c93ea15b2 891 ascension_0.5.0-1.dsc
+ d3e63b150d5f4edd8c893072874aab93cb4b36ac 9836 ascension_0.5.0.orig.tar.gz
+ c3c923ea2d922266f8239341c6d289ddc556de4b 1120 ascension_0.5.0-1.debian.tar.xz
+ 13e47273418e0748dcb1f33e2b6f759fa711aa07 5095 
ascension_0.5.0-1_source.buildinfo
+Checksums-Sha256:
+ df34c5cc1e5c57a17b269821181ddcd9ed04a9352e0da2aac46540ebd63bc610 891 
ascension_0.5.0-1.dsc
+ 3959924e9ac60366fa682724c358eb96dbbff02071ef8db5ba0f2e9999e3baf2 9836 
ascension_0.5.0.orig.tar.gz
+ 42f343feb2b822d0e51a358a538cc26c0cc184a8c1362cf720e88d29e491ec49 1120 
ascension_0.5.0-1.debian.tar.xz
+ bec8cbc0846690e79d60287124aa9fb0546d8855447273e773a1aab504dd3640 5095 
ascension_0.5.0-1_source.buildinfo
+Files:
+ 20ca94d169bcfc0a2ca552b7b9b94420 891 python optional ascension_0.5.0-1.dsc
+ ad84dbb8c5b8236650fd9d71b759040d 9836 python optional 
ascension_0.5.0.orig.tar.gz
+ 9f7dc3da880c044d268138d2fd3ca0cb 1120 python optional 
ascension_0.5.0-1.debian.tar.xz
+ 66982141b50d8cdbe68df3bf23809a45 5095 python optional 
ascension_0.5.0-1_source.buildinfo
diff --git a/deb_dist/ascension_0.5.0.orig.tar.gz 
b/deb_dist/ascension_0.5.0.orig.tar.gz
new file mode 100644
index 0000000..b0468bc
Binary files /dev/null and b/deb_dist/ascension_0.5.0.orig.tar.gz differ
diff --git a/deb_dist/ascension_0.6.1-1.debian.tar.xz 
b/deb_dist/ascension_0.6.1-1.debian.tar.xz
new file mode 100644
index 0000000..1000cc0
Binary files /dev/null and b/deb_dist/ascension_0.6.1-1.debian.tar.xz differ
diff --git a/deb_dist/ascension_0.6.1-1.dsc b/deb_dist/ascension_0.6.1-1.dsc
new file mode 100644
index 0000000..f67221b
--- /dev/null
+++ b/deb_dist/ascension_0.6.1-1.dsc
@@ -0,0 +1,19 @@
+Format: 3.0 (quilt)
+Source: ascension
+Binary: python3-ascension
+Architecture: all
+Version: 0.6.1-1
+Maintainer: rexxnor <address@hidden>
+Standards-Version: 3.9.1
+Build-Depends: python3-setuptools, python3-all, debhelper (>= 7.4.3)
+Package-List:
+ python3-ascension deb python optional arch=all
+Checksums-Sha1:
+ 9c4aa5763558c240e546fd43bf37d03edcf2c688 10607 ascension_0.6.1.orig.tar.gz
+ 55264847dc98cafffb874c8e4360d03b49e2c544 1680 ascension_0.6.1-1.debian.tar.xz
+Checksums-Sha256:
+ dca059c4204d39680858d49e5b03c983e9c7ea2e91cc4bae75536f326ab7ad80 10607 
ascension_0.6.1.orig.tar.gz
+ cea375fe2da35bee78fadb0813bd20509f0435829b8de7b008e542a7a4e811da 1680 
ascension_0.6.1-1.debian.tar.xz
+Files:
+ 22a8b40155cc1ad841fdf457b7414dff 10607 ascension_0.6.1.orig.tar.gz
+ f8b610441dfa17ac5dc95857dda0e00c 1680 ascension_0.6.1-1.debian.tar.xz
diff --git a/debian/ascension-bind_0.0.1-1_amd64.buildinfo 
b/deb_dist/ascension_0.6.1-1_amd64.buildinfo
similarity index 70%
copy from debian/ascension-bind_0.0.1-1_amd64.buildinfo
copy to deb_dist/ascension_0.6.1-1_amd64.buildinfo
index bb81169..45b9fa0 100644
--- a/debian/ascension-bind_0.0.1-1_amd64.buildinfo
+++ b/deb_dist/ascension_0.6.1-1_amd64.buildinfo
@@ -1,22 +1,21 @@
 Format: 1.0
-Source: ascension-bind
-Binary: ascension-bind
-Architecture: amd64 source
-Version: 0.0.1-1
+Source: ascension
+Binary: python3-ascension
+Architecture: all source
+Version: 0.6.1-1
 Checksums-Md5:
- dacbfb5bc9f40ec6e42e46963b2b3aea 911 ascension-bind_0.0.1-1.dsc
- 2c43a66f53f6b4d07c9c58dd52a6bfea 4092 ascension-bind_0.0.1-1_amd64.deb
+ b7a42317e70fdd6ec4891254a636572c 839 ascension_0.6.1-1.dsc
+ 288e6cc3239e7e262cd65429ee8b90b9 11738 python3-ascension_0.6.1-1_all.deb
 Checksums-Sha1:
- ffc1af95ef245f7145a6acf8275035960bb2adc4 911 ascension-bind_0.0.1-1.dsc
- 103ed8a46edd191ce37b09b75b5404976f530f1d 4092 ascension-bind_0.0.1-1_amd64.deb
+ ced0995dbbdbe56f563015dc90a1c9e507709917 839 ascension_0.6.1-1.dsc
+ 246b4162b631e87fb989da9397175c0252385c19 11738 
python3-ascension_0.6.1-1_all.deb
 Checksums-Sha256:
- 12b1219d515e1b8e8405d256edfeb5d433de4e09ca2d590796b7d7db93124cc8 911 
ascension-bind_0.0.1-1.dsc
- 4b057cd0cc9a95a2839dc6ee02615dc941f28cb5086751496f1284c6c7c963a2 4092 
ascension-bind_0.0.1-1_amd64.deb
+ 933ea3b79e6e9652760641292fe3dd94ef99746e90e505bff805d812b68ae492 839 
ascension_0.6.1-1.dsc
+ 1639913584ef450c52e36fff8117d92179b5c80e0580770af85235a2556d0db0 11738 
python3-ascension_0.6.1-1_all.deb
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Fri, 17 May 2019 11:46:51 +0000
+Build-Date: Tue, 14 May 2019 18:25:34 +0000
 Installed-Build-Depends:
- adduser (= 3.115),
  autoconf (= 2.69-10),
  automake (= 1:1.15-6),
  autopoint (= 0.19.8.1-2),
@@ -24,8 +23,6 @@ Installed-Build-Depends:
  base-files (= 9.9+deb9u4),
  base-passwd (= 3.5.43),
  bash (= 4.4-5),
- bind9 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- bind9utils (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  binutils (= 2.28-5),
  bsdmainutils (= 9.0.12+nmu1),
  bsdutils (= 1:2.29.2-1+deb9u1),
@@ -42,13 +39,12 @@ Installed-Build-Depends:
  dh-python (= 2.20170125),
  dh-strip-nondeterminism (= 0.034-1),
  diffutils (= 1:3.5-3),
- dns-root-data (= 2019031302~deb9u1),
  dpkg (= 1.18.24),
  dpkg-dev (= 1.18.25),
  dwz (= 0.12-1+b1),
  e2fslibs (= 1.43.4-2),
  e2fsprogs (= 1.43.4-2),
- file (= 1:5.30-1+deb9u2),
+ file (= 1:5.30-1+deb9u1),
  findutils (= 4.6.0+git+20161106-2),
  g++ (= 4:6.3.0-4),
  g++-6 (= 6.3.0-18+deb9u1),
@@ -70,7 +66,6 @@ Installed-Build-Depends:
  libattr1 (= 1:2.4.47-2+b2),
  libaudit-common (= 1:2.6.7-2),
  libaudit1 (= 1:2.6.7-2),
- libbind9-161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libblkid1 (= 2.29.2-1+deb9u1),
  libbsd0 (= 0.8.3-1),
  libbz2-1.0 (= 1.0.6-8.1),
@@ -79,49 +74,34 @@ Installed-Build-Depends:
  libc6 (= 2.24-11+deb9u4),
  libc6-dev (= 2.24-11+deb9u4),
  libcap-ng0 (= 0.7.7-3+b1),
- libcap2 (= 1:2.25-1),
  libcc1-0 (= 6.3.0-18+deb9u1),
  libcilkrts5 (= 6.3.0-18+deb9u1),
  libcomerr2 (= 1.43.4-2),
  libcroco3 (= 0.6.11-3),
  libdb5.3 (= 5.3.28-12+deb9u1),
  libdebconfclient0 (= 0.227),
- libdns1104 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libdpkg-perl (= 1.18.25),
  libelf1 (= 0.168-1),
  libexpat1 (= 2.2.0-2+deb9u1),
  libfdisk1 (= 2.29.2-1+deb9u1),
  libffi6 (= 3.2.1-6),
  libfile-stripnondeterminism-perl (= 0.034-1),
- libfstrm0 (= 0.3.0-1),
  libgcc-6-dev (= 6.3.0-18+deb9u1),
  libgcc1 (= 1:6.3.0-18+deb9u1),
  libgcrypt20 (= 1.7.6-2+deb9u3),
  libgdbm3 (= 1.8.3-14),
- libgeoip1 (= 1.6.9-4),
  libglib2.0-0 (= 2.50.3-2),
  libgmp10 (= 2:6.1.2+dfsg-1),
  libgomp1 (= 6.3.0-18+deb9u1),
  libgpg-error0 (= 1.35-1~bpo9+1),
- libgssapi-krb5-2 (= 1.15-1+deb9u1),
  libicu57 (= 57.1-6+deb9u2),
- libisc1100 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccc161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccfg163 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libisl15 (= 0.18-1),
  libitm1 (= 6.3.0-18+deb9u1),
- libjson-c3 (= 0.12.1-1.1),
- libk5crypto3 (= 1.15-1+deb9u1),
- libkeyutils1 (= 1.5.9-9),
- libkrb5-3 (= 1.15-1+deb9u1),
- libkrb5support0 (= 1.15-1+deb9u1),
- liblmdb0 (= 0.9.18-5),
  liblsan0 (= 6.3.0-18+deb9u1),
- liblwres161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  liblz4-1 (= 0.0~r131-2+b1),
  liblzma5 (= 5.2.2-1.2+b1),
- libmagic-mgc (= 1:5.30-1+deb9u2),
- libmagic1 (= 1:5.30-1+deb9u2),
+ libmagic-mgc (= 1:5.30-1+deb9u1),
+ libmagic1 (= 1:5.30-1+deb9u1),
  libmount1 (= 2.29.2-1+deb9u1),
  libmpc3 (= 1.0.3-1+b2),
  libmpdec2 (= 2.4.2-1),
@@ -134,9 +114,8 @@ Installed-Build-Depends:
  libpam-runtime (= 1.1.8-3.6),
  libpam0g (= 1.1.8-3.6),
  libpcre3 (= 2:8.39-3),
- libperl5.24 (= 5.24.1-3+deb9u5),
+ libperl5.24 (= 5.24.1-3+deb9u2),
  libpipeline1 (= 1.4.1-2),
- libprotobuf-c1 (= 1.2.1-2),
  libpython3-stdlib (= 3.5.3-1),
  libpython3.5-minimal (= 3.5.3-1+deb9u1),
  libpython3.5-stdlib (= 3.5.3-1+deb9u1),
@@ -166,7 +145,6 @@ Installed-Build-Depends:
  libxml2 (= 2.9.4+dfsg1-2.2+deb9u2),
  linux-libc-dev (= 4.19.28-2~bpo9+1),
  login (= 1:4.4-4.1),
- lsb-base (= 9.20161125),
  m4 (= 1.4.18-1),
  make (= 4.1-9.1),
  man-db (= 2.7.6.1-2),
@@ -176,26 +154,17 @@ Installed-Build-Depends:
  multiarch-support (= 2.24-11+deb9u3),
  ncurses-base (= 6.0+20161126-1+deb9u2),
  ncurses-bin (= 6.0+20161126-1+deb9u2),
- net-tools (= 1.60+git20161116.90da8a0-1),
- netbase (= 5.4),
  passwd (= 1:4.4-4.1),
  patch (= 2.7.5-1+b2),
- perl (= 5.24.1-3+deb9u5),
- perl-base (= 5.24.1-3+deb9u5),
- perl-modules-5.24 (= 5.24.1-3+deb9u5),
+ perl (= 5.24.1-3+deb9u2),
+ perl-base (= 5.24.1-3+deb9u2),
+ perl-modules-5.24 (= 5.24.1-3+deb9u2),
  po-debconf (= 1.0.20),
  python3 (= 3.5.3-1),
- python3-ascension (= 0.6.1-1),
- python3-coverage (= 4.2+dfsg.1-2),
- python3-dnspython (= 1.15.0-1+deb9u1),
- python3-docopt (= 0.6.2-1),
+ python3-all (= 3.5.3-1),
  python3-minimal (= 3.5.3-1),
- python3-mock (= 2.0.0-3),
- python3-pbr (= 4.2.0-4~bpo9+2),
  python3-pkg-resources (= 33.1.1-1),
- python3-ply (= 3.9-1),
  python3-setuptools (= 33.1.1-1),
- python3-six (= 1.10.0-3),
  python3.5 (= 3.5.3-1+deb9u1),
  python3.5-minimal (= 3.5.3-1+deb9u1),
  readline-common (= 7.0-3),
@@ -208,4 +177,4 @@ Installed-Build-Depends:
  zlib1g (= 1:1.2.8.dfsg-5)
 Environment:
  DEB_BUILD_OPTIONS="parallel=2"
- SOURCE_DATE_EPOCH="1553074112"
+ SOURCE_DATE_EPOCH="1557858161"
diff --git a/deb_dist/ascension_0.6.1-1_amd64.changes 
b/deb_dist/ascension_0.6.1-1_amd64.changes
new file mode 100644
index 0000000..5be7074
--- /dev/null
+++ b/deb_dist/ascension_0.6.1-1_amd64.changes
@@ -0,0 +1,34 @@
+Format: 1.8
+Date: Tue, 14 May 2019 18:22:41 +0000
+Source: ascension
+Binary: python3-ascension
+Architecture: source all
+Version: 0.6.1-1
+Distribution: unstable
+Urgency: low
+Maintainer: rexxnor <address@hidden>
+Changed-By: rexxnor <address@hidden>
+Description:
+ python3-ascension - Tool to migrate DNS Zones to the GNU Name System
+Changes:
+ ascension (0.6.1-1) unstable; urgency=low
+ .
+   * source package automatically created by stdeb 0.8.5
+Checksums-Sha1:
+ ced0995dbbdbe56f563015dc90a1c9e507709917 839 ascension_0.6.1-1.dsc
+ 9c4aa5763558c240e546fd43bf37d03edcf2c688 10607 ascension_0.6.1.orig.tar.gz
+ 55264847dc98cafffb874c8e4360d03b49e2c544 1680 ascension_0.6.1-1.debian.tar.xz
+ d7f9a825547e156fb3b7b43896b9db0342b5ba1e 5425 
ascension_0.6.1-1_amd64.buildinfo
+ 246b4162b631e87fb989da9397175c0252385c19 11738 
python3-ascension_0.6.1-1_all.deb
+Checksums-Sha256:
+ 933ea3b79e6e9652760641292fe3dd94ef99746e90e505bff805d812b68ae492 839 
ascension_0.6.1-1.dsc
+ dca059c4204d39680858d49e5b03c983e9c7ea2e91cc4bae75536f326ab7ad80 10607 
ascension_0.6.1.orig.tar.gz
+ cea375fe2da35bee78fadb0813bd20509f0435829b8de7b008e542a7a4e811da 1680 
ascension_0.6.1-1.debian.tar.xz
+ 9b4abc5724059c81546de0095b7f3053731b7ab62e89fbb76c728ed1e0018276 5425 
ascension_0.6.1-1_amd64.buildinfo
+ 1639913584ef450c52e36fff8117d92179b5c80e0580770af85235a2556d0db0 11738 
python3-ascension_0.6.1-1_all.deb
+Files:
+ b7a42317e70fdd6ec4891254a636572c 839 python optional ascension_0.6.1-1.dsc
+ 22a8b40155cc1ad841fdf457b7414dff 10607 python optional 
ascension_0.6.1.orig.tar.gz
+ f8b610441dfa17ac5dc95857dda0e00c 1680 python optional 
ascension_0.6.1-1.debian.tar.xz
+ dec6ea80beb4be1017bd307cf2da350c 5425 python optional 
ascension_0.6.1-1_amd64.buildinfo
+ 288e6cc3239e7e262cd65429ee8b90b9 11738 python optional 
python3-ascension_0.6.1-1_all.deb
diff --git a/debian/ascension-bind_0.0.1-1_amd64.buildinfo 
b/deb_dist/ascension_0.6.1-1_source.buildinfo
similarity index 70%
copy from debian/ascension-bind_0.0.1-1_amd64.buildinfo
copy to deb_dist/ascension_0.6.1-1_source.buildinfo
index bb81169..00d86a2 100644
--- a/debian/ascension-bind_0.0.1-1_amd64.buildinfo
+++ b/deb_dist/ascension_0.6.1-1_source.buildinfo
@@ -1,22 +1,18 @@
 Format: 1.0
-Source: ascension-bind
-Binary: ascension-bind
-Architecture: amd64 source
-Version: 0.0.1-1
+Source: ascension
+Binary: python3-ascension
+Architecture: source
+Version: 0.6.1-1
 Checksums-Md5:
- dacbfb5bc9f40ec6e42e46963b2b3aea 911 ascension-bind_0.0.1-1.dsc
- 2c43a66f53f6b4d07c9c58dd52a6bfea 4092 ascension-bind_0.0.1-1_amd64.deb
+ 209f2e2348cc89c5c8f295bb1355a666 839 ascension_0.6.1-1.dsc
 Checksums-Sha1:
- ffc1af95ef245f7145a6acf8275035960bb2adc4 911 ascension-bind_0.0.1-1.dsc
- 103ed8a46edd191ce37b09b75b5404976f530f1d 4092 ascension-bind_0.0.1-1_amd64.deb
+ 57bd1adf44ef08866cc7af8976cf5d288bd80378 839 ascension_0.6.1-1.dsc
 Checksums-Sha256:
- 12b1219d515e1b8e8405d256edfeb5d433de4e09ca2d590796b7d7db93124cc8 911 
ascension-bind_0.0.1-1.dsc
- 4b057cd0cc9a95a2839dc6ee02615dc941f28cb5086751496f1284c6c7c963a2 4092 
ascension-bind_0.0.1-1_amd64.deb
+ 47aaa27e61039143a62039425f2bbcb6b5cba68e0dc8334ddabbcf5297da38d0 839 
ascension_0.6.1-1.dsc
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Fri, 17 May 2019 11:46:51 +0000
+Build-Date: Tue, 14 May 2019 18:22:43 +0000
 Installed-Build-Depends:
- adduser (= 3.115),
  autoconf (= 2.69-10),
  automake (= 1:1.15-6),
  autopoint (= 0.19.8.1-2),
@@ -24,8 +20,6 @@ Installed-Build-Depends:
  base-files (= 9.9+deb9u4),
  base-passwd (= 3.5.43),
  bash (= 4.4-5),
- bind9 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- bind9utils (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  binutils (= 2.28-5),
  bsdmainutils (= 9.0.12+nmu1),
  bsdutils (= 1:2.29.2-1+deb9u1),
@@ -42,13 +36,12 @@ Installed-Build-Depends:
  dh-python (= 2.20170125),
  dh-strip-nondeterminism (= 0.034-1),
  diffutils (= 1:3.5-3),
- dns-root-data (= 2019031302~deb9u1),
  dpkg (= 1.18.24),
  dpkg-dev (= 1.18.25),
  dwz (= 0.12-1+b1),
  e2fslibs (= 1.43.4-2),
  e2fsprogs (= 1.43.4-2),
- file (= 1:5.30-1+deb9u2),
+ file (= 1:5.30-1+deb9u1),
  findutils (= 4.6.0+git+20161106-2),
  g++ (= 4:6.3.0-4),
  g++-6 (= 6.3.0-18+deb9u1),
@@ -70,7 +63,6 @@ Installed-Build-Depends:
  libattr1 (= 1:2.4.47-2+b2),
  libaudit-common (= 1:2.6.7-2),
  libaudit1 (= 1:2.6.7-2),
- libbind9-161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libblkid1 (= 2.29.2-1+deb9u1),
  libbsd0 (= 0.8.3-1),
  libbz2-1.0 (= 1.0.6-8.1),
@@ -79,49 +71,34 @@ Installed-Build-Depends:
  libc6 (= 2.24-11+deb9u4),
  libc6-dev (= 2.24-11+deb9u4),
  libcap-ng0 (= 0.7.7-3+b1),
- libcap2 (= 1:2.25-1),
  libcc1-0 (= 6.3.0-18+deb9u1),
  libcilkrts5 (= 6.3.0-18+deb9u1),
  libcomerr2 (= 1.43.4-2),
  libcroco3 (= 0.6.11-3),
  libdb5.3 (= 5.3.28-12+deb9u1),
  libdebconfclient0 (= 0.227),
- libdns1104 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libdpkg-perl (= 1.18.25),
  libelf1 (= 0.168-1),
  libexpat1 (= 2.2.0-2+deb9u1),
  libfdisk1 (= 2.29.2-1+deb9u1),
  libffi6 (= 3.2.1-6),
  libfile-stripnondeterminism-perl (= 0.034-1),
- libfstrm0 (= 0.3.0-1),
  libgcc-6-dev (= 6.3.0-18+deb9u1),
  libgcc1 (= 1:6.3.0-18+deb9u1),
  libgcrypt20 (= 1.7.6-2+deb9u3),
  libgdbm3 (= 1.8.3-14),
- libgeoip1 (= 1.6.9-4),
  libglib2.0-0 (= 2.50.3-2),
  libgmp10 (= 2:6.1.2+dfsg-1),
  libgomp1 (= 6.3.0-18+deb9u1),
  libgpg-error0 (= 1.35-1~bpo9+1),
- libgssapi-krb5-2 (= 1.15-1+deb9u1),
  libicu57 (= 57.1-6+deb9u2),
- libisc1100 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccc161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
- libisccfg163 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  libisl15 (= 0.18-1),
  libitm1 (= 6.3.0-18+deb9u1),
- libjson-c3 (= 0.12.1-1.1),
- libk5crypto3 (= 1.15-1+deb9u1),
- libkeyutils1 (= 1.5.9-9),
- libkrb5-3 (= 1.15-1+deb9u1),
- libkrb5support0 (= 1.15-1+deb9u1),
- liblmdb0 (= 0.9.18-5),
  liblsan0 (= 6.3.0-18+deb9u1),
- liblwres161 (= 1:9.11.5.P4+dfsg-1~bpo9+1),
  liblz4-1 (= 0.0~r131-2+b1),
  liblzma5 (= 5.2.2-1.2+b1),
- libmagic-mgc (= 1:5.30-1+deb9u2),
- libmagic1 (= 1:5.30-1+deb9u2),
+ libmagic-mgc (= 1:5.30-1+deb9u1),
+ libmagic1 (= 1:5.30-1+deb9u1),
  libmount1 (= 2.29.2-1+deb9u1),
  libmpc3 (= 1.0.3-1+b2),
  libmpdec2 (= 2.4.2-1),
@@ -134,9 +111,8 @@ Installed-Build-Depends:
  libpam-runtime (= 1.1.8-3.6),
  libpam0g (= 1.1.8-3.6),
  libpcre3 (= 2:8.39-3),
- libperl5.24 (= 5.24.1-3+deb9u5),
+ libperl5.24 (= 5.24.1-3+deb9u2),
  libpipeline1 (= 1.4.1-2),
- libprotobuf-c1 (= 1.2.1-2),
  libpython3-stdlib (= 3.5.3-1),
  libpython3.5-minimal (= 3.5.3-1+deb9u1),
  libpython3.5-stdlib (= 3.5.3-1+deb9u1),
@@ -166,7 +142,6 @@ Installed-Build-Depends:
  libxml2 (= 2.9.4+dfsg1-2.2+deb9u2),
  linux-libc-dev (= 4.19.28-2~bpo9+1),
  login (= 1:4.4-4.1),
- lsb-base (= 9.20161125),
  m4 (= 1.4.18-1),
  make (= 4.1-9.1),
  man-db (= 2.7.6.1-2),
@@ -176,26 +151,17 @@ Installed-Build-Depends:
  multiarch-support (= 2.24-11+deb9u3),
  ncurses-base (= 6.0+20161126-1+deb9u2),
  ncurses-bin (= 6.0+20161126-1+deb9u2),
- net-tools (= 1.60+git20161116.90da8a0-1),
- netbase (= 5.4),
  passwd (= 1:4.4-4.1),
  patch (= 2.7.5-1+b2),
- perl (= 5.24.1-3+deb9u5),
- perl-base (= 5.24.1-3+deb9u5),
- perl-modules-5.24 (= 5.24.1-3+deb9u5),
+ perl (= 5.24.1-3+deb9u2),
+ perl-base (= 5.24.1-3+deb9u2),
+ perl-modules-5.24 (= 5.24.1-3+deb9u2),
  po-debconf (= 1.0.20),
  python3 (= 3.5.3-1),
- python3-ascension (= 0.6.1-1),
- python3-coverage (= 4.2+dfsg.1-2),
- python3-dnspython (= 1.15.0-1+deb9u1),
- python3-docopt (= 0.6.2-1),
+ python3-all (= 3.5.3-1),
  python3-minimal (= 3.5.3-1),
- python3-mock (= 2.0.0-3),
- python3-pbr (= 4.2.0-4~bpo9+2),
  python3-pkg-resources (= 33.1.1-1),
- python3-ply (= 3.9-1),
  python3-setuptools (= 33.1.1-1),
- python3-six (= 1.10.0-3),
  python3.5 (= 3.5.3-1+deb9u1),
  python3.5-minimal (= 3.5.3-1+deb9u1),
  readline-common (= 7.0-3),
@@ -208,4 +174,4 @@ Installed-Build-Depends:
  zlib1g (= 1:1.2.8.dfsg-5)
 Environment:
  DEB_BUILD_OPTIONS="parallel=2"
- SOURCE_DATE_EPOCH="1553074112"
+ SOURCE_DATE_EPOCH="1557858161"
diff --git a/deb_dist/ascension_0.6.1-1_source.changes 
b/deb_dist/ascension_0.6.1-1_source.changes
new file mode 100644
index 0000000..492d2b5
--- /dev/null
+++ b/deb_dist/ascension_0.6.1-1_source.changes
@@ -0,0 +1,31 @@
+Format: 1.8
+Date: Tue, 14 May 2019 18:22:41 +0000
+Source: ascension
+Binary: python3-ascension
+Architecture: source
+Version: 0.6.1-1
+Distribution: unstable
+Urgency: low
+Maintainer: rexxnor <address@hidden>
+Changed-By: rexxnor <address@hidden>
+Description:
+ python3-ascension - Tool to migrate DNS Zones to the GNU Name System
+Changes:
+ ascension (0.6.1-1) unstable; urgency=low
+ .
+   * source package automatically created by stdeb 0.8.5
+Checksums-Sha1:
+ 57bd1adf44ef08866cc7af8976cf5d288bd80378 839 ascension_0.6.1-1.dsc
+ 9c4aa5763558c240e546fd43bf37d03edcf2c688 10607 ascension_0.6.1.orig.tar.gz
+ 0a97610166be3b878bf5b2d613d7319fdd36aac9 1132 ascension_0.6.1-1.debian.tar.xz
+ 56a2462264453a774897d7c744658efd7fd42071 5159 
ascension_0.6.1-1_source.buildinfo
+Checksums-Sha256:
+ 47aaa27e61039143a62039425f2bbcb6b5cba68e0dc8334ddabbcf5297da38d0 839 
ascension_0.6.1-1.dsc
+ dca059c4204d39680858d49e5b03c983e9c7ea2e91cc4bae75536f326ab7ad80 10607 
ascension_0.6.1.orig.tar.gz
+ 9219bca9ca994f51ba3ec6f399401a40f1e1d8250663e7999d194b91985e205a 1132 
ascension_0.6.1-1.debian.tar.xz
+ 039db9a401ae90ab227c3f9b86d691df83a5e99722061f9ea41bea5039f22901 5159 
ascension_0.6.1-1_source.buildinfo
+Files:
+ 209f2e2348cc89c5c8f295bb1355a666 839 python optional ascension_0.6.1-1.dsc
+ 22a8b40155cc1ad841fdf457b7414dff 10607 python optional 
ascension_0.6.1.orig.tar.gz
+ dad63133cc3b8e6239c20d2aae14ade7 1132 python optional 
ascension_0.6.1-1.debian.tar.xz
+ a97437e6e5f5f01aa1b2c25852033e03 5159 python optional 
ascension_0.6.1-1_source.buildinfo
diff --git a/deb_dist/ascension_0.6.1.orig.tar.gz 
b/deb_dist/ascension_0.6.1.orig.tar.gz
new file mode 100644
index 0000000..ca36286
Binary files /dev/null and b/deb_dist/ascension_0.6.1.orig.tar.gz differ
diff --git a/debian/ascension-bind-0.0.1/debian/ascension-bind.config 
b/debian/ascension-bind-0.0.1/debian/ascension-bind.config
index 39721f0..18570b2 100644
--- a/debian/ascension-bind-0.0.1/debian/ascension-bind.config
+++ b/debian/ascension-bind-0.0.1/debian/ascension-bind.config
@@ -3,6 +3,8 @@
 #
 # see: dh_installdeb(1)
 # load debconf library
+DEBIAN_FRONTEND=${DEBIAN_FRONTEND:-noninteractive}
+
 . /usr/share/debconf/confmodule
 
 #set -e
@@ -16,7 +18,8 @@
 
 zonelist=$(grep "^zone" < /etc/bind/named.conf.local | grep -vE 
"(arpa|localhost|\"\.\")" | cut -d '"' -f2)
 zonelist=$(echo -n "$zonelist" | tr '\n' ',' | sed 's/,/, /g')
-if [[ "$zonelist" == "" ]]; then
+trimmed=$(echo $zonelist | tr -d '\n')
+if [ "$trimmed" = "" ]; then
     echo "There are no zones to migrate"
     exit 0
 fi
@@ -38,7 +41,7 @@ fi
 #fi
 
 #db_set ascension-bind/zones $zonelist
-db_subst ascension-bind/zones choices $zonelist
+db_subst ascension-bind/zones zonelist $zonelist
 db_fset ascension-bind/zones seen false
 db_input high ascension-bind/zones || true
 db_go || true
@@ -54,16 +57,6 @@ if [ -z $trimmed ]; then
     exit 0
 fi
 
-db_fset ascension-bind/publishing seen false
-db_input medium ascension-bind/publishing || true
-db_go || true
-db_get ascension-bind/publishing
-PUBLIC=$RET
-
-if $PUBLIC; then
-    PUBLISH="-p"
-fi
-
 zonestatus=true
 for ZONE in "address@hidden"
 do
@@ -111,14 +104,6 @@ for ZONE in "address@hidden"
 do
     ZONE=$( echo "$ZONE" | tr -d '\n')
     FILECONV=$( echo "$ZONE" | tr '.' '_')
-    echo "Creating ascension import config files for $ZONE"
-    cat > "/etc/ascension.d/bind-import-$FILECONV.conf" << EOF
-[ascension]
-ZONE = $ZONE
-TRANSFERNS = localhost
-PORT = 53
-PUBLIC = $PUBLIC
-EOF
     echo "Creating systemd unit file."
     cat > "/etc/ascension.d/ascension-bind-$FILECONV.service" << EOF
 [Unit]
@@ -129,7 +114,7 @@ After=gnunet-ascension.service
 Type=simple
 User=ascension
 WorkingDirectory=/etc/ascension.d/
-ExecStart=/usr/bin/ascension $ZONE -n localhost $PUBLISH
+ExecStart=/usr/bin/ascension $ZONE -n localhost -p
 [Install]
 WantedBy=multi-user.target
 EOF
diff --git a/debian/ascension-bind-0.0.1/debian/ascension-bind.templates 
b/debian/ascension-bind-0.0.1/debian/ascension-bind.templates
index d7f2db8..6f0a8f4 100644
--- a/debian/ascension-bind-0.0.1/debian/ascension-bind.templates
+++ b/debian/ascension-bind-0.0.1/debian/ascension-bind.templates
@@ -4,14 +4,6 @@ Choices: ${zonelist}
 _Description: Which zones do you want to migrate to the GNU Name System?
  Please select the zones you want to have migrated into the GNU Name System.
 
-Template: ascension-bind/publishing
-Type: boolean 
-Default: true
-_Description: Do you want to make your records public in GNS?
- Ascension can make your records available globally by putting them in the GNS
- Distributed Hash Table. To resolve the records other people will require the
- public key of the GNS zone that is created. 
-
 Template: ascension-bind/transfer-allowed
 Type: error
 _Description: Zone transfer is enabled on some zones?
diff --git a/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/config 
b/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/config
index 4ee3878..a0331dd 100755
--- a/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/config
+++ b/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/config
@@ -3,6 +3,8 @@
 #
 # see: dh_installdeb(1)
 # load debconf library
+DEBIAN_FRONTEND=${DEBIAN_FRONTEND:-noninteractive}
+
 . /usr/share/debconf/confmodule
 
 #set -e
@@ -16,7 +18,8 @@
 
 zonelist=$(grep "^zone" < /etc/bind/named.conf.local | grep -vE 
"(arpa|localhost|\"\.\")" | cut -d '"' -f2)
 zonelist=$(echo -n "$zonelist" | tr '\n' ',' | sed 's/,/, /g')
-if [[ "$zonelist" == "" ]]; then
+trimmed=$(echo $zonelist | tr -d '\n')
+if [ "$trimmed" = "" ]; then
     echo "There are no zones to migrate"
     exit 0
 fi
@@ -38,7 +41,7 @@ fi
 #fi
 
 #db_set ascension-bind/zones $zonelist
-db_subst ascension-bind/zones choices $zonelist
+db_subst ascension-bind/zones zonelist $zonelist
 db_fset ascension-bind/zones seen false
 db_input high ascension-bind/zones || true
 db_go || true
@@ -54,16 +57,6 @@ if [ -z $trimmed ]; then
     exit 0
 fi
 
-db_fset ascension-bind/publishing seen false
-db_input medium ascension-bind/publishing || true
-db_go || true
-db_get ascension-bind/publishing
-PUBLIC=$RET
-
-if $PUBLIC; then
-    PUBLISH="-p"
-fi
-
 zonestatus=true
 for ZONE in "address@hidden"
 do
@@ -111,14 +104,6 @@ for ZONE in "address@hidden"
 do
     ZONE=$( echo "$ZONE" | tr -d '\n')
     FILECONV=$( echo "$ZONE" | tr '.' '_')
-    echo "Creating ascension import config files for $ZONE"
-    cat > "/etc/ascension.d/bind-import-$FILECONV.conf" << EOF
-[ascension]
-ZONE = $ZONE
-TRANSFERNS = localhost
-PORT = 53
-PUBLIC = $PUBLIC
-EOF
     echo "Creating systemd unit file."
     cat > "/etc/ascension.d/ascension-bind-$FILECONV.service" << EOF
 [Unit]
@@ -129,7 +114,7 @@ After=gnunet-ascension.service
 Type=simple
 User=ascension
 WorkingDirectory=/etc/ascension.d/
-ExecStart=/usr/bin/ascension $ZONE -n localhost $PUBLISH
+ExecStart=/usr/bin/ascension $ZONE -n localhost -p
 [Install]
 WantedBy=multi-user.target
 EOF
diff --git a/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/templates 
b/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/templates
index e8663cc..dce05f3 100644
--- a/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/templates
+++ b/debian/ascension-bind-0.0.1/debian/ascension-bind/DEBIAN/templates
@@ -4,14 +4,6 @@ Choices: ${zonelist}
 Description: Which zones do you want to migrate to the GNU Name System?
  Please select the zones you want to have migrated into the GNU Name System.
 
-Template: ascension-bind/publishing
-Type: boolean 
-Default: true
-Description: Do you want to make your records public in GNS?
- Ascension can make your records available globally by putting them in the GNS
- Distributed Hash Table. To resolve the records other people will require the
- public key of the GNS zone that is created. 
-
 Template: ascension-bind/transfer-allowed
 Type: error
 Description: Zone transfer is enabled on some zones?
diff --git a/debian/ascension-bind_0.0.1-1.debian.tar.xz 
b/debian/ascension-bind_0.0.1-1.debian.tar.xz
index cc38b20..48c2de6 100644
Binary files a/debian/ascension-bind_0.0.1-1.debian.tar.xz and 
b/debian/ascension-bind_0.0.1-1.debian.tar.xz differ
diff --git a/debian/ascension-bind_0.0.1-1.dsc 
b/debian/ascension-bind_0.0.1-1.dsc
index 3dc5b23..683914c 100644
--- a/debian/ascension-bind_0.0.1-1.dsc
+++ b/debian/ascension-bind_0.0.1-1.dsc
@@ -11,10 +11,10 @@ Package-List:
  ascension-bind deb net optional arch=any
 Checksums-Sha1:
  0a7953cf5bf7616ff1c2171789fab736e199e769 3860 ascension-bind_0.0.1.orig.tar.xz
- 0563ac855c51b8c1d94c955a4e55f897a8a48cc0 4576 
ascension-bind_0.0.1-1.debian.tar.xz
+ 94233d71269ec3bc2dd006259ab15153c6acc705 4300 
ascension-bind_0.0.1-1.debian.tar.xz
 Checksums-Sha256:
  e21b0672b6d9932d03541c13e9350546542d9dd86373bf6bc78f61a1c79586b4 3860 
ascension-bind_0.0.1.orig.tar.xz
- 19d300d61e8b1ab67762d636771efc88a0a57e167148bd0b14da971c905fb618 4576 
ascension-bind_0.0.1-1.debian.tar.xz
+ 64393344f71720c8df64ce6e9413064d9ae4fd12be71f2c4d3bfc6254af02ff1 4300 
ascension-bind_0.0.1-1.debian.tar.xz
 Files:
  3e51a0f28a46eff44e0366ab9185b840 3860 ascension-bind_0.0.1.orig.tar.xz
- 68607370719ffbc36b33ee19d8008fe6 4576 ascension-bind_0.0.1-1.debian.tar.xz
+ 03dd30e558b53084a4d4e4068b441ac7 4300 ascension-bind_0.0.1-1.debian.tar.xz
diff --git a/debian/ascension-bind_0.0.1-1_amd64.buildinfo 
b/debian/ascension-bind_0.0.1-1_amd64.buildinfo
index bb81169..869fd73 100644
--- a/debian/ascension-bind_0.0.1-1_amd64.buildinfo
+++ b/debian/ascension-bind_0.0.1-1_amd64.buildinfo
@@ -4,17 +4,17 @@ Binary: ascension-bind
 Architecture: amd64 source
 Version: 0.0.1-1
 Checksums-Md5:
- dacbfb5bc9f40ec6e42e46963b2b3aea 911 ascension-bind_0.0.1-1.dsc
- 2c43a66f53f6b4d07c9c58dd52a6bfea 4092 ascension-bind_0.0.1-1_amd64.deb
+ 8a8e3332aff540bd0bd665eeb1c8e310 911 ascension-bind_0.0.1-1.dsc
+ 30eadba9ff78a7a22db99644bed94ae3 3874 ascension-bind_0.0.1-1_amd64.deb
 Checksums-Sha1:
- ffc1af95ef245f7145a6acf8275035960bb2adc4 911 ascension-bind_0.0.1-1.dsc
- 103ed8a46edd191ce37b09b75b5404976f530f1d 4092 ascension-bind_0.0.1-1_amd64.deb
+ 76c74837dfefc4b8f48925ffc2f114dbe0dfc095 911 ascension-bind_0.0.1-1.dsc
+ c10534c55475715ad20d83aef33a16cbf8011f6e 3874 ascension-bind_0.0.1-1_amd64.deb
 Checksums-Sha256:
- 12b1219d515e1b8e8405d256edfeb5d433de4e09ca2d590796b7d7db93124cc8 911 
ascension-bind_0.0.1-1.dsc
- 4b057cd0cc9a95a2839dc6ee02615dc941f28cb5086751496f1284c6c7c963a2 4092 
ascension-bind_0.0.1-1_amd64.deb
+ d884952d78fd252f7fea8650533ed434ac3a74ff159029f6223e5abd451a9bc1 911 
ascension-bind_0.0.1-1.dsc
+ 89b1e813366c83992879a628112ae1054cee78216e6614db62a0207922f21024 3874 
ascension-bind_0.0.1-1_amd64.deb
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Fri, 17 May 2019 11:46:51 +0000
+Build-Date: Fri, 17 May 2019 16:04:27 +0000
 Installed-Build-Depends:
  adduser (= 3.115),
  autoconf (= 2.69-10),
diff --git a/debian/ascension-bind_0.0.1-1_amd64.changes 
b/debian/ascension-bind_0.0.1-1_amd64.changes
index c58865f..4378ae3 100644
--- a/debian/ascension-bind_0.0.1-1_amd64.changes
+++ b/debian/ascension-bind_0.0.1-1_amd64.changes
@@ -16,20 +16,20 @@ Changes:
  .
    * Initial release Closes: #123123
 Checksums-Sha1:
- ffc1af95ef245f7145a6acf8275035960bb2adc4 911 ascension-bind_0.0.1-1.dsc
+ 76c74837dfefc4b8f48925ffc2f114dbe0dfc095 911 ascension-bind_0.0.1-1.dsc
  0a7953cf5bf7616ff1c2171789fab736e199e769 3860 ascension-bind_0.0.1.orig.tar.xz
- 0563ac855c51b8c1d94c955a4e55f897a8a48cc0 4576 
ascension-bind_0.0.1-1.debian.tar.xz
- 5b57046d3b772a3062cce6e2bd58594fcc2d9dea 6465 
ascension-bind_0.0.1-1_amd64.buildinfo
- 103ed8a46edd191ce37b09b75b5404976f530f1d 4092 ascension-bind_0.0.1-1_amd64.deb
+ 94233d71269ec3bc2dd006259ab15153c6acc705 4300 
ascension-bind_0.0.1-1.debian.tar.xz
+ 4ea35147d3bea50ede8d84df5511fb958db3c503 6465 
ascension-bind_0.0.1-1_amd64.buildinfo
+ c10534c55475715ad20d83aef33a16cbf8011f6e 3874 ascension-bind_0.0.1-1_amd64.deb
 Checksums-Sha256:
- 12b1219d515e1b8e8405d256edfeb5d433de4e09ca2d590796b7d7db93124cc8 911 
ascension-bind_0.0.1-1.dsc
+ d884952d78fd252f7fea8650533ed434ac3a74ff159029f6223e5abd451a9bc1 911 
ascension-bind_0.0.1-1.dsc
  e21b0672b6d9932d03541c13e9350546542d9dd86373bf6bc78f61a1c79586b4 3860 
ascension-bind_0.0.1.orig.tar.xz
- 19d300d61e8b1ab67762d636771efc88a0a57e167148bd0b14da971c905fb618 4576 
ascension-bind_0.0.1-1.debian.tar.xz
- 3f4d2cbbb9c0cdd1c799ac48c362ea86a6d055d3cc23a08ce343de929b7cbfbe 6465 
ascension-bind_0.0.1-1_amd64.buildinfo
- 4b057cd0cc9a95a2839dc6ee02615dc941f28cb5086751496f1284c6c7c963a2 4092 
ascension-bind_0.0.1-1_amd64.deb
+ 64393344f71720c8df64ce6e9413064d9ae4fd12be71f2c4d3bfc6254af02ff1 4300 
ascension-bind_0.0.1-1.debian.tar.xz
+ 4461f0d4d26df2874a47df5bcf74d8f02272b30ac07817e2fbe63093c953ffe7 6465 
ascension-bind_0.0.1-1_amd64.buildinfo
+ 89b1e813366c83992879a628112ae1054cee78216e6614db62a0207922f21024 3874 
ascension-bind_0.0.1-1_amd64.deb
 Files:
- dacbfb5bc9f40ec6e42e46963b2b3aea 911 net optional ascension-bind_0.0.1-1.dsc
+ 8a8e3332aff540bd0bd665eeb1c8e310 911 net optional ascension-bind_0.0.1-1.dsc
  3e51a0f28a46eff44e0366ab9185b840 3860 net optional 
ascension-bind_0.0.1.orig.tar.xz
- 68607370719ffbc36b33ee19d8008fe6 4576 net optional 
ascension-bind_0.0.1-1.debian.tar.xz
- 0cc08d5ea98789ba906d994e0820a490 6465 net optional 
ascension-bind_0.0.1-1_amd64.buildinfo
- 2c43a66f53f6b4d07c9c58dd52a6bfea 4092 net optional 
ascension-bind_0.0.1-1_amd64.deb
+ 03dd30e558b53084a4d4e4068b441ac7 4300 net optional 
ascension-bind_0.0.1-1.debian.tar.xz
+ bed206b2f2c678753c8588ea80d38c1b 6465 net optional 
ascension-bind_0.0.1-1_amd64.buildinfo
+ 30eadba9ff78a7a22db99644bed94ae3 3874 net optional 
ascension-bind_0.0.1-1_amd64.deb
diff --git a/debian/ascension-bind_0.0.1-1_amd64.deb 
b/debian/ascension-bind_0.0.1-1_amd64.deb
index 9e006e8..e0b00aa 100644
Binary files a/debian/ascension-bind_0.0.1-1_amd64.deb and 
b/debian/ascension-bind_0.0.1-1_amd64.deb differ

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]