[svn:parrot] r36723 - in trunk: lib/Parrot tools/dev

allison at svn.parrot.org allison at svn.parrot.org
Sat Feb 14 09:45:29 UTC 2009


Author: allison
Date: Sat Feb 14 09:45:29 2009
New Revision: 36723
URL: https://trac.parrot.org/parrot/changeset/36723

Log:
[install] Clearly mark PGE as its own package, and also install it by default.

Modified:
   trunk/lib/Parrot/Manifest.pm
   trunk/tools/dev/install_files.pl

Modified: trunk/lib/Parrot/Manifest.pm
==============================================================================
--- trunk/lib/Parrot/Manifest.pm	Sat Feb 14 09:41:45 2009	(r36722)
+++ trunk/lib/Parrot/Manifest.pm	Sat Feb 14 09:45:29 2009	(r36723)
@@ -142,6 +142,7 @@
             : m[^runtime/]                    ? '[library]'
             : m[^runtime/parrot/library/PCT]  ? '[pct]'
             : m[^docs/pct]                    ? '[pct]doc'
+            : m[^runtime/parrot/library/PCT]  ? '[pge]'
             : m[^runtime/parrot/library/TGE]  ? '[tge]'
             : m[^runtime/parrot/library/JSON] ? '[json]'
             : m[^docs/project]                ? '[devel]doc'

Modified: trunk/tools/dev/install_files.pl
==============================================================================
--- trunk/tools/dev/install_files.pl	Sat Feb 14 09:41:45 2009	(r36722)
+++ trunk/tools/dev/install_files.pl	Sat Feb 14 09:45:29 2009	(r36723)
@@ -173,7 +173,7 @@
     $meta =~ s/^\[(.*?)\]//;
     next unless $package;    # Skip if this file belongs to no package
 
-    next unless $package =~ /main|library/;
+    next unless $package =~ /main|library|pge/;
 
     my %meta;
     @meta{ split( /,/, $meta ) } = ();


More information about the parrot-commits mailing list