gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [ascension] branch master updated (05839db -> 0ed6b9d)


From: gnunet
Subject: [GNUnet-SVN] [ascension] branch master updated (05839db -> 0ed6b9d)
Date: Thu, 06 Jun 2019 21:28:09 +0200

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

rexxnor pushed a change to branch master
in repository ascension.

    from 05839db  fixed a major GNS2DNS bug that added a lot of false records
     new a864759  added check for base32 crockford encoded public key, added 
logging of zone pkey
     new 0ed6b9d  updated gitlab ci

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitlab-ci.yml                                     |   4 +--
 ascension-0.11.5.tar.gz                            | Bin 11061 -> 11083 bytes
 ascension/ascension.py                             |  15 ++++++++--
 deb_dist/ascension-0.11.5/ascension/ascension.py   |  15 ++++++++--
 deb_dist/ascension-0.11.5/debian/changelog         |   2 +-
 .../debian/python3-ascension/DEBIAN/md5sums        |   4 +--
 .../doc/python3-ascension/changelog.Debian.gz      | Bin 162 -> 162 bytes
 deb_dist/ascension-0.11.5/debian/rules             |   2 +-
 deb_dist/ascension_0.11.5-1.debian.tar.xz          | Bin 1672 -> 1668 bytes
 deb_dist/ascension_0.11.5-1.dsc                    |  12 ++++----
 deb_dist/ascension_0.11.5-1_amd64.buildinfo        |  16 +++++------
 deb_dist/ascension_0.11.5-1_amd64.changes          |  32 ++++++++++-----------
 deb_dist/ascension_0.11.5-1_source.buildinfo       |  10 +++----
 deb_dist/ascension_0.11.5-1_source.changes         |  26 ++++++++---------
 deb_dist/ascension_0.11.5.orig.tar.gz              | Bin 11061 -> 11083 bytes
 deb_dist/python3-ascension_0.11.5-1_all.deb        | Bin 11816 -> 11830 bytes
 .../debian/ascension-bind.config                   |   2 ++
 .../debian/ascension-bind/DEBIAN/config            |   2 ++
 debian/ascension-bind_0.0.1-1.debian.tar.xz        | Bin 4180 -> 4192 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 3756 -> 3776 bytes
 requirements.txt                                   |   6 ++--
 24 files changed, 107 insertions(+), 85 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8b9216d..4926fc4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ run-build_deb:
     - apt update
     - apt install -y python-all python3-stdeb git
     - python3 setup.py --command-package=stdeb.command sdist_dsc
-    - cd deb_dist/ascension-0.6.1/
+    - cd deb_dist/ascension-0.11.5/
     - cp ../../helpers/ascension.1 debian/ascension.1
     - echo "debian/ascension.1" > debian/python3-ascension.manpages
     - dh_installman
@@ -21,7 +21,7 @@ run-build_deb:
     - bash helpers/gnunet-installer-0.11-debian.sh Production
     - gnunet-arm -Esq
     - apt install -y bind9 dnsutils procps
-    - apt install -y ./deb_dist/python3-ascension_0.6.1-1_all.deb
+    - apt install -y ./deb_dist/python3-ascension_0.11.5-1_all.deb
     - su ascension -s /bin/bash -c "ascension -h"
     - cd ascension/test/
     - bash test_ascension_simple.sh
diff --git a/ascension-0.11.5.tar.gz b/ascension-0.11.5.tar.gz
index ef7805d..3a718c0 100644
Binary files a/ascension-0.11.5.tar.gz and b/ascension-0.11.5.tar.gz differ
diff --git a/ascension/ascension.py b/ascension/ascension.py
index 681e3c7..cd5cb85 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -56,6 +56,7 @@ import dns.query
 import dns.resolver
 import dns.zone
 import docopt
+import base32_crockford
 
 # GLOBALS for different environments
 GNUNET_ZONE_CREATION_COMMAND = 'gnunet-identity'
@@ -654,11 +655,19 @@ class Ascender():
                 continue
             gnspkey = str(gnspkeys[0])
 
-            # FIXME: test strlen(gnspkey) "right length", theoretically:
-            # Crockford base32 decoder... -> base32-crockford looks promising
+            zonepkey = gnspkey[11:]
+            if len(zonepkey) != 52:
+                continue
+            else:
+                try:
+                    base32_crockford.decode(zonepkey, strict=True)
+                except ValueError:
+                    # skip as this means it is not crockford compatbile
+                    continue
+
             zone = "%s.%s" % (name, self.domain)
             if not self.subzonedict.get(zone):
