blob: 29bcf3759b6623e801774e6e62f50f8576b34d29 [file] [log] [blame]
#
# 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.
#
from subprocess import *
from os import *
from os.path import *
from sys import *
from shutil import *
srcroot = argv[1]
dstroot = argv[2]
svndirs = set()
svnfiles = set()
proc = Popen([ "svn", "status", "-v", dstroot ], stdout=PIPE)
for line in proc.stdout.readlines():
if line[0] != "?" and line[0] != "D":
path = line[5:].split()[3]
item = relpath(path, dstroot)
if item != ".":
if isdir(path):
svndirs.add(item)
else:
svnfiles.add(item)
def scan(arg, directory, files):
global srcroot
global dstroot
global svndirs
global svnfiles
dir = relpath(directory, srcroot)
if dir == ".":
dir = ""
else:
if dir in svndirs:
svndirs.remove(dir)
else:
dstpath = join(dstroot, dir)
mkdir(dstpath)
call(["svn", "add", dstpath])
for file in files:
file = join(dir, file)
srcpath = join(srcroot, file)
if not isdir(srcpath):
dstpath = join(dstroot, file)
copyfile(srcpath, dstpath)
if file in svnfiles:
svnfiles.remove(file)
else:
call(["svn", "add", dstpath])
walk(srcroot, scan, 0)
# Don't touch the .htaccess file at the root
if ".htaccess" in svnfiles:
svnfiles.remove(".htaccess")
for file in svnfiles:
call(["svn", "remove", join(dstroot, file)])
for dir in svndirs:
call(["svn", "remove", join(dstroot, dir)])