You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2012/01/03 15:07:57 UTC

DO NOT REPLY [Bug 118720] New: dmake openofficedev is broken

https://issues.apache.org/ooo/show_bug.cgi?id=118720

             Bug #: 118720
        Issue Type: DEFECT
           Summary: dmake openofficedev is broken
    Classification: Code
           Product: tools
           Version: OOo 3.4 Beta
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: solenv
        AssignedTo: hjs@openoffice.org
        ReportedBy: arielch@apache.org
                CC: ooo-issues@incubator.apache.org


Running

dmake openofficedev

in instsetoo_native/util breaks with the following:


... cleaning the output tree ...
... removing directory /tmp/ooopackaging/i_128551325530810 ...

**************************************************
ERROR: ERROR: Environment variable SO_PACK not set!
in function: put_childprojects_into_installset
**************************************************

**************************************************
ERROR: Saved logfile:
/mnt/build/openoffice/apache/trunk/main/instsetoo_native/unxlngx6/OpenOffice_Dev/rpm/logging/en-US/log_OOO340_en-US.log
**************************************************
Mon Jan  2 16:01:19 2012 (01:09 min.)
dmake:  Error code 255, while making 'openofficedev_en-US.rpm'

-- 
Configure bugmail: https://issues.apache.org/ooo/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

DO NOT REPLY [Bug 118720] dmake openofficedev is broken

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=118720

--- Comment #3 from Ariel Constenla-Haile <ar...@apache.org> 2012-01-03 14:23:07 UTC ---
With 
JAVAPRODUCT 0
setup_osljre setup_osl

the build still breaks:


*********************************************************************
ERROR: The following errors occured in packaging process:

ERROR: Could not copy  to ./installdata/html/AcceptLicense_en-US.html
ERROR: Could not copy  to ./installdata/html/AcceptLicense.html
ERROR: Could not copy  to ./installdata/html/ChooseComponents_en-US.html
ERROR: Could not copy  to ./installdata/html/ChooseComponents.html
ERROR: Could not copy  to ./installdata/html/ChooseDirectory_en-US.html
ERROR: Could not copy  to ./installdata/html/ChooseDirectory.html
ERROR: Could not copy  to ./installdata/html/ChooseInstallationType_en-US.html
ERROR: Could not copy  to ./installdata/html/ChooseInstallationType.html
ERROR: Could not copy  to
./installdata/html/ChooseUninstallationComponents_en-US.html
ERROR: Could not copy  to
./installdata/html/ChooseUninstallationComponents.html
ERROR: Could not copy  to
./installdata/html/ChooseUninstallationType_en-US.html
ERROR: Could not copy  to ./installdata/html/ChooseUninstallationType.html
ERROR: Could not copy  to ./installdata/html/InstallationImminent_en-US.html
ERROR: Could not copy  to ./installdata/html/InstallationImminent.html
ERROR: Could not copy  to ./installdata/html/InstallationOngoing_en-US.html
ERROR: Could not copy  to ./installdata/html/InstallationOngoing.html
ERROR: Could not copy  to ./installdata/html/Prologue_en-US.html
ERROR: Could not copy  to ./installdata/html/Prologue.html
ERROR: Could not copy  to ./installdata/html/UninstallationImminent_en-US.html
ERROR: Could not copy  to ./installdata/html/UninstallationImminent.html
ERROR: Could not copy  to ./installdata/html/UninstallationOngoing_en-US.html
ERROR: Could not copy  to ./installdata/html/UninstallationOngoing.html
ERROR: Could not copy  to ./installdata/html/UninstallationPrologue_en-US.html
ERROR: Could not copy  to ./installdata/html/UninstallationPrologue.html
ERROR: Could not copy  to ./JavaSetup.jar
*********************************************************************

Changing XPDINSTALLER from 1 to 0 fixes the issue.

-- 
Configure bugmail: https://issues.apache.org/ooo/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

DO NOT REPLY [Bug 118720] dmake openofficedev is broken

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=118720

Ariel Constenla-Haile <ar...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ACCEPTED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #4 from Ariel Constenla-Haile <ar...@apache.org> 2012-01-28 13:48:53 UTC ---
Fixed in Revision 1226788

-- 
Configure bugmail: https://issues.apache.org/ooo/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

DO NOT REPLY [Bug 118720] dmake openofficedev is broken

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=118720

--- Comment #1 from Ariel Constenla-Haile <ar...@apache.org> 2012-01-03 14:14:24 UTC ---
put_childprojects_into_installset
(/solenv/bin/modules/installer/epmfile.pm#3047) is invoked on
solenv/bin/make_installer.pl if the following condition is true:

if ($installer::globals::addchildprojects) {
installer::epmfile::put_childprojects_into_installset($installer::globals::epmoutpath,
$allvariableshashref, $modulesinproductarrayref, $includepatharrayref); }

(solenv/bin/make_installer.pl#1754)


$installer::globals::addchildprojects is set to 1 under the following
condition:

if (( $allvariables->{'JAVAPRODUCT'} ) ||
( $allvariables->{'ADAPRODUCT'} ) ||
    711         ( $allvariables->{'UREPRODUCT'} ) ||
    712         ( $allvariables->{'ADDREQUIREDPACKAGES'} )) {
$installer::globals::addchildprojects = 1; }

-- 
Configure bugmail: https://issues.apache.org/ooo/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

DO NOT REPLY [Bug 118720] dmake openofficedev is broken

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=118720

--- Comment #2 from Ariel Constenla-Haile <ar...@apache.org> 2012-01-03 14:19:23 UTC ---
put_childprojects_into_installset
(/solenv/bin/modules/installer/epmfile.pm#3047) is invoked on
solenv/bin/make_installer.pl if the following condition is true:

if ($installer::globals::addchildprojects) {
installer::epmfile::put_childprojects_into_installset($installer::globals::epmoutpath,
$allvariableshashref, $modulesinproductarrayref, $includepatharrayref); }

(solenv/bin/make_installer.pl#1754)


$installer::globals::addchildprojects is set to 1 under the following
condition:

if (( $allvariables->{'JAVAPRODUCT'} ) ||
    ( $allvariables->{'ADAPRODUCT'} ) ||
    ( $allvariables->{'UREPRODUCT'} ) ||
    ( $allvariables->{'ADDREQUIREDPACKAGES'} )) {
$installer::globals::addchildprojects = 1; }

(solenv/bin/modules/installer/control.pm#709)


In this case, instsetoo_native/util/openoffice.lst#224
JAVAPRODUCT is set to 1 for OpenOffice_Dev

Change JAVAPRODUCT to 0
Change script from setup_osljre to setup_osl

Developer Snapshot do not install a JRE.

-- 
Configure bugmail: https://issues.apache.org/ooo/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

DO NOT REPLY [Bug 118720] dmake openofficedev is broken

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=118720

Ariel Constenla-Haile <ar...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |STARTED
         AssignedTo|hjs@openoffice.org          |arielch@apache.org

-- 
Configure bugmail: https://issues.apache.org/ooo/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

[Bug 118720] dmake openofficedev is broken

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=118720

Oliver-Rainer Wittmann (orw at apache dot org) <or...@googlemail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|enhancement                 |normal

--- Comment #5 from Oliver-Rainer Wittmann (orw at apache dot org) <or...@googlemail.com> ---
getting rid of value "enhancement" for field "severity".
For enhancement the field "issue type" shall be used.

-- 
You are receiving this mail because:
You are on the CC list for the bug.