-                self.subzonedict[zone] = (gnspkey[11:], ttl)
+                self.subzonedict[zone] = (zonepkey, ttl)
             else:
                 # This should be impossible!!?
                 pkey_ttl = self.subzonedict[zone]
diff --git a/deb_dist/ascension-0.11.5/ascension/ascension.py 
b/deb_dist/ascension-0.11.5/ascension/ascension.py
index 681e3c7..cd5cb85 100644
--- a/deb_dist/ascension-0.11.5/ascension/ascension.py
+++ b/deb_dist/ascension-0.11.5/ascension/ascension.py
@@ -56,6 +56,7 @@ import dns.query
 import dns.resolver
 import dns.zone
 import docopt
+import base32_crockford
 
 # GLOBALS for different environments
 GNUNET_ZONE_CREATION_COMMAND = 'gnunet-identity'
@@ -654,11 +655,19 @@ class Ascender():
                 continue
             gnspkey = str(gnspkeys[0])
 
-            # FIXME: test strlen(gnspkey) "right length", theoretically:
-            # Crockford base32 decoder... -> base32-crockford looks promising
+            zonepkey = gnspkey[11:]
+            if len(zonepkey) != 52:
+                continue
+            else:
+                try:
+                    base32_crockford.decode(zonepkey, strict=True)
+                except ValueError:
+                    # skip as this means it is not crockford compatbile
+                    continue
+
             zone = "%s.%s" % (name, self.domain)
             if not self.subzonedict.get(zone):
-                self.subzonedict[zone] = (gnspkey[11:], ttl)
+                self.subzonedict[zone] = (zonepkey, ttl)
             else:
                 # This should be impossible!!?
                 pkey_ttl = self.subzonedict[zone]
diff --git a/deb_dist/ascension-0.11.5/debian/changelog 
b/deb_dist/ascension-0.11.5/debian/changelog
index bc34a4e..aaaf662 100644
--- a/deb_dist/ascension-0.11.5/debian/changelog
+++ b/deb_dist/ascension-0.11.5/debian/changelog
@@ -2,4 +2,4 @@ ascension (0.11.5-1) unstable; urgency=low
 
   * source package automatically created by stdeb 0.8.5
 
- -- rexxnor <address@hidden>  Tue, 04 Jun 2019 16:33:58 +0000
+ -- rexxnor <address@hidden>  Thu, 06 Jun 2019 19:24:11 +0000
diff --git a/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/md5sums 
b/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/md5sums
index d7167de..33438ef 100644
--- a/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/md5sums
+++ b/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/md5sums
@@ -5,6 +5,6 @@ b9326cd655bd4569eaeb5f029ae298d4  
usr/lib/python3/dist-packages/ascension-0.11.5
 d41d8cd98f00b204e9800998ecf8427e  
usr/lib/python3/dist-packages/ascension-0.11.5.egg-info/requires.txt
 e616e4373e7b199db038fd8e938a3188  
usr/lib/python3/dist-packages/ascension-0.11.5.egg-info/top_level.txt
 d41d8cd98f00b204e9800998ecf8427e  
usr/lib/python3/dist-packages/ascension/__init__.py
-6333530ffe71784c28228d4e3d3d1654  
usr/lib/python3/dist-packages/ascension/ascension.py
+1f122d6eb5cf8cf24263fd5f4cd7556b  
usr/lib/python3/dist-packages/ascension/ascension.py
 de060b4ca299c6460ff508aed915526b  usr/man/man1/ascension.1
-02e64d8d9b8e4d59cc55977c476498c6  
usr/share/doc/python3-ascension/changelog.Debian.gz
+728f1502b33a93a50a6afc306b4d6f65  
usr/share/doc/python3-ascension/changelog.Debian.gz
diff --git 
a/deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/changelog.Debian.gz
 
b/deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/changelog.Debian.gz
index fcf2029..bccc74b 100644
Binary files 
a/deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/changelog.Debian.gz
 and 
b/deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/changelog.Debian.gz
 differ
diff --git a/deb_dist/ascension-0.11.5/debian/rules 
b/deb_dist/ascension-0.11.5/debian/rules
index 72eade8..ac3c8d6 100755
--- a/deb_dist/ascension-0.11.5/debian/rules
+++ b/deb_dist/ascension-0.11.5/debian/rules
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 # This file was automatically generated by stdeb 0.8.5 at
-# Tue, 04 Jun 2019 16:33:58 +0000
+# Thu, 06 Jun 2019 19:24:11 +0000
 
 %:
        dh $@ --with python3 --buildsystem=python_distutils
