]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Change appname from "allmydata-tahoe" to "tahoe-lafs". fixes #2011
authorDaira Hopwood <daira@jacaranda.org>
Sat, 6 Dec 2014 05:37:57 +0000 (05:37 +0000)
committerDaira Hopwood <daira@jacaranda.org>
Sat, 6 Dec 2014 05:37:57 +0000 (05:37 +0000)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
Makefile
docs/how_to_make_a_tahoe-lafs_release.org
docs/quickstart.rst
setup.py
src/allmydata/test/test_version.py
src/allmydata/test/test_web.py

index a8afc1bd126ad589006ed50ceb6c009018bb4ba3..b5775f96f26bbd7cc153d99f66c52de2eea8ac0e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ export PYTHON
 
 TAHOE=$(PYTHON) bin/tahoe
 SOURCES=src/allmydata src/buildtest static misc bin/tahoe-script.template setup.py
-APPNAME=allmydata-tahoe
+APPNAME=tahoe-lafs
 
 # This is necessary only if you want to automatically produce a new
 # _version.py file from the current git history (without doing a build).
index b7181bd5b7bdd3296d7b453df5d44f7db1d8cce9..8c06314681b4f581c31b5c98c16cb63e46cb5a80 100644 (file)
@@ -6,10 +6,10 @@
     - CREDITS
     - docs/known_issues.rst
   - [ ] change docs/quickstart.rst to point to just the current
-    allmydata-tahoe-X.Y.Z.zip source code file, or else to point to a
-    directory which contains only allmydata-tahoe-X.Y.Z.* source code files
+    tahoe-lafs-X.Y.Z.zip source code file, or else to point to a
+    directory which contains only tahoe-lafs-X.Y.Z.* source code files
   - [ ] git pull
-  - [ ] git tag allmydata-tahoe-X.Y.Z
+  - [ ] git tag tahoe-lafs-X.Y.Z
   - [ ] build locally to make sure the release is reporting itself as the
     intended version
   - [ ] make sure buildbot is green
index e0395062f3073036e1f093e8669131682cd7a87a..5d8dcc174e4016fda159ce1e6beece5bf6e02a4b 100644 (file)
@@ -63,7 +63,7 @@ first time you set up Tahoe-LAFS on a particular installation of Windows.
 
 Run "``bin/tahoe --version``" (on Windows, "``bin\tahoe --version``") to
 verify that the executable tool prints out the right version number after
-"``allmydata-tahoe:``".
+"``allmydata-tahoe:``" or "``tahoe-lafs:``".
 
 Optionally run "``python setup.py trial``" to verify that it passes all of
 its self-tests.
index 0693e634761303901bd0416d10f64482b49694a5..4ffd0f01c0f287725bedc1f0a70d9f98f8768fe0 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -40,16 +40,19 @@ def read_version_py(infname):
 VERSION_PY_FILENAME = 'src/allmydata/_version.py'
 version = read_version_py(VERSION_PY_FILENAME)
 
-APPNAME='allmydata-tahoe'
+APPNAME='tahoe-lafs'
 APPNAMEFILE = os.path.join('src', 'allmydata', '_appname.py')
 APPNAMEFILESTR = "__appname__ = '%s'" % (APPNAME,)
 try:
-    curappnamefilestr = open(APPNAMEFILE, 'rU').read()
+    curappnamefilestr = open(APPNAMEFILE, 'rU').read().strip()
 except EnvironmentError:
     # No file, or unreadable or something, okay then let's try to write one.
     open(APPNAMEFILE, "w").write(APPNAMEFILESTR)
 else:
-    if curappnamefilestr.strip() != APPNAMEFILESTR:
+    if "allmydata-tahoe" in curappnamefilestr:
+        # This is harmless, just overwrite it.
+        open(APPNAMEFILE, "w").write(APPNAMEFILESTR)
+    elif curappnamefilestr != APPNAMEFILESTR:
         print("Error -- this setup.py file is configured with the 'application name' to be '%s', but there is already a file in place in '%s' which contains the contents '%s'.  If the file is wrong, please remove it and setup.py will regenerate it and write '%s' into it." % (APPNAME, APPNAMEFILE, curappnamefilestr, APPNAMEFILESTR))
         sys.exit(-1)
 
index 296db0624c2f34f9adc666c716bad66747f68088..2510462f1686f6dd8cc8efcb335d166a8ae8aa00 100644 (file)
@@ -58,7 +58,7 @@ class CheckRequirement(unittest.TestCase):
         res = cross_check({}, [])
         self.failUnlessEqual(res, [])
 
-        res = cross_check({}, [("allmydata-tahoe", ("1.0", "", "blah"))])
+        res = cross_check({}, [("tahoe-lafs", ("1.0", "", "blah"))])
         self.failUnlessEqual(res, [])
 
         res = cross_check({"foo": ("unparseable", "")}, [])
index 8c5ead4ba62ff89b24be7ac24511e73ea0bfbfce..0da90c2565a467836768b3e56443f71487db785e 100644 (file)
@@ -174,7 +174,7 @@ class FakeHistory:
 class FakeDisplayableServer(StubServer):
     def __init__(self, serverid, nickname):
         StubServer.__init__(self, serverid)
-        self.announcement = {"my-version": "allmydata-tahoe-fake",
+        self.announcement = {"my-version": "tahoe-lafs-fake",
                              "service-name": "storage",
                              "nickname": nickname}
     def is_connected(self):