]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
packaging updates
authorBob Halley <halley@nominum.com>
Mon, 18 Jul 2011 22:05:42 +0000 (15:05 -0700)
committerBob Halley <halley@nominum.com>
Mon, 18 Jul 2011 22:05:42 +0000 (15:05 -0700)
Makefile
setup.py

index 15a1e79a2d677b2388ed31d6fd3376319d9c174a..74469a3257def0345f97c2ed073cd3b81b763f7d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -34,15 +34,15 @@ distclean: clean docclean
        rm -f MANIFEST
 
 doc:
-       epydoc -n dnspython -u http://www.dnspython.org \
+       epydoc -n dnspython3 -u http://www.dnspython.org \
                dns/*.py dns/rdtypes/*.py dns/rdtypes/ANY/*.py \
                dns/rdtypes/IN/*.py
 
 dockits: doc
-       mv html dnspython-html
-       tar czf html.tar.gz dnspython-html
-       zip -r html.zip dnspython-html
-       mv dnspython-html html
+       mv html dnspython3-html
+       tar czf html.tar.gz dnspython3-html
+       zip -r html.zip dnspython3-html
+       mv dnspython3-html html
 
 docclean:
        rm -rf html.tar.gz html.zip html
index 276cd069f9463e0904bdaabd2fbb3f240e46088b..8af73ba2be598c3c64f6a88ef785b91411c972b6 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ kwargs = {
     'version' : version,
     'description' : 'DNS toolkit',
     'long_description' : \
-    """dnspython is a DNS toolkit for Python. It supports almost all
+    """dnspython3 is a DNS toolkit for Python 3. It supports almost all
 record types. It can be used for queries, zone transfers, and dynamic
 updates.  It supports TSIG authenticated messages and EDNS0.
 
@@ -39,7 +39,7 @@ direct manipulation of DNS zones, messages, names, and records.""",
     'url' : 'http://www.dnspython.org',
     'packages' : ['dns', 'dns.rdtypes', 'dns.rdtypes.IN', 'dns.rdtypes.ANY'],
     'download_url' : \
-       'http://www.dnspython.org/kits/%s/dnspython3-%s.tar.gz' % (version,
+       'http://www.dnspython.org/kits3/%s/dnspython3-%s.tar.gz' % (version,
                                                                    version),
     'classifiers' : [
         "Development Status :: 5 - Production/Stable",