diff --git a/deb_dist/ascension_0.11.5-1.debian.tar.xz 
b/deb_dist/ascension_0.11.5-1.debian.tar.xz
index 0d31aa3..487a655 100644
Binary files a/deb_dist/ascension_0.11.5-1.debian.tar.xz and 
b/deb_dist/ascension_0.11.5-1.debian.tar.xz differ
diff --git a/deb_dist/ascension_0.11.5-1.dsc b/deb_dist/ascension_0.11.5-1.dsc
index a080658..8972560 100644
--- a/deb_dist/ascension_0.11.5-1.dsc
+++ b/deb_dist/ascension_0.11.5-1.dsc
@@ -9,11 +9,11 @@ Build-Depends: python3-setuptools, python3-all, debhelper (>= 
7.4.3)
 Package-List:
  python3-ascension deb python optional arch=all
 Checksums-Sha1:
- 6645452d19d03f2296824f4870c292c068d105ee 11061 ascension_0.11.5.orig.tar.gz
- 743623400f8a42e95e3c64744fa11b2f4ca3e858 1672 ascension_0.11.5-1.debian.tar.xz
+ 85bbeb027f10b1377bed75a5a0d16088a7a29aa4 11083 ascension_0.11.5.orig.tar.gz
+ 7f0a4eb3289cac9a4292a3505d2ae3825ae5d0ff 1668 ascension_0.11.5-1.debian.tar.xz
 Checksums-Sha256:
- 0297719d0f2a9184660b58475bd33189f6dcde10ef9be22ca2bc8cc4952782d2 11061 
ascension_0.11.5.orig.tar.gz
- 702bdfa0583d91e605f815403faaccef018fdc92fa2c4830c9a3431d34566f9b 1672 
ascension_0.11.5-1.debian.tar.xz
+ cc5044b7b3f1b8a6bbee74120988097170758b641e78c56a33d65ce95fe5cad8 11083 
ascension_0.11.5.orig.tar.gz
+ 6e03afb057e0f8bb28c243581c110362e8330bd7042213439fcc599ab5c73f59 1668 
ascension_0.11.5-1.debian.tar.xz
 Files:
- 174806fad05171d995d67daad4603cae 11061 ascension_0.11.5.orig.tar.gz
- 201b4bd7cbcddc8ced71b460eef6a598 1672 ascension_0.11.5-1.debian.tar.xz
+ 76989ff7fb3ddccaf2cd92526686b2c8 11083 ascension_0.11.5.orig.tar.gz
+ 807b6e38531f2aff5dd9d2bfb48532cb 1668 ascension_0.11.5-1.debian.tar.xz
diff --git a/deb_dist/ascension_0.11.5-1_amd64.buildinfo 
b/deb_dist/ascension_0.11.5-1_amd64.buildinfo
index d53f1eb..067e043 100644
--- a/deb_dist/ascension_0.11.5-1_amd64.buildinfo
+++ b/deb_dist/ascension_0.11.5-1_amd64.buildinfo
@@ -4,17 +4,17 @@ Binary: python3-ascension
 Architecture: all source
 Version: 0.11.5-1
 Checksums-Md5:
- 74b89d12e9d3ecf3674cec4ae6845d29 846 ascension_0.11.5-1.dsc
- 80e7563f063ff630bbcf157d38a01162 11816 python3-ascension_0.11.5-1_all.deb
+ eff51dce10c8e8c03141e4eab05c0359 846 ascension_0.11.5-1.dsc
+ f92c3fbe6aa31ede0c9194cd0359a73c 11830 python3-ascension_0.11.5-1_all.deb
 Checksums-Sha1:
- bb41b6cf44af1c428790f371b286231dd9821c7f 846 ascension_0.11.5-1.dsc
- 44cebafe774920d988013a9cdf5dbb2628202143 11816 
python3-ascension_0.11.5-1_all.deb
+ 31ed843b064df8924884d5ee6593069bc2f8ca74 846 ascension_0.11.5-1.dsc
+ 727406c4ec24f4cf1194f6c321a2835bf3085512 11830 
python3-ascension_0.11.5-1_all.deb
 Checksums-Sha256:
- 6fced0b8e9966bd7104022b59366c69b0a5deb659527c5520c1b73406f24cf55 846 
ascension_0.11.5-1.dsc
- 8ffd300c8d4bdaf0fa372a0e47c6068df1d4b059753f7dc331a11077b210f3a9 11816 
python3-ascension_0.11.5-1_all.deb
+ 5b87bc0bd53615b2a012047a360fae17f1f82536ce88557d89f86aee2b8e8147 846 
ascension_0.11.5-1.dsc
+ be44525071f9e8eb53e28e237e54d659e253db7d948d9ddbf89a6980150fc330 11830 
python3-ascension_0.11.5-1_all.deb
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Tue, 04 Jun 2019 16:34:42 +0000
+Build-Date: Thu, 06 Jun 2019 19:24:48 +0000
 Installed-Build-Depends:
  autoconf (= 2.69-10),
  automake (= 1:1.15-6),
@@ -177,4 +177,4 @@ Installed-Build-Depends:
  zlib1g (= 1:1.2.8.dfsg-5)
 Environment:
  DEB_BUILD_OPTIONS="parallel=2"
- SOURCE_DATE_EPOCH="1559666038"
+ SOURCE_DATE_EPOCH="1559849051"
diff --git a/deb_dist/ascension_0.11.5-1_amd64.changes 
b/deb_dist/ascension_0.11.5-1_amd64.changes
index dc0417f..b821a01 100644
--- a/deb_dist/ascension_0.11.5-1_amd64.changes
+++ b/deb_dist/ascension_0.11.5-1_amd64.changes
@@ -1,5 +1,5 @@
 Format: 1.8
-Date: Tue, 04 Jun 2019 16:33:58 +0000
+Date: Thu, 06 Jun 2019 19:24:11 +0000
 Source: ascension
 Binary: python3-ascension
 Architecture: source all
@@ -15,20 +15,20 @@ Changes:
  .
    * source package automatically created by stdeb 0.8.5
 Checksums-Sha1:
- bb41b6cf44af1c428790f371b286231dd9821c7f 846 ascension_0.11.5-1.dsc
- 6645452d19d03f2296824f4870c292c068d105ee 11061 ascension_0.11.5.orig.tar.gz
- 743623400f8a42e95e3c64744fa11b2f4ca3e858 1672 ascension_0.11.5-1.debian.tar.xz
- e0e3b097aa851a7d9bf359fcc75aed46d21c7396 5432 
ascension_0.11.5-1_amd64.buildinfo
- 44cebafe774920d988013a9cdf5dbb2628202143 11816 
python3-ascension_0.11.5-1_all.deb
+ 31ed843b064df8924884d5ee6593069bc2f8ca74 846 ascension_0.11.5-1.dsc
+ 85bbeb027f10b1377bed75a5a0d16088a7a29aa4 11083 ascension_0.11.5.orig.tar.gz
+ 7f0a4eb3289cac9a4292a3505d2ae3825ae5d0ff 1668 ascension_0.11.5-1.debian.tar.xz
+ 6b014648dce2110ba24ecb82bc28b138505de6d8 5432 
ascension_0.11.5-1_amd64.buildinfo
+ 727406c4ec24f4cf1194f6c321a2835bf3085512 11830 
python3-ascension_0.11.5-1_all.deb
 Checksums-Sha256:
- 6fced0b8e9966bd7104022b59366c69b0a5deb659527c5520c1b73406f24cf55 846 
ascension_0.11.5-1.dsc
- 0297719d0f2a9184660b58475bd33189f6dcde10ef9be22ca2bc8cc4952782d2 11061 
ascension_0.11.5.orig.tar.gz
- 702bdfa0583d91e605f815403faaccef018fdc92fa2c4830c9a3431d34566f9b 1672 
ascension_0.11.5-1.debian.tar.xz
- 9ff93f662b7b468ec620e494f6d56de2816ecbc91d42262262c49669a97c6054 5432 
ascension_0.11.5-1_amd64.buildinfo
- 8ffd300c8d4bdaf0fa372a0e47c6068df1d4b059753f7dc331a11077b210f3a9 11816 
python3-ascension_0.11.5-1_all.deb
+ 5b87bc0bd53615b2a012047a360fae17f1f82536ce88557d89f86aee2b8e8147 846 
ascension_0.11.5-1.dsc
+ cc5044b7b3f1b8a6bbee74120988097170758b641e78c56a33d65ce95fe5cad8 11083 
ascension_0.11.5.orig.tar.gz
+ 6e03afb057e0f8bb28c243581c110362e8330bd7042213439fcc599ab5c73f59 1668 
ascension_0.11.5-1.debian.tar.xz
+ 157d37a8f15988ac6c6d39450e08a076bff44fe16eb48faff80b979c4de43bf4 5432 
ascension_0.11.5-1_amd64.buildinfo
+ be44525071f9e8eb53e28e237e54d659e253db7d948d9ddbf89a6980150fc330 11830 
python3-ascension_0.11.5-1_all.deb
 Files:
