blob: d711609551bb40692ac49b6afaf6faa98d223e89 [file] [log] [blame]
#!/usr/bin/env python
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# TODO:
#
# Remove properties from the given URL.
from csvn.core import *
from csvn.repos import RemoteRepository, RepositoryURI
from csvn.auth import User
from optparse import OptionParser
usage = """python trunkify.py [OPTION]... URL
Moves all the children of the given URL to a new directory in that
URL. Convenient for adding a top-level "trunk" directory to a project
without one."""
parser = OptionParser(usage=usage)
parser.add_option("-m", "--message", dest="message",
help="use MESSAGE as a log message")
parser.add_option("-F", "--file", dest="file",
help="read log message from FILE")
parser.add_option("-u", "--username", dest="username",
help="commit the changes as USERNAME")
parser.add_option("-d", "--directory", dest="directory",
help="set name of new directory")
(options, args) = parser.parse_args()
if len(args) != 1:
parser.print_help()
sys.exit(1)
repos_url = args[0]
# Initialize variables
new_dir_name = "trunk"
if options.directory:
new_dir_name = options.directory
if options.message:
commit_message = options.message
elif options.file:
commit_message = open(options.file).read()
else:
commit_message = "Move project into new directory '%s'." % new_dir_name
svn_cmdline_init("", stderr)
s = RemoteRepository(repos_url, user=User(username=options.username))
txn = s.txn()
for name in s.list("").keys():
txn.delete(name)
txn.copy(src_path="", dest_path=new_dir_name)
txn.commit(commit_message)