commit parrot for openSUSE:Factory

2013-03-08 Thread h_root
Hello community,

here is the log from the commit of package parrot for openSUSE:Factory checked 
in at 2013-03-08 09:36:29

Comparing /work/SRC/openSUSE:Factory/parrot (Old)
 and  /work/SRC/openSUSE:Factory/.parrot.new (New)


Package is parrot, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parrot/parrot.changes2013-01-17 
09:53:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.parrot.new/parrot.changes   2013-03-08 
09:36:31.0 +0100
@@ -1,0 +2,8 @@
+Thu Feb  7 11:16:02 CET 2013 - m...@suse.de
+
+- update to parrot-5.0.0
+  * install of a couple of forgotten files
+  * new experimental PARROT_DYNEXT environment variable
+  * new experimental dynext_dirs config entry
+
+---

Old:

  parrot-4.11.0.tar.bz2

New:

  parrot-5.0.0.tar.bz2



Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.3oxCc1/_old  2013-03-08 09:36:32.0 +0100
+++ /var/tmp/diff_new_pack.3oxCc1/_new  2013-03-08 09:36:32.0 +0100
@@ -16,9 +16,9 @@
 #
 
 Name:   parrot
-Version:4.11.0
+Version:5.0.0
 Release:0
-%define pversion 4_11_0
+%define pversion 5_0_0
 Summary:Parrot Virtual Machine
 License:Artistic-2.0
 Group:  Development/Libraries/Other
@@ -104,6 +104,7 @@
 %{__perl} Configure.pl \
 --prefix=%{_usr} \
 --libdir=%{_libdir} \
+--datadir=%{_libdir} \
 --sysconfdir=%{_sysconfdir} \
 --infodir=%{_datadir}/info \
 --mandir=%{_mandir} \
@@ -126,8 +127,9 @@
 mkdir $RPM_BUILD_ROOT
 export LD_LIBRARY_PATH=$( pwd )/blib/lib
 make install-dev DESTDIR=$RPM_BUILD_ROOT