- 74b89d12e9d3ecf3674cec4ae6845d29 846 python optional ascension_0.11.5-1.dsc
- 174806fad05171d995d67daad4603cae 11061 python optional 
ascension_0.11.5.orig.tar.gz
- 201b4bd7cbcddc8ced71b460eef6a598 1672 python optional 
ascension_0.11.5-1.debian.tar.xz
- 56f5b55ad472cd382defde80b625355b 5432 python optional 
ascension_0.11.5-1_amd64.buildinfo
- 80e7563f063ff630bbcf157d38a01162 11816 python optional 
python3-ascension_0.11.5-1_all.deb
+ eff51dce10c8e8c03141e4eab05c0359 846 python optional ascension_0.11.5-1.dsc
+ 76989ff7fb3ddccaf2cd92526686b2c8 11083 python optional 
ascension_0.11.5.orig.tar.gz
+ 807b6e38531f2aff5dd9d2bfb48532cb 1668 python optional 
ascension_0.11.5-1.debian.tar.xz
+ 1e68d67c3b5aeec80c9b3ad0cc833cc5 5432 python optional 
ascension_0.11.5-1_amd64.buildinfo
+ f92c3fbe6aa31ede0c9194cd0359a73c 11830 python optional 
python3-ascension_0.11.5-1_all.deb
diff --git a/deb_dist/ascension_0.11.5-1_source.buildinfo 
b/deb_dist/ascension_0.11.5-1_source.buildinfo
index 9a44ad6..1ba8956 100644
--- a/deb_dist/ascension_0.11.5-1_source.buildinfo
+++ b/deb_dist/ascension_0.11.5-1_source.buildinfo
@@ -4,14 +4,14 @@ Binary: python3-ascension
 Architecture: source
 Version: 0.11.5-1
 Checksums-Md5:
- 1de9662925c0c544c5c44b012c6a0d83 846 ascension_0.11.5-1.dsc
+ ba8a9816680af7ce504f6fd1d90a797b 846 ascension_0.11.5-1.dsc
 Checksums-Sha1:
- 06fa87c859ab1fb328eb775e40277d95e57a5fcc 846 ascension_0.11.5-1.dsc
+ e06e7aa26108af4d7ab17e01f89d3d959d1a5f39 846 ascension_0.11.5-1.dsc
 Checksums-Sha256:
- 8a0037172f62e88e49e6f431bb868ce24198fb873a12aec5001251cbb92cc771 846 
ascension_0.11.5-1.dsc
+ 4405daf4ac41ad1a1baa06b60c82cb2baaabd0ede4a305e26de09552606630eb 846 
ascension_0.11.5-1.dsc
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Tue, 04 Jun 2019 16:34:00 +0000
+Build-Date: Thu, 06 Jun 2019 19:24:13 +0000
 Installed-Build-Depends:
  autoconf (= 2.69-10),
  automake (= 1:1.15-6),
@@ -174,4 +174,4 @@ Installed-Build-Depends:
  zlib1g (= 1:1.2.8.dfsg-5)
 Environment:
  DEB_BUILD_OPTIONS="parallel=2"
- SOURCE_DATE_EPOCH="1559666038"
+ SOURCE_DATE_EPOCH="1559849051"
diff --git a/deb_dist/ascension_0.11.5-1_source.changes 
b/deb_dist/ascension_0.11.5-1_source.changes
index 3693046..05b5284 100644
--- a/deb_dist/ascension_0.11.5-1_source.changes
+++ b/deb_dist/ascension_0.11.5-1_source.changes
@@ -1,5 +1,5 @@
 Format: 1.8
-Date: Tue, 04 Jun 2019 16:33:58 +0000
+Date: Thu, 06 Jun 2019 19:24:11 +0000
 Source: ascension
 Binary: python3-ascension
 Architecture: source
@@ -15,17 +15,17 @@ Changes:
  .
    * source package automatically created by stdeb 0.8.5
 Checksums-Sha1:
