OpenPKG CVS Repository
  http://cvs.openpkg.org/
  ____________________________________________________________________________

  Server: cvs.openpkg.org                  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs                   Email:  [email protected]
  Module: openpkg-src                      Date:   23-Mar-2009 08:42:21
  Branch: HEAD                             Handle: 2009032307422000

  Modified files:
    openpkg-src/dirac       dirac.patch dirac.spec

  Log:
    modifying package: dirac-1.0.2 20090314 -> 20090323

  Summary:
    Revision    Changes     Path
    1.2         +55 -8      openpkg-src/dirac/dirac.patch
    1.3         +4  -4      openpkg-src/dirac/dirac.spec
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-src/dirac/dirac.patch
  ============================================================================
  $ cvs diff -u -r1.1 -r1.2 dirac.patch
  --- openpkg-src/dirac/dirac.patch     14 Mar 2009 10:12:43 -0000      1.1
  +++ openpkg-src/dirac/dirac.patch     23 Mar 2009 07:42:20 -0000      1.2
  @@ -1,6 +1,6 @@
   Index: dirac-1.0.2/Makefile.in
   --- dirac-1.0.2/Makefile.in.orig     2009-02-11 02:43:39 +0100
  -+++ dirac-1.0.2/Makefile.in  2009-03-14 10:59:06 +0100
  ++++ dirac-1.0.2/Makefile.in  2009-03-23 08:34:16 +0100
   @@ -74,8 +74,7 @@
    ETAGS = etags
    CTAGS = ctags
  @@ -21,9 +21,9 @@
    
    @have_doxygen_fa...@doc_dir = 
    @have_doxygen_t...@doc_dir = doc
  -Index: schroedinger-1.0.5/schroedinger.pc.in
  ---- schroedinger-1.0.5/schroedinger.pc.in.orig       2008-07-01 19:26:22 
+0200
  -+++ schroedinger-1.0.5/schroedinger.pc.in    2009-03-14 11:02:03 +0100
  +Index: schroedinger-1.0.6/schroedinger.pc.in
  +--- schroedinger-1.0.6/schroedinger.pc.in.orig       2009-03-22 22:22:33 
+0100
  ++++ schroedinger-1.0.6/schroedinger.pc.in    2009-03-23 08:34:16 +0100
   @@ -1,7 +1,7 @@
    pref...@prefix@
    exec_pref...@exec_prefix@
  @@ -41,10 +41,10 @@
   +Cflags: -I${includedir}/schroedinger -I${includedir}
    
    
  -Index: schroedinger-1.0.5/schroedinger/Makefile.in
  ---- schroedinger-1.0.5/schroedinger/Makefile.in.orig 2008-07-01 20:03:42 
+0200
  -+++ schroedinger-1.0.5/schroedinger/Makefile.in      2009-03-14 11:02:20 
+0100
  -@@ -153,7 +153,7 @@
  +Index: schroedinger-1.0.6/schroedinger/Makefile.in
  +--- schroedinger-1.0.6/schroedinger/Makefile.in.orig 2009-03-23 02:04:50 
+0100
  ++++ schroedinger-1.0.6/schroedinger/Makefile.in      2009-03-23 08:34:16 
+0100
  +@@ -193,7 +193,7 @@
    CTAGS = ctags
    DIST_SUBDIRS = cuda opengl
    DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  @@ -53,3 +53,50 @@
    ACLOCAL = @ACLOCAL@
    ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
    AMDEP_FALSE = @AMDEP_FALSE@
  +Index: schroedinger-1.0.6/testsuite/motion.c
  +--- schroedinger-1.0.6/testsuite/motion.c.orig       2009-03-22 22:22:33 
+0100
  ++++ schroedinger-1.0.6/testsuite/motion.c    2009-03-23 08:36:50 +0100
  +@@ -24,7 +24,7 @@
  + }
  + 
  + void
  +-schro_frame_clear (SchroFrame *frame)
  ++my_schro_frame_clear (SchroFrame *frame)
  + {
  +   schro_frame_data_clear (frame->components + 0);
  +   schro_frame_data_clear (frame->components + 1);
  +@@ -67,11 +67,11 @@
  + 
  +   dest = schro_frame_new_and_alloc (NULL, SCHRO_FRAME_FORMAT_S16_420,
  +       video_format.width, video_format.height);
  +-  schro_frame_clear(dest);
  ++  my_schro_frame_clear(dest);
  + 
  +   ref = schro_frame_new_and_alloc_extended (NULL, SCHRO_FRAME_FORMAT_U8_420,
  +       video_format.width, video_format.height, 32);
  +-  schro_frame_clear(ref);
  ++  my_schro_frame_clear(ref);
  + 
  +   uref = schro_upsampled_frame_new (ref);
  + 
  +Index: schroedinger-1.0.6/testsuite/motion2.c
  +--- schroedinger-1.0.6/testsuite/motion2.c.orig      2009-03-22 22:22:33 
+0100
  ++++ schroedinger-1.0.6/testsuite/motion2.c   2009-03-23 08:37:02 +0100
  +@@ -15,7 +15,7 @@
  + #include <liboil/liboilrandom.h>
  + 
  + void
  +-schro_frame_clear (SchroFrame *frame)
  ++my_schro_frame_clear (SchroFrame *frame)
  + {
  +   memset(frame->components[0].data, 0, frame->components[0].length);
  +   memset(frame->components[1].data, 0, frame->components[1].length);
  +@@ -122,7 +122,7 @@
  +   dest_u8 = schro_frame_new_and_alloc (NULL, SCHRO_FRAME_FORMAT_U8_420,
  +       video_format.width, video_format.height);
  + 
  +-  schro_frame_clear(dest);
  ++  my_schro_frame_clear(dest);
  +   schro_frame_create_pattern(ref,1);
  + 
  +   motion_vectors = malloc(sizeof(SchroMotionVector) *
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/dirac/dirac.spec
  ============================================================================
  $ cvs diff -u -r1.2 -r1.3 dirac.spec
  --- openpkg-src/dirac/dirac.spec      14 Mar 2009 17:26:03 -0000      1.2
  +++ openpkg-src/dirac/dirac.spec      23 Mar 2009 07:42:20 -0000      1.3
  @@ -23,7 +23,7 @@
   
   #   package version
   %define       V_dirac         1.0.2
  -%define       V_schroedinger  1.0.5
  +%define       V_schroedinger  1.0.6
   
   #   package information
   Name:         dirac
  @@ -36,7 +36,7 @@
   Group:        Video
   License:      MPL, MIT
   Version:      %{V_dirac}
  -Release:      20090314
  +Release:      20090323
   
   #   list of sources
   Source0:      
http://diracvideo.org/download/dirac-research/dirac-%{V_dirac}.tar.gz
  @@ -48,8 +48,8 @@
   BuildRoot:    %{l_buildroot}
   BuildPreReq:  OpenPKG, openpkg >= 20060823, gcc, gcc::with_cxx = yes
   PreReq:       OpenPKG, openpkg >= 20060823
  -BuildPreReq:  liboil
  -PreReq:       liboil
  +BuildPreReq:  liboil >= 0.3.16
  +PreReq:       liboil >= 0.3.16
   AutoReq:      no
   AutoReqProv:  no
   
  @@ .
______________________________________________________________________
OpenPKG                                             http://openpkg.org
CVS Repository Commit List                     [email protected]

Reply via email to