Hello community,

here is the log from the commit of package libindi for openSUSE:Factory checked 
in at 2013-03-28 13:19:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libindi (Old)
 and      /work/SRC/openSUSE:Factory/.libindi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libindi", Maintainer is "dmuel...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libindi/libindi.changes  2012-12-07 
14:38:18.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libindi.new/libindi.changes     2013-03-28 
13:19:22.000000000 +0100
@@ -1,0 +2,5 @@
+Wed Mar 27 15:31:12 UTC 2013 - sch...@suse.de
+
+- libindi-aarch64.patch: No port I/O on aarch64
+
+-------------------------------------------------------------------

New:
----
  libindi-aarch64.patch

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

Other differences:
------------------
++++++ libindi.spec ++++++
--- /var/tmp/diff_new_pack.cGkmJ2/_old  2013-03-28 13:19:23.000000000 +0100
+++ /var/tmp/diff_new_pack.cGkmJ2/_new  2013-03-28 13:19:23.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libindi
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -32,6 +32,8 @@
 Patch0:         no-return-in-nonvoid-function.patch
 # PATCH-FIX-UPSTREAM udev_rules_dir_configurable.patch 
asterios.dra...@gmail.com -- Make "UDEVRULES_INSTALL_DIR" configurable
 Patch1:         udev_rules_dir_configurable.patch
+# PATCH-FIX-UPSTREAM libindi-aarch64.patch sch...@suse.de -- No port I/O on 
aarch64
+Patch2:         libindi-aarch64.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  libcfitsio-devel
@@ -107,6 +109,7 @@
 %setup -q
 %patch0 -p1
 %patch1
+%patch2 -p1
 
 %build
 mkdir build

++++++ libindi-aarch64.patch ++++++
Index: libindi-0.9.6/libs/webcam/port.cpp
===================================================================
--- libindi-0.9.6.orig/libs/webcam/port.cpp
+++ libindi-0.9.6/libs/webcam/port.cpp
@@ -40,7 +40,8 @@
 #ifdef __linux__
 #if defined(arm) || defined(__hppa__) || defined(__sparc__) || 
defined(__ppc__) \
        || defined(__powerpc__) || defined(__s390__) || defined(__s390x__)\
-       || defined(__mips__) || defined(__mc68000__) || defined(__sh__)
+       || defined(__mips__) || defined(__mc68000__) || defined(__sh__) \
+       || defined(__aarch64__)
 #define NO_SYSIO
 #endif /* architechtures */
 #endif /* __linux__ */
Index: libindi-0.9.6/libs/webcam/port.h
===================================================================
--- libindi-0.9.6.orig/libs/webcam/port.h
+++ libindi-0.9.6/libs/webcam/port.h
@@ -36,7 +36,7 @@
 #include <unistd.h>
 
 #ifdef __linux__
-  #if !defined(arm) && !defined(__hppa__) && !defined(__sparc__) && 
!defined(__ppc__) && !defined(__powerpc__) && !defined(__s390__) && 
!defined(__s390x__) && !defined(__mips__) && !defined(__mc68000__)
+  #if !defined(arm) && !defined(__hppa__) && !defined(__sparc__) && 
!defined(__ppc__) && !defined(__powerpc__) && !defined(__s390__) && 
!defined(__s390x__) && !defined(__mips__) && !defined(__mc68000__) && 
!defined(__aarch64__)
   #include <sys/io.h>
   #endif /* !arm */
 #elif defined(QNX)
@@ -56,7 +56,7 @@
 #error Please define a platform in the Makefile
 #endif
 
-#if defined(arm) || defined(__hppa__) || defined(__sparc__) || 
defined(__ppc__) || defined(__powerpc__) || defined(__s390__) || 
defined(__s390x__) || defined(__mips__) || defined(__mc68000__)
+#if defined(arm) || defined(__hppa__) || defined(__sparc__) || 
defined(__ppc__) || defined(__powerpc__) || defined(__s390__) || 
defined(__s390x__) || defined(__mips__) || defined(__mc68000__) || 
defined(__aarch64__)
 static char ports_temp;
 
 #ifdef inb
@@ -115,7 +115,7 @@ private:
 #ifdef FREEBSD
   FILE *devio;
 #endif
-#if defined(__linux__) && (defined(arm) || defined(__hppa__) || 
defined(__sparc__) || defined(__ppc__) || defined(__powerpc__) || 
defined(__s390__) || defined(__s390x__) || defined(__mips__) || 
defined(__mc68000__))
+#if defined(__linux__) && (defined(arm) || defined(__hppa__) || 
defined(__sparc__) || defined(__ppc__) || defined(__powerpc__) || 
defined(__s390__) || defined(__s390x__) || defined(__mips__) || 
defined(__mc68000__) || defined(__aarch64__))
   int devport;
 #endif
 };
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to