After integrating the various feedback and discussing new
package names with David Comay, here's a second webrev for
this one:

 http://cr.opensolaris.org/~richb/pkg-8030-v2/


Changes made:

developer/gcc/gcc-432 package in .../unbundleds/GnuDevTools:

 * Removed the depend line for SUNWgcmn (obsolete).
 * Renamed from SUNWgcc432


developer/gcc/gcc-runtime-432 in ../unbundleds/GnuDevTools:

 * Renamed from SUNWgccruntime432


developer/gcc/gcc-dev-4 package in .../unbundleds/GnuDevTools:

 * Renamed from developer/gnu/gcc-dev-4
 * Change depend of SUNWgcc432 to developer/gcc/gcc-432
 * Removed the version line
 * Added in description and classification lines. Classification is a
   new one ("Development/Suites").
 * Added in similar depend lines to those found in the gcc-dev package.


.../src/gui/data/opensolaris.org:
.../src/gui/data/opensolaris.org.sections:

 * Ran gen_os_file.py to update the static files used by the GUI PM.


gcc-dev package in .../101a/common/GccDev:

 * Adjusted the classification to "Development/Suites".

Thanks.


-------- Original Message --------
Subject: [pkg-discuss] Code review: bug #8030 - Integrate GNU Developer Tools v4.3.2 into the unbundleds directory
Date:   Mon, 27 Apr 2009 10:41:35 -0700
From:   Rich Burridge <[email protected]>
To:     pkg discuss <[email protected]>
CC: George Vasick <[email protected]>, Prashanth Narayanaswamy <[email protected]>



Hi all,

Looking for a code review of the proposed fix for bug #8030:

http://defect.opensolaris.org/bz/show_bug.cgi?id=8030
Integrate GNU Developer Tools v4.3.2 into the unbundleds directory.

Webrev is at:

http://cr.opensolaris.org/~richb/pkg-8030-v1/

Local (internal) IPS repository is at:

http://stard.sfbay.sun.com:28030

The project team have tested these packages. I also tested them with:

$ pfexec pkg set-authority -P -O http://stard.sfbay.sun.com:28030 bug-8030
$ pfexec pkg uninstall SUNWgccruntime SUNWgcc432 developer/gnu/gcc-dev-4
$ pfexec pkg install developer/gnu/gcc-dev-4
$ pfexec pkg set-authority -P opensolaris.org
$ pfexec pkg unset-authority bug-8030


$ cat hello_world.c
#include <stdio.h>

int
main(int argc, char **argv)
{
   printf("Hello World!\n");
}

$ gcc-4.3.2 -o hello_world hello_world.c
$ ./hello_world
Hello World!

$ cat hello_world.cc
#include <iostream>

using namespace std;

int main()
{
   cout << "Hello World!" << endl;
   return 0;
}

$ g++-4.3.2 -o hello_world hello_world.cc
$ ./hello_world
Hello World!
$

Thanks.
_______________________________________________
pkg-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/pkg-discuss

_______________________________________________
pkg-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/pkg-discuss

Reply via email to