- 06fa87c859ab1fb328eb775e40277d95e57a5fcc 846 ascension_0.11.5-1.dsc
- 6645452d19d03f2296824f4870c292c068d105ee 11061 ascension_0.11.5.orig.tar.gz
- 661b1f49830c3dace00e5706508bf335107dde95 1140 ascension_0.11.5-1.debian.tar.xz
- 2e4bcb33deda39f7a64bed1f7005b436311b2730 5163 
ascension_0.11.5-1_source.buildinfo
+ e06e7aa26108af4d7ab17e01f89d3d959d1a5f39 846 ascension_0.11.5-1.dsc
+ 85bbeb027f10b1377bed75a5a0d16088a7a29aa4 11083 ascension_0.11.5.orig.tar.gz
+ 91cbba1b5f8d04d997273838dadcc9ea7e291319 1136 ascension_0.11.5-1.debian.tar.xz
+ dc60b450f8a9b3641dcf6e0e42212eb4ed046957 5163 
ascension_0.11.5-1_source.buildinfo
 Checksums-Sha256:
- 8a0037172f62e88e49e6f431bb868ce24198fb873a12aec5001251cbb92cc771 846 
ascension_0.11.5-1.dsc
- 0297719d0f2a9184660b58475bd33189f6dcde10ef9be22ca2bc8cc4952782d2 11061 
ascension_0.11.5.orig.tar.gz
- 81c3ee2f97876c0ea9ab515a829ca58f615dfe9787f50755be0a86c40b4d630b 1140 
ascension_0.11.5-1.debian.tar.xz
- 327b9dd313623d27ca89d522d90f8cffccae3892143fcb1f1e89161d1268a66e 5163 
ascension_0.11.5-1_source.buildinfo
+ 4405daf4ac41ad1a1baa06b60c82cb2baaabd0ede4a305e26de09552606630eb 846 
ascension_0.11.5-1.dsc
+ cc5044b7b3f1b8a6bbee74120988097170758b641e78c56a33d65ce95fe5cad8 11083 
ascension_0.11.5.orig.tar.gz
+ 1de04d0409ab49a72995cbb391b4b077b3f95da4110b5dbe1b7f7ec755058f59 1136 
ascension_0.11.5-1.debian.tar.xz
+ 7a28cb4aea7d9abe6bceb0a8d854e1d1e24921efa900dc16729c05b9a40b35ab 5163 
ascension_0.11.5-1_source.buildinfo
 Files:
- 1de9662925c0c544c5c44b012c6a0d83 846 python optional ascension_0.11.5-1.dsc
- 174806fad05171d995d67daad4603cae 11061 python optional 
ascension_0.11.5.orig.tar.gz
- bc1fd0f1171ac36d1601f713389c47f1 1140 python optional 
ascension_0.11.5-1.debian.tar.xz
- c09fecbe56f03957161769c7e3118f12 5163 python optional 
ascension_0.11.5-1_source.buildinfo
+ ba8a9816680af7ce504f6fd1d90a797b 846 python optional ascension_0.11.5-1.dsc
+ 76989ff7fb3ddccaf2cd92526686b2c8 11083 python optional 
ascension_0.11.5.orig.tar.gz
+ e79311f01d343d4a995d5016cac2dd91 1136 python optional 
ascension_0.11.5-1.debian.tar.xz
+ 38bd1fc61b4c728f3bd35cb88d3102b6 5163 python optional 
ascension_0.11.5-1_source.buildinfo
diff --git a/deb_dist/ascension_0.11.5.orig.tar.gz 
b/deb_dist/ascension_0.11.5.orig.tar.gz
index ef7805d..3a718c0 100644
Binary files a/deb_dist/ascension_0.11.5.orig.tar.gz and 
b/deb_dist/ascension_0.11.5.orig.tar.gz differ
diff --git a/deb_dist/python3-ascension_0.11.5-1_all.deb 
b/deb_dist/python3-ascension_0.11.5-1_all.deb
index e311502..3e7b16e 100644
Binary files a/deb_dist/python3-ascension_0.11.5-1_all.deb and 
b/deb_dist/python3-ascension_0.11.5-1_all.deb 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 b56efa7..772da34 100644
--- a/debian/ascension-bind-0.0.1/debian/ascension-bind.config
+++ b/debian/ascension-bind-0.0.1/debian/ascension-bind.config
@@ -111,6 +111,8 @@ do
     FILECONV=$( echo "$ZONE" | tr '.' '_')
     ZONEPKEYLINE=$(su -s /bin/sh -c "gnunet-identity -dqe $ZONE" ascension)
     ZONEPKEY=$( echo "$ZONEPKEYLINE" | tr -d '\n')
