summaryrefslogtreecommitdiff
path: root/swig
diff options
context:
space:
mode:
authorMichael Andres <ma@suse.de>2011-10-18 16:57:25 +0200
committerMichael Andres <ma@suse.de>2011-10-18 16:57:25 +0200
commit40ee85d32c7f69c66e5adbd519a750fc2a161b52 (patch)
tree250f90809afdc6f48b84a64c9baf52a8f9b3ab52 /swig
parentac64de554b98ab698ccd8c1519c8c748f7ab71b4 (diff)
downloadlibzypp-bindings-40ee85d32c7f69c66e5adbd519a750fc2a161b52.tar.gz
libzypp-bindings-40ee85d32c7f69c66e5adbd519a750fc2a161b52.tar.bz2
libzypp-bindings-40ee85d32c7f69c66e5adbd519a750fc2a161b52.zip
Add arch armv7hl, armv7nhl, armv7thl, armv7tnhl
Diffstat (limited to 'swig')
-rw-r--r--swig/Arch.i23
1 files changed, 20 insertions, 3 deletions
diff --git a/swig/Arch.i b/swig/Arch.i
index 539b257..1129197 100644
--- a/swig/Arch.i
+++ b/swig/Arch.i
@@ -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();