control (906B)
1 Package: python3-ascension 2 Source: ascension 3 Version: 0.5.0-1 4 Architecture: all 5 Maintainer: rexxnor <rexxnor+gnunet@brief.li> 6 Installed-Size: 61 7 Depends: python3-coverage, python3-dnspython, python3-docopt, python3-mock, python3-pbr, python3-six, python3:any (>= 3.3.2-2~) 8 Section: python 9 Priority: optional 10 Homepage: https://gnunet.org/git/ascension.git/ 11 Description: Tool to migrate DNS Zones to the GNU Name System 12 # Ascension 13 . 14 Tool to easily migrate existing DNS Zones into the GNU Name System using 15 incremental zone transfers (AXFR/IXFR). 16 . 17 ## How to install 18 To install the ascension simply execute one of the following commands in the 19 freshly cloned directory: 20 . 21 ```bash 22 # System wide installation 23 sudo python3 setup.py install 24 . 25 # Local installation through virtualenv 26 python3 -m venv .venv 27 source .venv/bin/activate 28 python3 setup.py install 29 ``` 30 . 31 ## How to install (Developer)