gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [ascension] branch master updated (0ed6b9d -> 50158ae)


From: gnunet
Subject: [GNUnet-SVN] [ascension] branch master updated (0ed6b9d -> 50158ae)
Date: Mon, 10 Jun 2019 00:56:33 +0200

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

rexxnor pushed a change to branch master
in repository ascension.

    from 0ed6b9d  updated gitlab ci
     new 333eb14  updated setup.py
     new 745b65a  removed dependency as it is not available as debian package
     new 50158ae  fixed small GNS2DNS bug

The 3 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:
 ascension-0.11.5.tar.gz                            | Bin 11083 -> 11038 bytes
 ascension/ascension.py                             |  13 ++++-----
 deb_dist/ascension-0.11.5/ascension/ascension.py   |  13 ++++-----
 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 1668 -> 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 11083 -> 11038 bytes
 deb_dist/python3-ascension_0.11.5-1_all.deb        | Bin 11830 -> 11796 bytes
 requirements.txt                                   |   1 -
 16 files changed, 62 insertions(+), 69 deletions(-)

diff --git a/ascension-0.11.5.tar.gz b/ascension-0.11.5.tar.gz
index 3a718c0..6a05fc5 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 cd5cb85..5f3b4cb 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -399,19 +399,21 @@ class Ascender():
             if nameserver[-1] == ".":
                 nameserver = nameserver[:-1]
             if str(value)[-1] == ".":
+                if label == "@":
+                    return (None, None, None)
                 # FQDN provided
                 if value.endswith(".%s." % zonename):
                     # in bailiwick
                     value = self.resolve_glue(record.target)
                 else:
-                     # out of bailiwick
+                    # out of bailiwick
                     value = '%s.%s@%s' % (str(label), zonename, nameserver)
             else:
                 # Name is relative to zone, must be in bailiwick
                 value = self.resolve_glue(record.target)
                 if not value:
                     if label.startswith("@"):
-                        value = '%s@%s.%s' % (self.domain,
+                        value = '%s@%s.%s' % (zonename,
                                               record.target,
                                               self.domain)
                     else:
@@ -634,6 +636,7 @@ class Ascender():
                     pkey = self.create_zone_and_get_pkey(zonename)
                     self.subzonedict[zonename] = (pkey, ttl)
 
+
         # Check if a delegated zone is available in GNS as per NS record
         # Adds NS records that contain "gns--pkey--" to dictionary
         nsrecords = self.zone.iterate_rdatasets(dns.rdatatype.NS)
@@ -658,12 +661,6 @@ class Ascender():
             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):
diff --git a/deb_dist/ascension-0.11.5/ascension/ascension.py 
b/deb_dist/ascension-0.11.5/ascension/ascension.py
index cd5cb85..5f3b4cb 100644
--- a/deb_dist/ascension-0.11.5/ascension/ascension.py
+++ b/deb_dist/ascension-0.11.5/ascension/ascension.py
@@ -399,19 +399,21 @@ class Ascender():
             if nameserver[-1] == ".":
                 nameserver = nameserver[:-1]
             if str(value)[-1] == ".":
+                if label == "@":
+                    return (None, None, None)
                 # FQDN provided
                 if value.endswith(".%s." % zonename):
                     # in bailiwick
                     value = self.resolve_glue(record.target)
                 else:
-                     # out of bailiwick
+                    # out of bailiwick
                     value = '%s.%s@%s' % (str(label), zonename, nameserver)
             else:
                 # Name is relative to zone, must be in bailiwick
                 value = self.resolve_glue(record.target)
                 if not value:
                     if label.startswith("@"):
-                        value = '%s@%s.%s' % (self.domain,
+                        value = '%s@%s.%s' % (zonename,
                                               record.target,
                                               self.domain)
                     else:
@@ -634,6 +636,7 @@ class Ascender():
                     pkey = self.create_zone_and_get_pkey(zonename)
                     self.subzonedict[zonename] = (pkey, ttl)
 
+
         # Check if a delegated zone is available in GNS as per NS record
         # Adds NS records that contain "gns--pkey--" to dictionary
         nsrecords = self.zone.iterate_rdatasets(dns.rdatatype.NS)
@@ -658,12 +661,6 @@ class Ascender():
             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):
diff --git a/deb_dist/ascension-0.11.5/debian/changelog 
b/deb_dist/ascension-0.11.5/debian/changelog
index aaaf662..c77a6e7 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>  Thu, 06 Jun 2019 19:24:11 +0000
+ -- rexxnor <address@hidden>  Sun, 09 Jun 2019 22:53:18 +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 33438ef..41e56cd 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
-1f122d6eb5cf8cf24263fd5f4cd7556b  
usr/lib/python3/dist-packages/ascension/ascension.py
+aaf97781698b77744d5e82c2f56d3990  
usr/lib/python3/dist-packages/ascension/ascension.py
 de060b4ca299c6460ff508aed915526b  usr/man/man1/ascension.1
