[ooo-build-commit] .: 3 commits - bin/unpack download.in patches/dev300
Petr Mladek
pmladek at kemper.freedesktop.org
Wed Apr 21 08:46:45 PDT 2010
bin/unpack | 2 +-
download.in | 2 +-
patches/dev300/apply | 3 +++
patches/dev300/ooo83878.unopkg.enablelinking.diff | 10 ++++++----
patches/dev300/piece-postprocess.diff | 11 +++++++++++
5 files changed, 22 insertions(+), 6 deletions(-)
New commits:
commit 63b20374e3361a367222e55ce2c1c9a07932c032
Author: Petr Mladek <pmladek at suse.cz>
Date: Wed Apr 21 17:44:53 2010 +0200
Fix the postprocess split build
* patches/dev300/piece-postprocess.diff: ignore errors reported by checkdeliver.pl
as it was always done before ooo320-m15
* patches/dev300/apply: add the above diff
diff --git a/patches/dev300/apply b/patches/dev300/apply
index b614fe1..c610ea8 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -3781,6 +3781,9 @@ piece-io.diff
piece-l10n.diff
piece-remotebridges.diff
piece-rsc.diff
+[ PieceBits >= ooo320-m15 ]
+piece-postprocess.diff
+[ PieceBits ]
piece-scp2.diff
piece-solenv.diff
piece-services.diff
diff --git a/patches/dev300/piece-postprocess.diff b/patches/dev300/piece-postprocess.diff
new file mode 100644
index 0000000..62c7bfe
--- /dev/null
+++ b/patches/dev300/piece-postprocess.diff
@@ -0,0 +1,11 @@
+--- postprocess/checkdeliver/makefile.mk.old 2010-04-15 08:57:00.000000000 +0200
++++ postprocess/checkdeliver/makefile.mk 2010-04-21 16:43:14.000000000 +0200
+@@ -38,5 +38,7 @@ TARGET=checkdeliver
+ ALLTAR : $(MISC)$/checkdeliver.done
+
+ $(MISC)$/checkdeliver.done .PHONY:
+- $(PERL) checkdeliver.pl && $(TOUCH) $@
++ # FIXME: the output was always ignored until ooo320-m15; it would be nice to check it though
++ # $(PERL) checkdeliver.pl && $(TOUCH) $@
++ $(TOUCH) $@
+
commit 9c7380baeb3c19d948d5787704f971ab68098082
Author: Petr Mladek <pmladek at suse.cz>
Date: Wed Apr 21 14:33:10 2010 +0200
Fix unopkg parameters to work again
* patches/dev300/ooo83878.unopkg.enablelinking.diff: sigh, I have broken
the order of method parameters during porting for ooo320-m14
diff --git a/patches/dev300/ooo83878.unopkg.enablelinking.diff b/patches/dev300/ooo83878.unopkg.enablelinking.diff
index b96ab66..78a1d35 100644
--- a/patches/dev300/ooo83878.unopkg.enablelinking.diff
+++ b/patches/dev300/ooo83878.unopkg.enablelinking.diff
@@ -257,9 +257,10 @@ diff -u -r1.6.84.1 unopkg_app.cxx
@@ -346,7 +356,7 @@
Reference< ::com::sun::star::ucb::XCommandEnvironment > xCmdEnv(
createCmdEnv( xComponentContext, logFile,
- option_force, option_verbose, option_bundled,
+- option_force, option_verbose, option_bundled,
- option_suppressLicense) );
-+ option_suppressLicense, option_link) );
++ option_force, option_link, option_verbose,
++ option_bundled, option_suppressLicense) );
if (subcmd_add ||
subCommand.equalsAsciiL(
@@ -338,9 +339,10 @@ diff -u -r1.8 unopkg_cmdenv.cxx
bool option_suppressLicense)
{
return new CommandEnvironmentImpl(
- xContext, logFile, option_force_overwrite, option_verbose, option_bundled,
+- xContext, logFile, option_force_overwrite, option_verbose, option_bundled,
- option_suppressLicense);
-+ option_suppressLicense, option_link);
++ xContext, logFile, option_force_overwrite, option_link, option_verbose,
++ option_bundled, option_suppressLicense);
}
} // unopkg
commit 9b8ec0ba23bdad82412cd3f5e9c4d2bb15a3688f
Author: Petr Mladek <pmladek at suse.cz>
Date: Wed Apr 21 14:31:04 2010 +0200
Update ooo-cli-prebuilt to version 3.2.1
* bin/unpack, download.in: update to ooo-cli-prebuilt-3.2.1.tar.bz2
diff --git a/bin/unpack b/bin/unpack
index fc9726e..f5928c3 100755
--- a/bin/unpack
+++ b/bin/unpack
@@ -399,7 +399,7 @@ fi
# copy in misc Mono related dlls if we need to
# we can't build them on Unix.
-OOO_CLI_PREBUILT_ARCHIVE=ooo-cli-prebuilt-3.2.tar.bz2
+OOO_CLI_PREBUILT_ARCHIVE=ooo-cli-prebuilt-3.2.1.tar.bz2
if test "z$PIECE" = "z"; then
if test -f "$SRCDIR/$OOO_CLI_PREBUILT_ARCHIVE"; then
mkdir -p $OOBUILDDIR/external/cli
diff --git a/download.in b/download.in
index 702cce3..ed8dc55 100755
--- a/download.in
+++ b/download.in
@@ -371,7 +371,7 @@ if ('@BUILD_WIN32@' ne '')
else
{
if ('@ENABLE_MONO@' ne 'FALSE') {
- source_file( 'ooo-cli-prebuilt-3.2.tar.bz2' );
+ source_file( 'ooo-cli-prebuilt-3.2.1.tar.bz2' );
}
if ( $download_all ) {
source_file( "apache-ant-1.7.0-bin.tar.gz" );
More information about the ooo-build-commit
mailing list