Separate the commands in stgit/commands/* files
[stgit] / stgit / commands / delete.py
diff --git a/stgit/commands/delete.py b/stgit/commands/delete.py
new file mode 100644 (file)
index 0000000..a003082
--- /dev/null
@@ -0,0 +1,46 @@
+
+__copyright__ = """
+Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License version 2 as
+published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+"""
+
+import sys, os
+from optparse import OptionParser, make_option
+
+from stgit.commands.common import *
+from stgit.utils import *
+from stgit import stack, git
+
+
+help = 'remove the topmost or any unapplied patch'
+usage = '%prog <name>'
+
+options = []
+
+
+def func(parser, options, args):
+    """Deletes a patch
+    """
+    if len(args) != 1:
+        parser.error('incorrect number of arguments')
+
+    if args[0] == crt_series.get_current():
+        check_local_changes()
+        check_conflicts()
+        check_head_top_equal()
+
+    crt_series.delete_patch(args[0])
+    print 'Patch "%s" successfully deleted' % args[0]
+    print_crt_patch()