-PARROT_LIB=%{_libdir}`./parrot_config versiondir`
-PARROT_INC=%{_includedir}`./parrot_config versiondir`
+PARROT_VER=`./parrot_config versiondir`
+PARROT_LIB=%{_libdir}$PARROT_VER
+PARROT_INC=%{_includedir}$PARROT_VER
 wd=`pwd`
 for i in $RPM_BUILD_ROOT$PARROT_LIB/tools/build/* ; do
 perl -pi -e s@$wd/include@$PARROT_INC@g $i
@@ -136,9 +138,8 @@
 perl -pi -e s@$wd@$PARROT_LIB@g $i
 done
 perl -pi -e 's@^(use lib ..FindBin::Bin/\.\./)\.\.@$1lib@' 
$RPM_BUILD_ROOT$PARROT_LIB/tools/build/dynpmc.pl
-# Drop the docs so rpm can pick them up itself.
-rm -rf $RPM_BUILD_ROOT%{_usr}/share/doc/parrot# necessary for SuSE
-#rm -rf $RPM_BUILD_ROOT/%{_docdir}/parrot # for Solaris?
+# Drop the docs so rpm can pick them up itself with %doc.
+rm -rf $RPM_BUILD_ROOT%{_libdir}/doc
 # Force permissions on doc directories.
 find docs examples -type d -exec chmod 755 {} \;
 find docs examples -type f -exec chmod 644 {} \;

++ parrot-4.11.0.tar.bz2 - parrot-5.0.0.tar.bz2 ++
 7587 lines of diff (skipped)

++ parrot.diff ++
--- /var/tmp/diff_new_pack.3oxCc1/_old  2013-03-08 09:36:36.0 +0100
+++ /var/tmp/diff_new_pack.3oxCc1/_new  2013-03-08 09:36:36.0 +0100
@@ -41,6 +41,45 @@
  
  # Copyright (C) 2007, Parrot Foundation.
  
+--- ./lib/Parrot/Install.pm.orig   2013-02-07 12:31:06.0 +
 ./lib/Parrot/Install.pm2013-02-07 12:32:57.0 +
+@@ -295,7 +295,7 @@ sub install_files {
+   @$options{qw(destdir datadir versiondir dryrun)};
+ ref($files) eq 'ARRAY' or die Error: parameter \$files must be an 
arrayref\n;
+ 
+-my ($src, $dest, $mode, $manifest);
++my ($src, $dest, $mdest, $mode, $manifest);
+ print(Installing ...\n);
+ if (!$dryrun) {
+ my $destdatadir = $destdir
+@@ -311,8 +311,8 @@ sub install_files {
+ warn Bad reference passed in \$files (want a HASH, got a 
'$ref')\n;
+ next;
+ }
+-( $src, $dest ) = map { $el-{$_} } qw(Source Dest);
+-$dest = $destdir . $dest;
++( $src, $mdest ) = map { $el-{$_} } qw(Source Dest);
++$dest = $destdir . $mdest;
+ if ( $dryrun ) {
+ print $src - $dest\n;
+ next;
+@@ -332,14 +332,14 @@ sub install_files {
+ # this loop
+ if (-e $dest) {
+ print $dest\n;
+-print $manifest $dest\n unless $dryrun;
++print $manifest $mdest\n unless $dryrun;
+ next;
+ }
+ }
+ }
+ cp( $src, $dest ) or die Error: couldn't copy $src to $dest: 
$!\n;
+ print $dest\n;
+-print $manifest $dest\n unless $dryrun;
++print $manifest $mdest\n unless $dryrun;
+ }
+ $mode = ( stat($src) )[2];
+ chmod $mode, $dest;
 --- ./lib/Parrot/Pmc2c/PCCMETHOD.pm.orig   2011-07-18 10:38:55.0 
+
 +++ ./lib/Parrot/Pmc2c/PCCMETHOD.pm2011-07-18 10:44:39.0 +
 @@ 

commit parrot for openSUSE:Factory

2012-09-15 Thread h_root
Hello community,

here is the log from the commit of package parrot for openSUSE:Factory checked 
in at 2012-09-15 11:53:14

Comparing /work/SRC/openSUSE:Factory/parrot (Old)
 and  /work/SRC/openSUSE:Factory/.parrot.new (New)


Package is parrot, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parrot/parrot.changes2012-06-26 
17:11:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.parrot.new/parrot.changes   2012-09-15 
11:53:15.0 +0200
@@ -1,0 +2,12 @@
+Tue Aug  7 11:43:20 CEST 2012 - m...@suse.de
+
+- update to parrot-4.6.0
+  * Added init_pmc method to PackFileView.
+  * Added source lines from 'docs/index/book.json' to 'index.json'
+to make display of 'Parrot Developer's Guide: PIR (draft)'
+display more like the other books, e.g., 'PCT Book'.
+  * Removed 'docs/index/book.json' as unnecessary.
+  * Improve on 'sudo make install' permission errors by using
+File::Copy::cp.
+
+---

Old:

  parrot-4.5.0.tar.bz2

New:

  parrot-4.6.0.tar.bz2



Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.gKrTDx/_old  2012-09-15 11:53:17.0 +0200
+++ /var/tmp/diff_new_pack.gKrTDx/_new  2012-09-15 11:53:17.0 +0200
@@ -15,11 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 Name:   parrot
-Version:4.5.0
+Version:4.6.0
 Release:0
-%define pversion 4_5_0
+%define pversion 4_6_0
 Summary:Parrot Virtual Machine
 License:Artistic-2.0
 Group:  Development/Libraries/Other

++ parrot-4.5.0.tar.bz2 - parrot-4.6.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parrot-4.5.0/CREDITS new/parrot-4.6.0/CREDITS
--- old/parrot-4.5.0/CREDITS2012-06-19 17:41:43.0 +0200
+++ new/parrot-4.6.0/CREDITS2012-07-16 17:00:12.0 +0200
@@ -76,7 +76,7 @@
 
 N: Alvis Yardley
 D: Documentation Shepherd (3.9.0 - Present)
-D: Release manger for 4.1.0 and 4.5.0
+D: Release manager for 4.1.0 and 4.5.0
 E: ac.yard...@gmail.com
 U: alvis
 S: Ft. Worth, Texas
@@ -966,7 +966,10 @@
 N: Reini Urban
 U: rurban
 E: rur...@cpan.org
-D: cygwin, 64-bit pbc compat, float converters, bignum.pmc
+E: rur...@cpanel.net
+D: cygwin, install, 64-bit pbc compat, float converters
+D: Release manager for 4.6.0
+S: Houston, TX
 
 N: Richard Hainsworth
 U: finanalyst
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parrot-4.5.0/ChangeLog new/parrot-4.6.0/ChangeLog
--- old/parrot-4.5.0/ChangeLog  2012-06-19 17:13:39.0 +0200
+++ new/parrot-4.6.0/ChangeLog  2012-07-16 16:56:17.0 +0200
@@ -1,7 +1,15 @@
-2012-07-XXrelease 4.6.0
+2012-07-17release 4.6.0
 - Core
+   + Added init_pmc method to PackFileView.
 - Documentation
+   + Added source lines from 'docs/index/book.json' to 'index.json'
+ to make display of 'Parrot Developer's Guide: PIR (draft)'
+ display more like the other books, e.g., 'PCT Book'.
+   + Removed 'docs/index/book.json' as unnecessary.
 - Tests
+- Build
+   + Improve on 'sudo make install' permission errors by using
+ File::Copy::cp.
 - Community
 
 2012-06-19release 4.5.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parrot-4.5.0/MANIFEST new/parrot-4.6.0/MANIFEST
--- old/parrot-4.5.0/MANIFEST   2012-06-19 07:24:26.0 +0200
+++ new/parrot-4.6.0/MANIFEST   2012-07-16 16:50:52.0 +0200
@@ -329,7 +329,6 @@
 docs/imcc/README.pod[doc]
 docs/imcc/imcfaq.pod[doc]
 docs/imcc/operation.pod [doc]
-docs/index/book.json[doc]
 docs/index/developer.json   [doc]
 docs/index/index.json   [doc]
 docs/index/ops.json [doc]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parrot-4.5.0/MANIFEST.generated 
new/parrot-4.6.0/MANIFEST.generated
--- old/parrot-4.5.0/MANIFEST.generated 2012-06-19 17:06:36.0 +0200
+++ new/parrot-4.6.0/MANIFEST.generated 2012-07-16 16:51:53.0 +0200
@@ -1,14 +1,14 @@
 # See tools/dev/install_files.pl for documentation on the
 # format of this file.
 # Please re-sort this file after *EVERY* modification
-blib/lib/libparrot.4.5.0.dylib   [main]lib
+blib/lib/libparrot.4.6.0.dylib   [main]lib
 blib/lib/libparrot.a 

commit parrot for openSUSE:Factory

2012-06-26 Thread h_root
Hello community,

here is the log from the commit of package parrot for openSUSE:Factory checked 
in at 2012-06-26 17:11:50

Comparing /work/SRC/openSUSE:Factory/parrot (Old)
 and  /work/SRC/openSUSE:Factory/.parrot.new (New)


Package is parrot, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parrot/parrot.changes2012-06-10 
23:01:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.parrot.new/parrot.changes   2012-06-26 
17:11:52.0 +0200
@@ -1,0 +2,12 @@
+Fri Jun 22 18:14:40 CEST 2012 - m...@suse.de
+
+- update to parrot-4.5.0
+  * Added .write_bytes and .read_bytes methods to FileHandle and
+Socket PMCs
+  * Added Parrot_api_set_stdhandle, Parrot_api_new_call_object and
+Parrot_api_setup_signature functions to the embedding API
+  * removed the can VTABLE
+  * updated Winxed to 1.9.1
+  * removed .line, .file, setline and setfile directives from IMCC
+
+---

Old:

  parrot-4.4.0.tar.bz2

New:

  parrot-4.5.0.tar.bz2



Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.6c0lDG/_old  2012-06-26 17:11:53.0 +0200
+++ /var/tmp/diff_new_pack.6c0lDG/_new  2012-06-26 17:11:53.0 +0200
@@ -15,10 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   parrot
-Version:4.4.0
+Version:4.5.0
 Release:0
-%define pversion 4_4_0
+%define pversion 4_5_0
 Summary:Parrot Virtual Machine
 License:Artistic-2.0
 Group:  Development/Libraries/Other

++ parrot-4.4.0.tar.bz2 - parrot-4.5.0.tar.bz2 ++
 40802 lines of diff (skipped)

++ parrot.diff ++
--- /var/tmp/diff_new_pack.6c0lDG/_old  2012-06-26 17:11:55.0 +0200
+++ /var/tmp/diff_new_pack.6c0lDG/_new  2012-06-26 17:11:55.0 +0200
@@ -41,18 +41,6 @@
  
  # Copyright (C) 2007, Parrot Foundation.
  
 ./lib/Parrot/Pmc2c/Object.pm.orig  2011-07-18 11:49:40.0 +
-+++ ./lib/Parrot/Pmc2c/Object.pm   2011-07-18 11:50:13.0 +
-@@ -2,7 +2,8 @@ package Parrot::Pmc2c::Object;
- 
- # Copyright (C) 2007-2008, Parrot Foundation.
- 
--use base 'Parrot::Pmc2c';
-+# ; added so that rpm's require generator does not pick up the requires
-+;use base 'Parrot::Pmc2c';
- use strict;
- use warnings;
- 
 --- ./lib/Parrot/Pmc2c/PCCMETHOD.pm.orig   2011-07-18 10:38:55.0 
+
 +++ ./lib/Parrot/Pmc2c/PCCMETHOD.pm2011-07-18 10:44:39.0 +
 @@ -4,7 +4,8 @@ package Parrot::Pmc2c::PCCMETHOD;
@@ -65,3 +53,23 @@
  use Parrot::Pmc2c::UtilFunctions qw( trim );
  
  =head1 NAME
+--- ./src/interp/api.c.orig2012-06-22 16:55:31.0 +
 ./src/interp/api.c 2012-06-22 16:56:24.0 +
+@@ -982,6 +982,8 @@ Parrot_interp_info_s(PARROT_INTERP, INTV
+ return Parrot_str_new_init(interp, info.version,
+ strlen(info.version),  Parrot_ascii_encoding_ptr, 0);
+ }
++Parrot_ex_throw_from_c_args(interp, NULL, 
EXCEPTION_UNIMPLEMENTED,
++uname() call failed);
+ }
+ break;
+   case PARROT_OS_VERSION_NUMBER:
+@@ -991,6 +993,8 @@ Parrot_interp_info_s(PARROT_INTERP, INTV
+ return Parrot_str_new_init(interp, info.release,
+ strlen(info.release),  Parrot_ascii_encoding_ptr, 0);
+ }
++Parrot_ex_throw_from_c_args(interp, NULL, 
EXCEPTION_UNIMPLEMENTED,
++uname() call failed);
+ }
+ break;
+ #endif

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit parrot for openSUSE:Factory

2012-06-10 Thread h_root
Hello community,

here is the log from the commit of package parrot for openSUSE:Factory checked 
in at 2012-06-10 23:01:35

Comparing /work/SRC/openSUSE:Factory/parrot (Old)
 and  /work/SRC/openSUSE:Factory/.parrot.new (New)


Package is parrot, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parrot/parrot.changes2012-04-18 
12:35:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.parrot.new/parrot.changes   2012-06-10 
23:01:37.0 +0200
@@ -0,0 +1,12 @@
+---
+Fri Jun  8 13:51:04 CEST 2012 - m...@suse.de
+
+- update to parrot-4.4.0
+  * Most internal calls to libc exit(x) have been replaced with
+Parrot_x_* API calls or PARROT_FORCE_EXIT
+  * Many documentation updates
+  * Updated various dependencies, e.g., 'lib/Parrot/Distribution.pm'.
+  * pbc_merge has been fixed to deduplicate constant strings and
+merge annotations segments
+
+---

Old:

  parrot-4.2.0.tar.bz2

New:

  parrot-4.4.0.tar.bz2



Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.X2MZ23/_old  2012-06-10 23:01:39.0 +0200
+++ /var/tmp/diff_new_pack.X2MZ23/_new  2012-06-10 23:01:39.0 +0200
@@ -15,13 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   parrot
-Version:4.2.0
-Release:1
-%define pversion 4_2_0
+Version:4.4.0
+Release:0
+%define pversion 4_4_0
 Summary:Parrot Virtual Machine
 License:Artistic-2.0
 Group:  Development/Libraries/Other
@@ -29,13 +26,14 @@
 Source0:parrot-%{version}.tar.bz2
 Patch0: parrot.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  bison flex
-BuildRequires:  readline-devel
-BuildRequires:  ncurses-devel
-BuildRequires:  gmp-devel
+BuildRequires:  bison
+BuildRequires:  flex
 BuildRequires:  gdbm-devel
+BuildRequires:  gmp-devel
 BuildRequires:  libicu-devel
+BuildRequires:  ncurses-devel
 BuildRequires:  procps
+BuildRequires:  readline-devel
 %if 0%{?fedora_version}
 BuildRequires:  perl(JSON)
 %endif
@@ -47,18 +45,12 @@
 
 %package docs
 Summary:Parrot Virtual Machine documentation
-License:Artistic-2.0
-Group:  Development/Libraries/Other
 
 %package -n libparrot%pversion
 Summary:Parrot Virtual Machine Library
-License:Artistic-2.0
-Group:  Development/Libraries/Other
 
 %package devel
 Summary:Parrot Virtual Machine development headers and libraries
-License:Artistic-2.0
-Group:  Development/Libraries/Other
 Requires:   %{name} = %{version}
 Requires:   readline-devel
 Requires:   ncurses-devel
@@ -185,7 +177,7 @@
 
 %files docs
 %defattr(-,root,root,-)
-%doc ChangeLog CREDITS PBC_COMPAT PLATFORMS README
+%doc ChangeLog CREDITS PBC_COMPAT PLATFORMS README.pod
 %doc RESPONSIBLE_PARTIES TODO
 %doc docs examples
 

++ parrot-4.2.0.tar.bz2 - parrot-4.4.0.tar.bz2 ++
 46747 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit parrot for openSUSE:Factory

2012-04-18 Thread h_root
Hello community,

here is the log from the commit of package parrot for openSUSE:Factory checked 
in at 2012-04-18 12:34:51

Comparing /work/SRC/openSUSE:Factory/parrot (Old)
 and  /work/SRC/openSUSE:Factory/.parrot.new (New)


Package is parrot, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parrot/parrot.changes2011-10-25 
16:48:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.parrot.new/parrot.changes   2012-04-18 
12:35:00.0 +0200
@@ -0,0 +1,13 @@
+Fri Mar 23 03:30:00 CES 2012 - car...@glass.org.nz
+
+- update to parrot-4.2.0
+ * The signature of getprop was changed from (PMC,String,PMC) to
+(PMC,PMC,String) for consistency
+ * PCC now reuses continuation PMCs internally, which reduces GC work by 25%
+ * Winxed snapshop updated to 1.6.devel
+ * Fixed a segfault when reading packfiles with no constant or main_sub
+ * The OS Dynamic PMC now has separate functions to unlink a file and
+remove an empty directory (rmdir)
+ * various small bug fixes
+- fixed a failure in the configuration script
+

Old:

  parrot-3.9.0.tar.bz2

New:

  parrot-4.2.0.tar.bz2



Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.OycIBz/_old  2012-04-18 12:35:03.0 +0200
+++ /var/tmp/diff_new_pack.OycIBz/_new  2012-04-18 12:35:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package parrot
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,12 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+# norootforbuild
 
 
 Name:   parrot
-Version:3.9.0
+Version:4.2.0
 Release:1
-%define pversion 3_9_0
+%define pversion 4_2_0
 Summary:Parrot Virtual Machine
 License:Artistic-2.0
 Group:  Development/Libraries/Other
@@ -34,6 +35,7 @@
 BuildRequires:  gmp-devel
 BuildRequires:  gdbm-devel
 BuildRequires:  libicu-devel
+BuildRequires:  procps
 %if 0%{?fedora_version}
 BuildRequires:  perl(JSON)
 %endif

++ parrot-3.9.0.tar.bz2 - parrot-4.2.0.tar.bz2 ++
 98789 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit parrot for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package parrot for openSUSE:Factory checked 
in at 2011-12-06 18:35:59

Comparing /work/SRC/openSUSE:Factory/parrot (Old)
 and  /work/SRC/openSUSE:Factory/.parrot.new (New)


Package is parrot, Maintainer is m...@suse.com

Changes:




Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.PfPC75/_old  2011-12-06 19:03:11.0 +0100
+++ /var/tmp/diff_new_pack.PfPC75/_new  2011-12-06 19:03:11.0 +0100
@@ -22,7 +22,7 @@
 Release:1
 %define pversion 3_9_0
 Summary:Parrot Virtual Machine
-License:Artistic 2.0
+License:Artistic-2.0
 Group:  Development/Libraries/Other
 Url:http://www.parrot.org/
 Source0:parrot-%{version}.tar.bz2
@@ -45,17 +45,17 @@
 
 %package docs
 Summary:Parrot Virtual Machine documentation
-License:Artistic 2.0
+License:Artistic-2.0
 Group:  Development/Libraries/Other
 
 %package -n libparrot%pversion
 Summary:Parrot Virtual Machine Library
-License:Artistic 2.0
+License:Artistic-2.0
 Group:  Development/Libraries/Other
 
 %package devel
 Summary:Parrot Virtual Machine development headers and libraries
-License:Artistic 2.0
+License:Artistic-2.0
 Group:  Development/Libraries/Other
 Requires:   %{name} = %{version}
 Requires:   readline-devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit parrot for openSUSE:Factory

2011-10-25 Thread h_root
Hello community,

here is the log from the commit of package parrot for openSUSE:Factory checked 
in at 2011-10-25 16:48:27

Comparing /work/SRC/openSUSE:Factory/parrot (Old)
 and  /work/SRC/openSUSE:Factory/.parrot.new (New)


Package is parrot, Maintainer is m...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/parrot/parrot.changes2011-10-19 
00:47:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.parrot.new/parrot.changes   2011-10-25 
16:48:29.0 +0200
@@ -1,0 +2,9 @@
+Fri Oct 21 19:29:05 CEST 2011 - m...@suse.de
+
+- update to parrot-3.9.0
+  * subprof runcore was added
+  * winxed was updated to 1.3.0
+  * :tag() syntax support was added to imcc
+  * much cleanup
+
+---

Old:

  parrot-3.6.0.tar.bz2

New:

  parrot-3.9.0.tar.bz2



Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.yeBokJ/_old  2011-10-25 16:48:32.0 +0200
+++ /var/tmp/diff_new_pack.yeBokJ/_new  2011-10-25 16:48:32.0 +0200
@@ -18,9 +18,9 @@
 
 
 Name:   parrot
-Version:3.6.0
+Version:3.9.0
 Release:1
-%define pversion 3_6_0
+%define pversion 3_9_0
 Summary:Parrot Virtual Machine
 License:Artistic 2.0
 Group:  Development/Libraries/Other
@@ -171,7 +171,6 @@
 %files
 %defattr(-,root,root,-)
 %exclude %{_bindir}/parrot_config
-%exclude %{_bindir}/parrot_debugger
 %exclude %{_bindir}/pbc_*
 %{_bindir}/*
 
@@ -184,14 +183,13 @@
 
 %files docs
 %defattr(-,root,root,-)
-%doc ChangeLog CREDITS NEWS PBC_COMPAT PLATFORMS README
+%doc ChangeLog CREDITS PBC_COMPAT PLATFORMS README
 %doc RESPONSIBLE_PARTIES TODO
 %doc docs examples
 
 %files devel
 %defattr(-,root,root,-)
 %{_bindir}/parrot_config
-%{_bindir}/parrot_debugger
 %{_bindir}/pbc_disassemble
 %{_bindir}/pbc_merge
 %{_bindir}/pbc_to_exe

++ parrot-3.6.0.tar.bz2 - parrot-3.9.0.tar.bz2 ++
 123936 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit parrot for openSUSE:Factory

2011-06-30 Thread h_root

Hello community,

here is the log from the commit of package parrot for openSUSE:Factory
checked in at Thu Jun 30 10:46:08 CEST 2011.




--- parrot/parrot.changes   2011-01-20 17:49:13.0 +0100
+++ /mounts/work_src_done/STABLE/parrot/parrot.changes  2011-06-21 
21:06:32.0 +0200
@@ -1,0 +2,8 @@
+Tue Jun 21 21:03:12 CEST 2011 - m...@suse.de
+
+- update to parrot-3.5.0
+  * IPv6 is now supported and tested
+  * we now have a YAML library called YAML::Tiny
+  * new generational gc
+
+---

calling whatdependson for head-i586


Old:

  parrot-3.0.0.tar.bz2

New:

  parrot-3.5.0.tar.bz2



Other differences:
--
++ parrot.spec ++
--- /var/tmp/diff_new_pack.RaxdUf/_old  2011-06-30 10:45:15.0 +0200
+++ /var/tmp/diff_new_pack.RaxdUf/_new  2011-06-30 10:45:15.0 +0200
@@ -18,12 +18,12 @@
 
 
 Name:   parrot
-Version:3.0.0
+Version:3.5.0
 Release:1
-%define pversion 3_0_0
+%define pversion 3_5_0
 Summary:Parrot Virtual Machine
 License:Artistic 2.0
-Group:  Development/Libraries
+Group:  Development/Libraries/Other
 Url:http://www.parrot.org/
 Source0:parrot-%{version}.tar.bz2
 Patch0: parrot.diff
@@ -38,10 +38,12 @@
 BuildRequires:  perl-Test-Harness
 %endif
 
+%global __provides_exclude ^perl\\((A|B|DB)\\)$
+
 %package docs
 Summary:Parrot Virtual Machine documentation
 License:Artistic 2.0
-Group:  Development/Libraries
+Group:  Development/Libraries/Other
 %if ! 0%{?suse_version}
 BuildRequires:  /usr/bin/perldoc
 %endif
@@ -51,12 +53,12 @@
 
 Summary:Parrot Virtual Machine Library
 License:Artistic 2.0
-Group:  Development/Libraries
+Group:  Development/Libraries/Other
 
 %package devel
 Summary:Parrot Virtual Machine development headers and libraries
 License:Artistic 2.0
-Group:  Development/Libraries
+Group:  Development/Libraries/Other
 Requires:   %{name} = %{version}
 Requires:   readline-devel
 Requires:   ncurses-devel
@@ -64,9 +66,6 @@
 Requires:   gdbm-devel
 Requires:   libicu-devel
 Requires:   perl-File-Which
-%if ! 0%{?suse_version}
-Requires:   %{_libdir}/pkgconfig
-%endif
 
 %description
 Parrot is a virtual machine designed to efficiently compile and execute
@@ -202,7 +201,6 @@
 %{_includedir}/parrot
 %{_libdir}/libparrot.so
 %{_libdir}/libparrot.a
-%{_libdir}/pkgconfig/*
 %{_libdir}/parrot/*/[st]*
 %{_usrsrc}/parrot
 

