summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2013-08-03 09:40:54 -0400
committerAnthony G. Basile <blueness@gentoo.org>2013-08-03 09:40:54 -0400
commit01f73777ffd49119273b8433054446f3d689a620 (patch)
treeedae8575a0d7f12ec416983d17e0e1df47efe860
parentWebappConfig/content.py: use hashlib instead of md5 module (diff)
downloadwebapp-config-01f73777ffd49119273b8433054446f3d689a620.tar.gz
webapp-config-01f73777ffd49119273b8433054446f3d689a620.tar.bz2
webapp-config-01f73777ffd49119273b8433054446f3d689a620.zip
Bump to version 1.511.51
-rw-r--r--AUTHORS2
-rw-r--r--TODO41
-rw-r--r--WebappConfig/version.py2
-rwxr-xr-xsetup.py2
4 files changed, 3 insertions, 44 deletions
diff --git a/AUTHORS b/AUTHORS
index 8f14439..a89d74c 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -14,7 +14,7 @@ Original code authors:
Current maintainers:
Anthony G. Basile <blueness@gentoo.org>
- Matthew Summers <quantumsummers@gentoo.org>
+ Devan Franchini <twitch153@hotmail.com>
Significant contributors (testing, review, design suggestions):
diff --git a/TODO b/TODO
deleted file mode 100644
index d1f9e0e..0000000
--- a/TODO
+++ /dev/null
@@ -1,41 +0,0 @@
-=======================
-webapp-config TODO List
-=======================
-
-:Last update: $Date$
-:Revision: $Revision$
-:Contact: web-apps@gentoo.org
-
-Open bugs
----------
-
-
-Required enhancements
----------------------
-
-1.50.19
-
-Update the CHANGES file.
-DEPRECATED(blueness) - Check the freshmeat project site.
-DEPRECATED(blueness) - Check the sourceforge project site.
-DEPRECATED(blueness) - Check the Ohloh project site
-Complete the README file.
-Complete the INSTALL file.
-Complete the HACKING file.
-Get a common file header for the code files.
-
-Plans
------
-
-DEPRECATED(blueness) - Three RSS feeds: commits, devnotes, announcements
-
-
-Deferred For webapp-config-v2
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- * sqlite database for contents db?
- * enhancement: introduce metadata.xml support
- * vhost-config support
- * support for multiple webapps installed into the same directory
- (Gentoo Bug #56364)
-
diff --git a/WebappConfig/version.py b/WebappConfig/version.py
index e79de15..4d5931b 100644
--- a/WebappConfig/version.py
+++ b/WebappConfig/version.py
@@ -13,7 +13,7 @@
#
# ========================================================================
-WCVERSION = '1.50.20'
+WCVERSION = '1.51'
if __name__ == '__main__':
print(WCVERSION)
diff --git a/setup.py b/setup.py
index 65ab502..fd0adda 100755
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ setup(name = 'webapp-config',
description = 'Python script for managing the deployment of web-based applications',
author = 'Stuart Herbert, Renat Lumpau, Gunnar Wrobel',
author_email = 'stuart@gentoo.org',
- url = 'http://svn.gnqs.org/projects/vhost-tools',
+ url = 'http://git.overlays.gentoo.org/gitweb/?p=proj/webapp-config.git;a=summary',
packages = ['WebappConfig'],
scripts = ['sbin/webapp-config', 'sbin/webapp-cleaner'],
license = 'GPL',