|
@@ -981,6 +981,13 @@ class BaseRepo(object):
|
|
|
"""
|
|
|
raise NotImplementedError(self.get_description)
|
|
|
|
|
|
+ def set_description(self, description):
|
|
|
+ """Set the description for this repository.
|
|
|
+
|
|
|
+ :param description: Text to set as description for this repository.
|
|
|
+ """
|
|
|
+ raise NotImplementedError(self.set_description)
|
|
|
+
|
|
|
def get_config_stack(self):
|
|
|
"""Return a config stack for this repository.
|
|
|
|
|
@@ -1473,6 +1480,20 @@ class Repo(BaseRepo):
|
|
|
def __repr__(self):
|
|
|
return "<Repo at %r>" % self.path
|
|
|
|
|
|
+ def set_description(self, description):
|
|
|
+ """Set the description for this repository.
|
|
|
+
|
|
|
+ :param description: Text to set as description for this repository.
|
|
|
+ """
|
|
|
+
|
|
|
+ path = os.path.join(self._controldir, 'description')
|
|
|
+ try:
|
|
|
+ with open(path, 'w') as f:
|
|
|
+ f.write(description)
|
|
|
+ except (IOError, OSError), e:
|
|
|
+ if e.errno != errno.ENOENT:
|
|
|
+ raise
|
|
|
+
|
|
|
@classmethod
|
|
|
def _init_maybe_bare(cls, path, bare):
|
|
|
for d in BASE_DIRECTORIES:
|