You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/09/08 13:24:03 UTC

svn commit: r1807758 - in /sling/trunk/tooling/scm: ./ scripts/ scripts/gen-repo-candidates.sh

Author: rombert
Date: Fri Sep  8 13:24:03 2017
New Revision: 1807758

URL: http://svn.apache.org/viewvc?rev=1807758&view=rev
Log:
SLING-3987 - move from Subversion to Git

Add a script to generate repo candidates

Added:
    sling/trunk/tooling/scm/
    sling/trunk/tooling/scm/scripts/
    sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh   (with props)

Added: sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh?rev=1807758&view=auto
==============================================================================
--- sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh (added)
+++ sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh Fri Sep  8 13:24:03 2017
@@ -0,0 +1,44 @@
+#!/bin/sh
+# 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.
+
+# this script is used to generate a list of Git repo candidates for migration
+# from SVN to Git
+
+if [ ! -f check_staged_release.sh ]; then
+    echo "Please run this script from the root of the Sling SVN repository"
+    exit 1
+fi
+
+for pom in $(find . -name pom.xml  \
+    | grep -v './tooling/ide' \
+    | grep -v '/target/' \
+    | grep -v '/archetype-resources/' \
+    | grep -v '/src/test/resources/' \
+    | sort); do
+
+    # remove reactor poms
+    grep -q modules $pom
+    if [ $? -eq 0 ]; then
+        continue;
+    fi
+    
+    pom=${pom%/pom.xml} # remove trailing '/pom.xml'
+    pom=${pom#./} # remove leading ./
+
+    echo $pom
+done
+
+echo "tooling/ide" # by exception, this will be a standalone module

Propchange: sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh
------------------------------------------------------------------------------
    svn:executable = *