Hello community,

here is the log from the commit of package recordmydesktop for openSUSE:Factory 
checked in at 2012-04-12 09:48:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/recordmydesktop (Old)
 and      /work/SRC/openSUSE:Factory/.recordmydesktop.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "recordmydesktop", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2012-03-17 10:42:43.883537212 +0100
+++ /work/SRC/openSUSE:Factory/.recordmydesktop.new/recordmydesktop.changes     
2012-04-12 09:48:41.000000000 +0200
@@ -0,0 +1,88 @@
+-------------------------------------------------------------------
+Fri Apr  6 14:39:12 UTC 2012 - [email protected]
+
+- Replace License tag with spdx identifier (GPL-2.0).
+
+-------------------------------------------------------------------
+Mon Feb 14 02:37:13 CET 2011 - [email protected]
+
+- Remove unneeded BuildRequires: autoconf, automake, gcc, gettext,
+  gettext-devel, glibc-devel, intltool, jack, libtool, make.
+- Add xorg-x11-libXext-devel BuildRequires.
+
+-------------------------------------------------------------------
+Fri Jan  7 00:33:25 UTC 2011 - [email protected]
+
+- Add missing .changes.
+- Spec file tidy up.
+- Split out includes patch to build on < 11.3.
+
+-------------------------------------------------------------------
+Thu Oct  1 00:00:00 CDT 2009 - [email protected]
+
+- update to 0.3.8.1
+
+-------------------------------------------------------------------
+Mon Nov 24 00:00:00 CST 2008 - [email protected]
+
+- update to 0.3.8:
+  * code has been refactored and cleaned up extensively to ease maintenance 
and bugfixes
+  * fixed a cursor-flickering bug
+  * fixed color-space conversion
+  * improved detection of compositing window managers
+  * libjack is now linked normally during compilation instead of being 
dlopened later
+
+-------------------------------------------------------------------
+Wed Mar 19 00:00:00 CDT 2008 - [email protected]
+
+- new upstream version
+
+-------------------------------------------------------------------
+Tue Dec 18 00:00:00 CST 2007 - [email protected]
+
+- new upstream version
+
+-------------------------------------------------------------------
+Sun Sep  9 00:00:00 CDT 2007 - [email protected]
+
+- moved to Packman
+
+-------------------------------------------------------------------
+Sat Aug 18 00:00:00 CDT 2007 - [email protected]
+
+- new upstream version
+
+-------------------------------------------------------------------
+Fri Jul 20 00:00:00 CDT 2007 - [email protected]
+
+- new upstream version
+
+-------------------------------------------------------------------
+Mon Jul 16 00:00:00 CDT 2007 - [email protected]
+
+- new upstream version
+
+-------------------------------------------------------------------
+Thu Mar 29 00:00:00 CDT 2007 - [email protected]
+
+- new upstream version
+- CHANGES: behavior of the program when using both the MIT-SHM and XDamage
+  extensions was fixed: less memory is now required and all options related to
+  conditional usage of shared memory are gone
+
+-------------------------------------------------------------------
+Mon Feb 12 00:00:00 CST 2007 - [email protected]
+
+- use jack for recording
+- new upstream version
+
+-------------------------------------------------------------------
+Mon Jan 22 00:00:00 CST 2007 - [email protected]
+
+- new upstream version
+
+-------------------------------------------------------------------
+Mon Dec 18 00:00:00 CST 2006 - [email protected]
+
+- new package
+

New:
----
  recordmydesktop-0.3.8.1.tar.gz
  recordmydesktop-gcc-includes.patch
  recordmydesktop-x11-includes.patch
  recordmydesktop.changes
  recordmydesktop.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ recordmydesktop.spec ++++++
#
# spec file for package recordmydesktop (0.3.8.1)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

Name:           recordmydesktop
Version:        0.3.8.1
Release:        1
License:        GPL-2.0
Summary:        Desktop Recorder
Url:            http://recordmydesktop.sourceforge.net
Group:          Productivity/Multimedia/Video/Editors and Convertors
Source:         %{name}-%{version}.tar.gz
# PATCH-FIX-OPENSUSE add x11 includes (>= 11.3 only)
Patch0:         recordmydesktop-x11-includes.patch
# PATCH-FIX-OPENSUSE add gcc includes
Patch1:         recordmydesktop-gcc-includes.patch
BuildRequires:  alsa-devel
BuildRequires:  jack-devel
BuildRequires:  libogg-devel
BuildRequires:  libtheora-devel
BuildRequires:  libvorbis-devel
BuildRequires:  xorg-x11-devel
BuildRequires:  xorg-x11-libICE-devel
BuildRequires:  xorg-x11-libSM-devel
BuildRequires:  xorg-x11-libXext-devel
BuildRequires:  zlib-devel

BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description
recordMyDesktop is a program that captures audio and video data from a Linux
desktop session, producing an Ogg-encapsulated Theora-Vorbis file. The main
goal is to be as unobstrusive as possible by proccessing only regions of the
screen that have changed.

%prep
%setup -q
%if 0%{?suse_version} >= 1130
%patch0 -p1
%endif
%patch1 -p1

%build
%configure --enable-jack=yes
make %{?_smp_mflags}

%install
%makeinstall

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING NEWS README TODO
%{_bindir}/recordmydesktop
%doc %{_mandir}/man1/recordmydesktop.1*

%changelog
++++++ recordmydesktop-gcc-includes.patch ++++++
Index: recordmydesktop-0.3.8.1/src/rmd.c
===================================================================
--- recordmydesktop-0.3.8.1.orig/src/rmd.c
+++ recordmydesktop-0.3.8.1/src/rmd.c
@@ -44,6 +44,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <errno.h>
+#include <string.h>
 
 int main(int argc,char **argv){
     ProgData pdata;
++++++ recordmydesktop-x11-includes.patch ++++++
Index: recordmydesktop-0.3.8.1/src/rmd_getzpixmap.c
===================================================================
--- recordmydesktop-0.3.8.1.orig/src/rmd_getzpixmap.c
+++ recordmydesktop-0.3.8.1/src/rmd_getzpixmap.c
@@ -32,7 +32,7 @@
 
 #include <X11/Xlib.h>
 #include <X11/Xlibint.h>
-#include <X11/extensions/shmstr.h>
+#include <X11/extensions/shmproto.h>
 #include <X11/extensions/XShm.h>
 
 
Index: recordmydesktop-0.3.8.1/src/rmd_update_image.c
===================================================================
--- recordmydesktop-0.3.8.1.orig/src/rmd_update_image.c
+++ recordmydesktop-0.3.8.1/src/rmd_update_image.c
@@ -32,7 +32,7 @@
 #include "rmd_types.h"
 
 #include <X11/Xlibint.h>
-#include <X11/extensions/shmstr.h>
+#include <X11/extensions/shmproto.h>
 #include <X11/extensions/XShm.h>
 
 
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to