From amdmi3@amdmi3.ru  Wed Oct 10 15:18:04 2007
Return-Path: <amdmi3@amdmi3.ru>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id F011116A417
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 10 Oct 2007 15:18:04 +0000 (UTC)
	(envelope-from amdmi3@amdmi3.ru)
Received: from cp65.agava.net (cp65.agava.net [89.108.66.215])
	by mx1.freebsd.org (Postfix) with ESMTP id 7DDCD13C46A
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 10 Oct 2007 15:18:04 +0000 (UTC)
	(envelope-from amdmi3@amdmi3.ru)
Received: from [213.148.20.85] (helo=nexii.panopticon)
	by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256)
	(Exim 4.44 (FreeBSD))
	id 1IfdJy-0003cO-3K
	for FreeBSD-gnats-submit@freebsd.org; Wed, 10 Oct 2007 19:18:02 +0400
Received: from hades.panopticon (hades.panopticon [192.168.0.2])
	by nexii.panopticon (Postfix) with ESMTP id 64E23170AF
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 10 Oct 2007 19:19:28 +0400 (MSD)
Received: by hades.panopticon (Postfix, from userid 1000)
	id D20AF4570; Wed, 10 Oct 2007 19:19:32 +0400 (MSD)
Message-Id: <20071010151932.D20AF4570@hades.panopticon>
Date: Wed, 10 Oct 2007 19:19:32 +0400 (MSD)
From: Dmitry Marakasov <amdmi3@amdmi3.ru>
Reply-To: Dmitry Marakasov <amdmi3@amdmi3.ru>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [MAINTAINER] multimedia/openmovieeditor: update to 0.0.20071009
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         117070
>Category:       ports
>Synopsis:       [MAINTAINER] multimedia/openmovieeditor: update to 0.0.20071009
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Oct 10 15:20:02 UTC 2007
>Closed-Date:    Wed Oct 10 16:13:13 UTC 2007
>Last-Modified:  Wed Oct 10 16:20:01 UTC 2007
>Originator:     Dmitry Marakasov
>Release:        FreeBSD 6.1-RELEASE-p12 i386
>Organization:
>Environment:
System: FreeBSD hades.panopticon 6.1-RELEASE-p12 FreeBSD 6.1-RELEASE-p12 #0: Tue Jan 16 23:12:21 MSK 2007 amdmi3@hades.panopticon:/usr/obj/usr/src/sys/HADES i386


>Description:
- Update to 0.0.20071009
- gcc42 fix patches are no longer needed
>How-To-Repeat:
>Fix:

--- openmovieeditor.patch begins here ---
diff -ruN openmovieeditor.orig/Makefile openmovieeditor/Makefile
--- openmovieeditor.orig/Makefile	Wed Oct 10 18:57:13 2007
+++ openmovieeditor/Makefile	Wed Oct 10 18:58:05 2007
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	openmovieeditor
-PORTVERSION=	0.0.20070917
+PORTVERSION=	0.0.20071009
 CATEGORIES=	multimedia
 MASTER_SITES=	SF
 
