Hello community,

here is the log from the commit of package libsynce for openSUSE:Factory
checked in at Mon Sep 5 16:37:50 CEST 2011.



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

--- /dev/null   2010-08-26 16:28:41.000000000 +0200
+++ libsynce/libsynce.changes   2011-04-19 16:33:41.000000000 +0200
@@ -0,0 +1,54 @@
+-------------------------------------------------------------------
+Tue Apr 19 14:33:34 UTC 2011 - [email protected]
+
+- Disable hal support
+
+-------------------------------------------------------------------
+Wed Mar 30 19:21:08 UTC 2011 - [email protected]
+
+- Update to version 0.15.1
+  + support for connections through udev based connection dccm
+
+-------------------------------------------------------------------
+Mon Oct 18 17:12:14 UTC 2010 - [email protected]
+
+- Fix build of python wrappers against python2.7 with libsynce-date-undef.patch
+
+-------------------------------------------------------------------
+Sun May  2 12:48:23 UTC 2010 - [email protected]
+
+- Update to version 0.15
+       + Bugfixes and under the hood stuff.
+       + A few more registry functions in pyrapi2.
+       + A new API based on MS RAPI2 is mostly complete and certainly usable.
+
+-------------------------------------------------------------------
+Sat Jul 18 20:34:48 CEST 2009 - [email protected]
+
+- Updated to version 0.14
+  + Mostly bugfixes and developer stuff, with some changes to the
+    python wrapper, including documentation !
+  + Also now supports some unusual WM2003 devices with 4 endpoints
+    with kernel 2.6.30
+
+-------------------------------------------------------------------
+Fri Jan 16 20:33:59 GMT 2009 - [email protected]
+- Updated to version 0.13
+       * lib/synce_log.c - check for incomplete conversion in wstr logging
+       * man/wstr_to_ascii.3 - notes about NULL return from incomplete 
conversion
+       * lib/synce_log.c - use wstr_to_current() in wstr logging 
+       * lib/info.c - use correct keys to get os and hardware from vdccm info 
file
+       * lib/info.c - check odccm is running before attempting to get devices, 
ignore devices from hal without pda.pocketpc.name as these are not valid
+       * lib/synce_socket.c - applied patch from andyakadum to build on 
Solaris, many thanks !
+
+-------------------------------------------------------------------
+Sat Aug  9 15:11:28 BST 2008 - [email protected]
+- Updated to version 0.12
+
+-------------------------------------------------------------------
+Wed Jun 11 00:07:44 BST 2008 - [email protected]
+- Initial release of package, svn revision 3488
+
+-------------------------------------------------------------------
+Sun May 11 23:14:00 BST 2008 - [email protected]
+- Initial release of package, svn revision 3446

calling whatdependson for head-i586


New:
----
  libsynce-0.15.1.tar.bz2
  libsynce-date-undef.patch
  libsynce.changes
  libsynce.spec

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

Other differences:
------------------
++++++ libsynce.spec ++++++
#
# spec file for package libsynce
#
# Copyright (c) 2011 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%if 0%{?suse_version} > 1110
%bcond_with hal
%else
%bcond_without hal
%endif

%define major           0

Name:           libsynce
Version:        0.15.1
Release:        1
License:        MIT
Summary:        Core library for the SynCE project
Url:            http://www.synce.org
Group:          System/Libraries
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

Source0:        %{name}-%{version}.tar.bz2
Patch0:         libsynce-date-undef.patch

BuildRequires:  dbus-1-glib-devel
%if %{with hal}
BuildRequires:  hal-devel
%endif

%description
The purpose of the SynCE project is to provide a means of communication with a 
Windows Mobile, or Windows CE, device from a computer running Linux, FreeBSD or 
a similar operating system.

%package -n %{name}%{major}

Summary:        Core library for the SynCE project
Group:          System/Libraries
Provides:       %{name} = %{version}
Obsoletes:      %{name} < %{version}

%description -n %{name}%{major}
The purpose of the SynCE project is to provide a means of communication with a 
Windows Mobile, or Windows CE, device from a computer running Linux, FreeBSD or 
a similar operating system.

Libsynce is a common library for various SynCE project tools, containing 
various utility and helper functions.

%package devel

Summary:        Header files, libraries and development documentation for 
%{name}
Group:          Development/Libraries/C and C++
Requires:       %{name} = %{version}
Requires:       dbus-1-glib-devel
%if %{with hal}
Requires:       hal-devel
%endif

%description devel
This package contains the header files, static libraries and development 
documentation for %{name}. If you like to develop programs using %{name}, you 
will need to install %{name}-devel.

%prep
%setup -q
%patch0 -p1

%build
%configure --disable-rpath \
        --disable-static \
%if %{with hal}
        --enable-hal-support
%else
        --disable-hal-support
%endif

make %{?_smp_mflags}

%install
%makeinstall DESTDIR=%{buildroot}
rm -f %{buildroot}%{_libdir}/*.{la,a}

%clean
rm -rf %{buildroot}

%post -n %{name}%{major} -p /sbin/ldconfig

%postun -n %{name}%{major} -p /sbin/ldconfig

%files -n %{name}%{major}
%defattr(-,root,root)
%doc ChangeLog LICENSE README TODO
%{_mandir}/man7/synce.7.gz
%{_libdir}/libsynce.so.0.0.0
%{_libdir}/libsynce.so.0

%files devel
%defattr(-,root,root)
%{_mandir}/man3/*
%{_includedir}/synce_socket.h
%{_includedir}/synce_sys_error.h
%{_includedir}/synce.h
%{_includedir}/synce_log.h
%{_includedir}/synce_hash.h
%{_includedir}/synce_types.h
%{_includedir}/synce_ini.h
%{_includedir}/synce_vector_template.h
%{_libdir}/pkgconfig/libsynce.pc
%{_libdir}/libsynce.so

%changelog
++++++ libsynce-date-undef.patch ++++++
Index: libsynce-0.15/lib/synce_types.h
===================================================================
--- libsynce-0.15.orig/lib/synce_types.h
+++ libsynce-0.15/lib/synce_types.h
@@ -38,6 +38,8 @@ typedef uint64_t  ULARGE_INTEGER;
 
 
 /* XXX: sizeof(double) must be 8 */
+//Python2.7 defines DATE as a macro in /usr/include/python2.7/pyconfig.h
+#undef DATE
 typedef double    DATE;
 
 /*

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



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to