+    echo "$ZONE's PKEY is $ZONEPKEY"
+    logger "$ZONE's PKEY is $ZONEPKEY"
     echo "Starting and enabling ascension-bind-$FILECONV"
     # Hacky solution but docker containers return 101 here
     deb-systemd-helper enable "ascension-bind-$FILECONV" || true
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 108440f..c19b052 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
@@ -111,6 +111,8 @@ do
     FILECONV=$( echo "$ZONE" | tr '.' '_')
     ZONEPKEYLINE=$(su -s /bin/sh -c "gnunet-identity -dqe $ZONE" ascension)
     ZONEPKEY=$( echo "$ZONEPKEYLINE" | tr -d '\n')
+    echo "$ZONE's PKEY is $ZONEPKEY"
+    logger "$ZONE's PKEY is $ZONEPKEY"
     echo "Starting and enabling ascension-bind-$FILECONV"
     # Hacky solution but docker containers return 101 here
     deb-systemd-helper enable "ascension-bind-$FILECONV" || true
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 675b442..18a7232 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 34715e6..6845972 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
- a686d17f8465cc2026ad46eeef5cce5533269a4e 4180 
ascension-bind_0.0.1-1.debian.tar.xz
+ b0c8087f93aed949745d85cc4677c13ac038dc7d 4192 
ascension-bind_0.0.1-1.debian.tar.xz
 Checksums-Sha256:
  e21b0672b6d9932d03541c13e9350546542d9dd86373bf6bc78f61a1c79586b4 3860 
ascension-bind_0.0.1.orig.tar.xz
- 0cfa0529708c3840ad9d33698873007710d71f0ba2ec0e59ebdad7e4dde4dd73 4180 
ascension-bind_0.0.1-1.debian.tar.xz
+ 7b22ee4235add7969f8962ab35d33f94a12f882507fae38c6fb612739ce32dea 4192 
ascension-bind_0.0.1-1.debian.tar.xz
 Files:
  3e51a0f28a46eff44e0366ab9185b840 3860 ascension-bind_0.0.1.orig.tar.xz
- d43653349a7a7c1a6e0e6da0179dc459 4180 ascension-bind_0.0.1-1.debian.tar.xz
+ e42197047fde64946f62fadd4755cfff 4192 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 a993f7e..9ab7e66 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:
- c2f310f958d116679940892df5890693 904 ascension-bind_0.0.1-1.dsc
- 7e66d0c35312f3ce13333690f0a6a43b 3756 ascension-bind_0.0.1-1_amd64.deb
+ e508732ee619ed8cbc92ae96236daa5b 904 ascension-bind_0.0.1-1.dsc
+ bd665eae331b4f115f533ebe0f82104e 3776 ascension-bind_0.0.1-1_amd64.deb
 Checksums-Sha1:
- f304ead06d03cce926e758b3fe5a4c80639a4b3b 904 ascension-bind_0.0.1-1.dsc
- a0988edb04d1ab3d93428c7eaf3603921abc40cd 3756 ascension-bind_0.0.1-1_amd64.deb
+ 45744c9ab3fb9b7034ab5d476c02e2b49a770dca 904 ascension-bind_0.0.1-1.dsc
+ 24d969f75abbc554991b19d3f8dc78b339b2bd46 3776 ascension-bind_0.0.1-1_amd64.deb
 Checksums-Sha256:
- 5df8300e07205634a01b7d1faf6659a34f30ba252186e373eec10042e8f03bb2 904 
ascension-bind_0.0.1-1.dsc
- 632535553f409516e82d49a9b892dfac0fbc1edecb68bee810adb39f2ea75a66 3756 
ascension-bind_0.0.1-1_amd64.deb
+ 87a87ff3f0a7916e382de17449d11c9f8582e50104093893ea8828d0ebb264f3 904 
ascension-bind_0.0.1-1.dsc
+ ea49c18b89ea531e43a6655a3af3b59a1681533e9912c267b9961923460a68a5 3776 
ascension-bind_0.0.1-1_amd64.deb
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Tue, 04 Jun 2019 13:30:18 +0000
+Build-Date: Wed, 05 Jun 2019 12:18:59 +0000
 Installed-Build-Depends:
  autoconf (= 2.69-10),
  automake (= 1:1.15-6),
