aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrexxnor <rexxnor+gnunet@brief.li>2019-06-10 00:55:11 +0200
committerrexxnor <rexxnor+gnunet@brief.li>2019-06-10 00:55:11 +0200
commit50158aef45f25f9eb7c8897a7f3f08ad1a54ccff (patch)
treee33d1028497e965fbc241b76c407722c47fd8bb6
parent745b65a8a97653e42674892d161e27c4987aca36 (diff)
downloadascension-50158aef45f25f9eb7c8897a7f3f08ad1a54ccff.tar.gz
ascension-50158aef45f25f9eb7c8897a7f3f08ad1a54ccff.zip
fixed small GNS2DNS bug
-rw-r--r--ascension-0.11.5.tar.gzbin11025 -> 11038 bytes
-rw-r--r--ascension/ascension.py7
-rw-r--r--deb_dist/ascension-0.11.5/ascension/ascension.py7
-rw-r--r--deb_dist/ascension-0.11.5/debian/changelog2
-rw-r--r--deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/md5sums4
-rw-r--r--deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/changelog.Debian.gzbin163 -> 162 bytes
-rwxr-xr-xdeb_dist/ascension-0.11.5/debian/rules2
-rw-r--r--deb_dist/ascension_0.11.5-1.debian.tar.xzbin1672 -> 1668 bytes
-rw-r--r--deb_dist/ascension_0.11.5-1.dsc12
-rw-r--r--deb_dist/ascension_0.11.5-1_amd64.buildinfo16
-rw-r--r--deb_dist/ascension_0.11.5-1_amd64.changes32
-rw-r--r--deb_dist/ascension_0.11.5-1_source.buildinfo10
-rw-r--r--deb_dist/ascension_0.11.5-1_source.changes26
-rw-r--r--deb_dist/ascension_0.11.5.orig.tar.gzbin11025 -> 11038 bytes
-rw-r--r--deb_dist/python3-ascension_0.11.5-1_all.debbin11790 -> 11796 bytes
15 files changed, 62 insertions, 56 deletions
diff --git a/ascension-0.11.5.tar.gz b/ascension-0.11.5.tar.gz
index dfdfda6..6a05fc5 100644
--- a/ascension-0.11.5.tar.gz
+++ b/ascension-0.11.5.tar.gz
Binary files differ
diff --git a/ascension/ascension.py b/ascension/ascension.py
index 9e59a93..5f3b4cb 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -399,19 +399,21 @@ class Ascender():
399 if nameserver[-1] == ".": 399 if nameserver[-1] == ".":
400 nameserver = nameserver[:-1] 400 nameserver = nameserver[:-1]
401 if str(value)[-1] == ".": 401 if str(value)[-1] == ".":
402 if label == "@":
403 return (None, None, None)
402 # FQDN provided 404 # FQDN provided
403 if value.endswith(".%s." % zonename): 405 if value.endswith(".%s." % zonename):
404 # in bailiwick 406 # in bailiwick
405 value = self.resolve_glue(record.target) 407 value = self.resolve_glue(record.target)
406 else: 408 else:
407 # out of bailiwick 409 # out of bailiwick
408 value = '%s.%s@%s' % (str(label), zonename, nameserver) 410 value = '%s.%s@%s' % (str(label), zonename, nameserver)
409 else: 411 else:
410 # Name is relative to zone, must be in bailiwick 412 # Name is relative to zone, must be in bailiwick
411 value = self.resolve_glue(record.target) 413 value = self.resolve_glue(record.target)
412 if not value: 414 if not value:
413 if label.startswith("@"): 415 if label.startswith("@"):
414 value = '%s@%s.%s' % (self.domain, 416 value = '%s@%s.%s' % (zonename,
415 record.target, 417 record.target,
416 self.domain) 418 self.domain)
417 else: 419 else:
@@ -634,6 +636,7 @@ class Ascender():
634 pkey = self.create_zone_and_get_pkey(zonename) 636 pkey = self.create_zone_and_get_pkey(zonename)
635 self.subzonedict[zonename] = (pkey, ttl) 637 self.subzonedict[zonename] = (pkey, ttl)
636 638
639
637 # Check if a delegated zone is available in GNS as per NS record 640 # Check if a delegated zone is available in GNS as per NS record
638 # Adds NS records that contain "gns--pkey--" to dictionary 641 # Adds NS records that contain "gns--pkey--" to dictionary
639 nsrecords = self.zone.iterate_rdatasets(dns.rdatatype.NS) 642 nsrecords = self.zone.iterate_rdatasets(dns.rdatatype.NS)
diff --git a/deb_dist/ascension-0.11.5/ascension/ascension.py b/deb_dist/ascension-0.11.5/ascension/ascension.py
index 9e59a93..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():
399 if nameserver[-1] == ".": 399 if nameserver[-1] == ".":
400 nameserver = nameserver[:-1] 400 nameserver = nameserver[:-1]
401 if str(value)[-1] == ".": 401 if str(value)[-1] == ".":
402 if label == "@":
403 return (None, None, None)
402 # FQDN provided 404 # FQDN provided
403 if value.endswith(".%s." % zonename): 405 if value.endswith(".%s." % zonename):
404 # in bailiwick 406 # in bailiwick
405 value = self.resolve_glue(record.target) 407 value = self.resolve_glue(record.target)
406 else: 408 else:
407 # out of bailiwick 409 # out of bailiwick
408 value = '%s.%s@%s' % (str(label), zonename, nameserver) 410 value = '%s.%s@%s' % (str(label), zonename, nameserver)
409 else: 411 else:
410 # Name is relative to zone, must be in bailiwick 412 # Name is relative to zone, must be in bailiwick
411 value = self.resolve_glue(record.target) 413 value = self.resolve_glue(record.target)
412 if not value: 414 if not value:
413 if label.startswith("@"): 415 if label.startswith("@"):
414 value = '%s@%s.%s' % (self.domain, 416 value = '%s@%s.%s' % (zonename,
415 record.target, 417 record.target,
416 self.domain) 418 self.domain)
417 else: 419 else:
@@ -634,6 +636,7 @@ class Ascender():
634 pkey = self.create_zone_and_get_pkey(zonename) 636 pkey = self.create_zone_and_get_pkey(zonename)
635 self.subzonedict[zonename] = (pkey, ttl) 637 self.subzonedict[zonename] = (pkey, ttl)
636 638
639
637 # Check if a delegated zone is available in GNS as per NS record 640 # Check if a delegated zone is available in GNS as per NS record
638 # Adds NS records that contain "gns--pkey--" to dictionary 641 # Adds NS records that contain "gns--pkey--" to dictionary
639 nsrecords = self.zone.iterate_rdatasets(dns.rdatatype.NS) 642 nsrecords = self.zone.iterate_rdatasets(dns.rdatatype.NS)
diff --git a/deb_dist/ascension-0.11.5/debian/changelog b/deb_dist/ascension-0.11.5/debian/changelog
index a331b3a..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
2 2
3 * source package automatically created by stdeb 0.8.5 3 * source package automatically created by stdeb 0.8.5
4 4
5 -- rexxnor <rexxnor+gnunet@brief.li> Thu, 06 Jun 2019 19:42:28 +0000 5 -- rexxnor <rexxnor+gnunet@brief.li> 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 cdbb584..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
5d41d8cd98f00b204e9800998ecf8427e usr/lib/python3/dist-packages/ascension-0.11.5.egg-info/requires.txt 5d41d8cd98f00b204e9800998ecf8427e usr/lib/python3/dist-packages/ascension-0.11.5.egg-info/requires.txt
6e616e4373e7b199db038fd8e938a3188 usr/lib/python3/dist-packages/ascension-0.11.5.egg-info/top_level.txt 6e616e4373e7b199db038fd8e938a3188 usr/lib/python3/dist-packages/ascension-0.11.5.egg-info/top_level.txt
7d41d8cd98f00b204e9800998ecf8427e usr/lib/python3/dist-packages/ascension/__init__.py 7d41d8cd98f00b204e9800998ecf8427e usr/lib/python3/dist-packages/ascension/__init__.py
8010101d302b9bf9ead10e3abcd3da06d usr/lib/python3/dist-packages/ascension/ascension.py 8aaf97781698b77744d5e82c2f56d3990 usr/lib/python3/dist-packages/ascension/ascension.py
9de060b4ca299c6460ff508aed915526b usr/man/man1/ascension.1 9de060b4ca299c6460ff508aed915526b usr/man/man1/ascension.1
10ffdaa2aece10c03d37f918814006f3e8 usr/share/doc/python3-ascension/changelog.Debian.gz 10679130fdb23533e4a6a77f7fcdbbfe13 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 9bc3c6a..55c00b8 100644
--- 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
Binary files differ
diff --git a/deb_dist/ascension-0.11.5/debian/rules b/deb_dist/ascension-0.11.5/debian/rules
index d461281..0c8110b 100755
--- a/deb_dist/ascension-0.11.5/debian/rules
+++ b/deb_dist/ascension-0.11.5/debian/rules
@@ -1,7 +1,7 @@
1#!/usr/bin/make -f 1#!/usr/bin/make -f
2 2
3# This file was automatically generated by stdeb 0.8.5 at 3# This file was automatically generated by stdeb 0.8.5 at
4# Thu, 06 Jun 2019 19:42:28 +0000 4# Sun, 09 Jun 2019 22:53:18 +0000
5 5
6%: 6%:
7 dh $@ --with python3 --buildsystem=python_distutils 7 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 d2fdf66..2819b66 100644
--- a/deb_dist/ascension_0.11.5-1.debian.tar.xz
+++ b/deb_dist/ascension_0.11.5-1.debian.tar.xz
Binary files differ
diff --git a/deb_dist/ascension_0.11.5-1.dsc b/deb_dist/ascension_0.11.5-1.dsc
index e6c96f3..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)
9Package-List: 9Package-List:
10 python3-ascension deb python optional arch=all 10 python3-ascension deb python optional arch=all
11Checksums-Sha1: 11Checksums-Sha1:
12 cc6f1d1a8212d096f3a67ead352ab289331ce1f2 11025 ascension_0.11.5.orig.tar.gz 12 82c1e17024c599387c7238a9c05f01cce17c769b 11038 ascension_0.11.5.orig.tar.gz
13 2909f640b7ea374fe3c3fb2c4a0221ea85380b5f 1672 ascension_0.11.5-1.debian.tar.xz 13 accb16a27a389cb1aadc343b0ba865c01e9a2c98 1668 ascension_0.11.5-1.debian.tar.xz
14Checksums-Sha256: 14Checksums-Sha256:
15 bdd8f289e9955dc9d06ca9a8e8c6ef3611ab5ddbc9896e7313074c83ff985c34 11025 ascension_0.11.5.orig.tar.gz 15 f21f936c303cd0403260b3621000a94ade839300e4cf22dd4e7644f4f3479e62 11038 ascension_0.11.5.orig.tar.gz
16 300552254bdcd426d9d5dc04f7d14a67b42391838bb65c571ae3a33eb8db498e 1672 ascension_0.11.5-1.debian.tar.xz 16 ccb9f05c100f6ea65318dfad963c9bfa085378e03833102703a51651b2c11697 1668 ascension_0.11.5-1.debian.tar.xz
17Files: 17Files:
18 3e3ff56b2cf59aeaca139740e84337fc 11025 ascension_0.11.5.orig.tar.gz 18 0f665ff382859108057a37aa2f9bd5cf 11038 ascension_0.11.5.orig.tar.gz
19 757f7fefe6063aa5507851a972835ff2 1672 ascension_0.11.5-1.debian.tar.xz 19 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 a4f7290..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
4Architecture: all source 4Architecture: all source
5Version: 0.11.5-1 5Version: 0.11.5-1
6Checksums-Md5: 6Checksums-Md5:
7 645068ca353c4dc9b6514a0c89ff1078 846 ascension_0.11.5-1.dsc 7 d006836b17cfe5fa8b9eb1212ae12001 846 ascension_0.11.5-1.dsc
8 52a78ed44b5a5a8d61daf8370f9ec1ca 11790 python3-ascension_0.11.5-1_all.deb 8 453ed4a0f9fddea44d0e8518ff0bc579 11796 python3-ascension_0.11.5-1_all.deb
9Checksums-Sha1: 9Checksums-Sha1:
10 923003ff06f549137d075cdab4a508374ba86022 846 ascension_0.11.5-1.dsc 10 b61931de054e056f1a8a8793f38853d81119f578 846 ascension_0.11.5-1.dsc
11 d5fac57f142088b493ce61f95f06a6095c7c6bad 11790 python3-ascension_0.11.5-1_all.deb 11 5d458bc9ebebb5f0f2de605a050cdbfa91219717 11796 python3-ascension_0.11.5-1_all.deb
12Checksums-Sha256: 12Checksums-Sha256:
13 dd6c5f22d60b88d26acce9abebd89857e40e4ec107fc1bd145aae9d4299afaa5 846 ascension_0.11.5-1.dsc 13 88687d2a5dd9e76c7982426d2fa3b5082e83136d420c5f874f55c16a29cb0e6b 846 ascension_0.11.5-1.dsc
14 7b02a0cc79d70cb79781aa464631a92b2cd0f4a297b31cfa9da435105814b07f 11790 python3-ascension_0.11.5-1_all.deb 14 9a5c716e947deef8d4cacabbebc6f37ced323a7649aafd8b640692bf341373d7 11796 python3-ascension_0.11.5-1_all.deb
15Build-Origin: Debian 15Build-Origin: Debian
16Build-Architecture: amd64 16Build-Architecture: amd64
17Build-Date: Thu, 06 Jun 2019 19:43:00 +0000 17Build-Date: Sun, 09 Jun 2019 22:54:29 +0000
18Installed-Build-Depends: 18Installed-Build-Depends:
19 autoconf (= 2.69-10), 19 autoconf (= 2.69-10),
20 automake (= 1:1.15-6), 20 automake (= 1:1.15-6),
@@ -177,4 +177,4 @@ Installed-Build-Depends:
177 zlib1g (= 1:1.2.8.dfsg-5) 177 zlib1g (= 1:1.2.8.dfsg-5)
178Environment: 178Environment:
179 DEB_BUILD_OPTIONS="parallel=2" 179 DEB_BUILD_OPTIONS="parallel=2"
180 SOURCE_DATE_EPOCH="1559850148" 180 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 29e6b0e..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 @@
1Format: 1.8 1Format: 1.8
2Date: Thu, 06 Jun 2019 19:42:28 +0000 2Date: Sun, 09 Jun 2019 22:53:18 +0000
3Source: ascension 3Source: ascension
4Binary: python3-ascension 4Binary: python3-ascension
5Architecture: source all 5Architecture: source all
@@ -15,20 +15,20 @@ Changes:
15 . 15 .
16 * source package automatically created by stdeb 0.8.5 16 * source package automatically created by stdeb 0.8.5
17Checksums-Sha1: 17Checksums-Sha1:
18 923003ff06f549137d075cdab4a508374ba86022 846 ascension_0.11.5-1.dsc 18 b61931de054e056f1a8a8793f38853d81119f578 846 ascension_0.11.5-1.dsc
19 cc6f1d1a8212d096f3a67ead352ab289331ce1f2 11025 ascension_0.11.5.orig.tar.gz 19 82c1e17024c599387c7238a9c05f01cce17c769b 11038 ascension_0.11.5.orig.tar.gz
20 2909f640b7ea374fe3c3fb2c4a0221ea85380b5f 1672 ascension_0.11.5-1.debian.tar.xz 20 accb16a27a389cb1aadc343b0ba865c01e9a2c98 1668 ascension_0.11.5-1.debian.tar.xz
21 250ddf8ab458927744c259af8902e5a37b1aa468 5432 ascension_0.11.5-1_amd64.buildinfo 21 690df4dc084260e575be267e893889f8e8944070 5432 ascension_0.11.5-1_amd64.buildinfo
22 d5fac57f142088b493ce61f95f06a6095c7c6bad 11790 python3-ascension_0.11.5-1_all.deb 22 5d458bc9ebebb5f0f2de605a050cdbfa91219717 11796 python3-ascension_0.11.5-1_all.deb
23Checksums-Sha256: 23Checksums-Sha256:
24 dd6c5f22d60b88d26acce9abebd89857e40e4ec107fc1bd145aae9d4299afaa5 846 ascension_0.11.5-1.dsc 24 88687d2a5dd9e76c7982426d2fa3b5082e83136d420c5f874f55c16a29cb0e6b 846 ascension_0.11.5-1.dsc
25 bdd8f289e9955dc9d06ca9a8e8c6ef3611ab5ddbc9896e7313074c83ff985c34 11025 ascension_0.11.5.orig.tar.gz 25 f21f936c303cd0403260b3621000a94ade839300e4cf22dd4e7644f4f3479e62 11038 ascension_0.11.5.orig.tar.gz
26 300552254bdcd426d9d5dc04f7d14a67b42391838bb65c571ae3a33eb8db498e 1672 ascension_0.11.5-1.debian.tar.xz 26 ccb9f05c100f6ea65318dfad963c9bfa085378e03833102703a51651b2c11697 1668 ascension_0.11.5-1.debian.tar.xz
27 4ff913c00e2b003dd9dd3376f477262331f02802c52a95928e14d55fc2163751 5432 ascension_0.11.5-1_amd64.buildinfo 27 671fdcc7ea8bce0497dad584888b7826001f66c78138be3f18c4f557e86f07a1 5432 ascension_0.11.5-1_amd64.buildinfo
28 7b02a0cc79d70cb79781aa464631a92b2cd0f4a297b31cfa9da435105814b07f 11790 python3-ascension_0.11.5-1_all.deb 28 9a5c716e947deef8d4cacabbebc6f37ced323a7649aafd8b640692bf341373d7 11796 python3-ascension_0.11.5-1_all.deb
29Files: 29Files:
30 645068ca353c4dc9b6514a0c89ff1078 846 python optional ascension_0.11.5-1.dsc 30 d006836b17cfe5fa8b9eb1212ae12001 846 python optional ascension_0.11.5-1.dsc
31 3e3ff56b2cf59aeaca139740e84337fc 11025 python optional ascension_0.11.5.orig.tar.gz 31 0f665ff382859108057a37aa2f9bd5cf 11038 python optional ascension_0.11.5.orig.tar.gz
32 757f7fefe6063aa5507851a972835ff2 1672 python optional ascension_0.11.5-1.debian.tar.xz 32 d11120597a3487082590bfe282e06966 1668 python optional ascension_0.11.5-1.debian.tar.xz
33 60d11b44a1f90bbd6b19e4d2dab8ed20 5432 python optional ascension_0.11.5-1_amd64.buildinfo 33 f3a725dc814cb431ae403375cd07bd87 5432 python optional ascension_0.11.5-1_amd64.buildinfo
34 52a78ed44b5a5a8d61daf8370f9ec1ca 11790 python optional python3-ascension_0.11.5-1_all.deb 34 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 76f21a5..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
4Architecture: source 4Architecture: source
5Version: 0.11.5-1 5Version: 0.11.5-1
6Checksums-Md5: 6Checksums-Md5:
7 8346b7d76e624a2127b081e2d1d0aa12 846 ascension_0.11.5-1.dsc 7 7c3452e7181fede761ac46119abc13e7 846 ascension_0.11.5-1.dsc
8Checksums-Sha1: 8Checksums-Sha1:
9 4c3a692da040fb55894ae8db1cb86e34fbb7e539 846 ascension_0.11.5-1.dsc 9 af1b549b42bc4620f5210dd85de5768b1b86558c 846 ascension_0.11.5-1.dsc
10Checksums-Sha256: 10Checksums-Sha256:
11 fcbdfa13dec81778f4d3e041c267e797781e20b642dc4e7a30a594b314775cd0 846 ascension_0.11.5-1.dsc 11 78515d8ee766849fbb8bd7bbc952846b2b4018024f2f451b84e329063832bca0 846 ascension_0.11.5-1.dsc
12Build-Origin: Debian 12Build-Origin: Debian
13Build-Architecture: amd64 13Build-Architecture: amd64
14Build-Date: Thu, 06 Jun 2019 19:42:30 +0000 14Build-Date: Sun, 09 Jun 2019 22:53:25 +0000
15Installed-Build-Depends: 15Installed-Build-Depends:
16 autoconf (= 2.69-10), 16 autoconf (= 2.69-10),
17 automake (= 1:1.15-6), 17 automake (= 1:1.15-6),
@@ -174,4 +174,4 @@ Installed-Build-Depends:
174 zlib1g (= 1:1.2.8.dfsg-5) 174 zlib1g (= 1:1.2.8.dfsg-5)
175Environment: 175Environment:
176 DEB_BUILD_OPTIONS="parallel=2" 176 DEB_BUILD_OPTIONS="parallel=2"
177 SOURCE_DATE_EPOCH="1559850148" 177 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 86172f4..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 @@
1Format: 1.8 1Format: 1.8
2Date: Thu, 06 Jun 2019 19:42:28 +0000 2Date: Sun, 09 Jun 2019 22:53:18 +0000
3Source: ascension 3Source: ascension
4Binary: python3-ascension 4Binary: python3-ascension
5Architecture: source 5Architecture: source
@@ -15,17 +15,17 @@ Changes:
15 . 15 .
16 * source package automatically created by stdeb 0.8.5 16 * source package automatically created by stdeb 0.8.5
17Checksums-Sha1: 17Checksums-Sha1:
18 4c3a692da040fb55894ae8db1cb86e34fbb7e539 846 ascension_0.11.5-1.dsc 18 af1b549b42bc4620f5210dd85de5768b1b86558c 846 ascension_0.11.5-1.dsc
19 cc6f1d1a8212d096f3a67ead352ab289331ce1f2 11025 ascension_0.11.5.orig.tar.gz 19 82c1e17024c599387c7238a9c05f01cce17c769b 11038 ascension_0.11.5.orig.tar.gz
20 fb5e9de99d5ace53675e49969639a49f744aa531 1140 ascension_0.11.5-1.debian.tar.xz 20 71f3809ad03096cca621ab883c78e154173c34bd 1140 ascension_0.11.5-1.debian.tar.xz
21 9c0b4d846772c7555becd17acfb267c72689b134 5163 ascension_0.11.5-1_source.buildinfo 21 44a329e8f51935bc86c48ee24c69ab641cb29fc2 5163 ascension_0.11.5-1_source.buildinfo
22Checksums-Sha256: 22Checksums-Sha256:
23 fcbdfa13dec81778f4d3e041c267e797781e20b642dc4e7a30a594b314775cd0 846 ascension_0.11.5-1.dsc 23 78515d8ee766849fbb8bd7bbc952846b2b4018024f2f451b84e329063832bca0 846 ascension_0.11.5-1.dsc
24 bdd8f289e9955dc9d06ca9a8e8c6ef3611ab5ddbc9896e7313074c83ff985c34 11025 ascension_0.11.5.orig.tar.gz 24 f21f936c303cd0403260b3621000a94ade839300e4cf22dd4e7644f4f3479e62 11038 ascension_0.11.5.orig.tar.gz
25 c0b38b1974e09244725f5480541a15bab413b60b01ef3f6908fa9f3a3efdd694 1140 ascension_0.11.5-1.debian.tar.xz 25 1aed664581b3ba608796ad372af4a39facb25824106d7d6971dba5c93d955301 1140 ascension_0.11.5-1.debian.tar.xz
26 15f5cbececb2b0cd4e9d529163f1d3c5efa07cc1653f48daf62d40f02d8e32a7 5163 ascension_0.11.5-1_source.buildinfo 26 9d41198ece37c9b11565802b9ea4320f64c242ee85c80b4f09d5a1362fb8df84 5163 ascension_0.11.5-1_source.buildinfo
27Files: 27Files:
28 8346b7d76e624a2127b081e2d1d0aa12 846 python optional ascension_0.11.5-1.dsc 28 7c3452e7181fede761ac46119abc13e7 846 python optional ascension_0.11.5-1.dsc
29 3e3ff56b2cf59aeaca139740e84337fc 11025 python optional ascension_0.11.5.orig.tar.gz 29 0f665ff382859108057a37aa2f9bd5cf 11038 python optional ascension_0.11.5.orig.tar.gz
30 c2e94bf4ac46ee3373a6c6bb25fc7c0f 1140 python optional ascension_0.11.5-1.debian.tar.xz 30 c3bd83268804f1999f00edaeb6c4393c 1140 python optional ascension_0.11.5-1.debian.tar.xz
31 e9e4c6fb57f9e31f3077e796130c4ac3 5163 python optional ascension_0.11.5-1_source.buildinfo 31 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 dfdfda6..6a05fc5 100644
--- a/deb_dist/ascension_0.11.5.orig.tar.gz
+++ b/deb_dist/ascension_0.11.5.orig.tar.gz
Binary files 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 0bae818..11c096e 100644
--- a/deb_dist/python3-ascension_0.11.5-1_all.deb
+++ b/deb_dist/python3-ascension_0.11.5-1_all.deb
Binary files differ