diff -ruN openmovieeditor.orig/distinfo openmovieeditor/distinfo
--- openmovieeditor.orig/distinfo	Wed Oct 10 18:57:13 2007
+++ openmovieeditor/distinfo	Wed Oct 10 18:58:32 2007
@@ -1,3 +1,3 @@
-MD5 (openmovieeditor-0.0.20070917.tar.gz) = 669242f73d7221fd684b5e8fc6073471
-SHA256 (openmovieeditor-0.0.20070917.tar.gz) = 0fd2c9db88c2953e9865afd875416ac4a7388d6a2590b99ee2fbf4ec3c7e3c59
-SIZE (openmovieeditor-0.0.20070917.tar.gz) = 1235573
+MD5 (openmovieeditor-0.0.20071009.tar.gz) = d15b7818777993bcd58b612bdb3466f5
+SHA256 (openmovieeditor-0.0.20071009.tar.gz) = 8dae8dbbe0e79747a024ef8c79102e5b486fc7ccbe38a320b879424ff1d69ff9
+SIZE (openmovieeditor-0.0.20071009.tar.gz) = 1238328
diff -ruN openmovieeditor.orig/files/patch-src-JackPlaybackCore.cxx openmovieeditor/files/patch-src-JackPlaybackCore.cxx
--- openmovieeditor.orig/files/patch-src-JackPlaybackCore.cxx	Wed Oct 10 18:57:13 2007
+++ openmovieeditor/files/patch-src-JackPlaybackCore.cxx	Thu Jan  1 03:00:00 1970
@@ -1,11 +0,0 @@
---- src/JackPlaybackCore.cxx.orig	Fri Oct  5 01:19:48 2007
-+++ src/JackPlaybackCore.cxx	Fri Oct  5 01:20:24 2007
-@@ -291,7 +291,7 @@
- 		 * possibly resulting in a backwards seek.
- 		 */
- 		int spin = 1000000;
--		while (abs(jack_poll_frame()-m_currentFrame) > 2 && spin-- > 0 );
-+		while (::llabs(jack_poll_frame()-m_currentFrame) > 2 && spin-- > 0 );
- 	}
- 	if (g_use_jack_transport) jack_play();
- 
diff -ruN openmovieeditor.orig/files/patch-src-PortAudioPlaybackCore.cxx openmovieeditor/files/patch-src-PortAudioPlaybackCore.cxx
--- openmovieeditor.orig/files/patch-src-PortAudioPlaybackCore.cxx	Wed Oct 10 18:57:13 2007
+++ openmovieeditor/files/patch-src-PortAudioPlaybackCore.cxx	Thu Jan  1 03:00:00 1970
@@ -1,11 +0,0 @@
---- src/PortAudioPlaybackCore.cxx.orig	Fri Oct  5 01:19:48 2007
-+++ src/PortAudioPlaybackCore.cxx	Fri Oct  5 01:20:55 2007
-@@ -187,7 +187,7 @@
- 	m_lastFrame++;
- 	pthread_mutex_lock( &condition_mutex );
- 	int64_t diff = m_lastFrame - m_currentFrame;
--	if ( abs( diff ) > VIDEO_DRIFT_LIMIT ) {
-+	if ( ::llabs( diff ) > VIDEO_DRIFT_LIMIT ) {
- 		if ( diff > 0 ) {
- 			while( ( m_lastFrame - m_currentFrame ) > VIDEO_DRIFT_LIMIT && Pa_StreamActive( g_stream ) ) {
- 				pthread_cond_wait( &condition_cond, &condition_mutex );
--- openmovieeditor.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Wed Oct 10 15:20:33 UTC 2007 
Responsible-Changed-Why:  
miwi@ wants his PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=117070 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Wed Oct 10 16:13:12 UTC 2007 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=117070 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/117070: commit references a PR
Date: Wed, 10 Oct 2007 16:13:10 +0000 (UTC)

 miwi        2007-10-10 16:13:05 UTC
 
   FreeBSD ports repository
 
   Modified files:
     multimedia/openmovieeditor Makefile distinfo 
   Removed files:
     multimedia/openmovieeditor/files 
                                      patch-src-JackPlaybackCore.cxx 
                                      patch-src-PortAudioPlaybackCore.cxx 
   Log:
   - Update to 0.0.20071009
   
   PR:             117070
   Submitted by:   Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer)
   
   Revision  Changes    Path
   1.2       +1 -1      ports/multimedia/openmovieeditor/Makefile
   1.2       +3 -3      ports/multimedia/openmovieeditor/distinfo
   1.2       +0 -11     ports/multimedia/openmovieeditor/files/patch-src-JackPlaybackCore.cxx (dead)
   1.2       +0 -11     ports/multimedia/openmovieeditor/files/patch-src-PortAudioPlaybackCore.cxx (dead)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
