aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrexxnor <rexxnor+gnunet@brief.li>2019-06-03 14:18:56 +0200
committerrexxnor <rexxnor+gnunet@brief.li>2019-06-03 14:18:56 +0200
commita013178ce73683b2299ccab9068392a6b7adfc03 (patch)
tree7bf28d18d40826fa4b8c668a8ef0131566d00e42
parent340037e022ee1b76be1fdb02d7ed728bc57c049c (diff)
downloadascension-a013178ce73683b2299ccab9068392a6b7adfc03.tar.gz
ascension-a013178ce73683b2299ccab9068392a6b7adfc03.zip
fixed blacklisting
-rw-r--r--ascension-0.11.5.tar.gzbin10652 -> 11056 bytes
-rw-r--r--ascension/ascension.py4
-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.gzbin160 -> 161 bytes
-rwxr-xr-xdeb_dist/ascension-0.11.5/debian/rules2
-rw-r--r--deb_dist/ascension_0.11.5-1.debian.tar.xzbin1888 -> 1892 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.gzbin10652 -> 11056 bytes
-rw-r--r--deb_dist/python3-ascension_0.11.5-1_all.debbin12074 -> 12114 bytes
15 files changed, 59 insertions, 56 deletions
diff --git a/ascension-0.11.5.tar.gz b/ascension-0.11.5.tar.gz
index 24e6093..532cbf7 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 9d74caa..c49284c 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -57,7 +57,7 @@ import dns.resolver
57import dns.zone 57import dns.zone
58import docopt 58import docopt
59 59
60# GLOBALS 60# GLOBALS for different environments
61GNUNET_ZONE_CREATION_COMMAND = 'gnunet-identity' 61GNUNET_ZONE_CREATION_COMMAND = 'gnunet-identity'
62GNUNET_NAMESTORE_COMMAND = 'gnunet-namestore' 62GNUNET_NAMESTORE_COMMAND = 'gnunet-namestore'
63GNUNET_GNS_COMMAND = 'gnunet-gns' 63GNUNET_GNS_COMMAND = 'gnunet-gns'
@@ -75,7 +75,7 @@ SUPPORTED_RECORD_TYPES = [
75OBSOLETE_RECORD_TYPES = [ 75OBSOLETE_RECORD_TYPES = [
76 "PTR", 76 "PTR",
77 "SIG", "KEY", 77 "SIG", "KEY",
78 "RRSIG", "NSEC", "DNSKEY", "NSEC3", "NSEC3PARAM", "CDNSKEY", "DS" 78 "RRSIG", "NSEC", "DNSKEY", "NSEC3", "NSEC3PARAM", "CDNSKEY", "DS",
79 "TKEY", "TSIG", 79 "TKEY", "TSIG",
80 "TA", "DLV", 80 "TA", "DLV",
81] 81]
diff --git a/deb_dist/ascension-0.11.5/ascension/ascension.py b/deb_dist/ascension-0.11.5/ascension/ascension.py
index da54ca4..c49284c 100644
--- a/deb_dist/ascension-0.11.5/ascension/ascension.py
+++ b/deb_dist/ascension-0.11.5/ascension/ascension.py
@@ -57,7 +57,7 @@ import dns.resolver
57import dns.zone 57import dns.zone
58import docopt 58import docopt
59 59
60# GLOBALS 60# GLOBALS for different environments
61GNUNET_ZONE_CREATION_COMMAND = 'gnunet-identity' 61GNUNET_ZONE_CREATION_COMMAND = 'gnunet-identity'
62GNUNET_NAMESTORE_COMMAND = 'gnunet-namestore' 62GNUNET_NAMESTORE_COMMAND = 'gnunet-namestore'
63GNUNET_GNS_COMMAND = 'gnunet-gns' 63GNUNET_GNS_COMMAND = 'gnunet-gns'
@@ -75,7 +75,7 @@ SUPPORTED_RECORD_TYPES = [
75OBSOLETE_RECORD_TYPES = [ 75OBSOLETE_RECORD_TYPES = [
76 "PTR", 76 "PTR",
77 "SIG", "KEY", 77 "SIG", "KEY",
78 "RRSIG", "NSEC", "DNSKEY", "NSEC3", "NSEC3PARAM", "CDNSKEY", "DS" 78 "RRSIG", "NSEC", "DNSKEY", "NSEC3", "NSEC3PARAM", "CDNSKEY", "DS",
79 "TKEY", "TSIG", 79 "TKEY", "TSIG",
80 "TA", "DLV", 80 "TA", "DLV",
81] 81]
@@ -102,6 +102,7 @@ class Ascender():
102 self.flags = flags 102 self.flags = flags
103 self.minimum = int(minimum) 103 self.minimum = int(minimum)
104 self.subzonedict = dict() 104 self.subzonedict = dict()
105 self.rrsetcount = 0
105 106
106 def bootstrap_zone(self) -> None: 107 def bootstrap_zone(self) -> None:
107 """ 108 """
@@ -273,6 +274,7 @@ class Ascender():
273 274
274 # add recordline to gns and filter out empty lines 275 # add recordline to gns and filter out empty lines
275 if len(recordline) > 1: 276 if len(recordline) > 1:
277 self.rrsetcount += 1
276 self.add_recordline_to_gns(recordline, 278 self.add_recordline_to_gns(recordline,
277 domain, 279 domain,
278 label) 280 label)
@@ -779,6 +781,7 @@ def main():
779 continue 781 continue
780 782
781 ascender.add_records_to_gns() 783 ascender.add_records_to_gns()
784 logging.info("Added %d RRSets", ascender.rrsetcount)
782 logging.info("Finished migration of the zone %s", ascender.domain) 785 logging.info("Finished migration of the zone %s", ascender.domain)
783 786
784if __name__ == '__main__': 787if __name__ == '__main__':
diff --git a/deb_dist/ascension-0.11.5/debian/changelog b/deb_dist/ascension-0.11.5/debian/changelog
index 6892a5d..ad7d11f 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> Sat, 01 Jun 2019 09:39:38 +0000 5 -- rexxnor <rexxnor+gnunet@brief.li> Mon, 03 Jun 2019 12:17:03 +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 bd59a8d..0625ee7 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,7 @@ 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
877d85fa6df18531638272fa529d4bc8d usr/lib/python3/dist-packages/ascension/ascension.py 8e64a2e369d0fa15c15625f1b383dba1a usr/lib/python3/dist-packages/ascension/ascension.py
9de060b4ca299c6460ff508aed915526b usr/man/man1/ascension.1 9de060b4ca299c6460ff508aed915526b usr/man/man1/ascension.1
107c91a24ed761700f79e6e35654a9b5de usr/share/doc/python3-ascension/changelog.Debian.gz 103fde32fec7c26bfb692fd5795fe5bae8 usr/share/doc/python3-ascension/changelog.Debian.gz
1142cbfd228642e598041a4f8583b17259 usr/share/doc/python3-ascension/copyright 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 bcd08a0..87db07f 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 fce516f..49ae69d 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# Sat, 01 Jun 2019 09:39:38 +0000 4# Mon, 03 Jun 2019 12:17:03 +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 9276907..750e05f 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 62164fd..bcd6135 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 021defc94aa480b0815a4efaec31daf5a2e2bf88 10652 ascension_0.11.5.orig.tar.gz 12 c505f4a33efadcccaad83a4880217a76bb7fd0f1 11056 ascension_0.11.5.orig.tar.gz
13 8516a239f65b3e864e891daab9cf62cc7bd909c1 1888 ascension_0.11.5-1.debian.tar.xz 13 a28cc1cb517b7ec9717da89e97a4111b1c78aa85 1892 ascension_0.11.5-1.debian.tar.xz
14Checksums-Sha256: 14Checksums-Sha256:
15 26ee8a1845b01c92a969bec2ee461f10918873e31018a275bba05b3c40b3821c 10652 ascension_0.11.5.orig.tar.gz 15 aff6025d7f35676701738602560c574e253bb248a18915c654b32325898af33e 11056 ascension_0.11.5.orig.tar.gz
16 bbff145e8e3cfd690e39019118337a95939ead0e3c086b046e02677564920c4c 1888 ascension_0.11.5-1.debian.tar.xz 16 a2299ad9433793774d27459963d1a32bdda8ea10ba37facdfbc47be15bb4d953 1892 ascension_0.11.5-1.debian.tar.xz
17Files: 17Files:
18 f554e7e84f19fbaafd2219b6be7f6433 10652 ascension_0.11.5.orig.tar.gz 18 278f98a45d3dbf582561088563b952cc 11056 ascension_0.11.5.orig.tar.gz
19 b657097bc52cf563b551ef8ad95268db 1888 ascension_0.11.5-1.debian.tar.xz 19 1cf08613f9b2be80a571f025e4c67081 1892 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 e42d683..4e14ba4 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 68f13e9a3b13c5fc36242dba5e8d6051 846 ascension_0.11.5-1.dsc 7 be1f8410a8604afce7d5350234d136cc 846 ascension_0.11.5-1.dsc
8 d68fbb25fb1b9fe79ee4d52ea74ae43b 12074 python3-ascension_0.11.5-1_all.deb 8 5bf09d7aa539743c9853f5f9c19db19d 12114 python3-ascension_0.11.5-1_all.deb
9Checksums-Sha1: 9Checksums-Sha1:
10 9f96b287c99e40f51a6737b82bde2a3bc596a87f 846 ascension_0.11.5-1.dsc 10 d92fd96995f4537621f08066725107e60e4651d5 846 ascension_0.11.5-1.dsc
11 9a0ff5db319f61d51b4075c9d53d6ac466139745 12074 python3-ascension_0.11.5-1_all.deb 11 d187b4a7dd70ed77be4734ef34879d6ad8cfb0b6 12114 python3-ascension_0.11.5-1_all.deb
12Checksums-Sha256: 12Checksums-Sha256:
13 b85227d3ea578a1b43599a1c7c9c69ddc0a11961490cf990e12f57cb31c88eff 846 ascension_0.11.5-1.dsc 13 aec93f91b3faae23b75161a1e19164e01ef06cba8de3c03d13d9e335e82c4ade 846 ascension_0.11.5-1.dsc
14 aa3a21e1a98299df739c239348a51e4c523945edab968b2980f2c102ab882da1 12074 python3-ascension_0.11.5-1_all.deb 14 78c65668a7bfe4b52fee9fd84baa68af2410fe3430c8ed457241036971dfcdd0 12114 python3-ascension_0.11.5-1_all.deb
15Build-Origin: Debian 15Build-Origin: Debian
16Build-Architecture: amd64 16Build-Architecture: amd64
17Build-Date: Sat, 01 Jun 2019 09:41:59 +0000 17Build-Date: Mon, 03 Jun 2019 12:18:01 +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="1559381978" 180 SOURCE_DATE_EPOCH="1559564223"
diff --git a/deb_dist/ascension_0.11.5-1_amd64.changes b/deb_dist/ascension_0.11.5-1_amd64.changes
index a6ac0f7..cc260aa 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: Sat, 01 Jun 2019 09:39:38 +0000 2Date: Mon, 03 Jun 2019 12:17:03 +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 9f96b287c99e40f51a6737b82bde2a3bc596a87f 846 ascension_0.11.5-1.dsc 18 d92fd96995f4537621f08066725107e60e4651d5 846 ascension_0.11.5-1.dsc
19 021defc94aa480b0815a4efaec31daf5a2e2bf88 10652 ascension_0.11.5.orig.tar.gz 19 c505f4a33efadcccaad83a4880217a76bb7fd0f1 11056 ascension_0.11.5.orig.tar.gz
20 8516a239f65b3e864e891daab9cf62cc7bd909c1 1888 ascension_0.11.5-1.debian.tar.xz 20 a28cc1cb517b7ec9717da89e97a4111b1c78aa85 1892 ascension_0.11.5-1.debian.tar.xz
21 412ec7cf541bbb761997d98122aa08c40b4cc530 5432 ascension_0.11.5-1_amd64.buildinfo 21 02abf5f2fa288105697a6335697cfbbeba9cfbb0 5432 ascension_0.11.5-1_amd64.buildinfo
22 9a0ff5db319f61d51b4075c9d53d6ac466139745 12074 python3-ascension_0.11.5-1_all.deb 22 d187b4a7dd70ed77be4734ef34879d6ad8cfb0b6 12114 python3-ascension_0.11.5-1_all.deb
23Checksums-Sha256: 23Checksums-Sha256:
24 b85227d3ea578a1b43599a1c7c9c69ddc0a11961490cf990e12f57cb31c88eff 846 ascension_0.11.5-1.dsc 24 aec93f91b3faae23b75161a1e19164e01ef06cba8de3c03d13d9e335e82c4ade 846 ascension_0.11.5-1.dsc
25 26ee8a1845b01c92a969bec2ee461f10918873e31018a275bba05b3c40b3821c 10652 ascension_0.11.5.orig.tar.gz 25 aff6025d7f35676701738602560c574e253bb248a18915c654b32325898af33e 11056 ascension_0.11.5.orig.tar.gz
26 bbff145e8e3cfd690e39019118337a95939ead0e3c086b046e02677564920c4c 1888 ascension_0.11.5-1.debian.tar.xz 26 a2299ad9433793774d27459963d1a32bdda8ea10ba37facdfbc47be15bb4d953 1892 ascension_0.11.5-1.debian.tar.xz
27 3d72561a355f8238bfa0cea4022e01a0ee733be8bce35449bd86151ed7dd7abb 5432 ascension_0.11.5-1_amd64.buildinfo 27 f24035835a2005c1603f83d8d32200dbf21d583974b5d914a754cd387153a6df 5432 ascension_0.11.5-1_amd64.buildinfo
28 aa3a21e1a98299df739c239348a51e4c523945edab968b2980f2c102ab882da1 12074 python3-ascension_0.11.5-1_all.deb 28 78c65668a7bfe4b52fee9fd84baa68af2410fe3430c8ed457241036971dfcdd0 12114 python3-ascension_0.11.5-1_all.deb
29Files: 29Files:
30 68f13e9a3b13c5fc36242dba5e8d6051 846 python optional ascension_0.11.5-1.dsc 30 be1f8410a8604afce7d5350234d136cc 846 python optional ascension_0.11.5-1.dsc
31 f554e7e84f19fbaafd2219b6be7f6433 10652 python optional ascension_0.11.5.orig.tar.gz 31 278f98a45d3dbf582561088563b952cc 11056 python optional ascension_0.11.5.orig.tar.gz
32 b657097bc52cf563b551ef8ad95268db 1888 python optional ascension_0.11.5-1.debian.tar.xz 32 1cf08613f9b2be80a571f025e4c67081 1892 python optional ascension_0.11.5-1.debian.tar.xz
33 ccfbcb90eaff8ba47441ca1ae93d8f93 5432 python optional ascension_0.11.5-1_amd64.buildinfo 33 6d10a8c26b788530aa9e8db50da1b8b3 5432 python optional ascension_0.11.5-1_amd64.buildinfo
34 d68fbb25fb1b9fe79ee4d52ea74ae43b 12074 python optional python3-ascension_0.11.5-1_all.deb 34 5bf09d7aa539743c9853f5f9c19db19d 12114 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 2813579..1d4de5d 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 803e035cea76e62c6911144b190032c1 846 ascension_0.11.5-1.dsc 7 259da59f6104228e5d80e6db9147ba09 846 ascension_0.11.5-1.dsc
8Checksums-Sha1: 8Checksums-Sha1:
9 d53c013e5c3a414be1f45712d1353201213ca10d 846 ascension_0.11.5-1.dsc 9 f395caca3ac3d488ae9f06224cad3d469898d2e8 846 ascension_0.11.5-1.dsc
10Checksums-Sha256: 10Checksums-Sha256:
11 ab0dd8664be9eaf2b4e0cc41ac07079621a812783f0619acec0af742cceffcae 846 ascension_0.11.5-1.dsc 11 6ac55686d2349de045df07a38cebae73bb42c585a3c0698838b2b02eb37b4607 846 ascension_0.11.5-1.dsc
12Build-Origin: Debian 12Build-Origin: Debian
13Build-Architecture: amd64 13Build-Architecture: amd64
14Build-Date: Sat, 01 Jun 2019 09:39:43 +0000 14Build-Date: Mon, 03 Jun 2019 12:17:06 +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="1559381978" 177 SOURCE_DATE_EPOCH="1559564223"
diff --git a/deb_dist/ascension_0.11.5-1_source.changes b/deb_dist/ascension_0.11.5-1_source.changes
index f99d74c..afe1a2e 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: Sat, 01 Jun 2019 09:39:38 +0000 2Date: Mon, 03 Jun 2019 12:17:03 +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 d53c013e5c3a414be1f45712d1353201213ca10d 846 ascension_0.11.5-1.dsc 18 f395caca3ac3d488ae9f06224cad3d469898d2e8 846 ascension_0.11.5-1.dsc
19 021defc94aa480b0815a4efaec31daf5a2e2bf88 10652 ascension_0.11.5.orig.tar.gz 19 c505f4a33efadcccaad83a4880217a76bb7fd0f1 11056 ascension_0.11.5.orig.tar.gz
20 98e3576c8f5b285643e844fa2a9371eaba196449 1136 ascension_0.11.5-1.debian.tar.xz 20 a1705a3e261a5774d12dfcf435c87c63c817653f 1140 ascension_0.11.5-1.debian.tar.xz
21 6d6be63ecc77a8549cb7ecd9df2a78a30734a468 5163 ascension_0.11.5-1_source.buildinfo 21 56f34bb9aa0fc338077562a5054569679405f0e8 5163 ascension_0.11.5-1_source.buildinfo
22Checksums-Sha256: 22Checksums-Sha256:
23 ab0dd8664be9eaf2b4e0cc41ac07079621a812783f0619acec0af742cceffcae 846 ascension_0.11.5-1.dsc 23 6ac55686d2349de045df07a38cebae73bb42c585a3c0698838b2b02eb37b4607 846 ascension_0.11.5-1.dsc
24 26ee8a1845b01c92a969bec2ee461f10918873e31018a275bba05b3c40b3821c 10652 ascension_0.11.5.orig.tar.gz 24 aff6025d7f35676701738602560c574e253bb248a18915c654b32325898af33e 11056 ascension_0.11.5.orig.tar.gz
25 04116d1979c56a7507db221c00d267cbe8aa8401aabde3a34f2e2089f3c155a5 1136 ascension_0.11.5-1.debian.tar.xz 25 d04da0e4c75755175a9da95ef7f830d3cfc1ab192e2f7331fa6789ba7f0e8b3d 1140 ascension_0.11.5-1.debian.tar.xz
26 7e548325e2513e58092414200e41a30d4af38a00cd69ef313065f3b6dabd1d32 5163 ascension_0.11.5-1_source.buildinfo 26 9738930d9a96a23aaa5ab556fe54c84036fb83b2c643c3b44ae19171809d4066 5163 ascension_0.11.5-1_source.buildinfo
27Files: 27Files:
28 803e035cea76e62c6911144b190032c1 846 python optional ascension_0.11.5-1.dsc 28 259da59f6104228e5d80e6db9147ba09 846 python optional ascension_0.11.5-1.dsc
29 f554e7e84f19fbaafd2219b6be7f6433 10652 python optional ascension_0.11.5.orig.tar.gz 29 278f98a45d3dbf582561088563b952cc 11056 python optional ascension_0.11.5.orig.tar.gz
30 d10dc50ef0e5a2c8a66f02827630eea7 1136 python optional ascension_0.11.5-1.debian.tar.xz 30 781564f75d276d0e39d58739ea2c41b5 1140 python optional ascension_0.11.5-1.debian.tar.xz
31 cf8584d6aa1ef4d6fe6b645f47b45550 5163 python optional ascension_0.11.5-1_source.buildinfo 31 35e961fbdf95b5afd3a4b95fe883d8d9 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 24e6093..532cbf7 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 73cf6d4..53354a6 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