[Libreoffice-commits] dev-tools.git: archives/corereleasebranches corereleasebranches/corereleasebranches corereleasebranches/killtagslocal.sh corereleasebranches/killtags.sh

Bjoern Michaelsen bjoern.michaelsen at canonical.com
Thu Jun 6 13:52:33 PDT 2013


 archives/corereleasebranches/corereleasebranches |  290 +++++++++++++++++++++++
 archives/corereleasebranches/killtags.sh         |    5 
 archives/corereleasebranches/killtagslocal.sh    |    2 
 corereleasebranches/corereleasebranches          |  290 -----------------------
 corereleasebranches/killtags.sh                  |    5 
 corereleasebranches/killtagslocal.sh             |    2 
 6 files changed, 297 insertions(+), 297 deletions(-)

New commits:
commit 556c4739e09ac1ee947fcdda1eb1b890e72cb9be
Author: Bjoern Michaelsen <bjoern.michaelsen at canonical.com>
Date:   Thu Jun 6 22:52:09 2013 +0200

    corereleasebranches is only of historical interest

diff --git a/archives/corereleasebranches/corereleasebranches b/archives/corereleasebranches/corereleasebranches
new file mode 100755
index 0000000..944147a
--- /dev/null
+++ b/archives/corereleasebranches/corereleasebranches
@@ -0,0 +1,290 @@
+#!/bin/bash
+
+REPODIR=`readlink -f $1`
+CLEANSPACES=`readlink -f $2`
+
+OLDREPONAMES="artwork base bootstrap calc components extensions extras filters impress libs-core libs-extern-sys libs-extern libs-gui postprocess sdk testing ure writer" 
+
+TAGSTODELETE=""
+
+function delete_tag {
+    TAGSTODELETE="$TAGSTODELETE $1"
+    git tag -d $1
+}
+
+function recreate_repotag {
+    local REPO=$1
+    local TAGTOCREATE=$2
+    local BASETAG=$3
+    if [ -n "`cd $REPODIR/core && git tag|grep ${REPO}_${TAGTOCREATE}`" ]
+    then
+        echo "tag ${REPO}_${TAGTOCREATE} exists already in core."
+        return
+    fi
+    if [ -z "`cd $REPODIR/$REPO && git tag|grep ${TAGTOCREATE}`" ]
+    then
+        echo "tag ${TAGTOCREATE} also missing in repo ${REPO}."
+        return
+    fi
+    pushd $REPODIR/core > /dev/null
+    git checkout -b tmp/recreate_repotag ${REPO}_$BASETAG
+    git clean -df
+    rm -rf *
+    popd
+    pushd $REPODIR/$REPO > /dev/null
+    git archive --format=tar $TAGTOCREATE | tar -xC $REPODIR/core
+    find . -type f -not -path "./.git*" | $CLEANSPACES -p 8
+    local MSG=`mktemp`
+    echo "recreated tag $TAGTOCREATE which had these commits:" > $MSG
+    git log --stat --decorate=full ${BASETAG}..${TAGTOCREATE} >> $MSG
+    popd > /dev/null
+    pushd $REPODIR/core > /dev/null
+    git add --all
+    git commit -F $MSG
+    rm $MSG
+    git tag -s -m "tagging ${TAGTOCREATE} for old repository ${REPO}" ${REPO}_$TAGTOCREATE
+    git checkout master
+    git branch -D  tmp/recreate_repotag
+    popd
+}
+
+function premerge_fixes {
+    pushd $REPODIR/core > /dev/null
+    rm .git/hooks/*
+    git tag -s -m "tagging LIBREOFFICE_3_3_0_1 for old repository writer" writer_LIBREOFFICE_3_3_0_1 520eb9a251e557ffbebfc79deb5ee0cb55600d9e
+    git tag -s -m "tagging LIBREOFFICE_3_3_0_1 for old repository postprocess" postprocess_LIBREOFFICE_3_3_0_1 98bb7da5f26a1644397dbe73d35e0a083e45da85
+    delete_tag filters_feature/gnumake4_writerfilter_base
+    delete_tag filters_feature/gnumake4_writerfilter_head
+
+    for repo in $OLDREPONAMES
+    do
+        recreate_repotag ${repo} OOO_BUILD_3_2_98_1 OOO_BUILD_3_2_98_0
+        git tag -s ${repo}_LIBREOFFICE_3_2_99_1 ${repo}_LIBREOFFICE_CREATE
+        recreate_repotag ${repo} libreoffice-3.3.0.4 libreoffice-3.3.0.3
+        recreate_repotag ${repo} libreoffice-3.3.1.1 libreoffice-3.3.0.3
+        recreate_repotag ${repo} libreoffice-3.3.1.2 libreoffice-3.3.1.1
+        recreate_repotag ${repo} libreoffice-3.3.3.1 libreoffice-3.3.2.1
+        recreate_repotag ${repo} libreoffice-3.3.4.1 libreoffice-3.3.3.1
+        delete_tag ${repo}_ooo/DEV300_last_svn_milestone
+    done
+
+ 
+    popd > /dev/null
+}
+
+function postmerge_fixes {
+    pushd $REPODIR/core > /dev/null
+    rm .git/hooks/*
+    git tag -s -m "tagging libreoffice-3.2.99.1" libreoffice-3.2.99.1 LIBREOFFICE_3_2_99_1
+    delete_tag LIBREOFFICE_3_2_99_1
+    git tag -s -m "tagging libreoffice-3.2.99.2" libreoffice-3.2.99.2 LIBREOFFICE_3_2_99_2
+    delete_tag LIBREOFFICE_3_2_99_2
+    git tag -s -m "tagging libreoffice-3.2.99.3" libreoffice-3.2.99.3 LIBREOFFICE_3_2_99_3
+    delete_tag LIBREOFFICE_3_2_99_3
+    git tag -s -m "tagging libreoffice-3.3.0.1" libreoffice-3.3.0.1 LIBREOFFICE_3_3_0_1
+    delete_tag LIBREOFFICE_3_3_0_1
+    delete_tag linux-build-fridrich-20100930
+    git branch -D LIBREOFFICE
+    git branch -D LO-BASE-INTEGRATION-DEV300
+    git branch -D OOO_BUILD
+    git branch -D linux-build-fridrich-20100930
+    git branch -D ooo/OOO310
+    git branch -D ooo/OOO320
+    git branch -D ooo/OOO330
+    git tag -s -m "tagging ooo/DEV300_m63 as ooo/DEV300_last_svn_milestone" ooo/DEV300_last_svn_milestone ooo/DEV300_m63
+    popd > /dev/null
+}
+
+function tag_to_notes {
+    local TAG=$1
+    pushd $REPODIR/core > /dev/null
+    local OLDREPOTAGS=`for repo in $OLDREPONAMES;do echo ${repo}_${TAG}; done`
+    # -remove split repo tags
+    # -write split repo notes replacing the tag
+    for repotag in $OLDREPOTAGS
+    do
+        echo "tag to note: $repotag"
+        if [ -n "`git tag|grep ${repotag}`" ]
+        then
+            git notes append -m "split repo tag: ${repotag}" `git rev-list --no-walk ${repotag}`
+            delete_tag ${repotag}
+        fi
+    done
+    popd > /dev/null
+}
+
+function merge_tag {
+    local TAG=$1
+    # -dont try to create an existing tag
+    if [ -z "`git tag|grep ${TAG}`" ]
+    then
+        return
+    fi
+    pushd $REPODIR/core > /dev/null
+    local OLDREPOTAGS=`for repo in $OLDREPONAMES;do echo ${repo}_${TAG}; done`
+    # -check if all repo tags are there
+    local MISSINGTAGS=
+    for repotag in $OLDREPOTAGS
+    do
+        if [ -z "`git tag|grep ${repotag}`" ]
+        then
+            MISSINGTAGS+=" $repotag"
+        fi
+    done 
+    if [ -n "$MISSINGTAGS" ]
+    then
+        echo "Not mergeing tag $TAG because $MISSINGTAGS are missing!"
+        SKIPPEDTAGS="$SKIPPEDTAGS $TAG"
+        ALLMISSINGTAGS="$ALLMISSINGTAGS $MISSINGTAGS"
+        popd > /dev/null
+        return
+    fi
+    # -if so merge them in the current branch
+    git clean -df > /dev/null
+    git merge --strategy ours --no-commit $OLDREPOTAGS
+    rm -rf *
+    for repo in $OLDREPONAMES
+    do
+        git archive --format=tar ${repo}_${TAG}|tar -x
+    done
+    # -use .gitignore and .gitattributes from master
+    git checkout master -- .gitignore .gitattributes
+    git add --all
+    # -use time of the last commit on all branches
+    COMMITTIME=`git rev-list --no-walk --timestamp --date-order $OLDREPOTAGS --max-count=1|cut -f1 -d\ `
+    GIT_AUTOR_DATE="$COMMITTIME" GIT_COMMITER_DATE="$COMMITTIME" git commit -m "merged tag $TAG" --date=$COMMITTIME
+    # -tag merged commit
+    git tag -s -m "merged tag ${TAG} from old repositories" $TAG
+    popd > /dev/null
+}
+
+#creates a merged branch
+function create_branch {
+    echo "creating branch $1 with tags $2"
+    local BRANCHNAME=$1
+    local TAGS=$2
+    [ -n "$BRANCHNAME" ] || return
+    [ -n "$TAGS" ] || return
+    local BOOTSTRAPTAGS=""
+    pushd $REPODIR/core > /dev/null
+    for tag in $TAGS
+    do
+        BOOTSTRAPTAGS="$BOOTSTRAPTAGS bootstrap_$tag"
+    done
+    #sort tags for this branch topological
+    local ORDEREDBOOTSTRAPHASHES=`git rev-list --no-walk --topo-order --reverse $BOOTSTRAPTAGS`
+    local BRANCHCREATED=
+    for hash in $ORDEREDBOOTSTRAPHASHES
+    do
+        local TAG=`git name-rev --tags --name-only $hash|sed -e s/^bootstrap_// -e s/..$//`
+        echo "working on bootstrap commit $hash which is $TAG"
+        if [ -z "$BRANCHCREATED" ]
+        then
+            #-if the first tag has already been created just start from there
+            #-otherwise start from bootstrap
+            if [ -n "`git tag|grep ${TAG}`" ]
+            then
+                echo "basetag $TAG for branch $BRANCHNAME does not exist yet."
+                if [ -n "`git tag|grep bootstrap_$TAG`" ]
+                then
+                    echo "creating branch from bootstrap."
+                    git checkout -b $BRANCHNAME bootstrap_$TAG
+                    echo "merge tag $TAG"
+                    merge_tag $TAG
+                    BRANCHCREATED=T
+                else
+                    echo "missing bootstrap tag bootstrap_$TAG for creating branch $BRANCHNAME"
+                fi
+            else
+                echo "basetag $TAG for branch $BRANCHNAME has already been created."
+                git checkout -b $BRANCHNAME $TAG
+                BRANCHCREATED=T
+            fi
+        else
+            #-we already have a branch so we just pump out the merged tags as commits on it
+            merge_tag $TAG
+        fi
+    done
+    popd > /dev/null
+}
+
+
+# find and sort all relevant tags
+# ensure the basebranches get created first
+FINDREPOBRANCHES=`mktemp`
+TAGSFORBRANCH=`mktemp`
+cat > $FINDREPOBRANCHES <<EOF
+    BEGIN {
+        RS=" ";
+        FS=".";
+        TAGSFORBRANCH["ooo/OOO320"] = "ooo/DEV300_m60";
+        TAGSFORBRANCH["ooo/OOO330"] = "ooo/DEV300_m84";
+        TAGSFORBRANCH["ooo/DEV300_last_svn_milestone"] = "ooo/DEV300_m63";
+        TAGSFORBRANCH["libreoffice-3-4-2"] = "libreoffice-3.4.1.1";
+        TAGSFORBRANCH["libreoffice-3-4-1"] = "libreoffice-3.4.0.1";
+        TAGSFORBRANCH["libreoffice-3-3-3"] = "libreoffice-3.3.2.1";
+        TAGSFORBRANCH["libreoffice-3-3-2"] = "libreoffice-3.3.1.1";
+        TAGSFORBRANCH["libreoffice-3-3-1"] = "LIBREOFFICE_3.3.1.1";
+    }
+    /^libreoffice-.*/ {
+        MAJOR=\$1 "-" \$2
+        MINOR=\$1 "-" \$2 "-" \$3
+        RC=\$1 "." \$2 "." \$3 "." \$4
+        # libreoffice-3.3 is way undertagged for now so we leave it out
+        # we can make a run for it later, when there are enough tags
+        # (or at least the release finals)
+        if(\$4=="1")
+            TAGSFORBRANCH[MAJOR] = TAGSFORBRANCH[MAJOR] " " RC;
+        TAGSFORBRANCH[MINOR] = TAGSFORBRANCH[MINOR] " " RC;
+        BASEBRANCHES[MAJOR] = "T";
+    }
+    /^ooo\/OOO/ {
+        sub(/\n?$/,"",\$0);
+        BRANCH=\$0
+        sub(/_m[0-9]*\$/,"",BRANCH);
+        TAGSFORBRANCH[BRANCH] = TAGSFORBRANCH[BRANCH] " " \$0;
+        BASEBRANCHES["ooo/DEV300"] = "T";
+    }
+    /^ooo\/DEV/ {
+        BRANCH=\$0
+        sub(/_m[0-9]*\$/,"",BRANCH);
+        TAGSFORBRANCH[BRANCH] = TAGSFORBRANCH[BRANCH] " " \$0;
+    }
+    /^(LIBREOFFICE_|LO-BASE-INTEGRATION-DEV300_|OOO_BUILD_|linux-build-fridrich-20100930|OpenOffice_).*/ {
+        if(\$0 ~ /^OOO_BUILD/) {
+            BRANCH = "OOO_BUILD";
+        } else {
+            split(\$0, fields, "_");
+            BRANCH = fields[1];
+        }
+        TAGSFORBRANCH[BRANCH] = TAGSFORBRANCH[BRANCH] " " \$0;
+        BASEBRANCHES[BRANCH] = "T";
+    }
+    END {
+        for (BRANCH in BASEBRANCHES) {
+            print "create_branch " BRANCH " '" TAGSFORBRANCH[BRANCH] "'";
+            delete TAGSFORBRANCH[BRANCH];
+        }
+        for (BRANCH in TAGSFORBRANCH)
+            print "create_branch " BRANCH " '" TAGSFORBRANCH[BRANCH] "'";
+    }
+EOF
+
+premerge_fixes
+ALLMISSINGTAGS=
+SKIPPEDTAGS=
+SPLITREPOTAGS=`cd $REPODIR/core; git tag|grep bootstrap|sed s/^bootstrap_//`
+echo $SPLITREPOTAGS|awk -f $FINDREPOBRANCHES > $TAGSFORBRANCH
+cat $TAGSFORBRANCH
+echo "SPLITREPOTAGS: $SPLITREPOTAGS"
+source $TAGSFORBRANCH
+for TAG in $SPLITREPOTAGS
+do
+    tag_to_notes $TAG
+done
+rm $FINDREPOBRANCHES $TAGSFORBRANCH
+postmerge_fixes
+echo "Missing tags: $ALLMISSINGTAGS"
+echo "Skipped tags: $SKIPPEDTAGS"
+echo "Deleted tags: $TAGSTODELETE"
+
diff --git a/archives/corereleasebranches/killtags.sh b/archives/corereleasebranches/killtags.sh
new file mode 100755
index 0000000..5cc030a
--- /dev/null
+++ b/archives/corereleasebranches/killtags.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+for tag in filters_feature/gnumake4_writerfilter_base filters_feature/gnumake4_writerfilter_head artwork_ooo/DEV300_last_svn_milestone base_ooo/DEV300_last_svn_milestone bootstrap_ooo/DEV300_last_svn_milestone calc_ooo/DEV300_last_svn_milestone components_ooo/DEV300_last_svn_milestone extensions_ooo/DEV300_last_svn_milestone extras_ooo/DEV300_last_svn_milestone filters_ooo/DEV300_last_svn_milestone impress_ooo/DEV300_last_svn_milestone libs-core_ooo/DEV300_last_svn_milestone libs-extern-sys_ooo/DEV300_last_svn_milestone libs-extern_ooo/DEV300_last_svn_milestone libs-gui_ooo/DEV300_last_svn_milestone postprocess_ooo/DEV300_last_svn_milestone sdk_ooo/DEV300_last_svn_milestone testing_ooo/DEV300_last_svn_milestone ure_ooo/DEV300_last_svn_milestone writer_ooo/DEV300_last_svn_milestone artwork_LIBREOFFICE_3_2_99_1 base_LIBREOFFICE_3_2_99_1 bootstrap_LIBREOFFICE_3_2_99_1 extensions_LIBREOFFICE_3_2_99_1 extras_LIBREOFFICE_3_2_99_1 filters_LIBREOFFICE_3_2_99_1 libs-extern-sys_LIBREO
 FFICE_3_2_99_1 libs-extern_LIBREOFFICE_3_2_99_1 postprocess_LIBREOFFICE_3_2_99_1 sdk_LIBREOFFICE_3_2_99_1 testing_LIBREOFFICE_3_2_99_1 writer_LIBREOFFICE_3_2_99_1 artwork_LIBREOFFICE_3_2_99_2 base_LIBREOFFICE_3_2_99_2 bootstrap_LIBREOFFICE_3_2_99_2 calc_LIBREOFFICE_3_2_99_2 components_LIBREOFFICE_3_2_99_2 extensions_LIBREOFFICE_3_2_99_2 extras_LIBREOFFICE_3_2_99_2 filters_LIBREOFFICE_3_2_99_2 impress_LIBREOFFICE_3_2_99_2 libs-core_LIBREOFFICE_3_2_99_2 libs-extern-sys_LIBREOFFICE_3_2_99_2 libs-extern_LIBREOFFICE_3_2_99_2 libs-gui_LIBREOFFICE_3_2_99_2 postprocess_LIBREOFFICE_3_2_99_2 sdk_LIBREOFFICE_3_2_99_2 testing_LIBREOFFICE_3_2_99_2 ure_LIBREOFFICE_3_2_99_2 writer_LIBREOFFICE_3_2_99_2 artwork_LIBREOFFICE_3_2_99_3 base_LIBREOFFICE_3_2_99_3 bootstrap_LIBREOFFICE_3_2_99_3 calc_LIBREOFFICE_3_2_99_3 components_LIBREOFFICE_3_2_99_3 extensions_LIBREOFFICE_3_2_99_3 extras_LIBREOFFICE_3_2_99_3 filters_LIBREOFFICE_3_2_99_3 impress_LIBREOFFICE_3_2_99_3 libs-core_LIBREOFFICE_3_2_99_3 
 libs-extern-sys_LIBREOFFICE_3_2_99_3 libs-extern_LIBREOFFICE_3_2_99_3 libs-gui_LIBREOFFICE_3_2_99_3 postprocess_LIBREOFFICE_3_2_99_3 sdk_LIBREOFFICE_3_2_99_3 testing_LIBREOFFICE_3_2_99_3 ure_LIBREOFFICE_3_2_99_3 writer_LIBREOFFICE_3_2_99_3 artwork_LIBREOFFICE_3_3_0_1 base_LIBREOFFICE_3_3_0_1 bootstrap_LIBREOFFICE_3_3_0_1 calc_LIBREOFFICE_3_3_0_1 components_LIBREOFFICE_3_3_0_1 extensions_LIBREOFFICE_3_3_0_1 extras_LIBREOFFICE_3_3_0_1 filters_LIBREOFFICE_3_3_0_1 impress_LIBREOFFICE_3_3_0_1 libs-core_LIBREOFFICE_3_3_0_1 libs-extern-sys_LIBREOFFICE_3_3_0_1 libs-extern_LIBREOFFICE_3_3_0_1 libs-gui_LIBREOFFICE_3_3_0_1 postprocess_LIBREOFFICE_3_3_0_1 sdk_LIBREOFFICE_3_3_0_1 testing_LIBREOFFICE_3_3_0_1 ure_LIBREOFFICE_3_3_0_1 writer_LIBREOFFICE_3_3_0_1 artwork_LIBREOFFICE_3_3_FREEZE base_LIBREOFFICE_3_3_FREEZE bootstrap_LIBREOFFICE_3_3_FREEZE calc_LIBREOFFICE_3_3_FREEZE components_LIBREOFFICE_3_3_FREEZE extensions_LIBREOFFICE_3_3_FREEZE extras_LIBREOFFICE_3_3_FREEZE filters_LIBREOFF
 ICE_3_3_FREEZE impress_LIBREOFFICE_3_3_FREEZE libs-core_LIBREOFFICE_3_3_FREEZE libs-extern-sys_LIBREOFFICE_3_3_FREEZE libs-extern_LIBREOFFICE_3_3_FREEZE libs-gui_LIBREOFFICE_3_3_FREEZE postprocess_LIBREOFFICE_3_3_FREEZE sdk_LIBREOFFICE_3_3_FREEZE testing_LIBREOFFICE_3_3_FREEZE ure_LIBREOFFICE_3_3_FREEZE writer_LIBREOFFICE_3_3_FREEZE artwork_LIBREOFFICE_CREATE base_LIBREOFFICE_CREATE bootstrap_LIBREOFFICE_CREATE extensions_LIBREOFFICE_CREATE extras_LIBREOFFICE_CREATE filters_LIBREOFFICE_CREATE libs-extern-sys_LIBREOFFICE_CREATE libs-extern_LIBREOFFICE_CREATE postprocess_LIBREOFFICE_CREATE sdk_LIBREOFFICE_CREATE testing_LIBREOFFICE_CREATE writer_LIBREOFFICE_CREATE artwork_LIBREOFFICE_PRE_BOOTSTRAP_BUILD base_LIBREOFFICE_PRE_BOOTSTRAP_BUILD bootstrap_LIBREOFFICE_PRE_BOOTSTRAP_BUILD calc_LIBREOFFICE_PRE_BOOTSTRAP_BUILD components_LIBREOFFICE_PRE_BOOTSTRAP_BUILD extensions_LIBREOFFICE_PRE_BOOTSTRAP_BUILD extras_LIBREOFFICE_PRE_BOOTSTRAP_BUILD filters_LIBREOFFICE_PRE_BOOTSTRAP_BUI
 LD impress_LIBREOFFICE_PRE_BOOTSTRAP_BUILD libs-core_LIBREOFFICE_PRE_BOOTSTRAP_BUILD libs-extern-sys_LIBREOFFICE_PRE_BOOTSTRAP_BUILD libs-extern_LIBREOFFICE_PRE_BOOTSTRAP_BUILD libs-gui_LIBREOFFICE_PRE_BOOTSTRAP_BUILD postprocess_LIBREOFFICE_PRE_BOOTSTRAP_BUILD sdk_LIBREOFFICE_PRE_BOOTSTRAP_BUILD testing_LIBREOFFICE_PRE_BOOTSTRAP_BUILD ure_LIBREOFFICE_PRE_BOOTSTRAP_BUILD writer_LIBREOFFICE_PRE_BOOTSTRAP_BUILD artwork_LO-BASE-INTEGRATION-DEV300_M101 base_LO-BASE-INTEGRATION-DEV300_M101 bootstrap_LO-BASE-INTEGRATION-DEV300_M101 calc_LO-BASE-INTEGRATION-DEV300_M101 components_LO-BASE-INTEGRATION-DEV300_M101 extensions_LO-BASE-INTEGRATION-DEV300_M101 extras_LO-BASE-INTEGRATION-DEV300_M101 filters_LO-BASE-INTEGRATION-DEV300_M101 impress_LO-BASE-INTEGRATION-DEV300_M101 libs-core_LO-BASE-INTEGRATION-DEV300_M101 libs-extern-sys_LO-BASE-INTEGRATION-DEV300_M101 libs-extern_LO-BASE-INTEGRATION-DEV300_M101 libs-gui_LO-BASE-INTEGRATION-DEV300_M101 postprocess_LO-BASE-INTEGRATION-DEV300_M
 101 sdk_LO-BASE-INTEGRATION-DEV300_M101 testing_LO-BASE-INTEGRATION-DEV300_M101 ure_LO-BASE-INTEGRATION-DEV300_M101 writer_LO-BASE-INTEGRATION-DEV300_M101 artwork_LO-BASE-INTEGRATION-DEV300_m98 base_LO-BASE-INTEGRATION-DEV300_m98 bootstrap_LO-BASE-INTEGRATION-DEV300_m98 calc_LO-BASE-INTEGRATION-DEV300_m98 components_LO-BASE-INTEGRATION-DEV300_m98 extensions_LO-BASE-INTEGRATION-DEV300_m98 extras_LO-BASE-INTEGRATION-DEV300_m98 filters_LO-BASE-INTEGRATION-DEV300_m98 impress_LO-BASE-INTEGRATION-DEV300_m98 libs-core_LO-BASE-INTEGRATION-DEV300_m98 libs-extern-sys_LO-BASE-INTEGRATION-DEV300_m98 libs-extern_LO-BASE-INTEGRATION-DEV300_m98 libs-gui_LO-BASE-INTEGRATION-DEV300_m98 postprocess_LO-BASE-INTEGRATION-DEV300_m98 sdk_LO-BASE-INTEGRATION-DEV300_m98 testing_LO-BASE-INTEGRATION-DEV300_m98 ure_LO-BASE-INTEGRATION-DEV300_m98 writer_LO-BASE-INTEGRATION-DEV300_m98 artwork_OOO_BUILD_3_2_98_0 base_OOO_BUILD_3_2_98_0 bootstrap_OOO_BUILD_3_2_98_0 calc_OOO_BUILD_3_2_98_0 components_OOO_BU
 ILD_3_2_98_0 extensions_OOO_BUILD_3_2_98_0 extras_OOO_BUILD_3_2_98_0 filters_OOO_BUILD_3_2_98_0 impress_OOO_BUILD_3_2_98_0 libs-core_OOO_BUILD_3_2_98_0 libs-extern-sys_OOO_BUILD_3_2_98_0 libs-extern_OOO_BUILD_3_2_98_0 libs-gui_OOO_BUILD_3_2_98_0 postprocess_OOO_BUILD_3_2_98_0 sdk_OOO_BUILD_3_2_98_0 testing_OOO_BUILD_3_2_98_0 ure_OOO_BUILD_3_2_98_0 writer_OOO_BUILD_3_2_98_0 artwork_OOO_BUILD_3_2_98_1 base_OOO_BUILD_3_2_98_1 bootstrap_OOO_BUILD_3_2_98_1 calc_OOO_BUILD_3_2_98_1 components_OOO_BUILD_3_2_98_1 extensions_OOO_BUILD_3_2_98_1 extras_OOO_BUILD_3_2_98_1 filters_OOO_BUILD_3_2_98_1 impress_OOO_BUILD_3_2_98_1 libs-core_OOO_BUILD_3_2_98_1 libs-extern-sys_OOO_BUILD_3_2_98_1 libs-extern_OOO_BUILD_3_2_98_1 libs-gui_OOO_BUILD_3_2_98_1 postprocess_OOO_BUILD_3_2_98_1 sdk_OOO_BUILD_3_2_98_1 testing_OOO_BUILD_3_2_98_1 ure_OOO_BUILD_3_2_98_1 writer_OOO_BUILD_3_2_98_1 artwork_OOO_BUILD_3_2_99_0_PRE base_OOO_BUILD_3_2_99_0_PRE bootstrap_OOO_BUILD_3_2_99_0_PRE calc_OOO_BUILD_3_2_99_0_
 PRE components_OOO_BUILD_3_2_99_0_PRE extensions_OOO_BUILD_3_2_99_0_PRE extras_OOO_BUILD_3_2_99_0_PRE filters_OOO_BUILD_3_2_99_0_PRE impress_OOO_BUILD_3_2_99_0_PRE libs-core_OOO_BUILD_3_2_99_0_PRE libs-extern-sys_OOO_BUILD_3_2_99_0_PRE libs-extern_OOO_BUILD_3_2_99_0_PRE libs-gui_OOO_BUILD_3_2_99_0_PRE postprocess_OOO_BUILD_3_2_99_0_PRE sdk_OOO_BUILD_3_2_99_0_PRE testing_OOO_BUILD_3_2_99_0_PRE ure_OOO_BUILD_3_2_99_0_PRE writer_OOO_BUILD_3_2_99_0_PRE artwork_libreoffice-3.3.0.2 base_libreoffice-3.3.0.2 bootstrap_libreoffice-3.3.0.2 calc_libreoffice-3.3.0.2 components_libreoffice-3.3.0.2 extensions_libreoffice-3.3.0.2 extras_libreoffice-3.3.0.2 filters_libreoffice-3.3.0.2 impress_libreoffice-3.3.0.2 libs-core_libreoffice-3.3.0.2 libs-extern-sys_libreoffice-3.3.0.2 libs-extern_libreoffice-3.3.0.2 libs-gui_libreoffice-3.3.0.2 postprocess_libreoffice-3.3.0.2 sdk_libreoffice-3.3.0.2 testing_libreoffice-3.3.0.2 ure_libreoffice-3.3.0.2 writer_libreoffice-3.3.0.2 artwork_libreoffice-3
 .3.0.3 base_libreoffice-3.3.0.3 bootstrap_libreoffice-3.3.0.3 calc_libreoffice-3.3.0.3 components_libreoffice-3.3.0.3 extensions_libreoffice-3.3.0.3 extras_libreoffice-3.3.0.3 filters_libreoffice-3.3.0.3 impress_libreoffice-3.3.0.3 libs-core_libreoffice-3.3.0.3 libs-extern-sys_libreoffice-3.3.0.3 libs-extern_libreoffice-3.3.0.3 libs-gui_libreoffice-3.3.0.3 postprocess_libreoffice-3.3.0.3 sdk_libreoffice-3.3.0.3 testing_libreoffice-3.3.0.3 ure_libreoffice-3.3.0.3 writer_libreoffice-3.3.0.3 artwork_libreoffice-3.3.0.4 base_libreoffice-3.3.0.4 bootstrap_libreoffice-3.3.0.4 calc_libreoffice-3.3.0.4 components_libreoffice-3.3.0.4 extensions_libreoffice-3.3.0.4 extras_libreoffice-3.3.0.4 filters_libreoffice-3.3.0.4 impress_libreoffice-3.3.0.4 libs-core_libreoffice-3.3.0.4 libs-extern-sys_libreoffice-3.3.0.4 libs-extern_libreoffice-3.3.0.4 libs-gui_libreoffice-3.3.0.4 postprocess_libreoffice-3.3.0.4 sdk_libreoffice-3.3.0.4 testing_libreoffice-3.3.0.4 ure_libreoffice-3.3.0.4 writer_
 libreoffice-3.3.0.4 artwork_libreoffice-3.3.1.1 base_libreoffice-3.3.1.1 bootstrap_libreoffice-3.3.1.1 calc_libreoffice-3.3.1.1 components_libreoffice-3.3.1.1 extensions_libreoffice-3.3.1.1 extras_libreoffice-3.3.1.1 filters_libreoffice-3.3.1.1 impress_libreoffice-3.3.1.1 libs-core_libreoffice-3.3.1.1 libs-extern-sys_libreoffice-3.3.1.1 libs-extern_libreoffice-3.3.1.1 libs-gui_libreoffice-3.3.1.1 postprocess_libreoffice-3.3.1.1 sdk_libreoffice-3.3.1.1 testing_libreoffice-3.3.1.1 ure_libreoffice-3.3.1.1 writer_libreoffice-3.3.1.1 artwork_libreoffice-3.3.1.2 base_libreoffice-3.3.1.2 bootstrap_libreoffice-3.3.1.2 calc_libreoffice-3.3.1.2 components_libreoffice-3.3.1.2 extensions_libreoffice-3.3.1.2 extras_libreoffice-3.3.1.2 filters_libreoffice-3.3.1.2 impress_libreoffice-3.3.1.2 libs-core_libreoffice-3.3.1.2 libs-extern-sys_libreoffice-3.3.1.2 libs-extern_libreoffice-3.3.1.2 libs-gui_libreoffice-3.3.1.2 postprocess_libreoffice-3.3.1.2 sdk_libreoffice-3.3.1.2 testing_libreoffic
 e-3.3.1.2 ure_libreoffice-3.3.1.2 writer_libreoffice-3.3.1.2 artwork_libreoffice-3.3.2.1 base_libreoffice-3.3.2.1 bootstrap_libreoffice-3.3.2.1 calc_libreoffice-3.3.2.1 components_libreoffice-3.3.2.1 extensions_libreoffice-3.3.2.1 extras_libreoffice-3.3.2.1 filters_libreoffice-3.3.2.1 impress_libreoffice-3.3.2.1 libs-core_libreoffice-3.3.2.1 libs-extern-sys_libreoffice-3.3.2.1 libs-extern_libreoffice-3.3.2.1 libs-gui_libreoffice-3.3.2.1 postprocess_libreoffice-3.3.2.1 sdk_libreoffice-3.3.2.1 testing_libreoffice-3.3.2.1 ure_libreoffice-3.3.2.1 writer_libreoffice-3.3.2.1 bootstrap_libreoffice-3.3.2.2 artwork_libreoffice-3.3.3.1 base_libreoffice-3.3.3.1 bootstrap_libreoffice-3.3.3.1 calc_libreoffice-3.3.3.1 components_libreoffice-3.3.3.1 extensions_libreoffice-3.3.3.1 extras_libreoffice-3.3.3.1 filters_libreoffice-3.3.3.1 impress_libreoffice-3.3.3.1 libs-core_libreoffice-3.3.3.1 libs-extern-sys_libreoffice-3.3.3.1 libs-extern_libreoffice-3.3.3.1 libs-gui_libreoffice-3.3.3.1 pos
 tprocess_libreoffice-3.3.3.1 sdk_libreoffice-3.3.3.1 testing_libreoffice-3.3.3.1 ure_libreoffice-3.3.3.1 writer_libreoffice-3.3.3.1 artwork_libreoffice-3.3.4.1 base_libreoffice-3.3.4.1 bootstrap_libreoffice-3.3.4.1 calc_libreoffice-3.3.4.1 components_libreoffice-3.3.4.1 extensions_libreoffice-3.3.4.1 extras_libreoffice-3.3.4.1 filters_libreoffice-3.3.4.1 impress_libreoffice-3.3.4.1 libs-core_libreoffice-3.3.4.1 libs-extern-sys_libreoffice-3.3.4.1 libs-extern_libreoffice-3.3.4.1 libs-gui_libreoffice-3.3.4.1 postprocess_libreoffice-3.3.4.1 sdk_libreoffice-3.3.4.1 testing_libreoffice-3.3.4.1 ure_libreoffice-3.3.4.1 writer_libreoffice-3.3.4.1 artwork_libreoffice-3.3.99.1 base_libreoffice-3.3.99.1 bootstrap_libreoffice-3.3.99.1 calc_libreoffice-3.3.99.1 components_libreoffice-3.3.99.1 extensions_libreoffice-3.3.99.1 extras_libreoffice-3.3.99.1 filters_libreoffice-3.3.99.1 impress_libreoffice-3.3.99.1 libs-core_libreoffice-3.3.99.1 libs-extern-sys_libreoffice-3.3.99.1 libs-extern_
 libreoffice-3.3.99.1 libs-gui_libreoffice-3.3.99.1 postprocess_libreoffice-3.3.99.1 sdk_libreoffice-3.3.99.1 testing_libreoffice-3.3.99.1 ure_libreoffice-3.3.99.1 writer_libreoffice-3.3.99.1 artwork_libreoffice-3.3.99.2 base_libreoffice-3.3.99.2 bootstrap_libreoffice-3.3.99.2 calc_libreoffice-3.3.99.2 components_libreoffice-3.3.99.2 extensions_libreoffice-3.3.99.2 extras_libreoffice-3.3.99.2 filters_libreoffice-3.3.99.2 impress_libreoffice-3.3.99.2 libs-core_libreoffice-3.3.99.2 libs-extern-sys_libreoffice-3.3.99.2 libs-extern_libreoffice-3.3.99.2 libs-gui_libreoffice-3.3.99.2 postprocess_libreoffice-3.3.99.2 sdk_libreoffice-3.3.99.2 testing_libreoffice-3.3.99.2 ure_libreoffice-3.3.99.2 writer_libreoffice-3.3.99.2 artwork_libreoffice-3.3.99.3 base_libreoffice-3.3.99.3 bootstrap_libreoffice-3.3.99.3 calc_libreoffice-3.3.99.3 components_libreoffice-3.3.99.3 extensions_libreoffice-3.3.99.3 extras_libreoffice-3.3.99.3 filters_libreoffice-3.3.99.3 impress_libreoffice-3.3.99.3 lib
 s-core_libreoffice-3.3.99.3 libs-extern-sys_libreoffice-3.3.99.3 libs-extern_libreoffice-3.3.99.3 libs-gui_libreoffice-3.3.99.3 postprocess_libreoffice-3.3.99.3 sdk_libreoffice-3.3.99.3 testing_libreoffice-3.3.99.3 ure_libreoffice-3.3.99.3 writer_libreoffice-3.3.99.3 artwork_libreoffice-3.3.99.4 base_libreoffice-3.3.99.4 bootstrap_libreoffice-3.3.99.4 calc_libreoffice-3.3.99.4 components_libreoffice-3.3.99.4 extensions_libreoffice-3.3.99.4 extras_libreoffice-3.3.99.4 filters_libreoffice-3.3.99.4 impress_libreoffice-3.3.99.4 libs-core_libreoffice-3.3.99.4 libs-extern-sys_libreoffice-3.3.99.4 libs-extern_libreoffice-3.3.99.4 libs-gui_libreoffice-3.3.99.4 postprocess_libreoffice-3.3.99.4 sdk_libreoffice-3.3.99.4 testing_libreoffice-3.3.99.4 ure_libreoffice-3.3.99.4 writer_libreoffice-3.3.99.4 artwork_libreoffice-3.3.99.5 base_libreoffice-3.3.99.5 bootstrap_libreoffice-3.3.99.5 calc_libreoffice-3.3.99.5 components_libreoffice-3.3.99.5 extensions_libreoffice-3.3.99.5 extras_libre
 office-3.3.99.5 filters_libreoffice-3.3.99.5 impress_libreoffice-3.3.99.5 libs-core_libreoffice-3.3.99.5 libs-extern-sys_libreoffice-3.3.99.5 libs-extern_libreoffice-3.3.99.5 libs-gui_libreoffice-3.3.99.5 postprocess_libreoffice-3.3.99.5 sdk_libreoffice-3.3.99.5 testing_libreoffice-3.3.99.5 ure_libreoffice-3.3.99.5 writer_libreoffice-3.3.99.5 artwork_libreoffice-3.4.0.1 base_libreoffice-3.4.0.1 bootstrap_libreoffice-3.4.0.1 calc_libreoffice-3.4.0.1 components_libreoffice-3.4.0.1 extensions_libreoffice-3.4.0.1 extras_libreoffice-3.4.0.1 filters_libreoffice-3.4.0.1 impress_libreoffice-3.4.0.1 libs-core_libreoffice-3.4.0.1 libs-extern-sys_libreoffice-3.4.0.1 libs-extern_libreoffice-3.4.0.1 libs-gui_libreoffice-3.4.0.1 postprocess_libreoffice-3.4.0.1 sdk_libreoffice-3.4.0.1 testing_libreoffice-3.4.0.1 ure_libreoffice-3.4.0.1 writer_libreoffice-3.4.0.1 artwork_libreoffice-3.4.0.2 base_libreoffice-3.4.0.2 bootstrap_libreoffice-3.4.0.2 calc_libreoffice-3.4.0.2 components_libreoffic
 e-3.4.0.2 extensions_libreoffice-3.4.0.2 extras_libreoffice-3.4.0.2 filters_libreoffice-3.4.0.2 impress_libreoffice-3.4.0.2 libs-core_libreoffice-3.4.0.2 libs-extern-sys_libreoffice-3.4.0.2 libs-extern_libreoffice-3.4.0.2 libs-gui_libreoffice-3.4.0.2 postprocess_libreoffice-3.4.0.2 sdk_libreoffice-3.4.0.2 testing_libreoffice-3.4.0.2 ure_libreoffice-3.4.0.2 writer_libreoffice-3.4.0.2 artwork_libreoffice-3.4.1.1 base_libreoffice-3.4.1.1 bootstrap_libreoffice-3.4.1.1 calc_libreoffice-3.4.1.1 components_libreoffice-3.4.1.1 extensions_libreoffice-3.4.1.1 extras_libreoffice-3.4.1.1 filters_libreoffice-3.4.1.1 impress_libreoffice-3.4.1.1 libs-core_libreoffice-3.4.1.1 libs-extern-sys_libreoffice-3.4.1.1 libs-extern_libreoffice-3.4.1.1 libs-gui_libreoffice-3.4.1.1 postprocess_libreoffice-3.4.1.1 sdk_libreoffice-3.4.1.1 testing_libreoffice-3.4.1.1 ure_libreoffice-3.4.1.1 writer_libreoffice-3.4.1.1 bootstrap_libreoffice-3.4.1.2 bootstrap_libreoffice-3.4.1.3 artwork_libreoffice-3.4.2.1 
 base_libreoffice-3.4.2.1 bootstrap_libreoffice-3.4.2.1 calc_libreoffice-3.4.2.1 components_libreoffice-3.4.2.1 extensions_libreoffice-3.4.2.1 extras_libreoffice-3.4.2.1 filters_libreoffice-3.4.2.1 impress_libreoffice-3.4.2.1 libs-core_libreoffice-3.4.2.1 libs-extern-sys_libreoffice-3.4.2.1 libs-extern_libreoffice-3.4.2.1 libs-gui_libreoffice-3.4.2.1 postprocess_libreoffice-3.4.2.1 sdk_libreoffice-3.4.2.1 testing_libreoffice-3.4.2.1 ure_libreoffice-3.4.2.1 writer_libreoffice-3.4.2.1 artwork_libreoffice-3.4.2.2 base_libreoffice-3.4.2.2 bootstrap_libreoffice-3.4.2.2 calc_libreoffice-3.4.2.2 components_libreoffice-3.4.2.2 extensions_libreoffice-3.4.2.2 extras_libreoffice-3.4.2.2 filters_libreoffice-3.4.2.2 impress_libreoffice-3.4.2.2 libs-core_libreoffice-3.4.2.2 libs-extern-sys_libreoffice-3.4.2.2 libs-extern_libreoffice-3.4.2.2 libs-gui_libreoffice-3.4.2.2 postprocess_libreoffice-3.4.2.2 sdk_libreoffice-3.4.2.2 testing_libreoffice-3.4.2.2 ure_libreoffice-3.4.2.2 writer_libreof
 fice-3.4.2.2 artwork_libreoffice-3.4.2.3 base_libreoffice-3.4.2.3 bootstrap_libreoffice-3.4.2.3 calc_libreoffice-3.4.2.3 components_libreoffice-3.4.2.3 extensions_libreoffice-3.4.2.3 extras_libreoffice-3.4.2.3 filters_libreoffice-3.4.2.3 impress_libreoffice-3.4.2.3 libs-core_libreoffice-3.4.2.3 libs-extern-sys_libreoffice-3.4.2.3 libs-extern_libreoffice-3.4.2.3 libs-gui_libreoffice-3.4.2.3 postprocess_libreoffice-3.4.2.3 sdk_libreoffice-3.4.2.3 testing_libreoffice-3.4.2.3 ure_libreoffice-3.4.2.3 writer_libreoffice-3.4.2.3 artwork_linux-build-fridrich-20100930 base_linux-build-fridrich-20100930 bootstrap_linux-build-fridrich-20100930 calc_linux-build-fridrich-20100930 components_linux-build-fridrich-20100930 extensions_linux-build-fridrich-20100930 extras_linux-build-fridrich-20100930 filters_linux-build-fridrich-20100930 impress_linux-build-fridrich-20100930 libs-core_linux-build-fridrich-20100930 libs-extern-sys_linux-build-fridrich-20100930 libs-extern_linux-build-fridrich
 -20100930 libs-gui_linux-build-fridrich-20100930 postprocess_linux-build-fridrich-20100930 sdk_linux-build-fridrich-20100930 testing_linux-build-fridrich-20100930 ure_linux-build-fridrich-20100930 writer_linux-build-fridrich-20100930 artwork_ooo/DEV300_m100 base_ooo/DEV300_m100 bootstrap_ooo/DEV300_m100 calc_ooo/DEV300_m100 components_ooo/DEV300_m100 extensions_ooo/DEV300_m100 extras_ooo/DEV300_m100 filters_ooo/DEV300_m100 impress_ooo/DEV300_m100 libs-core_ooo/DEV300_m100 libs-extern-sys_ooo/DEV300_m100 libs-extern_ooo/DEV300_m100 libs-gui_ooo/DEV300_m100 postprocess_ooo/DEV300_m100 sdk_ooo/DEV300_m100 testing_ooo/DEV300_m100 ure_ooo/DEV300_m100 writer_ooo/DEV300_m100 artwork_ooo/DEV300_m101 base_ooo/DEV300_m101 bootstrap_ooo/DEV300_m101 calc_ooo/DEV300_m101 components_ooo/DEV300_m101 extensions_ooo/DEV300_m101 extras_ooo/DEV300_m101 filters_ooo/DEV300_m101 impress_ooo/DEV300_m101 libs-core_ooo/DEV300_m101 libs-extern-sys_ooo/DEV300_m101 libs-extern_ooo/DEV300_m101 libs-gui_
 ooo/DEV300_m101 postprocess_ooo/DEV300_m101 sdk_ooo/DEV300_m101 testing_ooo/DEV300_m101 ure_ooo/DEV300_m101 writer_ooo/DEV300_m101 artwork_ooo/DEV300_m102 base_ooo/DEV300_m102 bootstrap_ooo/DEV300_m102 calc_ooo/DEV300_m102 components_ooo/DEV300_m102 extensions_ooo/DEV300_m102 extras_ooo/DEV300_m102 filters_ooo/DEV300_m102 impress_ooo/DEV300_m102 libs-core_ooo/DEV300_m102 libs-extern-sys_ooo/DEV300_m102 libs-extern_ooo/DEV300_m102 libs-gui_ooo/DEV300_m102 postprocess_ooo/DEV300_m102 sdk_ooo/DEV300_m102 testing_ooo/DEV300_m102 ure_ooo/DEV300_m102 writer_ooo/DEV300_m102 artwork_ooo/DEV300_m103 base_ooo/DEV300_m103 bootstrap_ooo/DEV300_m103 calc_ooo/DEV300_m103 components_ooo/DEV300_m103 extensions_ooo/DEV300_m103 extras_ooo/DEV300_m103 filters_ooo/DEV300_m103 impress_ooo/DEV300_m103 libs-core_ooo/DEV300_m103 libs-extern-sys_ooo/DEV300_m103 libs-extern_ooo/DEV300_m103 libs-gui_ooo/DEV300_m103 postprocess_ooo/DEV300_m103 sdk_ooo/DEV300_m103 testing_ooo/DEV300_m103 ure_ooo/DEV300_
 m103 writer_ooo/DEV300_m103 artwork_ooo/DEV300_m104 base_ooo/DEV300_m104 bootstrap_ooo/DEV300_m104 calc_ooo/DEV300_m104 components_ooo/DEV300_m104 extensions_ooo/DEV300_m104 extras_ooo/DEV300_m104 filters_ooo/DEV300_m104 impress_ooo/DEV300_m104 libs-core_ooo/DEV300_m104 libs-extern-sys_ooo/DEV300_m104 libs-extern_ooo/DEV300_m104 libs-gui_ooo/DEV300_m104 postprocess_ooo/DEV300_m104 sdk_ooo/DEV300_m104 testing_ooo/DEV300_m104 ure_ooo/DEV300_m104 writer_ooo/DEV300_m104 artwork_ooo/DEV300_m105 base_ooo/DEV300_m105 bootstrap_ooo/DEV300_m105 calc_ooo/DEV300_m105 components_ooo/DEV300_m105 extensions_ooo/DEV300_m105 extras_ooo/DEV300_m105 filters_ooo/DEV300_m105 impress_ooo/DEV300_m105 libs-core_ooo/DEV300_m105 libs-extern-sys_ooo/DEV300_m105 libs-extern_ooo/DEV300_m105 libs-gui_ooo/DEV300_m105 postprocess_ooo/DEV300_m105 sdk_ooo/DEV300_m105 testing_ooo/DEV300_m105 ure_ooo/DEV300_m105 writer_ooo/DEV300_m105 artwork_ooo/DEV300_m106 base_ooo/DEV300_m106 bootstrap_ooo/DEV300_m106 calc
 _ooo/DEV300_m106 components_ooo/DEV300_m106 extensions_ooo/DEV300_m106 extras_ooo/DEV300_m106 filters_ooo/DEV300_m106 impress_ooo/DEV300_m106 libs-core_ooo/DEV300_m106 libs-extern-sys_ooo/DEV300_m106 libs-extern_ooo/DEV300_m106 libs-gui_ooo/DEV300_m106 postprocess_ooo/DEV300_m106 sdk_ooo/DEV300_m106 testing_ooo/DEV300_m106 ure_ooo/DEV300_m106 writer_ooo/DEV300_m106 bootstrap_ooo/DEV300_m31 artwork_ooo/DEV300_m32 base_ooo/DEV300_m32 bootstrap_ooo/DEV300_m32 calc_ooo/DEV300_m32 components_ooo/DEV300_m32 filters_ooo/DEV300_m32 impress_ooo/DEV300_m32 libs-core_ooo/DEV300_m32 libs-extern-sys_ooo/DEV300_m32 libs-gui_ooo/DEV300_m32 testing_ooo/DEV300_m32 ure_ooo/DEV300_m32 writer_ooo/DEV300_m32 bootstrap_ooo/DEV300_m33 bootstrap_ooo/DEV300_m34 artwork_ooo/DEV300_m35 base_ooo/DEV300_m35 bootstrap_ooo/DEV300_m35 calc_ooo/DEV300_m35 components_ooo/DEV300_m35 filters_ooo/DEV300_m35 impress_ooo/DEV300_m35 libs-core_ooo/DEV300_m35 libs-extern-sys_ooo/DEV300_m35 libs-gui_ooo/DEV300_m35 te
 sting_ooo/DEV300_m35 ure_ooo/DEV300_m35 writer_ooo/DEV300_m35 bootstrap_ooo/DEV300_m36 bootstrap_ooo/DEV300_m37 components_ooo/DEV300_m37 libs-gui_ooo/DEV300_m37 testing_ooo/DEV300_m37 writer_ooo/DEV300_m37 bootstrap_ooo/DEV300_m38 bootstrap_ooo/DEV300_m39 artwork_ooo/DEV300_m40 base_ooo/DEV300_m40 bootstrap_ooo/DEV300_m40 calc_ooo/DEV300_m40 components_ooo/DEV300_m40 filters_ooo/DEV300_m40 impress_ooo/DEV300_m40 libs-core_ooo/DEV300_m40 libs-extern-sys_ooo/DEV300_m40 libs-gui_ooo/DEV300_m40 testing_ooo/DEV300_m40 ure_ooo/DEV300_m40 writer_ooo/DEV300_m40 bootstrap_ooo/DEV300_m41 extensions_ooo/DEV300_m41 impress_ooo/DEV300_m41 libs-core_ooo/DEV300_m41 libs-gui_ooo/DEV300_m41 ure_ooo/DEV300_m41 bootstrap_ooo/DEV300_m42 calc_ooo/DEV300_m42 filters_ooo/DEV300_m42 impress_ooo/DEV300_m42 libs-core_ooo/DEV300_m42 testing_ooo/DEV300_m42 writer_ooo/DEV300_m42 bootstrap_ooo/DEV300_m43 artwork_ooo/DEV300_m44 base_ooo/DEV300_m44 bootstrap_ooo/DEV300_m44 calc_ooo/DEV300_m44 components_o
 oo/DEV300_m44 extensions_ooo/DEV300_m44 filters_ooo/DEV300_m44 impress_ooo/DEV300_m44 libs-core_ooo/DEV300_m44 libs-extern-sys_ooo/DEV300_m44 libs-gui_ooo/DEV300_m44 testing_ooo/DEV300_m44 ure_ooo/DEV300_m44 writer_ooo/DEV300_m44 bootstrap_ooo/DEV300_m45 components_ooo/DEV300_m45 extensions_ooo/DEV300_m45 libs-core_ooo/DEV300_m45 libs-gui_ooo/DEV300_m45 testing_ooo/DEV300_m45 ure_ooo/DEV300_m45 writer_ooo/DEV300_m45 bootstrap_ooo/DEV300_m46 calc_ooo/DEV300_m46 components_ooo/DEV300_m46 filters_ooo/DEV300_m46 impress_ooo/DEV300_m46 libs-core_ooo/DEV300_m46 libs-gui_ooo/DEV300_m46 testing_ooo/DEV300_m46 ure_ooo/DEV300_m46 writer_ooo/DEV300_m46 bootstrap_ooo/DEV300_m47 artwork_ooo/DEV300_m48 base_ooo/DEV300_m48 bootstrap_ooo/DEV300_m48 calc_ooo/DEV300_m48 components_ooo/DEV300_m48 extensions_ooo/DEV300_m48 extras_ooo/DEV300_m48 filters_ooo/DEV300_m48 impress_ooo/DEV300_m48 libs-core_ooo/DEV300_m48 libs-extern-sys_ooo/DEV300_m48 libs-extern_ooo/DEV300_m48 libs-gui_ooo/DEV300_m48
  postprocess_ooo/DEV300_m48 sdk_ooo/DEV300_m48 testing_ooo/DEV300_m48 ure_ooo/DEV300_m48 writer_ooo/DEV300_m48 bootstrap_ooo/DEV300_m49 components_ooo/DEV300_m49 extensions_ooo/DEV300_m49 filters_ooo/DEV300_m49 impress_ooo/DEV300_m49 libs-core_ooo/DEV300_m49 libs-gui_ooo/DEV300_m49 testing_ooo/DEV300_m49 ure_ooo/DEV300_m49 writer_ooo/DEV300_m49 artwork_ooo/DEV300_m50 base_ooo/DEV300_m50 bootstrap_ooo/DEV300_m50 calc_ooo/DEV300_m50 components_ooo/DEV300_m50 filters_ooo/DEV300_m50 impress_ooo/DEV300_m50 libs-core_ooo/DEV300_m50 libs-extern-sys_ooo/DEV300_m50 libs-extern_ooo/DEV300_m50 libs-gui_ooo/DEV300_m50 testing_ooo/DEV300_m50 ure_ooo/DEV300_m50 writer_ooo/DEV300_m50 base_ooo/DEV300_m51 bootstrap_ooo/DEV300_m51 calc_ooo/DEV300_m51 components_ooo/DEV300_m51 extensions_ooo/DEV300_m51 filters_ooo/DEV300_m51 impress_ooo/DEV300_m51 libs-core_ooo/DEV300_m51 libs-extern-sys_ooo/DEV300_m51 libs-extern_ooo/DEV300_m51 libs-gui_ooo/DEV300_m51 postprocess_ooo/DEV300_m51 sdk_ooo/DEV300
 _m51 testing_ooo/DEV300_m51 ure_ooo/DEV300_m51 writer_ooo/DEV300_m51 bootstrap_ooo/DEV300_m52 calc_ooo/DEV300_m52 components_ooo/DEV300_m52 filters_ooo/DEV300_m52 impress_ooo/DEV300_m52 libs-core_ooo/DEV300_m52 libs-extern-sys_ooo/DEV300_m52 libs-gui_ooo/DEV300_m52 ure_ooo/DEV300_m52 writer_ooo/DEV300_m52 artwork_ooo/DEV300_m53 base_ooo/DEV300_m53 bootstrap_ooo/DEV300_m53 calc_ooo/DEV300_m53 components_ooo/DEV300_m53 filters_ooo/DEV300_m53 impress_ooo/DEV300_m53 libs-core_ooo/DEV300_m53 libs-extern-sys_ooo/DEV300_m53 libs-extern_ooo/DEV300_m53 libs-gui_ooo/DEV300_m53 postprocess_ooo/DEV300_m53 testing_ooo/DEV300_m53 ure_ooo/DEV300_m53 writer_ooo/DEV300_m53 bootstrap_ooo/DEV300_m54 calc_ooo/DEV300_m54 components_ooo/DEV300_m54 filters_ooo/DEV300_m54 impress_ooo/DEV300_m54 libs-core_ooo/DEV300_m54 libs-extern-sys_ooo/DEV300_m54 libs-extern_ooo/DEV300_m54 libs-gui_ooo/DEV300_m54 testing_ooo/DEV300_m54 ure_ooo/DEV300_m54 writer_ooo/DEV300_m54 base_ooo/DEV300_m55 bootstrap_ooo/DE
 V300_m55 calc_ooo/DEV300_m55 components_ooo/DEV300_m55 filters_ooo/DEV300_m55 impress_ooo/DEV300_m55 libs-core_ooo/DEV300_m55 libs-extern-sys_ooo/DEV300_m55 libs-gui_ooo/DEV300_m55 testing_ooo/DEV300_m55 ure_ooo/DEV300_m55 writer_ooo/DEV300_m55 artwork_ooo/DEV300_m56 bootstrap_ooo/DEV300_m56 calc_ooo/DEV300_m56 components_ooo/DEV300_m56 extensions_ooo/DEV300_m56 impress_ooo/DEV300_m56 libs-core_ooo/DEV300_m56 libs-extern-sys_ooo/DEV300_m56 libs-gui_ooo/DEV300_m56 ure_ooo/DEV300_m56 writer_ooo/DEV300_m56 artwork_ooo/DEV300_m57 base_ooo/DEV300_m57 bootstrap_ooo/DEV300_m57 calc_ooo/DEV300_m57 components_ooo/DEV300_m57 extensions_ooo/DEV300_m57 filters_ooo/DEV300_m57 impress_ooo/DEV300_m57 libs-core_ooo/DEV300_m57 libs-extern-sys_ooo/DEV300_m57 libs-extern_ooo/DEV300_m57 libs-gui_ooo/DEV300_m57 postprocess_ooo/DEV300_m57 sdk_ooo/DEV300_m57 testing_ooo/DEV300_m57 ure_ooo/DEV300_m57 writer_ooo/DEV300_m57 bootstrap_ooo/DEV300_m58 calc_ooo/DEV300_m58 components_ooo/DEV300_m58 filter
 s_ooo/DEV300_m58 libs-core_ooo/DEV300_m58 libs-gui_ooo/DEV300_m58 sdk_ooo/DEV300_m58 testing_ooo/DEV300_m58 ure_ooo/DEV300_m58 writer_ooo/DEV300_m58 bootstrap_ooo/DEV300_m59 calc_ooo/DEV300_m59 components_ooo/DEV300_m59 filters_ooo/DEV300_m59 impress_ooo/DEV300_m59 libs-core_ooo/DEV300_m59 libs-extern-sys_ooo/DEV300_m59 libs-gui_ooo/DEV300_m59 sdk_ooo/DEV300_m59 testing_ooo/DEV300_m59 ure_ooo/DEV300_m59 writer_ooo/DEV300_m59 artwork_ooo/DEV300_m60 base_ooo/DEV300_m60 bootstrap_ooo/DEV300_m60 calc_ooo/DEV300_m60 components_ooo/DEV300_m60 extensions_ooo/DEV300_m60 filters_ooo/DEV300_m60 impress_ooo/DEV300_m60 libs-core_ooo/DEV300_m60 libs-extern-sys_ooo/DEV300_m60 libs-extern_ooo/DEV300_m60 libs-gui_ooo/DEV300_m60 postprocess_ooo/DEV300_m60 sdk_ooo/DEV300_m60 testing_ooo/DEV300_m60 ure_ooo/DEV300_m60 writer_ooo/DEV300_m60 artwork_ooo/DEV300_m61 base_ooo/DEV300_m61 bootstrap_ooo/DEV300_m61 calc_ooo/DEV300_m61 components_ooo/DEV300_m61 extensions_ooo/DEV300_m61 filters_ooo/DEV30
 0_m61 impress_ooo/DEV300_m61 libs-core_ooo/DEV300_m61 libs-extern-sys_ooo/DEV300_m61 libs-extern_ooo/DEV300_m61 libs-gui_ooo/DEV300_m61 sdk_ooo/DEV300_m61 testing_ooo/DEV300_m61 ure_ooo/DEV300_m61 writer_ooo/DEV300_m61 artwork_ooo/DEV300_m62 base_ooo/DEV300_m62 bootstrap_ooo/DEV300_m62 calc_ooo/DEV300_m62 components_ooo/DEV300_m62 extensions_ooo/DEV300_m62 filters_ooo/DEV300_m62 impress_ooo/DEV300_m62 libs-core_ooo/DEV300_m62 libs-extern-sys_ooo/DEV300_m62 libs-extern_ooo/DEV300_m62 libs-gui_ooo/DEV300_m62 postprocess_ooo/DEV300_m62 sdk_ooo/DEV300_m62 testing_ooo/DEV300_m62 ure_ooo/DEV300_m62 writer_ooo/DEV300_m62 artwork_ooo/DEV300_m63 base_ooo/DEV300_m63 bootstrap_ooo/DEV300_m63 calc_ooo/DEV300_m63 components_ooo/DEV300_m63 extensions_ooo/DEV300_m63 extras_ooo/DEV300_m63 filters_ooo/DEV300_m63 impress_ooo/DEV300_m63 libs-core_ooo/DEV300_m63 libs-extern-sys_ooo/DEV300_m63 libs-extern_ooo/DEV300_m63 libs-gui_ooo/DEV300_m63 postprocess_ooo/DEV300_m63 sdk_ooo/DEV300_m63 testin
 g_ooo/DEV300_m63 ure_ooo/DEV300_m63 writer_ooo/DEV300_m63 artwork_ooo/DEV300_m64 base_ooo/DEV300_m64 bootstrap_ooo/DEV300_m64 calc_ooo/DEV300_m64 components_ooo/DEV300_m64 extensions_ooo/DEV300_m64 extras_ooo/DEV300_m64 filters_ooo/DEV300_m64 impress_ooo/DEV300_m64 libs-core_ooo/DEV300_m64 libs-extern-sys_ooo/DEV300_m64 libs-extern_ooo/DEV300_m64 libs-gui_ooo/DEV300_m64 postprocess_ooo/DEV300_m64 sdk_ooo/DEV300_m64 testing_ooo/DEV300_m64 ure_ooo/DEV300_m64 writer_ooo/DEV300_m64 artwork_ooo/DEV300_m65 base_ooo/DEV300_m65 bootstrap_ooo/DEV300_m65 calc_ooo/DEV300_m65 components_ooo/DEV300_m65 extensions_ooo/DEV300_m65 extras_ooo/DEV300_m65 filters_ooo/DEV300_m65 impress_ooo/DEV300_m65 libs-core_ooo/DEV300_m65 libs-extern-sys_ooo/DEV300_m65 libs-extern_ooo/DEV300_m65 libs-gui_ooo/DEV300_m65 postprocess_ooo/DEV300_m65 sdk_ooo/DEV300_m65 testing_ooo/DEV300_m65 ure_ooo/DEV300_m65 writer_ooo/DEV300_m65 artwork_ooo/DEV300_m66 base_ooo/DEV300_m66 bootstrap_ooo/DEV300_m66 calc_ooo/DEV3
 00_m66 components_ooo/DEV300_m66 extensions_ooo/DEV300_m66 extras_ooo/DEV300_m66 filters_ooo/DEV300_m66 impress_ooo/DEV300_m66 libs-core_ooo/DEV300_m66 libs-extern-sys_ooo/DEV300_m66 libs-extern_ooo/DEV300_m66 libs-gui_ooo/DEV300_m66 postprocess_ooo/DEV300_m66 sdk_ooo/DEV300_m66 testing_ooo/DEV300_m66 ure_ooo/DEV300_m66 writer_ooo/DEV300_m66 artwork_ooo/DEV300_m67 base_ooo/DEV300_m67 bootstrap_ooo/DEV300_m67 calc_ooo/DEV300_m67 components_ooo/DEV300_m67 extensions_ooo/DEV300_m67 extras_ooo/DEV300_m67 filters_ooo/DEV300_m67 impress_ooo/DEV300_m67 libs-core_ooo/DEV300_m67 libs-extern-sys_ooo/DEV300_m67 libs-extern_ooo/DEV300_m67 libs-gui_ooo/DEV300_m67 postprocess_ooo/DEV300_m67 sdk_ooo/DEV300_m67 testing_ooo/DEV300_m67 ure_ooo/DEV300_m67 writer_ooo/DEV300_m67 artwork_ooo/DEV300_m68 base_ooo/DEV300_m68 bootstrap_ooo/DEV300_m68 calc_ooo/DEV300_m68 components_ooo/DEV300_m68 extensions_ooo/DEV300_m68 extras_ooo/DEV300_m68 filters_ooo/DEV300_m68 impress_ooo/DEV300_m68 libs-core_oo
 o/DEV300_m68 libs-extern-sys_ooo/DEV300_m68 libs-extern_ooo/DEV300_m68 libs-gui_ooo/DEV300_m68 postprocess_ooo/DEV300_m68 sdk_ooo/DEV300_m68 testing_ooo/DEV300_m68 ure_ooo/DEV300_m68 writer_ooo/DEV300_m68 artwork_ooo/DEV300_m69 base_ooo/DEV300_m69 bootstrap_ooo/DEV300_m69 calc_ooo/DEV300_m69 components_ooo/DEV300_m69 extensions_ooo/DEV300_m69 extras_ooo/DEV300_m69 filters_ooo/DEV300_m69 impress_ooo/DEV300_m69 libs-core_ooo/DEV300_m69 libs-extern-sys_ooo/DEV300_m69 libs-extern_ooo/DEV300_m69 libs-gui_ooo/DEV300_m69 postprocess_ooo/DEV300_m69 sdk_ooo/DEV300_m69 testing_ooo/DEV300_m69 ure_ooo/DEV300_m69 writer_ooo/DEV300_m69 artwork_ooo/DEV300_m70 base_ooo/DEV300_m70 bootstrap_ooo/DEV300_m70 calc_ooo/DEV300_m70 components_ooo/DEV300_m70 extensions_ooo/DEV300_m70 extras_ooo/DEV300_m70 filters_ooo/DEV300_m70 impress_ooo/DEV300_m70 libs-core_ooo/DEV300_m70 libs-extern-sys_ooo/DEV300_m70 libs-extern_ooo/DEV300_m70 libs-gui_ooo/DEV300_m70 postprocess_ooo/DEV300_m70 sdk_ooo/DEV300_m7
 0 testing_ooo/DEV300_m70 ure_ooo/DEV300_m70 writer_ooo/DEV300_m70 artwork_ooo/DEV300_m71 base_ooo/DEV300_m71 bootstrap_ooo/DEV300_m71 calc_ooo/DEV300_m71 components_ooo/DEV300_m71 extensions_ooo/DEV300_m71 extras_ooo/DEV300_m71 filters_ooo/DEV300_m71 impress_ooo/DEV300_m71 libs-core_ooo/DEV300_m71 libs-extern-sys_ooo/DEV300_m71 libs-extern_ooo/DEV300_m71 libs-gui_ooo/DEV300_m71 postprocess_ooo/DEV300_m71 sdk_ooo/DEV300_m71 testing_ooo/DEV300_m71 ure_ooo/DEV300_m71 writer_ooo/DEV300_m71 artwork_ooo/DEV300_m72 base_ooo/DEV300_m72 bootstrap_ooo/DEV300_m72 calc_ooo/DEV300_m72 components_ooo/DEV300_m72 extensions_ooo/DEV300_m72 extras_ooo/DEV300_m72 filters_ooo/DEV300_m72 impress_ooo/DEV300_m72 libs-core_ooo/DEV300_m72 libs-extern-sys_ooo/DEV300_m72 libs-extern_ooo/DEV300_m72 libs-gui_ooo/DEV300_m72 postprocess_ooo/DEV300_m72 sdk_ooo/DEV300_m72 testing_ooo/DEV300_m72 ure_ooo/DEV300_m72 writer_ooo/DEV300_m72 artwork_ooo/DEV300_m73 base_ooo/DEV300_m73 bootstrap_ooo/DEV300_m73 calc_
 ooo/DEV300_m73 components_ooo/DEV300_m73 extensions_ooo/DEV300_m73 extras_ooo/DEV300_m73 filters_ooo/DEV300_m73 impress_ooo/DEV300_m73 libs-core_ooo/DEV300_m73 libs-extern-sys_ooo/DEV300_m73 libs-extern_ooo/DEV300_m73 libs-gui_ooo/DEV300_m73 postprocess_ooo/DEV300_m73 sdk_ooo/DEV300_m73 testing_ooo/DEV300_m73 ure_ooo/DEV300_m73 writer_ooo/DEV300_m73 artwork_ooo/DEV300_m74 base_ooo/DEV300_m74 bootstrap_ooo/DEV300_m74 calc_ooo/DEV300_m74 components_ooo/DEV300_m74 extensions_ooo/DEV300_m74 extras_ooo/DEV300_m74 filters_ooo/DEV300_m74 impress_ooo/DEV300_m74 libs-core_ooo/DEV300_m74 libs-extern-sys_ooo/DEV300_m74 libs-extern_ooo/DEV300_m74 libs-gui_ooo/DEV300_m74 postprocess_ooo/DEV300_m74 sdk_ooo/DEV300_m74 testing_ooo/DEV300_m74 ure_ooo/DEV300_m74 writer_ooo/DEV300_m74 artwork_ooo/DEV300_m75 base_ooo/DEV300_m75 bootstrap_ooo/DEV300_m75 calc_ooo/DEV300_m75 components_ooo/DEV300_m75 extensions_ooo/DEV300_m75 extras_ooo/DEV300_m75 filters_ooo/DEV300_m75 impress_ooo/DEV300_m75 libs
 -core_ooo/DEV300_m75 libs-extern-sys_ooo/DEV300_m75 libs-extern_ooo/DEV300_m75 libs-gui_ooo/DEV300_m75 postprocess_ooo/DEV300_m75 sdk_ooo/DEV300_m75 testing_ooo/DEV300_m75 ure_ooo/DEV300_m75 writer_ooo/DEV300_m75 artwork_ooo/DEV300_m76 base_ooo/DEV300_m76 bootstrap_ooo/DEV300_m76 calc_ooo/DEV300_m76 components_ooo/DEV300_m76 extensions_ooo/DEV300_m76 extras_ooo/DEV300_m76 filters_ooo/DEV300_m76 impress_ooo/DEV300_m76 libs-core_ooo/DEV300_m76 libs-extern-sys_ooo/DEV300_m76 libs-extern_ooo/DEV300_m76 libs-gui_ooo/DEV300_m76 postprocess_ooo/DEV300_m76 sdk_ooo/DEV300_m76 testing_ooo/DEV300_m76 ure_ooo/DEV300_m76 writer_ooo/DEV300_m76 artwork_ooo/DEV300_m77 base_ooo/DEV300_m77 bootstrap_ooo/DEV300_m77 calc_ooo/DEV300_m77 components_ooo/DEV300_m77 extensions_ooo/DEV300_m77 extras_ooo/DEV300_m77 filters_ooo/DEV300_m77 impress_ooo/DEV300_m77 libs-core_ooo/DEV300_m77 libs-extern-sys_ooo/DEV300_m77 libs-extern_ooo/DEV300_m77 libs-gui_ooo/DEV300_m77 postprocess_ooo/DEV300_m77 sdk_ooo/D
 EV300_m77 testing_ooo/DEV300_m77 ure_ooo/DEV300_m77 writer_ooo/DEV300_m77 artwork_ooo/DEV300_m78 base_ooo/DEV300_m78 bootstrap_ooo/DEV300_m78 calc_ooo/DEV300_m78 components_ooo/DEV300_m78 extensions_ooo/DEV300_m78 extras_ooo/DEV300_m78 filters_ooo/DEV300_m78 impress_ooo/DEV300_m78 libs-core_ooo/DEV300_m78 libs-extern-sys_ooo/DEV300_m78 libs-extern_ooo/DEV300_m78 libs-gui_ooo/DEV300_m78 postprocess_ooo/DEV300_m78 sdk_ooo/DEV300_m78 testing_ooo/DEV300_m78 ure_ooo/DEV300_m78 writer_ooo/DEV300_m78 artwork_ooo/DEV300_m79 base_ooo/DEV300_m79 bootstrap_ooo/DEV300_m79 calc_ooo/DEV300_m79 components_ooo/DEV300_m79 extensions_ooo/DEV300_m79 extras_ooo/DEV300_m79 filters_ooo/DEV300_m79 impress_ooo/DEV300_m79 libs-core_ooo/DEV300_m79 libs-extern-sys_ooo/DEV300_m79 libs-extern_ooo/DEV300_m79 libs-gui_ooo/DEV300_m79 postprocess_ooo/DEV300_m79 sdk_ooo/DEV300_m79 testing_ooo/DEV300_m79 ure_ooo/DEV300_m79 writer_ooo/DEV300_m79 artwork_ooo/DEV300_m80 base_ooo/DEV300_m80 bootstrap_ooo/DEV300_m
 80 calc_ooo/DEV300_m80 components_ooo/DEV300_m80 extensions_ooo/DEV300_m80 extras_ooo/DEV300_m80 filters_ooo/DEV300_m80 impress_ooo/DEV300_m80 libs-core_ooo/DEV300_m80 libs-extern-sys_ooo/DEV300_m80 libs-extern_ooo/DEV300_m80 libs-gui_ooo/DEV300_m80 postprocess_ooo/DEV300_m80 sdk_ooo/DEV300_m80 testing_ooo/DEV300_m80 ure_ooo/DEV300_m80 writer_ooo/DEV300_m80 artwork_ooo/DEV300_m81 base_ooo/DEV300_m81 bootstrap_ooo/DEV300_m81 calc_ooo/DEV300_m81 components_ooo/DEV300_m81 extensions_ooo/DEV300_m81 extras_ooo/DEV300_m81 filters_ooo/DEV300_m81 impress_ooo/DEV300_m81 libs-core_ooo/DEV300_m81 libs-extern-sys_ooo/DEV300_m81 libs-extern_ooo/DEV300_m81 libs-gui_ooo/DEV300_m81 postprocess_ooo/DEV300_m81 sdk_ooo/DEV300_m81 testing_ooo/DEV300_m81 ure_ooo/DEV300_m81 writer_ooo/DEV300_m81 artwork_ooo/DEV300_m82 base_ooo/DEV300_m82 bootstrap_ooo/DEV300_m82 calc_ooo/DEV300_m82 components_ooo/DEV300_m82 extensions_ooo/DEV300_m82 extras_ooo/DEV300_m82 filters_ooo/DEV300_m82 impress_ooo/DEV300_
 m82 libs-core_ooo/DEV300_m82 libs-extern-sys_ooo/DEV300_m82 libs-extern_ooo/DEV300_m82 libs-gui_ooo/DEV300_m82 postprocess_ooo/DEV300_m82 sdk_ooo/DEV300_m82 testing_ooo/DEV300_m82 ure_ooo/DEV300_m82 writer_ooo/DEV300_m82 artwork_ooo/DEV300_m83 base_ooo/DEV300_m83 bootstrap_ooo/DEV300_m83 calc_ooo/DEV300_m83 components_ooo/DEV300_m83 extensions_ooo/DEV300_m83 extras_ooo/DEV300_m83 filters_ooo/DEV300_m83 impress_ooo/DEV300_m83 libs-core_ooo/DEV300_m83 libs-extern-sys_ooo/DEV300_m83 libs-extern_ooo/DEV300_m83 libs-gui_ooo/DEV300_m83 postprocess_ooo/DEV300_m83 sdk_ooo/DEV300_m83 testing_ooo/DEV300_m83 ure_ooo/DEV300_m83 writer_ooo/DEV300_m83 artwork_ooo/DEV300_m84 base_ooo/DEV300_m84 bootstrap_ooo/DEV300_m84 calc_ooo/DEV300_m84 components_ooo/DEV300_m84 extensions_ooo/DEV300_m84 extras_ooo/DEV300_m84 filters_ooo/DEV300_m84 impress_ooo/DEV300_m84 libs-core_ooo/DEV300_m84 libs-extern-sys_ooo/DEV300_m84 libs-extern_ooo/DEV300_m84 libs-gui_ooo/DEV300_m84 postprocess_ooo/DEV300_m84 s
 dk_ooo/DEV300_m84 testing_ooo/DEV300_m84 ure_ooo/DEV300_m84 writer_ooo/DEV300_m84 artwork_ooo/DEV300_m85 base_ooo/DEV300_m85 bootstrap_ooo/DEV300_m85 calc_ooo/DEV300_m85 components_ooo/DEV300_m85 extensions_ooo/DEV300_m85 extras_ooo/DEV300_m85 filters_ooo/DEV300_m85 impress_ooo/DEV300_m85 libs-core_ooo/DEV300_m85 libs-extern-sys_ooo/DEV300_m85 libs-extern_ooo/DEV300_m85 libs-gui_ooo/DEV300_m85 postprocess_ooo/DEV300_m85 sdk_ooo/DEV300_m85 testing_ooo/DEV300_m85 ure_ooo/DEV300_m85 writer_ooo/DEV300_m85 artwork_ooo/DEV300_m86 base_ooo/DEV300_m86 bootstrap_ooo/DEV300_m86 calc_ooo/DEV300_m86 components_ooo/DEV300_m86 extensions_ooo/DEV300_m86 extras_ooo/DEV300_m86 filters_ooo/DEV300_m86 impress_ooo/DEV300_m86 libs-core_ooo/DEV300_m86 libs-extern-sys_ooo/DEV300_m86 libs-extern_ooo/DEV300_m86 libs-gui_ooo/DEV300_m86 postprocess_ooo/DEV300_m86 sdk_ooo/DEV300_m86 testing_ooo/DEV300_m86 ure_ooo/DEV300_m86 writer_ooo/DEV300_m86 artwork_ooo/DEV300_m87 base_ooo/DEV300_m87 bootstrap_ooo/
 DEV300_m87 calc_ooo/DEV300_m87 components_ooo/DEV300_m87 extensions_ooo/DEV300_m87 extras_ooo/DEV300_m87 filters_ooo/DEV300_m87 impress_ooo/DEV300_m87 libs-core_ooo/DEV300_m87 libs-extern-sys_ooo/DEV300_m87 libs-extern_ooo/DEV300_m87 libs-gui_ooo/DEV300_m87 postprocess_ooo/DEV300_m87 sdk_ooo/DEV300_m87 testing_ooo/DEV300_m87 ure_ooo/DEV300_m87 writer_ooo/DEV300_m87 artwork_ooo/DEV300_m88 base_ooo/DEV300_m88 bootstrap_ooo/DEV300_m88 calc_ooo/DEV300_m88 components_ooo/DEV300_m88 extensions_ooo/DEV300_m88 extras_ooo/DEV300_m88 filters_ooo/DEV300_m88 impress_ooo/DEV300_m88 libs-core_ooo/DEV300_m88 libs-extern-sys_ooo/DEV300_m88 libs-extern_ooo/DEV300_m88 libs-gui_ooo/DEV300_m88 postprocess_ooo/DEV300_m88 sdk_ooo/DEV300_m88 testing_ooo/DEV300_m88 ure_ooo/DEV300_m88 writer_ooo/DEV300_m88 artwork_ooo/DEV300_m89 base_ooo/DEV300_m89 bootstrap_ooo/DEV300_m89 calc_ooo/DEV300_m89 components_ooo/DEV300_m89 extensions_ooo/DEV300_m89 extras_ooo/DEV300_m89 filters_ooo/DEV300_m89 impress_ooo
 /DEV300_m89 libs-core_ooo/DEV300_m89 libs-extern-sys_ooo/DEV300_m89 libs-extern_ooo/DEV300_m89 libs-gui_ooo/DEV300_m89 postprocess_ooo/DEV300_m89 sdk_ooo/DEV300_m89 testing_ooo/DEV300_m89 ure_ooo/DEV300_m89 writer_ooo/DEV300_m89 artwork_ooo/DEV300_m90 base_ooo/DEV300_m90 bootstrap_ooo/DEV300_m90 calc_ooo/DEV300_m90 components_ooo/DEV300_m90 extensions_ooo/DEV300_m90 extras_ooo/DEV300_m90 filters_ooo/DEV300_m90 impress_ooo/DEV300_m90 libs-core_ooo/DEV300_m90 libs-extern-sys_ooo/DEV300_m90 libs-extern_ooo/DEV300_m90 libs-gui_ooo/DEV300_m90 postprocess_ooo/DEV300_m90 sdk_ooo/DEV300_m90 testing_ooo/DEV300_m90 ure_ooo/DEV300_m90 writer_ooo/DEV300_m90 artwork_ooo/DEV300_m91 base_ooo/DEV300_m91 bootstrap_ooo/DEV300_m91 calc_ooo/DEV300_m91 components_ooo/DEV300_m91 extensions_ooo/DEV300_m91 extras_ooo/DEV300_m91 filters_ooo/DEV300_m91 impress_ooo/DEV300_m91 libs-core_ooo/DEV300_m91 libs-extern-sys_ooo/DEV300_m91 libs-extern_ooo/DEV300_m91 libs-gui_ooo/DEV300_m91 postprocess_ooo/DEV3
 00_m91 sdk_ooo/DEV300_m91 testing_ooo/DEV300_m91 ure_ooo/DEV300_m91 writer_ooo/DEV300_m91 artwork_ooo/DEV300_m92 base_ooo/DEV300_m92 bootstrap_ooo/DEV300_m92 calc_ooo/DEV300_m92 components_ooo/DEV300_m92 extensions_ooo/DEV300_m92 extras_ooo/DEV300_m92 filters_ooo/DEV300_m92 impress_ooo/DEV300_m92 libs-core_ooo/DEV300_m92 libs-extern-sys_ooo/DEV300_m92 libs-extern_ooo/DEV300_m92 libs-gui_ooo/DEV300_m92 postprocess_ooo/DEV300_m92 sdk_ooo/DEV300_m92 testing_ooo/DEV300_m92 ure_ooo/DEV300_m92 writer_ooo/DEV300_m92 artwork_ooo/DEV300_m93 base_ooo/DEV300_m93 bootstrap_ooo/DEV300_m93 calc_ooo/DEV300_m93 components_ooo/DEV300_m93 extensions_ooo/DEV300_m93 extras_ooo/DEV300_m93 filters_ooo/DEV300_m93 impress_ooo/DEV300_m93 libs-core_ooo/DEV300_m93 libs-extern-sys_ooo/DEV300_m93 libs-extern_ooo/DEV300_m93 libs-gui_ooo/DEV300_m93 postprocess_ooo/DEV300_m93 sdk_ooo/DEV300_m93 testing_ooo/DEV300_m93 ure_ooo/DEV300_m93 writer_ooo/DEV300_m93 artwork_ooo/DEV300_m94 base_ooo/DEV300_m94 bootst
 rap_ooo/DEV300_m94 calc_ooo/DEV300_m94 components_ooo/DEV300_m94 extensions_ooo/DEV300_m94 extras_ooo/DEV300_m94 filters_ooo/DEV300_m94 impress_ooo/DEV300_m94 libs-core_ooo/DEV300_m94 libs-extern-sys_ooo/DEV300_m94 libs-extern_ooo/DEV300_m94 libs-gui_ooo/DEV300_m94 postprocess_ooo/DEV300_m94 sdk_ooo/DEV300_m94 testing_ooo/DEV300_m94 ure_ooo/DEV300_m94 writer_ooo/DEV300_m94 artwork_ooo/DEV300_m95 base_ooo/DEV300_m95 bootstrap_ooo/DEV300_m95 calc_ooo/DEV300_m95 components_ooo/DEV300_m95 extensions_ooo/DEV300_m95 extras_ooo/DEV300_m95 filters_ooo/DEV300_m95 impress_ooo/DEV300_m95 libs-core_ooo/DEV300_m95 libs-extern-sys_ooo/DEV300_m95 libs-extern_ooo/DEV300_m95 libs-gui_ooo/DEV300_m95 postprocess_ooo/DEV300_m95 sdk_ooo/DEV300_m95 testing_ooo/DEV300_m95 ure_ooo/DEV300_m95 writer_ooo/DEV300_m95 artwork_ooo/DEV300_m96 base_ooo/DEV300_m96 bootstrap_ooo/DEV300_m96 calc_ooo/DEV300_m96 components_ooo/DEV300_m96 extensions_ooo/DEV300_m96 extras_ooo/DEV300_m96 filters_ooo/DEV300_m96 imp
 ress_ooo/DEV300_m96 libs-core_ooo/DEV300_m96 libs-extern-sys_ooo/DEV300_m96 libs-extern_ooo/DEV300_m96 libs-gui_ooo/DEV300_m96 postprocess_ooo/DEV300_m96 sdk_ooo/DEV300_m96 testing_ooo/DEV300_m96 ure_ooo/DEV300_m96 writer_ooo/DEV300_m96 artwork_ooo/DEV300_m97 base_ooo/DEV300_m97 bootstrap_ooo/DEV300_m97 calc_ooo/DEV300_m97 components_ooo/DEV300_m97 extensions_ooo/DEV300_m97 extras_ooo/DEV300_m97 filters_ooo/DEV300_m97 impress_ooo/DEV300_m97 libs-core_ooo/DEV300_m97 libs-extern-sys_ooo/DEV300_m97 libs-extern_ooo/DEV300_m97 libs-gui_ooo/DEV300_m97 postprocess_ooo/DEV300_m97 sdk_ooo/DEV300_m97 testing_ooo/DEV300_m97 ure_ooo/DEV300_m97 writer_ooo/DEV300_m97 artwork_ooo/DEV300_m98 base_ooo/DEV300_m98 bootstrap_ooo/DEV300_m98 calc_ooo/DEV300_m98 components_ooo/DEV300_m98 extensions_ooo/DEV300_m98 extras_ooo/DEV300_m98 filters_ooo/DEV300_m98 impress_ooo/DEV300_m98 libs-core_ooo/DEV300_m98 libs-extern-sys_ooo/DEV300_m98 libs-extern_ooo/DEV300_m98 libs-gui_ooo/DEV300_m98 postprocess_
 ooo/DEV300_m98 sdk_ooo/DEV300_m98 testing_ooo/DEV300_m98 ure_ooo/DEV300_m98 writer_ooo/DEV300_m98 artwork_ooo/DEV300_m99 base_ooo/DEV300_m99 bootstrap_ooo/DEV300_m99 calc_ooo/DEV300_m99 components_ooo/DEV300_m99 extensions_ooo/DEV300_m99 extras_ooo/DEV300_m99 filters_ooo/DEV300_m99 impress_ooo/DEV300_m99 libs-core_ooo/DEV300_m99 libs-extern-sys_ooo/DEV300_m99 libs-extern_ooo/DEV300_m99 libs-gui_ooo/DEV300_m99 postprocess_ooo/DEV300_m99 sdk_ooo/DEV300_m99 testing_ooo/DEV300_m99 ure_ooo/DEV300_m99 writer_ooo/DEV300_m99 bootstrap_ooo/OOO310_m1 bootstrap_ooo/OOO310_m10 bootstrap_ooo/OOO310_m11 bootstrap_ooo/OOO310_m12 bootstrap_ooo/OOO310_m13 bootstrap_ooo/OOO310_m14 bootstrap_ooo/OOO310_m15 bootstrap_ooo/OOO310_m16 bootstrap_ooo/OOO310_m17 bootstrap_ooo/OOO310_m18 bootstrap_ooo/OOO310_m19 bootstrap_ooo/OOO310_m2 bootstrap_ooo/OOO310_m3 bootstrap_ooo/OOO310_m4 bootstrap_ooo/OOO310_m5 bootstrap_ooo/OOO310_m6 bootstrap_ooo/OOO310_m7 bootstrap_ooo/OOO310_m8 bootstrap_ooo/OOO310_m9 
 bootstrap_ooo/OOO320_m1 bootstrap_ooo/OOO320_m10 bootstrap_ooo/OOO320_m11 bootstrap_ooo/OOO320_m12 bootstrap_ooo/OOO320_m13 bootstrap_ooo/OOO320_m14 bootstrap_ooo/OOO320_m15 bootstrap_ooo/OOO320_m16 bootstrap_ooo/OOO320_m17 bootstrap_ooo/OOO320_m18 bootstrap_ooo/OOO320_m19 bootstrap_ooo/OOO320_m2 bootstrap_ooo/OOO320_m3 bootstrap_ooo/OOO320_m4 bootstrap_ooo/OOO320_m5 bootstrap_ooo/OOO320_m6 bootstrap_ooo/OOO320_m7 bootstrap_ooo/OOO320_m8 bootstrap_ooo/OOO320_m9 artwork_ooo/OOO330_m0 base_ooo/OOO330_m0 bootstrap_ooo/OOO330_m0 calc_ooo/OOO330_m0 components_ooo/OOO330_m0 extensions_ooo/OOO330_m0 extras_ooo/OOO330_m0 filters_ooo/OOO330_m0 impress_ooo/OOO330_m0 libs-core_ooo/OOO330_m0 libs-extern-sys_ooo/OOO330_m0 libs-extern_ooo/OOO330_m0 libs-gui_ooo/OOO330_m0 postprocess_ooo/OOO330_m0 sdk_ooo/OOO330_m0 testing_ooo/OOO330_m0 ure_ooo/OOO330_m0 writer_ooo/OOO330_m0 artwork_ooo/OOO330_m1 base_ooo/OOO330_m1 bootstrap_ooo/OOO330_m1 calc_ooo/OOO330_m1 components_ooo/OOO330_m1 extensi
 ons_ooo/OOO330_m1 extras_ooo/OOO330_m1 filters_ooo/OOO330_m1 impress_ooo/OOO330_m1 libs-core_ooo/OOO330_m1 libs-extern-sys_ooo/OOO330_m1 libs-extern_ooo/OOO330_m1 libs-gui_ooo/OOO330_m1 postprocess_ooo/OOO330_m1 sdk_ooo/OOO330_m1 testing_ooo/OOO330_m1 ure_ooo/OOO330_m1 writer_ooo/OOO330_m1 artwork_ooo/OOO330_m10 base_ooo/OOO330_m10 bootstrap_ooo/OOO330_m10 calc_ooo/OOO330_m10 components_ooo/OOO330_m10 extensions_ooo/OOO330_m10 extras_ooo/OOO330_m10 filters_ooo/OOO330_m10 impress_ooo/OOO330_m10 libs-core_ooo/OOO330_m10 libs-extern-sys_ooo/OOO330_m10 libs-extern_ooo/OOO330_m10 libs-gui_ooo/OOO330_m10 postprocess_ooo/OOO330_m10 sdk_ooo/OOO330_m10 testing_ooo/OOO330_m10 ure_ooo/OOO330_m10 writer_ooo/OOO330_m10 artwork_ooo/OOO330_m11 base_ooo/OOO330_m11 bootstrap_ooo/OOO330_m11 calc_ooo/OOO330_m11 components_ooo/OOO330_m11 extensions_ooo/OOO330_m11 extras_ooo/OOO330_m11 filters_ooo/OOO330_m11 impress_ooo/OOO330_m11 libs-core_ooo/OOO330_m11 libs-extern-sys_ooo/OOO330_m11 libs-exte
 rn_ooo/OOO330_m11 libs-gui_ooo/OOO330_m11 postprocess_ooo/OOO330_m11 sdk_ooo/OOO330_m11 testing_ooo/OOO330_m11 ure_ooo/OOO330_m11 writer_ooo/OOO330_m11 artwork_ooo/OOO330_m12 base_ooo/OOO330_m12 bootstrap_ooo/OOO330_m12 calc_ooo/OOO330_m12 components_ooo/OOO330_m12 extensions_ooo/OOO330_m12 extras_ooo/OOO330_m12 filters_ooo/OOO330_m12 impress_ooo/OOO330_m12 libs-core_ooo/OOO330_m12 libs-extern-sys_ooo/OOO330_m12 libs-extern_ooo/OOO330_m12 libs-gui_ooo/OOO330_m12 postprocess_ooo/OOO330_m12 sdk_ooo/OOO330_m12 testing_ooo/OOO330_m12 ure_ooo/OOO330_m12 writer_ooo/OOO330_m12 artwork_ooo/OOO330_m13 base_ooo/OOO330_m13 bootstrap_ooo/OOO330_m13 calc_ooo/OOO330_m13 components_ooo/OOO330_m13 extensions_ooo/OOO330_m13 extras_ooo/OOO330_m13 filters_ooo/OOO330_m13 impress_ooo/OOO330_m13 libs-core_ooo/OOO330_m13 libs-extern-sys_ooo/OOO330_m13 libs-extern_ooo/OOO330_m13 libs-gui_ooo/OOO330_m13 postprocess_ooo/OOO330_m13 sdk_ooo/OOO330_m13 testing_ooo/OOO330_m13 ure_ooo/OOO330_m13 writer_oo
 o/OOO330_m13 artwork_ooo/OOO330_m14 base_ooo/OOO330_m14 bootstrap_ooo/OOO330_m14 calc_ooo/OOO330_m14 components_ooo/OOO330_m14 extensions_ooo/OOO330_m14 extras_ooo/OOO330_m14 filters_ooo/OOO330_m14 impress_ooo/OOO330_m14 libs-core_ooo/OOO330_m14 libs-extern-sys_ooo/OOO330_m14 libs-extern_ooo/OOO330_m14 libs-gui_ooo/OOO330_m14 postprocess_ooo/OOO330_m14 sdk_ooo/OOO330_m14 testing_ooo/OOO330_m14 ure_ooo/OOO330_m14 writer_ooo/OOO330_m14 artwork_ooo/OOO330_m15 base_ooo/OOO330_m15 bootstrap_ooo/OOO330_m15 calc_ooo/OOO330_m15 components_ooo/OOO330_m15 extensions_ooo/OOO330_m15 extras_ooo/OOO330_m15 filters_ooo/OOO330_m15 impress_ooo/OOO330_m15 libs-core_ooo/OOO330_m15 libs-extern-sys_ooo/OOO330_m15 libs-extern_ooo/OOO330_m15 libs-gui_ooo/OOO330_m15 postprocess_ooo/OOO330_m15 sdk_ooo/OOO330_m15 testing_ooo/OOO330_m15 ure_ooo/OOO330_m15 writer_ooo/OOO330_m15 artwork_ooo/OOO330_m16 base_ooo/OOO330_m16 bootstrap_ooo/OOO330_m16 calc_ooo/OOO330_m16 components_ooo/OOO330_m16 extensions_o
 oo/OOO330_m16 extras_ooo/OOO330_m16 filters_ooo/OOO330_m16 impress_ooo/OOO330_m16 libs-core_ooo/OOO330_m16 libs-extern-sys_ooo/OOO330_m16 libs-extern_ooo/OOO330_m16 libs-gui_ooo/OOO330_m16 postprocess_ooo/OOO330_m16 sdk_ooo/OOO330_m16 testing_ooo/OOO330_m16 ure_ooo/OOO330_m16 writer_ooo/OOO330_m16 artwork_ooo/OOO330_m17 base_ooo/OOO330_m17 bootstrap_ooo/OOO330_m17 calc_ooo/OOO330_m17 components_ooo/OOO330_m17 extensions_ooo/OOO330_m17 extras_ooo/OOO330_m17 filters_ooo/OOO330_m17 impress_ooo/OOO330_m17 libs-core_ooo/OOO330_m17 libs-extern-sys_ooo/OOO330_m17 libs-extern_ooo/OOO330_m17 libs-gui_ooo/OOO330_m17 postprocess_ooo/OOO330_m17 sdk_ooo/OOO330_m17 testing_ooo/OOO330_m17 ure_ooo/OOO330_m17 writer_ooo/OOO330_m17 artwork_ooo/OOO330_m18 base_ooo/OOO330_m18 bootstrap_ooo/OOO330_m18 calc_ooo/OOO330_m18 components_ooo/OOO330_m18 extensions_ooo/OOO330_m18 extras_ooo/OOO330_m18 filters_ooo/OOO330_m18 impress_ooo/OOO330_m18 libs-core_ooo/OOO330_m18 libs-extern-sys_ooo/OOO330_m18 l
 ibs-extern_ooo/OOO330_m18 libs-gui_ooo/OOO330_m18 postprocess_ooo/OOO330_m18 sdk_ooo/OOO330_m18 testing_ooo/OOO330_m18 ure_ooo/OOO330_m18 writer_ooo/OOO330_m18 artwork_ooo/OOO330_m19 base_ooo/OOO330_m19 bootstrap_ooo/OOO330_m19 calc_ooo/OOO330_m19 components_ooo/OOO330_m19 extensions_ooo/OOO330_m19 extras_ooo/OOO330_m19 filters_ooo/OOO330_m19 impress_ooo/OOO330_m19 libs-core_ooo/OOO330_m19 libs-extern-sys_ooo/OOO330_m19 libs-extern_ooo/OOO330_m19 libs-gui_ooo/OOO330_m19 postprocess_ooo/OOO330_m19 sdk_ooo/OOO330_m19 testing_ooo/OOO330_m19 ure_ooo/OOO330_m19 writer_ooo/OOO330_m19 artwork_ooo/OOO330_m2 base_ooo/OOO330_m2 bootstrap_ooo/OOO330_m2 calc_ooo/OOO330_m2 components_ooo/OOO330_m2 extensions_ooo/OOO330_m2 extras_ooo/OOO330_m2 filters_ooo/OOO330_m2 impress_ooo/OOO330_m2 libs-core_ooo/OOO330_m2 libs-extern-sys_ooo/OOO330_m2 libs-extern_ooo/OOO330_m2 libs-gui_ooo/OOO330_m2 postprocess_ooo/OOO330_m2 sdk_ooo/OOO330_m2 testing_ooo/OOO330_m2 ure_ooo/OOO330_m2 writer_ooo/OOO330_
 m2 artwork_ooo/OOO330_m20 base_ooo/OOO330_m20 bootstrap_ooo/OOO330_m20 calc_ooo/OOO330_m20 components_ooo/OOO330_m20 extensions_ooo/OOO330_m20 extras_ooo/OOO330_m20 filters_ooo/OOO330_m20 impress_ooo/OOO330_m20 libs-core_ooo/OOO330_m20 libs-extern-sys_ooo/OOO330_m20 libs-extern_ooo/OOO330_m20 libs-gui_ooo/OOO330_m20 postprocess_ooo/OOO330_m20 sdk_ooo/OOO330_m20 testing_ooo/OOO330_m20 ure_ooo/OOO330_m20 writer_ooo/OOO330_m20 artwork_ooo/OOO330_m3 base_ooo/OOO330_m3 bootstrap_ooo/OOO330_m3 calc_ooo/OOO330_m3 components_ooo/OOO330_m3 extensions_ooo/OOO330_m3 extras_ooo/OOO330_m3 filters_ooo/OOO330_m3 impress_ooo/OOO330_m3 libs-core_ooo/OOO330_m3 libs-extern-sys_ooo/OOO330_m3 libs-extern_ooo/OOO330_m3 libs-gui_ooo/OOO330_m3 postprocess_ooo/OOO330_m3 sdk_ooo/OOO330_m3 testing_ooo/OOO330_m3 ure_ooo/OOO330_m3 writer_ooo/OOO330_m3 artwork_ooo/OOO330_m4 base_ooo/OOO330_m4 bootstrap_ooo/OOO330_m4 calc_ooo/OOO330_m4 components_ooo/OOO330_m4 extensions_ooo/OOO330_m4 extras_ooo/OOO330_m4
  filters_ooo/OOO330_m4 impress_ooo/OOO330_m4 libs-core_ooo/OOO330_m4 libs-extern-sys_ooo/OOO330_m4 libs-extern_ooo/OOO330_m4 libs-gui_ooo/OOO330_m4 postprocess_ooo/OOO330_m4 sdk_ooo/OOO330_m4 testing_ooo/OOO330_m4 ure_ooo/OOO330_m4 writer_ooo/OOO330_m4 artwork_ooo/OOO330_m5 base_ooo/OOO330_m5 bootstrap_ooo/OOO330_m5 calc_ooo/OOO330_m5 components_ooo/OOO330_m5 extensions_ooo/OOO330_m5 extras_ooo/OOO330_m5 filters_ooo/OOO330_m5 impress_ooo/OOO330_m5 libs-core_ooo/OOO330_m5 libs-extern-sys_ooo/OOO330_m5 libs-extern_ooo/OOO330_m5 libs-gui_ooo/OOO330_m5 postprocess_ooo/OOO330_m5 sdk_ooo/OOO330_m5 testing_ooo/OOO330_m5 ure_ooo/OOO330_m5 writer_ooo/OOO330_m5 artwork_ooo/OOO330_m6 base_ooo/OOO330_m6 bootstrap_ooo/OOO330_m6 calc_ooo/OOO330_m6 components_ooo/OOO330_m6 extensions_ooo/OOO330_m6 extras_ooo/OOO330_m6 filters_ooo/OOO330_m6 impress_ooo/OOO330_m6 libs-core_ooo/OOO330_m6 libs-extern-sys_ooo/OOO330_m6 libs-extern_ooo/OOO330_m6 libs-gui_ooo/OOO330_m6 postprocess_ooo/OOO330_m6 s
 dk_ooo/OOO330_m6 testing_ooo/OOO330_m6 ure_ooo/OOO330_m6 writer_ooo/OOO330_m6 artwork_ooo/OOO330_m7 base_ooo/OOO330_m7 bootstrap_ooo/OOO330_m7 calc_ooo/OOO330_m7 components_ooo/OOO330_m7 extensions_ooo/OOO330_m7 extras_ooo/OOO330_m7 filters_ooo/OOO330_m7 impress_ooo/OOO330_m7 libs-core_ooo/OOO330_m7 libs-extern-sys_ooo/OOO330_m7 libs-extern_ooo/OOO330_m7 libs-gui_ooo/OOO330_m7 postprocess_ooo/OOO330_m7 sdk_ooo/OOO330_m7 testing_ooo/OOO330_m7 ure_ooo/OOO330_m7 writer_ooo/OOO330_m7 artwork_ooo/OOO330_m8 base_ooo/OOO330_m8 bootstrap_ooo/OOO330_m8 calc_ooo/OOO330_m8 components_ooo/OOO330_m8 extensions_ooo/OOO330_m8 extras_ooo/OOO330_m8 filters_ooo/OOO330_m8 impress_ooo/OOO330_m8 libs-core_ooo/OOO330_m8 libs-extern-sys_ooo/OOO330_m8 libs-extern_ooo/OOO330_m8 libs-gui_ooo/OOO330_m8 postprocess_ooo/OOO330_m8 sdk_ooo/OOO330_m8 testing_ooo/OOO330_m8 ure_ooo/OOO330_m8 writer_ooo/OOO330_m8 artwork_ooo/OOO330_m9 base_ooo/OOO330_m9 bootstrap_ooo/OOO330_m9 calc_ooo/OOO330_m9 components_oo
 o/OOO330_m9 extensions_ooo/OOO330_m9 extras_ooo/OOO330_m9 filters_ooo/OOO330_m9 impress_ooo/OOO330_m9 libs-core_ooo/OOO330_m9 libs-extern-sys_ooo/OOO330_m9 libs-extern_ooo/OOO330_m9 libs-gui_ooo/OOO330_m9 postprocess_ooo/OOO330_m9 sdk_ooo/OOO330_m9 testing_ooo/OOO330_m9 ure_ooo/OOO330_m9 writer_ooo/OOO330_m9 bootstrap_ooo/OpenOffice_3_1_0 bootstrap_ooo/OpenOffice_3_1_1 bootstrap_ooo/OpenOffice_3_2_0 LIBREOFFICE_3_2_99_1 LIBREOFFICE_3_2_99_2 LIBREOFFICE_3_2_99_3 LIBREOFFICE_3_3_0_1 linux-build-fridrich-20100930
+do
+    git push ssh://git.freedesktop.org/git/libreoffice/core :$tag
+done
diff --git a/archives/corereleasebranches/killtagslocal.sh b/archives/corereleasebranches/killtagslocal.sh
new file mode 100755
index 0000000..8dc9fc9
--- /dev/null
+++ b/archives/corereleasebranches/killtagslocal.sh
@@ -0,0 +1,2 @@
+#!/bin/bash

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list