++ parrot-3.0.0.tar.bz2 - parrot-3.5.0.tar.bz2 ++
 293980 lines of diff (skipped)

++ parrot.diff ++
--- /var/tmp/diff_new_pack.RaxdUf/_old  2011-06-30 10:45:17.0 +0200
+++ /var/tmp/diff_new_pack.RaxdUf/_new  2011-06-30 10:45:17.0 +0200
@@ -9,3 +9,35 @@
  lib/IO/CaptureOutput.pm []
  lib/Parrot/BuildUtil.pm [devel]lib
  lib/Parrot/Config.pm[devel]lib
+--- ./tools/dev/create_language.pl.orig2011-06-22 10:16:05.0 
+
 ./tools/dev/create_language.pl 2011-06-22 10:16:31.0 +
+@@ -1,4 +1,4 @@
+-#! perl
++#! /usr/bin/perl
+ # Copyright (C) 2007-2010, Parrot Foundation.
+ 
+ =head1 NAME
+--- ./tools/dev/gen_makefile.pl.orig   2011-06-22 10:16:13.0 +
 ./tools/dev/gen_makefile.pl2011-06-22 10:16:39.0 +
+@@ -1,4 +1,4 @@
+-#! perl
++#! /usr/bin/perl
+ 
+ # Copyright (C) 2009, Parrot Foundation.
+ 
+--- ./tools/dev/pprof2cg.pl.orig   2011-06-22 10:16:23.0 +
 ./tools/dev/pprof2cg.pl2011-06-22 10:17:07.0 +
+@@ -1,4 +1,4 @@
+-#! perl
++#! /usr/bin/perl
+ 
+ # Copyright (C) 2009, Parrot Foundation.
+ 
+--- ./tools/dev/reconfigure.pl.orig2011-06-22 10:16:17.0 +
 ./tools/dev/reconfigure.pl 2011-06-22 10:16:45.0 +
+@@ -1,4 +1,4 @@
+-#! perl
++#! /usr/bin/perl
+ 
+ # Copyright (C) 2007, Parrot Foundation.
+ 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org