aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrexxnor <rexxnor+gnunet@brief.li>2019-06-04 18:35:34 +0200
committerrexxnor <rexxnor+gnunet@brief.li>2019-06-04 18:35:34 +0200
commit05839dbf8f496051cd8d794dab4098c47039eccb (patch)
tree2b0263b5562a339097bb7cb2baa7ee2dc9a4ca07
parent4c6bafacfe67330fe25d06abde28020421173a24 (diff)
downloadascension-05839dbf8f496051cd8d794dab4098c47039eccb.tar.gz
ascension-05839dbf8f496051cd8d794dab4098c47039eccb.zip
fixed a major GNS2DNS bug that added a lot of false records
-rw-r--r--ascension-0.11.5.tar.gzbin11056 -> 11061 bytes
-rw-r--r--ascension/ascension.py4
-rw-r--r--deb_dist/ascension-0.11.5/ascension/ascension.py4
-rw-r--r--deb_dist/ascension-0.11.5/debian/changelog2
-rw-r--r--deb_dist/ascension-0.11.5/debian/copyright21
-rw-r--r--deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/control2
-rw-r--r--deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/md5sums5
-rw-r--r--deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/changelog.Debian.gzbin161 -> 162 bytes
-rw-r--r--deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/copyright21
-rwxr-xr-xdeb_dist/ascension-0.11.5/debian/rules2
-rw-r--r--deb_dist/ascension_0.11.5-1.debian.tar.xzbin1892 -> 1672 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.gzbin11056 -> 11061 bytes
-rw-r--r--deb_dist/python3-ascension_0.11.5-1_all.debbin12114 -> 11816 bytes
18 files changed, 57 insertions, 100 deletions
diff --git a/ascension-0.11.5.tar.gz b/ascension-0.11.5.tar.gz
index 532cbf7..ef7805d 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 c49284c..681e3c7 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -397,14 +397,14 @@ class Ascender():
397 nameserver = str(record.target) 397 nameserver = str(record.target)
398 if nameserver[-1] == ".": 398 if nameserver[-1] == ".":
399 nameserver = nameserver[:-1] 399 nameserver = nameserver[:-1]
400 if value[-1] == ".": 400 if str(value)[-1] == ".":
401 # FQDN provided 401 # FQDN provided
402 if value.endswith(".%s." % zonename): 402 if value.endswith(".%s." % zonename):
403 # in bailiwick 403 # in bailiwick
404 value = self.resolve_glue(record.target) 404 value = self.resolve_glue(record.target)
405 else: 405 else:
406 # out of bailiwick 406 # out of bailiwick
407 value = '%s@%s' % (zonename, nameserver) 407 value = '%s.%s@%s' % (str(label), zonename, nameserver)
408 else: 408 else:
409 # Name is relative to zone, must be in bailiwick 409 # Name is relative to zone, must be in bailiwick
410 value = self.resolve_glue(record.target) 410 value = self.resolve_glue(record.target)
diff --git a/deb_dist/ascension-0.11.5/ascension/ascension.py b/deb_dist/ascension-0.11.5/ascension/ascension.py
index c49284c..681e3c7 100644
--- a/deb_dist/ascension-0.11.5/ascension/ascension.py
+++ b/deb_dist/ascension-0.11.5/ascension/ascension.py
@@ -397,14 +397,14 @@ class Ascender():
397 nameserver = str(record.target) 397 nameserver = str(record.target)
398 if nameserver[-1] == ".": 398 if nameserver[-1] == ".":
399 nameserver = nameserver[:-1] 399 nameserver = nameserver[:-1]
400 if value[-1] == ".": 400 if str(value)[-1] == ".":
401 # FQDN provided 401 # FQDN provided
402 if value.endswith(".%s." % zonename): 402 if value.endswith(".%s." % zonename):
403 # in bailiwick 403 # in bailiwick
404 value = self.resolve_glue(record.target) 404 value = self.resolve_glue(record.target)
405 else: 405 else:
406 # out of bailiwick 406 # out of bailiwick
407 value = '%s@%s' % (zonename, nameserver) 407 value = '%s.%s@%s' % (str(label), zonename, nameserver)
408 else: 408 else:
409 # Name is relative to zone, must be in bailiwick 409 # Name is relative to zone, must be in bailiwick
410 value = self.resolve_glue(record.target) 410 value = self.resolve_glue(record.target)
diff --git a/deb_dist/ascension-0.11.5/debian/changelog b/deb_dist/ascension-0.11.5/debian/changelog
index ad7d11f..bc34a4e 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> Mon, 03 Jun 2019 12:17:03 +0000 5 -- rexxnor <rexxnor+gnunet@brief.li> Tue, 04 Jun 2019 16:33:58 +0000
diff --git a/deb_dist/ascension-0.11.5/debian/copyright b/deb_dist/ascension-0.11.5/debian/copyright
deleted file mode 100644
index e02fffd..0000000
--- a/deb_dist/ascension-0.11.5/debian/copyright
+++ /dev/null
@@ -1,21 +0,0 @@
1Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2Upstream-Name: python3-ascension
3Source: <https://git.gnunet.org/ascension.git/>
4
5Files: *
6Copyright: 2019 GNUnet e.V.
7License: AGPL-3.0
8 Source: python3-ascension
9 Section: contrib
10 Priority: optional
11 Maintainer: rexxnor <rexxnor+gnunet@brief.li>
12 Build-Depends: debhelper (>= 9), python3-ascension, bind9
13 Standards-Version: 3.9.8
14 Homepage: https://git.gnunet.org/ascension.git/
15
16 Package: ascension-bind
17 Architecture: any
18 Depends: ${shlibs:Depends}, ${misc:Depends}
19 Description: Tool to migrate DNS Zones to the GNU Name System
20 Tool to easily migrate existing DNS Zones into the GNU Name System using
21 incremental zone transfers (AXFR/IXFR).
diff --git a/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/control b/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/control
index 69a1679..35dcbaf 100644
--- a/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/control
+++ b/deb_dist/ascension-0.11.5/debian/python3-ascension/DEBIAN/control
@@ -3,7 +3,7 @@ Source: ascension
3Version: 0.11.5-1 3Version: 0.11.5-1
4Architecture: all 4Architecture: all
5Maintainer: rexxnor <rexxnor+gnunet@brief.li> 5Maintainer: rexxnor <rexxnor+gnunet@brief.li>
6Installed-Size: 62 6Installed-Size: 61
7Depends: python3-coverage, python3-dnspython, python3-docopt, python3-mock, python3-pbr, python3-six, python3:any (>= 3.3.2-2~) 7Depends: python3-coverage, python3-dnspython, python3-docopt, python3-mock, python3-pbr, python3-six, python3:any (>= 3.3.2-2~)
8Section: python 8Section: python
9Priority: optional 9Priority: optional
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 0625ee7..d7167de 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,7 +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
8e64a2e369d0fa15c15625f1b383dba1a usr/lib/python3/dist-packages/ascension/ascension.py 86333530ffe71784c28228d4e3d3d1654 usr/lib/python3/dist-packages/ascension/ascension.py
9de060b4ca299c6460ff508aed915526b usr/man/man1/ascension.1 9de060b4ca299c6460ff508aed915526b usr/man/man1/ascension.1
103fde32fec7c26bfb692fd5795fe5bae8 usr/share/doc/python3-ascension/changelog.Debian.gz 1002e64d8d9b8e4d59cc55977c476498c6 usr/share/doc/python3-ascension/changelog.Debian.gz
1142cbfd228642e598041a4f8583b17259 usr/share/doc/python3-ascension/copyright
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 87db07f..fcf2029 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/python3-ascension/usr/share/doc/python3-ascension/copyright b/deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/copyright
deleted file mode 100644
index e02fffd..0000000
--- a/deb_dist/ascension-0.11.5/debian/python3-ascension/usr/share/doc/python3-ascension/copyright
+++ /dev/null
@@ -1,21 +0,0 @@
1Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2Upstream-Name: python3-ascension
3Source: <https://git.gnunet.org/ascension.git/>
4
5Files: *
6Copyright: 2019 GNUnet e.V.
7License: AGPL-3.0
8 Source: python3-ascension
9 Section: contrib
10 Priority: optional
11 Maintainer: rexxnor <rexxnor+gnunet@brief.li>
12 Build-Depends: debhelper (>= 9), python3-ascension, bind9
13 Standards-Version: 3.9.8
14 Homepage: https://git.gnunet.org/ascension.git/
15
16 Package: ascension-bind
17 Architecture: any
18 Depends: ${shlibs:Depends}, ${misc:Depends}
19 Description: Tool to migrate DNS Zones to the GNU Name System
20 Tool to easily migrate existing DNS Zones into the GNU Name System using
21 incremental zone transfers (AXFR/IXFR).
diff --git a/deb_dist/ascension-0.11.5/debian/rules b/deb_dist/ascension-0.11.5/debian/rules
index 49ae69d..72eade8 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# Mon, 03 Jun 2019 12:17:03 +0000 4# Tue, 04 Jun 2019 16:33:58 +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 750e05f..0d31aa3 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 bcd6135..a080658 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 c505f4a33efadcccaad83a4880217a76bb7fd0f1 11056 ascension_0.11.5.orig.tar.gz 12 6645452d19d03f2296824f4870c292c068d105ee 11061 ascension_0.11.5.orig.tar.gz
13 a28cc1cb517b7ec9717da89e97a4111b1c78aa85 1892 ascension_0.11.5-1.debian.tar.xz 13 743623400f8a42e95e3c64744fa11b2f4ca3e858 1672 ascension_0.11.5-1.debian.tar.xz
14Checksums-Sha256: 14Checksums-Sha256:
15 aff6025d7f35676701738602560c574e253bb248a18915c654b32325898af33e 11056 ascension_0.11.5.orig.tar.gz 15 0297719d0f2a9184660b58475bd33189f6dcde10ef9be22ca2bc8cc4952782d2 11061 ascension_0.11.5.orig.tar.gz
16 a2299ad9433793774d27459963d1a32bdda8ea10ba37facdfbc47be15bb4d953 1892 ascension_0.11.5-1.debian.tar.xz 16 702bdfa0583d91e605f815403faaccef018fdc92fa2c4830c9a3431d34566f9b 1672 ascension_0.11.5-1.debian.tar.xz
17Files: 17Files:
18 278f98a45d3dbf582561088563b952cc 11056 ascension_0.11.5.orig.tar.gz 18 174806fad05171d995d67daad4603cae 11061 ascension_0.11.5.orig.tar.gz
19 1cf08613f9b2be80a571f025e4c67081 1892 ascension_0.11.5-1.debian.tar.xz 19 201b4bd7cbcddc8ced71b460eef6a598 1672 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 4e14ba4..d53f1eb 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 be1f8410a8604afce7d5350234d136cc 846 ascension_0.11.5-1.dsc 7 74b89d12e9d3ecf3674cec4ae6845d29 846 ascension_0.11.5-1.dsc
8 5bf09d7aa539743c9853f5f9c19db19d 12114 python3-ascension_0.11.5-1_all.deb 8 80e7563f063ff630bbcf157d38a01162 11816 python3-ascension_0.11.5-1_all.deb
9Checksums-Sha1: 9Checksums-Sha1:
10 d92fd96995f4537621f08066725107e60e4651d5 846 ascension_0.11.5-1.dsc 10 bb41b6cf44af1c428790f371b286231dd9821c7f 846 ascension_0.11.5-1.dsc
11 d187b4a7dd70ed77be4734ef34879d6ad8cfb0b6 12114 python3-ascension_0.11.5-1_all.deb 11 44cebafe774920d988013a9cdf5dbb2628202143 11816 python3-ascension_0.11.5-1_all.deb
12Checksums-Sha256: 12Checksums-Sha256:
13 aec93f91b3faae23b75161a1e19164e01ef06cba8de3c03d13d9e335e82c4ade 846 ascension_0.11.5-1.dsc 13 6fced0b8e9966bd7104022b59366c69b0a5deb659527c5520c1b73406f24cf55 846 ascension_0.11.5-1.dsc
14 78c65668a7bfe4b52fee9fd84baa68af2410fe3430c8ed457241036971dfcdd0 12114 python3-ascension_0.11.5-1_all.deb 14 8ffd300c8d4bdaf0fa372a0e47c6068df1d4b059753f7dc331a11077b210f3a9 11816 python3-ascension_0.11.5-1_all.deb
15Build-Origin: Debian 15Build-Origin: Debian
16Build-Architecture: amd64 16Build-Architecture: amd64
17Build-Date: Mon, 03 Jun 2019 12:18:01 +0000 17Build-Date: Tue, 04 Jun 2019 16:34:42 +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="1559564223" 180 SOURCE_DATE_EPOCH="1559666038"
diff --git a/deb_dist/ascension_0.11.5-1_amd64.changes b/deb_dist/ascension_0.11.5-1_amd64.changes
index cc260aa..dc0417f 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: Mon, 03 Jun 2019 12:17:03 +0000 2Date: Tue, 04 Jun 2019 16:33:58 +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 d92fd96995f4537621f08066725107e60e4651d5 846 ascension_0.11.5-1.dsc 18 bb41b6cf44af1c428790f371b286231dd9821c7f 846 ascension_0.11.5-1.dsc
19 c505f4a33efadcccaad83a4880217a76bb7fd0f1 11056 ascension_0.11.5.orig.tar.gz 19 6645452d19d03f2296824f4870c292c068d105ee 11061 ascension_0.11.5.orig.tar.gz
20 a28cc1cb517b7ec9717da89e97a4111b1c78aa85 1892 ascension_0.11.5-1.debian.tar.xz 20 743623400f8a42e95e3c64744fa11b2f4ca3e858 1672 ascension_0.11.5-1.debian.tar.xz
21 02abf5f2fa288105697a6335697cfbbeba9cfbb0 5432 ascension_0.11.5-1_amd64.buildinfo 21 e0e3b097aa851a7d9bf359fcc75aed46d21c7396 5432 ascension_0.11.5-1_amd64.buildinfo
22 d187b4a7dd70ed77be4734ef34879d6ad8cfb0b6 12114 python3-ascension_0.11.5-1_all.deb 22 44cebafe774920d988013a9cdf5dbb2628202143 11816 python3-ascension_0.11.5-1_all.deb
23Checksums-Sha256: 23Checksums-Sha256:
24 aec93f91b3faae23b75161a1e19164e01ef06cba8de3c03d13d9e335e82c4ade 846 ascension_0.11.5-1.dsc 24 6fced0b8e9966bd7104022b59366c69b0a5deb659527c5520c1b73406f24cf55 846 ascension_0.11.5-1.dsc
25 aff6025d7f35676701738602560c574e253bb248a18915c654b32325898af33e 11056 ascension_0.11.5.orig.tar.gz 25 0297719d0f2a9184660b58475bd33189f6dcde10ef9be22ca2bc8cc4952782d2 11061 ascension_0.11.5.orig.tar.gz
26 a2299ad9433793774d27459963d1a32bdda8ea10ba37facdfbc47be15bb4d953 1892 ascension_0.11.5-1.debian.tar.xz 26 702bdfa0583d91e605f815403faaccef018fdc92fa2c4830c9a3431d34566f9b 1672 ascension_0.11.5-1.debian.tar.xz
27 f24035835a2005c1603f83d8d32200dbf21d583974b5d914a754cd387153a6df 5432 ascension_0.11.5-1_amd64.buildinfo 27 9ff93f662b7b468ec620e494f6d56de2816ecbc91d42262262c49669a97c6054 5432 ascension_0.11.5-1_amd64.buildinfo
28 78c65668a7bfe4b52fee9fd84baa68af2410fe3430c8ed457241036971dfcdd0 12114 python3-ascension_0.11.5-1_all.deb 28 8ffd300c8d4bdaf0fa372a0e47c6068df1d4b059753f7dc331a11077b210f3a9 11816 python3-ascension_0.11.5-1_all.deb
29Files: 29Files:
30 be1f8410a8604afce7d5350234d136cc 846 python optional ascension_0.11.5-1.dsc 30 74b89d12e9d3ecf3674cec4ae6845d29 846 python optional ascension_0.11.5-1.dsc
31 278f98a45d3dbf582561088563b952cc 11056 python optional ascension_0.11.5.orig.tar.gz 31 174806fad05171d995d67daad4603cae 11061 python optional ascension_0.11.5.orig.tar.gz
32 1cf08613f9b2be80a571f025e4c67081 1892 python optional ascension_0.11.5-1.debian.tar.xz 32 201b4bd7cbcddc8ced71b460eef6a598 1672 python optional ascension_0.11.5-1.debian.tar.xz
33 6d10a8c26b788530aa9e8db50da1b8b3 5432 python optional ascension_0.11.5-1_amd64.buildinfo 33 56f5b55ad472cd382defde80b625355b 5432 python optional ascension_0.11.5-1_amd64.buildinfo
34 5bf09d7aa539743c9853f5f9c19db19d 12114 python optional python3-ascension_0.11.5-1_all.deb 34 80e7563f063ff630bbcf157d38a01162 11816 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 1d4de5d..9a44ad6 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 259da59f6104228e5d80e6db9147ba09 846 ascension_0.11.5-1.dsc 7 1de9662925c0c544c5c44b012c6a0d83 846 ascension_0.11.5-1.dsc
8Checksums-Sha1: 8Checksums-Sha1:
9 f395caca3ac3d488ae9f06224cad3d469898d2e8 846 ascension_0.11.5-1.dsc 9 06fa87c859ab1fb328eb775e40277d95e57a5fcc 846 ascension_0.11.5-1.dsc
10Checksums-Sha256: 10Checksums-Sha256:
11 6ac55686d2349de045df07a38cebae73bb42c585a3c0698838b2b02eb37b4607 846 ascension_0.11.5-1.dsc 11 8a0037172f62e88e49e6f431bb868ce24198fb873a12aec5001251cbb92cc771 846 ascension_0.11.5-1.dsc
12Build-Origin: Debian 12Build-Origin: Debian
13Build-Architecture: amd64 13Build-Architecture: amd64
14Build-Date: Mon, 03 Jun 2019 12:17:06 +0000 14Build-Date: Tue, 04 Jun 2019 16:34:00 +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="1559564223" 177 SOURCE_DATE_EPOCH="1559666038"
diff --git a/deb_dist/ascension_0.11.5-1_source.changes b/deb_dist/ascension_0.11.5-1_source.changes
index afe1a2e..3693046 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: Mon, 03 Jun 2019 12:17:03 +0000 2Date: Tue, 04 Jun 2019 16:33:58 +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 f395caca3ac3d488ae9f06224cad3d469898d2e8 846 ascension_0.11.5-1.dsc 18 06fa87c859ab1fb328eb775e40277d95e57a5fcc 846 ascension_0.11.5-1.dsc
19 c505f4a33efadcccaad83a4880217a76bb7fd0f1 11056 ascension_0.11.5.orig.tar.gz 19 6645452d19d03f2296824f4870c292c068d105ee 11061 ascension_0.11.5.orig.tar.gz
20 a1705a3e261a5774d12dfcf435c87c63c817653f 1140 ascension_0.11.5-1.debian.tar.xz 20 661b1f49830c3dace00e5706508bf335107dde95 1140 ascension_0.11.5-1.debian.tar.xz
21 56f34bb9aa0fc338077562a5054569679405f0e8 5163 ascension_0.11.5-1_source.buildinfo 21 2e4bcb33deda39f7a64bed1f7005b436311b2730 5163 ascension_0.11.5-1_source.buildinfo
22Checksums-Sha256: 22Checksums-Sha256:
23 6ac55686d2349de045df07a38cebae73bb42c585a3c0698838b2b02eb37b4607 846 ascension_0.11.5-1.dsc 23 8a0037172f62e88e49e6f431bb868ce24198fb873a12aec5001251cbb92cc771 846 ascension_0.11.5-1.dsc
24 aff6025d7f35676701738602560c574e253bb248a18915c654b32325898af33e 11056 ascension_0.11.5.orig.tar.gz 24 0297719d0f2a9184660b58475bd33189f6dcde10ef9be22ca2bc8cc4952782d2 11061 ascension_0.11.5.orig.tar.gz
25 d04da0e4c75755175a9da95ef7f830d3cfc1ab192e2f7331fa6789ba7f0e8b3d 1140 ascension_0.11.5-1.debian.tar.xz 25 81c3ee2f97876c0ea9ab515a829ca58f615dfe9787f50755be0a86c40b4d630b 1140 ascension_0.11.5-1.debian.tar.xz
26 9738930d9a96a23aaa5ab556fe54c84036fb83b2c643c3b44ae19171809d4066 5163 ascension_0.11.5-1_source.buildinfo 26 327b9dd313623d27ca89d522d90f8cffccae3892143fcb1f1e89161d1268a66e 5163 ascension_0.11.5-1_source.buildinfo
27Files: 27Files:
28 259da59f6104228e5d80e6db9147ba09 846 python optional ascension_0.11.5-1.dsc 28 1de9662925c0c544c5c44b012c6a0d83 846 python optional ascension_0.11.5-1.dsc
29 278f98a45d3dbf582561088563b952cc 11056 python optional ascension_0.11.5.orig.tar.gz 29 174806fad05171d995d67daad4603cae 11061 python optional ascension_0.11.5.orig.tar.gz
30 781564f75d276d0e39d58739ea2c41b5 1140 python optional ascension_0.11.5-1.debian.tar.xz 30 bc1fd0f1171ac36d1601f713389c47f1 1140 python optional ascension_0.11.5-1.debian.tar.xz
31 35e961fbdf95b5afd3a4b95fe883d8d9 5163 python optional ascension_0.11.5-1_source.buildinfo 31 c09fecbe56f03957161769c7e3118f12 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 532cbf7..ef7805d 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 53354a6..e311502 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