diff --git a/debian/ascension-bind_0.0.1-1_amd64.changes 
b/debian/ascension-bind_0.0.1-1_amd64.changes
index 80859df..37e4223 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:
- f304ead06d03cce926e758b3fe5a4c80639a4b3b 904 ascension-bind_0.0.1-1.dsc
+ 45744c9ab3fb9b7034ab5d476c02e2b49a770dca 904 ascension-bind_0.0.1-1.dsc
  0a7953cf5bf7616ff1c2171789fab736e199e769 3860 ascension-bind_0.0.1.orig.tar.xz
- a686d17f8465cc2026ad46eeef5cce5533269a4e 4180 
ascension-bind_0.0.1-1.debian.tar.xz
- aa68085b816843af80fcf9a9cdaea2cac3647fd9 5637 
ascension-bind_0.0.1-1_amd64.buildinfo
- a0988edb04d1ab3d93428c7eaf3603921abc40cd 3756 ascension-bind_0.0.1-1_amd64.deb
+ b0c8087f93aed949745d85cc4677c13ac038dc7d 4192 
ascension-bind_0.0.1-1.debian.tar.xz
+ 67a184ba48a97439b0c33a03a8a0f42865b17b94 5637 
ascension-bind_0.0.1-1_amd64.buildinfo
+ 24d969f75abbc554991b19d3f8dc78b339b2bd46 3776 ascension-bind_0.0.1-1_amd64.deb
 Checksums-Sha256:
- 5df8300e07205634a01b7d1faf6659a34f30ba252186e373eec10042e8f03bb2 904 
ascension-bind_0.0.1-1.dsc
+ 87a87ff3f0a7916e382de17449d11c9f8582e50104093893ea8828d0ebb264f3 904 
ascension-bind_0.0.1-1.dsc
  e21b0672b6d9932d03541c13e9350546542d9dd86373bf6bc78f61a1c79586b4 3860 
ascension-bind_0.0.1.orig.tar.xz
- 0cfa0529708c3840ad9d33698873007710d71f0ba2ec0e59ebdad7e4dde4dd73 4180 
ascension-bind_0.0.1-1.debian.tar.xz
- fe3900255440f7da4ecc39fa1d191bb256a222e00ddb53567670660067ae0cf0 5637 
ascension-bind_0.0.1-1_amd64.buildinfo
- 632535553f409516e82d49a9b892dfac0fbc1edecb68bee810adb39f2ea75a66 3756 
ascension-bind_0.0.1-1_amd64.deb
+ 7b22ee4235add7969f8962ab35d33f94a12f882507fae38c6fb612739ce32dea 4192 
ascension-bind_0.0.1-1.debian.tar.xz
+ fee9d1eb8ae0b24477196b74f9fc55e55ed3d9dd36829f326dbe218f11b84bac 5637 
ascension-bind_0.0.1-1_amd64.buildinfo
+ ea49c18b89ea531e43a6655a3af3b59a1681533e9912c267b9961923460a68a5 3776 
ascension-bind_0.0.1-1_amd64.deb
 Files:
- c2f310f958d116679940892df5890693 904 net optional ascension-bind_0.0.1-1.dsc
+ e508732ee619ed8cbc92ae96236daa5b 904 net optional ascension-bind_0.0.1-1.dsc
  3e51a0f28a46eff44e0366ab9185b840 3860 net optional 
ascension-bind_0.0.1.orig.tar.xz
- d43653349a7a7c1a6e0e6da0179dc459 4180 net optional 
ascension-bind_0.0.1-1.debian.tar.xz
- a7b47878b2584eb1bf60ac1afb367583 5637 net optional 
ascension-bind_0.0.1-1_amd64.buildinfo
- 7e66d0c35312f3ce13333690f0a6a43b 3756 net optional 
ascension-bind_0.0.1-1_amd64.deb
+ e42197047fde64946f62fadd4755cfff 4192 net optional 
ascension-bind_0.0.1-1.debian.tar.xz
+ 2635194f3989e8f89a80897434785806 5637 net optional 
ascension-bind_0.0.1-1_amd64.buildinfo
+ bd665eae331b4f115f533ebe0f82104e 3776 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 4b0bdcd..d831c66 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
diff --git a/requirements.txt b/requirements.txt
index 62447a4..83ab749 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,9 +1,9 @@
-# This file is in the public domain
-coverage==4.5.2
+base32-crockford==0.3.0
+coverage==4.5.3
 daemon==1.2
 daemonize==2.5.0
 dnspython==1.16.0
 docopt==0.6.2
 mock==2.0.0
-pbr==5.1.1
+pbr==5.1.3
 six==1.12.0

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



reply via email to

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