Add arch armv7hl, armv7nhl, armv7thl, armv7tnhl
authorMichael Andres <ma@suse.de>
Tue, 18 Oct 2011 14:57:25 +0000 (16:57 +0200)
committerMichael Andres <ma@suse.de>
Tue, 18 Oct 2011 14:57:25 +0000 (16:57 +0200)
libzypp-bindings.spec.cmake
swig/Arch.i

index ff00b7a..4c7d92f 100644 (file)
@@ -27,7 +27,7 @@ BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  cmake python-devel ruby-devel
 BuildRequires:  gcc-c++ >= 4.5
 BuildRequires:  swig >= 1.3.40
-BuildRequires:  libzypp-devel >= 5.8.0
+BuildRequires:  libzypp-devel >= 10.2.0
 Source:         %{name}-%{version}.tar.bz2
 
 %description
index 539b257..1129197 100644 (file)
@@ -39,7 +39,7 @@ class Arch {
   ~Arch() {
     delete $self;
   }
-  
+
   /*
    * builtin: noarch
    */
@@ -85,6 +85,23 @@ class Arch {
    */
   static Arch s390x() { return zypp::Arch_s390x; }
   /*
+   * builtin: armv7tnhl
+   */
+  static Arch armv7tnhl() { return zypp::Arch_armv7tnhl; }
+  /*
+   * builtin: armv7thl
+   */
+  static Arch armv7thl() { return zypp::Arch_armv7thl; }
+  /*
+   * builtin: armv7nhl
+   */
+  static Arch armv7nhl() { return zypp::Arch_armv7nhl; }
+  /*
+   * builtin: armv7hl
+   */
+  static Arch armv7hl() { return zypp::Arch_armv7hl; }
+
+  /*
    * builtin: armv7l
    */
   static Arch armv7l() { return zypp::Arch_armv7l; }
@@ -191,7 +208,7 @@ class Arch {
    */
   int equal( const zypp::Arch & arch )
 #endif
-    
+
 #if defined(SWIGPYTHON)
   /*
    * :nodoc:
@@ -202,7 +219,7 @@ class Arch {
   int __eq__( const zypp::Arch & arch )
 #endif
   { return $self->compare(arch) == 0; }
-    
+
 
 #ifdef SWIGPYTHON
 %rename ("__str__") string();