* [PATCH 0/2] allow patches called "applied", "current", and so on
@ 2006-01-29 18:10 Chuck Lever
2006-01-29 18:13 ` [PATCH 1/2] Use a separate directory for patches under each branch subdir Chuck Lever
2006-01-29 18:14 ` [PATCH 2/2] Add an option to "stg branch" to convert the internal format Chuck Lever
0 siblings, 2 replies; 3+ messages in thread
From: Chuck Lever @ 2006-01-29 18:10 UTC (permalink / raw)
To: catalin.marinas; +Cc: git
The following patches create a separate directory for patches so that patch
names like "applied" don't collide with the patch series control files.
A new option on the "stg branch" command allows users to convert between the
old-style (all in the same series directory) and the new-style (patches in a
separate directory). "stg" should be good at detecting which type of
repository is in use and adapting to it, so this change should be entirely
invisible on legacy repositories.
-- Chuck Lever
--
corporate: <cel at netapp dot com>
personal: <chucklever at bigfoot dot com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] Use a separate directory for patches under each branch subdir
2006-01-29 18:10 [PATCH 0/2] allow patches called "applied", "current", and so on Chuck Lever
@ 2006-01-29 18:13 ` Chuck Lever
2006-01-29 18:14 ` [PATCH 2/2] Add an option to "stg branch" to convert the internal format Chuck Lever
1 sibling, 0 replies; 3+ messages in thread
From: Chuck Lever @ 2006-01-29 18:13 UTC (permalink / raw)
To: catalin.marinas; +Cc: git
Currently you can't specify a patch name that matches the name of one of
the stgit special files under .git/patches/<branch-name>. Let's use a
new subdirectory under .git/patches/<branch-name> to contain just the
patch directories to remove this limitation.
Signed-off-by: Chuck Lever <cel@netapp.com>
---
stgit/stack.py | 41 ++++++++++++++++++++++++++---------------
1 files changed, 26 insertions(+), 15 deletions(-)
diff --git a/stgit/stack.py b/stgit/stack.py
index b081c95..89a2413 100644
--- a/stgit/stack.py
+++ b/stgit/stack.py
@@ -122,10 +122,10 @@ def edit_file(series, line, comment, sho
class Patch:
"""Basic patch implementation
"""
- def __init__(self, name, patch_dir):
- self.__patch_dir = patch_dir
+ def __init__(self, name, series_dir):
+ self.__series_dir = series_dir
self.__name = name
- self.__dir = os.path.join(self.__patch_dir, self.__name)
+ self.__dir = os.path.join(self.__series_dir, self.__name)
def create(self):
os.mkdir(self.__dir)
@@ -143,7 +143,7 @@ class Patch:
def rename(self, newname):
olddir = self.__dir
self.__name = newname
- self.__dir = os.path.join(self.__patch_dir, self.__name)
+ self.__dir = os.path.join(self.__series_dir, self.__name)
os.rename(olddir, self.__dir)
@@ -266,14 +266,20 @@ class Series:
except git.GitException, ex:
raise StackException, 'GIT tree not initialised: %s' % ex
- self.__patch_dir = os.path.join(base_dir, 'patches',
- self.__name)
+ self.__series_dir = os.path.join(base_dir, 'patches',
+ self.__name)
self.__base_file = os.path.join(base_dir, 'refs', 'bases',
self.__name)
- self.__applied_file = os.path.join(self.__patch_dir, 'applied')
- self.__unapplied_file = os.path.join(self.__patch_dir, 'unapplied')
- self.__current_file = os.path.join(self.__patch_dir, 'current')
- self.__descr_file = os.path.join(self.__patch_dir, 'description')
+
+ self.__applied_file = os.path.join(self.__series_dir, 'applied')
+ self.__unapplied_file = os.path.join(self.__series_dir, 'unapplied')
+ self.__current_file = os.path.join(self.__series_dir, 'current')
+ self.__descr_file = os.path.join(self.__series_dir, 'description')
+
+ # where this series keeps its patches
+ self.__patch_dir = os.path.join(self.__series_dir, 'patches')
+ if not os.path.isdir(self.__patch_dir):
+ self.__patch_dir = self.__series_dir
def get_branch(self):
"""Return the branch name for the Series object
@@ -325,15 +331,15 @@ class Series:
return self.__base_file
def get_protected(self):
- return os.path.isfile(os.path.join(self.__patch_dir, 'protected'))
+ return os.path.isfile(os.path.join(self.__series_dir, 'protected'))
def protect(self):
- protect_file = os.path.join(self.__patch_dir, 'protected')
+ protect_file = os.path.join(self.__series_dir, 'protected')
if not os.path.isfile(protect_file):
create_empty_file(protect_file)
def unprotect(self):
- protect_file = os.path.join(self.__patch_dir, 'protected')
+ protect_file = os.path.join(self.__series_dir, 'protected')
if os.path.isfile(protect_file):
os.remove(protect_file)
@@ -401,6 +407,7 @@ class Series:
create_empty_file(self.__applied_file)
create_empty_file(self.__unapplied_file)
create_empty_file(self.__descr_file)
+ os.makedirs(os.path.join(self.__series_dir, 'patches'))
self.__begin_stack_check()
def rename(self, to_name):
@@ -415,8 +422,8 @@ class Series:
git.rename_branch(self.__name, to_name)
- if os.path.isdir(self.__patch_dir):
- os.rename(self.__patch_dir, to_stack.__patch_dir)
+ if os.path.isdir(self.__series_dir):
+ os.rename(self.__series_dir, to_stack.__series_dir)
if os.path.exists(self.__base_file):
os.rename(self.__base_file, to_stack.__base_file)
@@ -471,6 +478,10 @@ class Series:
if not os.listdir(self.__patch_dir):
os.rmdir(self.__patch_dir)
else:
+ print 'Patch directory %s is not empty.' % self.__name
+ if not os.listdir(self.__series_dir):
+ os.rmdir(self.__series_dir)
+ else:
print 'Series directory %s is not empty.' % self.__name
if os.path.exists(self.__base_file):
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] Add an option to "stg branch" to convert the internal format
2006-01-29 18:10 [PATCH 0/2] allow patches called "applied", "current", and so on Chuck Lever
2006-01-29 18:13 ` [PATCH 1/2] Use a separate directory for patches under each branch subdir Chuck Lever
@ 2006-01-29 18:14 ` Chuck Lever
1 sibling, 0 replies; 3+ messages in thread
From: Chuck Lever @ 2006-01-29 18:14 UTC (permalink / raw)
To: catalin.marinas; +Cc: git
Previous patch adds support for a separate patch directory in each branch.
Let's give users an option to convert their old branches to new style ones
and back.
Signed-off-by: Chuck Lever <cel@netapp.com>
---
stgit/commands/branch.py | 11 +++++++++++
stgit/stack.py | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+), 0 deletions(-)
diff --git a/stgit/commands/branch.py b/stgit/commands/branch.py
index 6a551e4..ef44349 100644
--- a/stgit/commands/branch.py
+++ b/stgit/commands/branch.py
@@ -45,6 +45,9 @@ options = [make_option('-c', '--create',
make_option('--clone',
help = 'clone the contents of the current branch',
action = 'store_true'),
+ make_option('--convert',
+ help = 'switch between old and new format branches',
+ action = 'store_true'),
make_option('--delete',
help = 'delete an existing development branch',
action = 'store_true'),
@@ -150,6 +153,14 @@ def func(parser, options, args):
return
+ elif options.convert:
+
+ if len(args) != 0:
+ parser.error('incorrect number of arguments')
+
+ crt_series.convert()
+ return
+
elif options.delete:
if len(args) != 1:
diff --git a/stgit/stack.py b/stgit/stack.py
index 89a2413..145f93c 100644
--- a/stgit/stack.py
+++ b/stgit/stack.py
@@ -410,6 +410,42 @@ class Series:
os.makedirs(os.path.join(self.__series_dir, 'patches'))
self.__begin_stack_check()
+ def convert(self):
+ """Either convert to use a separate patch directory, or
+ unconvert to place the patches in the same directory with
+ series control files
+ """
+ if self.__patch_dir == self.__series_dir:
+ print 'Converting old-style to new-style... ',
+ sys.stdout.flush()
+
+ self.__patch_dir = os.path.join(self.__series_dir, 'patches')
+ os.makedirs(self.__patch_dir)
+
+ for p in self.get_applied() + self.get_unapplied():
+ src = os.path.join(self.__series_dir, p)
+ dest = os.path.join(self.__patch_dir, p)
+ os.rename(src, dest)
+
+ print 'done'
+
+ else:
+ print 'Converting new-style to old-style... ',
+ sys.stdout.flush()
+
+ for p in self.get_applied() + self.get_unapplied():
+ src = os.path.join(self.__patch_dir, p)
+ dest = os.path.join(self.__series_dir, p)
+ os.rename(src, dest)
+
+ if not os.listdir(self.__patch_dir):
+ os.rmdir(self.__patch_dir)
+ print 'done'
+ else:
+ print 'Patch directory %s is not empty.' % self.__name
+
+ self.__patch_dir = self.__series_dir
+
def rename(self, to_name):
"""Renames a series
"""
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-01-29 18:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-29 18:10 [PATCH 0/2] allow patches called "applied", "current", and so on Chuck Lever
2006-01-29 18:13 ` [PATCH 1/2] Use a separate directory for patches under each branch subdir Chuck Lever
2006-01-29 18:14 ` [PATCH 2/2] Add an option to "stg branch" to convert the internal format Chuck Lever
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).