-728f1502b33a93a50a6afc306b4d6f65  
usr/share/doc/python3-ascension/changelog.Debian.gz
+679130fdb23533e4a6a77f7fcdbbfe13  
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 bccc74b..55c00b8 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 ac3c8d6..0c8110b 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
-# Thu, 06 Jun 2019 19:24:11 +0000
+# Sun, 09 Jun 2019 22:53:18 +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 487a655..2819b66 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 8972560..27a8946 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:
- 85bbeb027f10b1377bed75a5a0d16088a7a29aa4 11083 ascension_0.11.5.orig.tar.gz
- 7f0a4eb3289cac9a4292a3505d2ae3825ae5d0ff 1668 ascension_0.11.5-1.debian.tar.xz
+ 82c1e17024c599387c7238a9c05f01cce17c769b 11038 ascension_0.11.5.orig.tar.gz
+ accb16a27a389cb1aadc343b0ba865c01e9a2c98 1668 ascension_0.11.5-1.debian.tar.xz
 Checksums-Sha256:
- cc5044b7b3f1b8a6bbee74120988097170758b641e78c56a33d65ce95fe5cad8 11083 
ascension_0.11.5.orig.tar.gz
- 6e03afb057e0f8bb28c243581c110362e8330bd7042213439fcc599ab5c73f59 1668 
ascension_0.11.5-1.debian.tar.xz
+ f21f936c303cd0403260b3621000a94ade839300e4cf22dd4e7644f4f3479e62 11038 
ascension_0.11.5.orig.tar.gz
+ ccb9f05c100f6ea65318dfad963c9bfa085378e03833102703a51651b2c11697 1668 
ascension_0.11.5-1.debian.tar.xz
 Files:
- 76989ff7fb3ddccaf2cd92526686b2c8 11083 ascension_0.11.5.orig.tar.gz
- 807b6e38531f2aff5dd9d2bfb48532cb 1668 ascension_0.11.5-1.debian.tar.xz
+ 0f665ff382859108057a37aa2f9bd5cf 11038 ascension_0.11.5.orig.tar.gz
+ d11120597a3487082590bfe282e06966 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 067e043..c2eca68 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:
- eff51dce10c8e8c03141e4eab05c0359 846 ascension_0.11.5-1.dsc
- f92c3fbe6aa31ede0c9194cd0359a73c 11830 python3-ascension_0.11.5-1_all.deb
+ d006836b17cfe5fa8b9eb1212ae12001 846 ascension_0.11.5-1.dsc
+ 453ed4a0f9fddea44d0e8518ff0bc579 11796 python3-ascension_0.11.5-1_all.deb
 Checksums-Sha1:
- 31ed843b064df8924884d5ee6593069bc2f8ca74 846 ascension_0.11.5-1.dsc
- 727406c4ec24f4cf1194f6c321a2835bf3085512 11830 
python3-ascension_0.11.5-1_all.deb
+ b61931de054e056f1a8a8793f38853d81119f578 846 ascension_0.11.5-1.dsc
+ 5d458bc9ebebb5f0f2de605a050cdbfa91219717 11796 
python3-ascension_0.11.5-1_all.deb
 Checksums-Sha256:
- 5b87bc0bd53615b2a012047a360fae17f1f82536ce88557d89f86aee2b8e8147 846 
ascension_0.11.5-1.dsc
- be44525071f9e8eb53e28e237e54d659e253db7d948d9ddbf89a6980150fc330 11830 
python3-ascension_0.11.5-1_all.deb
+ 88687d2a5dd9e76c7982426d2fa3b5082e83136d420c5f874f55c16a29cb0e6b 846 
ascension_0.11.5-1.dsc
+ 9a5c716e947deef8d4cacabbebc6f37ced323a7649aafd8b640692bf341373d7 11796 
python3-ascension_0.11.5-1_all.deb
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Thu, 06 Jun 2019 19:24:48 +0000
+Build-Date: Sun, 09 Jun 2019 22:54:29 +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="1559849051"
+ SOURCE_DATE_EPOCH="1560120798"
diff --git a/deb_dist/ascension_0.11.5-1_amd64.changes 
b/deb_dist/ascension_0.11.5-1_amd64.changes
index b821a01..7217aba 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: Thu, 06 Jun 2019 19:24:11 +0000
+Date: Sun, 09 Jun 2019 22:53:18 +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:
- 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
+ b61931de054e056f1a8a8793f38853d81119f578 846 ascension_0.11.5-1.dsc
+ 82c1e17024c599387c7238a9c05f01cce17c769b 11038 ascension_0.11.5.orig.tar.gz
+ accb16a27a389cb1aadc343b0ba865c01e9a2c98 1668 ascension_0.11.5-1.debian.tar.xz
+ 690df4dc084260e575be267e893889f8e8944070 5432 
ascension_0.11.5-1_amd64.buildinfo
+ 5d458bc9ebebb5f0f2de605a050cdbfa91219717 11796 
python3-ascension_0.11.5-1_all.deb
 Checksums-Sha256:
- 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
+ 88687d2a5dd9e76c7982426d2fa3b5082e83136d420c5f874f55c16a29cb0e6b 846 
ascension_0.11.5-1.dsc
+ f21f936c303cd0403260b3621000a94ade839300e4cf22dd4e7644f4f3479e62 11038 
ascension_0.11.5.orig.tar.gz
+ ccb9f05c100f6ea65318dfad963c9bfa085378e03833102703a51651b2c11697 1668 
ascension_0.11.5-1.debian.tar.xz
+ 671fdcc7ea8bce0497dad584888b7826001f66c78138be3f18c4f557e86f07a1 5432 
ascension_0.11.5-1_amd64.buildinfo
+ 9a5c716e947deef8d4cacabbebc6f37ced323a7649aafd8b640692bf341373d7 11796 
python3-ascension_0.11.5-1_all.deb
 Files:
- 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
+ d006836b17cfe5fa8b9eb1212ae12001 846 python optional ascension_0.11.5-1.dsc
+ 0f665ff382859108057a37aa2f9bd5cf 11038 python optional 
ascension_0.11.5.orig.tar.gz
+ d11120597a3487082590bfe282e06966 1668 python optional 
ascension_0.11.5-1.debian.tar.xz
+ f3a725dc814cb431ae403375cd07bd87 5432 python optional 
ascension_0.11.5-1_amd64.buildinfo
+ 453ed4a0f9fddea44d0e8518ff0bc579 11796 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 1ba8956..f08e854 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:
- ba8a9816680af7ce504f6fd1d90a797b 846 ascension_0.11.5-1.dsc
+ 7c3452e7181fede761ac46119abc13e7 846 ascension_0.11.5-1.dsc
 Checksums-Sha1:
- e06e7aa26108af4d7ab17e01f89d3d959d1a5f39 846 ascension_0.11.5-1.dsc
+ af1b549b42bc4620f5210dd85de5768b1b86558c 846 ascension_0.11.5-1.dsc
 Checksums-Sha256:
- 4405daf4ac41ad1a1baa06b60c82cb2baaabd0ede4a305e26de09552606630eb 846 
ascension_0.11.5-1.dsc
+ 78515d8ee766849fbb8bd7bbc952846b2b4018024f2f451b84e329063832bca0 846 
ascension_0.11.5-1.dsc
 Build-Origin: Debian
 Build-Architecture: amd64
-Build-Date: Thu, 06 Jun 2019 19:24:13 +0000
+Build-Date: Sun, 09 Jun 2019 22:53:25 +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="1559849051"
+ SOURCE_DATE_EPOCH="1560120798"
diff --git a/deb_dist/ascension_0.11.5-1_source.changes 
b/deb_dist/ascension_0.11.5-1_source.changes
index 05b5284..0783eb4 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: Thu, 06 Jun 2019 19:24:11 +0000
+Date: Sun, 09 Jun 2019 22:53:18 +0000
 Source: ascension
 Binary: python3-ascension
 Architecture: source
@@ -15,17 +15,17 @@ Changes:
  .
    * source package automatically created by stdeb 0.8.5
 Checksums-Sha1:
- 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
+ af1b549b42bc4620f5210dd85de5768b1b86558c 846 ascension_0.11.5-1.dsc
+ 82c1e17024c599387c7238a9c05f01cce17c769b 11038 ascension_0.11.5.orig.tar.gz
+ 71f3809ad03096cca621ab883c78e154173c34bd 1140 ascension_0.11.5-1.debian.tar.xz
+ 44a329e8f51935bc86c48ee24c69ab641cb29fc2 5163 
ascension_0.11.5-1_source.buildinfo
 Checksums-Sha256:
- 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
+ 78515d8ee766849fbb8bd7bbc952846b2b4018024f2f451b84e329063832bca0 846 
ascension_0.11.5-1.dsc
+ f21f936c303cd0403260b3621000a94ade839300e4cf22dd4e7644f4f3479e62 11038 
ascension_0.11.5.orig.tar.gz
+ 1aed664581b3ba608796ad372af4a39facb25824106d7d6971dba5c93d955301 1140 
ascension_0.11.5-1.debian.tar.xz
+ 9d41198ece37c9b11565802b9ea4320f64c242ee85c80b4f09d5a1362fb8df84 5163 
ascension_0.11.5-1_source.buildinfo
 Files:
- 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
+ 7c3452e7181fede761ac46119abc13e7 846 python optional ascension_0.11.5-1.dsc
+ 0f665ff382859108057a37aa2f9bd5cf 11038 python optional 
ascension_0.11.5.orig.tar.gz
+ c3bd83268804f1999f00edaeb6c4393c 1140 python optional 
ascension_0.11.5-1.debian.tar.xz
+ 22cc806e69783fce9b97c3648efbe88e 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 3a718c0..6a05fc5 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 3e7b16e..11c096e 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/requirements.txt b/requirements.txt
index 83ab749..00735b5 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,3 @@
-base32-crockford==0.3.0
 coverage==4.5.3
 daemon==1.2
 daemonize==2.5.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]