Oval Definition:oval:org.opensuse.security:def:24843
Revision Date:2020-12-01Version:1
Title:Security update for python-cffi, python-cryptography (Moderate)
Description:

This update for python-cffi, python-cryptography fixes the following issues:

Security issue fixed:

- CVE-2018-10903: Fixed GCM tag forgery via truncated tag in finalize_with_tag API (bsc#1101820).

Non-security issues fixed:

python-cffi was updated to 1.11.2 (bsc#1138748, jsc#ECO-1256, jsc#PM-1598):

- fixed a build failure on i586 (bsc#1111657) - Salt was unable to highstate in snapshot 20171129 (bsc#1070737)

- Update pytest in spec to add c directory tests in addition to testing directory.

- update to version 1.11.2: * Fix Windows issue with managing the thread-state on CPython 3.0 to 3.5

- Update pytest in spec to add c directory tests in addition to testing directory. - Omit test_init_once_multithread tests as they rely on multiple threads finishing in a given time. Returns sporadic pass/fail within build. - Update to 1.11.1: * Fix tests, remove deprecated C API usage * Fix (hack) for 3.6.0/3.6.1/3.6.2 giving incompatible binary extensions (cpython issue #29943) * Fix for 3.7.0a1+

- Update to 1.11.0: * Support the modern standard types char16_t and char32_t. These work like wchar_t: they represent one unicode character, or when used as charN_t * or charN_t[] they represent a unicode string. The difference with wchar_t is that they have a known, fixed size. They should work at all places that used to work with wchar_t (please report an issue if I missed something). Note that with set_source(), you need to make sure that these types are actually defined by the C source you provide (if used in cdef()). * Support the C99 types float _Complex and double _Complex. Note that libffi doesn't support them, which means that in the ABI mode you still cannot call C functions that take complex numbers directly as arguments or return type. * Fixed a rare race condition when creating multiple FFI instances from multiple threads. (Note that you aren't meant to create many FFI instances: in inline mode, you should write ffi = cffi.FFI() at module level just after import cffi; and in out-of-line mode you don't instantiate FFI explicitly at all.) * Windows: using callbacks can be messy because the CFFI internal error messages show up to stderr-but stderr goes nowhere in many applications. This makes it particularly hard to get started with the embedding mode. (Once you get started, you can at least use @ffi.def_extern(onerror=...) and send the error logs where it makes sense for your application, or record them in log files, and so on.) So what is new in CFFI is that now, on Windows CFFI will try to open a non-modal MessageBox (in addition to sending raw messages to stderr). The MessageBox is only visible if the process stays alive: typically, console applications that crash close immediately, but that is also the situation where stderr should be visible anyway. * Progress on support for callbacks in NetBSD. * Functions returning booleans would in some case still return 0 or 1 instead of False or True. Fixed. * ffi.gc() now takes an optional third parameter, which gives an estimate of the size (in bytes) of the object. So far, this is only used by PyPy, to make the next GC occur more quickly (issue #320). In the future, this might have an effect on CPython too (provided the CPython issue 31105 is addressed). * Add a note to the documentation: the ABI mode gives function objects that are slower to call than the API mode does. For some reason it is often thought to be faster. It is not! - Update to 1.10.1: * Fixed the line numbers reported in case of cdef() errors. Also, I just noticed, but pycparser always supported the preprocessor directive # 42 'foo.h' to mean 'from the next line, we're in file foo.h starting from line 42';, which it puts in the error messages.

- update to 1.10.0: * Issue #295: use calloc() directly instead of PyObject_Malloc()+memset() to handle ffi.new() with a default allocator. Speeds up ffi.new(large-array) where most of the time you never touch most of the array. * Some OS/X build fixes ('only with Xcode but without CLT';). * Improve a couple of error messages: when getting mismatched versions of cffi and its backend; and when calling functions which cannot be called with libffi because an argument is a struct that is 'too complicated'; (and not a struct pointer, which always works). * Add support for some unusual compilers (non-msvc, non-gcc, non-icc, non-clang) * Implemented the remaining cases for ffi.from_buffer. Now all buffer/memoryview objects can be passed. The one remaining check is against passing unicode strings in Python 2. (They support the buffer interface, but that gives the raw bytes behind the UTF16/UCS4 storage, which is most of the times not what you expect. In Python 3 this has been fixed and the unicode strings don't support the memoryview interface any more.) * The C type _Bool or bool now converts to a Python boolean when reading, instead of the content of the byte as an integer. The potential incompatibility here is what occurs if the byte contains a value different from 0 and 1. Previously, it would just return it; with this change, CFFI raises an exception in this case. But this case means 'undefined behavior'; in C; if you really have to interface with a library relying on this, don't use bool in the CFFI side. Also, it is still valid to use a byte string as initializer for a bool[], but now it must only contain \x00 or \x01. As an aside, ffi.string() no longer works on bool[] (but it never made much sense, as this function stops at the first zero). * ffi.buffer is now the name of cffi's buffer type, and ffi.buffer() works like before but is the constructor of that type. * ffi.addressof(lib, 'name') now works also in in-line mode, not only in out-of-line mode. This is useful for taking the address of global variables. * Issue #255: cdata objects of a primitive type (integers, floats, char) are now compared and ordered by value. For example, compares equal to 42 and compares equal to b'A'. Unlike C, does not compare equal to ffi.cast('unsigned int', -1): it compares smaller, because -1 < 4294967295. * PyPy: ffi.new() and ffi.new_allocator()() did not record 'memory pressure';, causing the GC to run too infrequently if you call ffi.new() very often and/or with large arrays. Fixed in PyPy 5.7. * Support in ffi.cdef() for numeric expressions with + or -. Assumes that there is no overflow; it should be fixed first before we add more general support for arbitrary arithmetic on constants.

- do not generate HTML documentation for packages that are indirect dependencies of Sphinx (see docs at https://cffi.readthedocs.org/ )

- update to 1.9.1 - Structs with variable-sized arrays as their last field: now we track the length of the array after ffi.new() is called, just like we always tracked the length of ffi.new('int[]', 42). This lets us detect out-of-range accesses to array items. This also lets us display a better repr(), and have the total size returned by ffi.sizeof() and ffi.buffer(). Previously both functions would return a result based on the size of the declared structure type, with an assumed empty array. (Thanks andrew for starting this refactoring.) - Add support in cdef()/set_source() for unspecified-length arrays in typedefs: typedef int foo_t[...];. It was already supported for global variables or structure fields. - I turned in v1.8 a warning from cffi/model.py into an error: 'enum xxx' has no values explicitly defined: refusing to guess which integer type it is meant to be (unsigned/signed, int/long). Now I'm turning it back to a warning again; it seems that guessing that the enum has size int is a 99%-safe bet. (But not 100%, so it stays as a warning.) - Fix leaks in the code handling FILE * arguments. In CPython 3 there is a remaining issue that is hard to fix: if you pass a Python file object to a FILE * argument, then os.dup() is used and the new file descriptor is only closed when the GC reclaims the Python file object-and not at the earlier time when you call close(), which only closes the original file descriptor. If this is an issue, you should avoid this automatic convertion of Python file objects: instead, explicitly manipulate file descriptors and call fdopen() from C (...via cffi). - When passing a void * argument to a function with a different pointer type, or vice-versa, the cast occurs automatically, like in C. The same occurs for initialization with ffi.new() and a few other places. However, I thought that char * had the same property-but I was mistaken. In C you get the usual warning if you try to give a char * to a char ** argument, for example. Sorry about the confusion. This has been fixed in CFFI by giving for now a warning, too. It will turn into an error in a future version. - Issue #283: fixed ffi.new() on structures/unions with nested anonymous structures/unions, when there is at least one union in the mix. When initialized with a list or a dict, it should now behave more closely like the { } syntax does in GCC. - CPython 3.x: experimental: the generated C extension modules now use the 'limited API';, which means that, as a compiled .so/.dll, it should work directly on any version of CPython >= 3.2. The name produced by distutils is still version-specific. To get the version-independent name, you can rename it manually to NAME.abi3.so, or use the very recent setuptools 26. - Added ffi.compile(debug=...), similar to python setup.py build --debug but defaulting to True if we are running a debugging version of Python itself. - Removed the restriction that ffi.from_buffer() cannot be used on byte strings. Now you can get a char * out of a byte string, which is valid as long as the string object is kept alive. (But don't use it to modify the string object! If you need this, use bytearray or other official techniques.) - PyPy 5.4 can now pass a byte string directly to a char * argument (in older versions, a copy would be made). This used to be a CPython-only optimization. - ffi.gc(p, None) removes the destructor on an object previously created by another call to ffi.gc() - bool(ffi.cast('primitive type', x)) now returns False if the value is zero (including -0.0), and True otherwise. Previously this would only return False for cdata objects of a pointer type when the pointer is NULL. - bytearrays: ffi.from_buffer(bytearray-object) is now supported. (The reason it was not supported was that it was hard to do in PyPy, but it works since PyPy 5.3.) To call a C function with a char * argument from a buffer object-now including bytearrays-you write lib.foo(ffi.from_buffer(x)). Additionally, this is now supported: p[0:length] = bytearray-object. The problem with this was that a iterating over bytearrays gives numbers instead of characters. (Now it is implemented with just a memcpy, of course, not actually iterating over the characters.) - C++: compiling the generated C code with C++ was supposed to work, but failed if you make use the bool type (because that is rendered as the C _Bool type, which doesn't exist in C++). - help(lib) and help(lib.myfunc) now give useful information, as well as dir(p) where p is a struct or pointer-to-struct.

- update for multipython build

- disable 'negative left shift' warning in test suite to prevent failures with gcc6, until upstream fixes the undefined code in question (bsc#981848)

- Update to version 1.6.0: * ffi.list_types() * ffi.unpack() * extern 'Python+C'; * in API mode, lib.foo.__doc__ contains the C signature now. * Yet another attempt at robustness of ffi.def_extern() against CPython's interpreter shutdown logic. - Update in SLE-12 (bsc#1138748, jsc#ECO-1256, jsc#PM-1598)

- Make this version of the package compatible with OpenSSL 1.1.1d, thus fixing bsc#1149792.

- bsc#1101820 CVE-2018-10903 GCM tag forgery via truncated tag in finalize_with_tag API

- Add proper conditional for the python2, the ifpython works only for the requires/etc

- add missing dependency on python ssl

- update to version 2.1.4: * Added X509_up_ref for an upcoming pyOpenSSL release.

- update to version 2.1.3: * Updated Windows, macOS, and manylinux1 wheels to be compiled with OpenSSL 1.1.0g.

- update to version 2.1.2: * Corrected a bug with the manylinux1 wheels where OpenSSL's stack was marked executable.

- fix BuildRequires conditions for python3

- update to 2.1.1

- Fix cffi version requirement.

- Disable memleak tests to fix build with OpenSSL 1.1 (bsc#1055478)



- update to 2.0.3

- update to 2.0.2

- update to 2.0

- update to 1.9

- add python-packaging to requirements explicitly instead of relying on setuptools to pull it in

- Switch to singlespec approach

- update to 1.8.1 - Adust Requires and BuildRequires
Family:unixClass:patch
Status:Reference(s):1008029
1024532
1024536
1032144
1034539
1050699
1050704
1050708
1050711
1050712
1050714
1055186
1055478
1065600
1065729
1070737
1078497
1078701
1079096
1094244
1099257
1101820
1106531
1111657
1112178
1113094
1113672
1113956
1124211
1124937
1138748
1141493
1143650
1149792
1154366
1156015
1163524
1167527
1168468
1169972
1171675
1171688
1171742
1173115
1173674
1173998
1174354
1174899
1175228
1175528
1175716
1175749
1175882
1176011
1176022
1176038
1176235
1176242
1176278
1176316
1176317
1176318
1176319
1176320
1176321
1176381
1176423
1176482
1176507
1176536
1176544
1176545
1176546
1176548
1176659
1176698
1176699
1176700
1176721
1176722
1176725
1176732
1176788
1176789
1176869
1176877
1176935
1176950
1176962
1176966
1176990
1177030
1177041
1177042
1177043
1177044
1177121
1177158
1177206
1177258
1177291
1177293
1177294
1177295
1177296
981848
986247
CVE-2016-5773
CVE-2016-9137
CVE-2017-12652
CVE-2017-2834
CVE-2017-2835
CVE-2017-2836
CVE-2017-2837
CVE-2017-2838
CVE-2017-2839
CVE-2017-5950
CVE-2018-10903
CVE-2018-12900
CVE-2018-16140
CVE-2018-18557
CVE-2018-18661
CVE-2018-6381
CVE-2018-6484
CVE-2018-6540
CVE-2019-14275
CVE-2019-5068
CVE-2019-6212
CVE-2019-6215
CVE-2019-6216
CVE-2019-6217
CVE-2019-6226
CVE-2019-6227
CVE-2019-6229
CVE-2019-6233
CVE-2019-6234
CVE-2019-7317
CVE-2020-0404
CVE-2020-0427
CVE-2020-0431
CVE-2020-0432
CVE-2020-13753
CVE-2020-14355
CVE-2020-14381
CVE-2020-14390
CVE-2020-15503
CVE-2020-25212
CVE-2020-25284
CVE-2020-25641
CVE-2020-25643
CVE-2020-26088
CVE-2020-9802
CVE-2020-9803
CVE-2020-9805
CVE-2020-9806
CVE-2020-9807
CVE-2020-9843
CVE-2020-9850
SUSE-SU-2016:2975-1
SUSE-SU-2017:2234-1
SUSE-SU-2018:0548-1
SUSE-SU-2018:0631-1
SUSE-SU-2018:3911-2
SUSE-SU-2019:0511-1
SUSE-SU-2020:0146-1
SUSE-SU-2020:1806-1
SUSE-SU-2020:2028-1
SUSE-SU-2020:2069-1
SUSE-SU-2020:2904-1
SUSE-SU-2020:3085-1
Platform(s):openSUSE Leap 42.1
openSUSE Leap 42.2
openSUSE Leap 42.3
SUSE Linux Enterprise Desktop 11 SP2
SUSE Linux Enterprise Desktop 11 SP3
SUSE Linux Enterprise Desktop 11 SP4
SUSE Linux Enterprise Desktop 12
SUSE Linux Enterprise Desktop 12 SP1
SUSE Linux Enterprise Desktop 12 SP2
SUSE Linux Enterprise Desktop 12 SP3
SUSE Linux Enterprise High Availability Extension 11 SP3
SUSE Linux Enterprise High Availability Extension 11 SP4
SUSE Linux Enterprise Module for Basesystem 15
SUSE Linux Enterprise Module for Desktop Applications 15
SUSE Linux Enterprise Module for Development Tools 15
SUSE Linux Enterprise Module for Legacy Software 15
SUSE Linux Enterprise Module for Server Applications 15
SUSE Linux Enterprise Module for Web Scripting 15
SUSE Linux Enterprise Point of Sale 11 SP3
SUSE Linux Enterprise Real Time Extension 11 SP4
SUSE Linux Enterprise Server 11
SUSE Linux Enterprise Server 11 SP1
SUSE Linux Enterprise Server 11 SP1-LTSS
SUSE Linux Enterprise Server 11 SP1-TERADATA
SUSE Linux Enterprise Server 11 SP2
SUSE Linux Enterprise Server 11 SP2-LTSS
SUSE Linux Enterprise Server 11 SP3
SUSE Linux Enterprise Server 11 SP3-CLIENT-TOOLS
SUSE Linux Enterprise Server 11 SP3-LTSS
SUSE Linux Enterprise Server 11 SP3-TERADATA
SUSE Linux Enterprise Server 11 SP4
SUSE Linux Enterprise Server 11-SECURITY
SUSE Linux Enterprise Server 12
SUSE Linux Enterprise Server 12 SP1
SUSE Linux Enterprise Server 12 SP1-LTSS
SUSE Linux Enterprise Server 12 SP2
SUSE Linux Enterprise Server 12 SP2-BCL
SUSE Linux Enterprise Server 12 SP2-ESPOS
SUSE Linux Enterprise Server 12 SP3
SUSE Linux Enterprise Server 12 SP3-TERADATA
SUSE Linux Enterprise Server 12 SP4
SUSE Linux Enterprise Server 12 SP5
SUSE Linux Enterprise Server 12-LTSS
SUSE Linux Enterprise Server for SAP Applications 11
SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA
SUSE Linux Enterprise Server for SAP Applications 11 SP2
SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP3
SUSE Linux Enterprise Server for SAP Applications 11 SP3-CLIENT-TOOLS
SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA
SUSE Linux Enterprise Server for SAP Applications 11 SP4
SUSE Linux Enterprise Server for SAP Applications 12
SUSE Linux Enterprise Server for SAP Applications 12 SP1
SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP2
SUSE Linux Enterprise Server for SAP Applications 12 SP2-BCL
SUSE Linux Enterprise Server for SAP Applications 12 SP2-ESPOS
SUSE Linux Enterprise Server for SAP Applications 12 SP3
SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA
SUSE Linux Enterprise Server for SAP Applications 12 SP4
SUSE Linux Enterprise Server for SAP Applications 12 SP5
SUSE Linux Enterprise Server for SAP Applications 12-LTSS
SUSE Linux Enterprise Server for VMWare 11 SP2
SUSE Linux Enterprise Server for VMWare 11 SP3
SUSE Linux Enterprise Software Development Kit 11 SP2
SUSE Linux Enterprise Software Development Kit 11 SP3
SUSE Linux Enterprise Software Development Kit 11 SP4
SUSE Linux Enterprise Workstation Extension 12 SP1
SUSE Linux Enterprise Workstation Extension 12 SP2
SUSE Linux Enterprise Workstation Extension 12 SP3
SUSE Linux Enterprise Workstation Extension 12 SP4
SUSE Linux Enterprise Workstation Extension 12 SP5
SUSE Linux Enterprise Workstation Extension 15
SUSE OpenStack Cloud 6
SUSE Package Hub for SUSE Linux Enterprise 12
SUSE Package Hub for SUSE Linux Enterprise 12 SP3
Product(s):
Definition Synopsis
  • openSUSE Leap 42.1 is installed
  • AND Package Information
  • chromedriver-53.0.2785.89-96.1 is installed
  • OR chromium-53.0.2785.89-96.1 is installed
  • OR chromium-desktop-gnome-53.0.2785.89-96.1 is installed
  • OR chromium-desktop-kde-53.0.2785.89-96.1 is installed
  • OR chromium-ffmpegsumo-53.0.2785.89-96.1 is installed
  • Definition Synopsis
  • openSUSE Leap 42.2 is installed
  • AND Package Information
  • dbus-1-1.8.22-1.1 is installed
  • OR dbus-1-devel-1.8.22-1.1 is installed
  • OR dbus-1-x11-1.8.22-1.1 is installed
  • OR libdbus-1-3-1.8.22-1.1 is installed
  • OR libdbus-1-3-32bit-1.8.22-1.1 is installed
  • Definition Synopsis
  • openSUSE Leap 42.3 is installed
  • AND Package Information
  • NetworkManager-1.0.12-6.5 is installed
  • OR NetworkManager-devel-1.0.12-6.5 is installed
  • OR NetworkManager-lang-1.0.12-6.5 is installed
  • OR libnm-glib-vpn1-1.0.12-6.5 is installed
  • OR libnm-glib4-1.0.12-6.5 is installed
  • OR libnm-util2-1.0.12-6.5 is installed
  • OR libnm0-1.0.12-6.5 is installed
  • OR typelib-1_0-NM-1_0-1.0.12-6.5 is installed
  • OR typelib-1_0-NMClient-1_0-1.0.12-6.5 is installed
  • OR typelib-1_0-NetworkManager-1_0-1.0.12-6.5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP2 is installed
  • AND Package Information
  • krb5-1.6.3-133.49.58 is installed
  • OR krb5-32bit-1.6.3-133.49.58 is installed
  • OR krb5-client-1.6.3-133.49.58 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP3 is installed
  • AND Package Information
  • MozillaFirefox-17.0.10esr-0.7 is installed
  • OR MozillaFirefox-branding-SLED-7-0.12 is installed
  • OR MozillaFirefox-translations-17.0.10esr-0.7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP4 is installed
  • AND Package Information
  • MozillaFirefox-31.8.0esr-0.13 is installed
  • OR MozillaFirefox-translations-31.8.0esr-0.13 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 is installed
  • AND argyllcms-1.6.3-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP1 is installed
  • AND Package Information
  • dbus-1-glib-0.100.2-3 is installed
  • OR dbus-1-glib-32bit-0.100.2-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP2 is installed
  • AND Package Information
  • eog-3.20.4-7 is installed
  • OR eog-lang-3.20.4-7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP3 is installed
  • AND Package Information
  • cron-4.2-58 is installed
  • OR cronie-1.4.11-58 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise High Availability Extension 11 SP3 is installed
  • AND rubygem-bundler-1.7.0-0.7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise High Availability Extension 11 SP4 is installed
  • AND Package Information
  • ocfs2-1.6-0.28.7 is installed
  • OR ocfs2-kmp-bigmem-1.6_3.0.101_108.87-0.28.7 is installed
  • OR ocfs2-kmp-default-1.6_3.0.101_108.87-0.28.7 is installed
  • OR ocfs2-kmp-pae-1.6_3.0.101_108.87-0.28.7 is installed
  • OR ocfs2-kmp-ppc64-1.6_3.0.101_108.87-0.28.7 is installed
  • OR ocfs2-kmp-trace-1.6_3.0.101_108.87-0.28.7 is installed
  • OR ocfs2-kmp-xen-1.6_3.0.101_108.87-0.28.7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Basesystem 15 is installed
  • AND Package Information
  • qemu-2.11.2-9.9 is installed
  • OR qemu-tools-2.11.2-9.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Desktop Applications 15 is installed
  • AND Package Information
  • cups-2.2.7-3.3 is installed
  • OR libcups2-32bit-2.2.7-3.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Development Tools 15 is installed
  • AND Package Information
  • rpm-4.14.1-10.3 is installed
  • OR rpm-build-4.14.1-10.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Legacy Software 15 is installed
  • AND Package Information
  • java-1_8_0-openjdk-1.8.0.181-3.10 is installed
  • OR java-1_8_0-openjdk-demo-1.8.0.181-3.10 is installed
  • OR java-1_8_0-openjdk-devel-1.8.0.181-3.10 is installed
  • OR java-1_8_0-openjdk-headless-1.8.0.181-3.10 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Server Applications 15 is installed
  • AND Package Information
  • gnuplot-5.2.2-1 is installed
  • OR gnuplot-doc-5.2.2-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Web Scripting 15 is installed
  • AND Package Information
  • apache2-mod_php7-7.2.5-4.12 is installed
  • OR php7-7.2.5-4.12 is installed
  • OR php7-bcmath-7.2.5-4.12 is installed
  • OR php7-bz2-7.2.5-4.12 is installed
  • OR php7-calendar-7.2.5-4.12 is installed
  • OR php7-ctype-7.2.5-4.12 is installed
  • OR php7-curl-7.2.5-4.12 is installed
  • OR php7-dba-7.2.5-4.12 is installed
  • OR php7-devel-7.2.5-4.12 is installed
  • OR php7-dom-7.2.5-4.12 is installed
  • OR php7-enchant-7.2.5-4.12 is installed
  • OR php7-exif-7.2.5-4.12 is installed
  • OR php7-fastcgi-7.2.5-4.12 is installed
  • OR php7-fileinfo-7.2.5-4.12 is installed
  • OR php7-fpm-7.2.5-4.12 is installed
  • OR php7-ftp-7.2.5-4.12 is installed
  • OR php7-gd-7.2.5-4.12 is installed
  • OR php7-gettext-7.2.5-4.12 is installed
  • OR php7-gmp-7.2.5-4.12 is installed
  • OR php7-iconv-7.2.5-4.12 is installed
  • OR php7-intl-7.2.5-4.12 is installed
  • OR php7-json-7.2.5-4.12 is installed
  • OR php7-ldap-7.2.5-4.12 is installed
  • OR php7-mbstring-7.2.5-4.12 is installed
  • OR php7-mysql-7.2.5-4.12 is installed
  • OR php7-odbc-7.2.5-4.12 is installed
  • OR php7-opcache-7.2.5-4.12 is installed
  • OR php7-openssl-7.2.5-4.12 is installed
  • OR php7-pcntl-7.2.5-4.12 is installed
  • OR php7-pdo-7.2.5-4.12 is installed
  • OR php7-pear-7.2.5-4.12 is installed
  • OR php7-pear-Archive_Tar-7.2.5-4.12 is installed
  • OR php7-pgsql-7.2.5-4.12 is installed
  • OR php7-phar-7.2.5-4.12 is installed
  • OR php7-posix-7.2.5-4.12 is installed
  • OR php7-shmop-7.2.5-4.12 is installed
  • OR php7-snmp-7.2.5-4.12 is installed
  • OR php7-soap-7.2.5-4.12 is installed
  • OR php7-sockets-7.2.5-4.12 is installed
  • OR php7-sqlite-7.2.5-4.12 is installed
  • OR php7-sysvmsg-7.2.5-4.12 is installed
  • OR php7-sysvsem-7.2.5-4.12 is installed
  • OR php7-sysvshm-7.2.5-4.12 is installed
  • OR php7-tokenizer-7.2.5-4.12 is installed
  • OR php7-wddx-7.2.5-4.12 is installed
  • OR php7-xmlreader-7.2.5-4.12 is installed
  • OR php7-xmlrpc-7.2.5-4.12 is installed
  • OR php7-xmlwriter-7.2.5-4.12 is installed
  • OR php7-xsl-7.2.5-4.12 is installed
  • OR php7-zip-7.2.5-4.12 is installed
  • OR php7-zlib-7.2.5-4.12 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Point of Sale 11 SP3 is installed
  • AND Package Information
  • curl-7.37.0-70.41 is installed
  • OR libcurl-devel-7.37.0-70.41 is installed
  • OR libcurl4-7.37.0-70.41 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Real Time Extension 11 SP4 is installed
  • AND Package Information
  • kernel-rt-3.0.101.rt130-45 is installed
  • OR kernel-rt-base-3.0.101.rt130-45 is installed
  • OR kernel-rt-devel-3.0.101.rt130-45 is installed
  • OR kernel-rt_trace-3.0.101.rt130-45 is installed
  • OR kernel-rt_trace-base-3.0.101.rt130-45 is installed
  • OR kernel-rt_trace-devel-3.0.101.rt130-45 is installed
  • OR kernel-source-rt-3.0.101.rt130-45 is installed
  • OR kernel-syms-rt-3.0.101.rt130-45 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 is installed
  • AND
  • cdparanoia-IIIalpha9.8-691 is installed
  • OR cdparanoia-32bit-IIIalpha9.8-691 is installed
  • OR cdparanoia-x86-IIIalpha9.8-691 is installed
  • OR desktop-file-utils-0.15-1 is installed
  • OR fam-2.7.0-130 is installed
  • OR fam-32bit-2.7.0-130 is installed
  • OR fam-x86-2.7.0-130 is installed
  • OR gnome-vfs2-2.24.0-7 is installed
  • OR gnome-vfs2-32bit-2.24.0-7 is installed
  • OR gnome-vfs2-x86-2.24.0-7 is installed
  • OR gstreamer-0_10-0.10.21-3 is installed
  • OR libogg0-1.1.3-87 is installed
  • OR libogg0-32bit-1.1.3-87 is installed
  • OR libogg0-x86-1.1.3-87 is installed
  • OR liboil-0.3.15-3 is installed
  • OR liboil-32bit-0.3.15-3 is installed
  • OR liboil-x86-0.3.15-3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 is installed
  • AND
  • cdparanoia-IIIalpha9.8-691 is installed
  • OR cdparanoia-32bit-IIIalpha9.8-691 is installed
  • OR cdparanoia-x86-IIIalpha9.8-691 is installed
  • OR desktop-file-utils-0.15-1 is installed
  • OR fam-2.7.0-130 is installed
  • OR fam-32bit-2.7.0-130 is installed
  • OR fam-x86-2.7.0-130 is installed
  • OR gnome-vfs2-2.24.0-7 is installed
  • OR gnome-vfs2-32bit-2.24.0-7 is installed
  • OR gnome-vfs2-x86-2.24.0-7 is installed
  • OR gstreamer-0_10-0.10.21-3 is installed
  • OR libogg0-1.1.3-87 is installed
  • OR libogg0-32bit-1.1.3-87 is installed
  • OR libogg0-x86-1.1.3-87 is installed
  • OR liboil-0.3.15-3 is installed
  • OR liboil-32bit-0.3.15-3 is installed
  • OR liboil-x86-0.3.15-3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • gnutls-2.4.1-24.39.39 is installed
  • OR libgnutls-extra26-2.4.1-24.39.39 is installed
  • OR libgnutls26-2.4.1-24.39.39 is installed
  • OR libgnutls26-32bit-2.4.1-24.39.39 is installed
  • OR libgnutls26-x86-2.4.1-24.39.39 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • gnutls-2.4.1-24.39.39 is installed
  • OR libgnutls-extra26-2.4.1-24.39.39 is installed
  • OR libgnutls26-2.4.1-24.39.39 is installed
  • OR libgnutls26-32bit-2.4.1-24.39.39 is installed
  • OR libgnutls26-x86-2.4.1-24.39.39 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • gnutls-2.4.1-24.39.39 is installed
  • OR libgnutls-extra26-2.4.1-24.39.39 is installed
  • OR libgnutls26-2.4.1-24.39.39 is installed
  • OR libgnutls26-32bit-2.4.1-24.39.39 is installed
  • OR libgnutls26-x86-2.4.1-24.39.39 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • gnutls-2.4.1-24.39.39 is installed
  • OR libgnutls-extra26-2.4.1-24.39.39 is installed
  • OR libgnutls26-2.4.1-24.39.39 is installed
  • OR libgnutls26-32bit-2.4.1-24.39.39 is installed
  • OR libgnutls26-x86-2.4.1-24.39.39 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • gnutls-2.4.1-24.39.39 is installed
  • OR libgnutls-extra26-2.4.1-24.39.39 is installed
  • OR libgnutls26-2.4.1-24.39.39 is installed
  • OR libgnutls26-32bit-2.4.1-24.39.39 is installed
  • OR libgnutls26-x86-2.4.1-24.39.39 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • gnutls-2.4.1-24.39.39 is installed
  • OR libgnutls-extra26-2.4.1-24.39.39 is installed
  • OR libgnutls26-2.4.1-24.39.39 is installed
  • OR libgnutls26-32bit-2.4.1-24.39.39 is installed
  • OR libgnutls26-x86-2.4.1-24.39.39 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • glibc-2.11.1-0.34 is installed
  • OR glibc-32bit-2.11.1-0.34 is installed
  • OR glibc-devel-2.11.1-0.34 is installed
  • OR glibc-devel-32bit-2.11.1-0.34 is installed
  • OR glibc-html-2.11.1-0.34 is installed
  • OR glibc-i18ndata-2.11.1-0.34 is installed
  • OR glibc-info-2.11.1-0.34 is installed
  • OR glibc-locale-2.11.1-0.34 is installed
  • OR glibc-locale-32bit-2.11.1-0.34 is installed
  • OR glibc-locale-x86-2.11.1-0.34 is installed
  • OR glibc-profile-2.11.1-0.34 is installed
  • OR glibc-profile-32bit-2.11.1-0.34 is installed
  • OR glibc-profile-x86-2.11.1-0.34 is installed
  • OR glibc-x86-2.11.1-0.34 is installed
  • OR libxcrypt-3.0.3-0.4 is installed
  • OR libxcrypt-32bit-3.0.3-0.4 is installed
  • OR nscd-2.11.1-0.34 is installed
  • OR pam-modules-11-1.18 is installed
  • OR pam-modules-32bit-11-1.18 is installed
  • OR pwdutils-3.2.8-0.4 is installed
  • OR pwdutils-plugin-audit-3.2.8-0.4 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • jpeg-6b-879.12 is installed
  • OR libjpeg-6.2.0-879.12 is installed
  • OR libjpeg-32bit-6.2.0-879.12 is installed
  • OR libjpeg-x86-6.2.0-879.12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • jpeg-6b-879.12 is installed
  • OR libjpeg-6.2.0-879.12 is installed
  • OR libjpeg-32bit-6.2.0-879.12 is installed
  • OR libjpeg-x86-6.2.0-879.12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • jpeg-6b-879.12 is installed
  • OR libjpeg-6.2.0-879.12 is installed
  • OR libjpeg-32bit-6.2.0-879.12 is installed
  • OR libjpeg-x86-6.2.0-879.12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • jpeg-6b-879.12 is installed
  • OR libjpeg-6.2.0-879.12 is installed
  • OR libjpeg-32bit-6.2.0-879.12 is installed
  • OR libjpeg-x86-6.2.0-879.12 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • ConsoleKit-0.2.10-64.65 is installed
  • OR ConsoleKit-32bit-0.2.10-64.65 is installed
  • OR ConsoleKit-x11-0.2.10-64.65 is installed
  • OR ConsoleKit-x86-0.2.10-64.65 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • ConsoleKit-0.2.10-64.65 is installed
  • OR ConsoleKit-32bit-0.2.10-64.65 is installed
  • OR ConsoleKit-x11-0.2.10-64.65 is installed
  • OR ConsoleKit-x86-0.2.10-64.65 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • ConsoleKit-0.2.10-64.65 is installed
  • OR ConsoleKit-32bit-0.2.10-64.65 is installed
  • OR ConsoleKit-x11-0.2.10-64.65 is installed
  • OR ConsoleKit-x86-0.2.10-64.65 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND Package Information
  • bzip2-1.0.5-34 is installed
  • OR bzip2-doc-1.0.5-34 is installed
  • OR libbz2-1-1.0.5-34 is installed
  • OR libbz2-1-32bit-1.0.5-34 is installed
  • OR libbz2-1-x86-1.0.5-34 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.48 is installed
  • OR libMagickCore1-6.4.3.6-7.48 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.48 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.48 is installed
  • OR libMagickCore1-6.4.3.6-7.48 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.48 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • apache2-mod_php5-5.2.14-0.7.30.50 is installed
  • OR php5-5.2.14-0.7.30.50 is installed
  • OR php5-bcmath-5.2.14-0.7.30.50 is installed
  • OR php5-bz2-5.2.14-0.7.30.50 is installed
  • OR php5-calendar-5.2.14-0.7.30.50 is installed
  • OR php5-ctype-5.2.14-0.7.30.50 is installed
  • OR php5-curl-5.2.14-0.7.30.50 is installed
  • OR php5-dba-5.2.14-0.7.30.50 is installed
  • OR php5-dbase-5.2.14-0.7.30.50 is installed
  • OR php5-dom-5.2.14-0.7.30.50 is installed
  • OR php5-exif-5.2.14-0.7.30.50 is installed
  • OR php5-fastcgi-5.2.14-0.7.30.50 is installed
  • OR php5-ftp-5.2.14-0.7.30.50 is installed
  • OR php5-gd-5.2.14-0.7.30.50 is installed
  • OR php5-gettext-5.2.14-0.7.30.50 is installed
  • OR php5-gmp-5.2.14-0.7.30.50 is installed
  • OR php5-hash-5.2.14-0.7.30.50 is installed
  • OR php5-iconv-5.2.14-0.7.30.50 is installed
  • OR php5-json-5.2.14-0.7.30.50 is installed
  • OR php5-ldap-5.2.14-0.7.30.50 is installed
  • OR php5-mbstring-5.2.14-0.7.30.50 is installed
  • OR php5-mcrypt-5.2.14-0.7.30.50 is installed
  • OR php5-mysql-5.2.14-0.7.30.50 is installed
  • OR php5-odbc-5.2.14-0.7.30.50 is installed
  • OR php5-openssl-5.2.14-0.7.30.50 is installed
  • OR php5-pcntl-5.2.14-0.7.30.50 is installed
  • OR php5-pdo-5.2.14-0.7.30.50 is installed
  • OR php5-pear-5.2.14-0.7.30.50 is installed
  • OR php5-pgsql-5.2.14-0.7.30.50 is installed
  • OR php5-pspell-5.2.14-0.7.30.50 is installed
  • OR php5-shmop-5.2.14-0.7.30.50 is installed
  • OR php5-snmp-5.2.14-0.7.30.50 is installed
  • OR php5-soap-5.2.14-0.7.30.50 is installed
  • OR php5-suhosin-5.2.14-0.7.30.50 is installed
  • OR php5-sysvmsg-5.2.14-0.7.30.50 is installed
  • OR php5-sysvsem-5.2.14-0.7.30.50 is installed
  • OR php5-sysvshm-5.2.14-0.7.30.50 is installed
  • OR php5-tokenizer-5.2.14-0.7.30.50 is installed
  • OR php5-wddx-5.2.14-0.7.30.50 is installed
  • OR php5-xmlreader-5.2.14-0.7.30.50 is installed
  • OR php5-xmlrpc-5.2.14-0.7.30.50 is installed
  • OR php5-xmlwriter-5.2.14-0.7.30.50 is installed
  • OR php5-xsl-5.2.14-0.7.30.50 is installed
  • OR php5-zip-5.2.14-0.7.30.50 is installed
  • OR php5-zlib-5.2.14-0.7.30.50 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • libxml2-2.7.6-0.25 is installed
  • OR libxml2-32bit-2.7.6-0.25 is installed
  • OR libxml2-doc-2.7.6-0.25 is installed
  • OR libxml2-python-2.7.6-0.25 is installed
  • OR libxml2-x86-2.7.6-0.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • libxml2-2.7.6-0.25 is installed
  • OR libxml2-32bit-2.7.6-0.25 is installed
  • OR libxml2-doc-2.7.6-0.25 is installed
  • OR libxml2-python-2.7.6-0.25 is installed
  • OR libxml2-x86-2.7.6-0.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • libxml2-2.7.6-0.25 is installed
  • OR libxml2-32bit-2.7.6-0.25 is installed
  • OR libxml2-doc-2.7.6-0.25 is installed
  • OR libxml2-python-2.7.6-0.25 is installed
  • OR libxml2-x86-2.7.6-0.25 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • libvirt-0.9.6-0.23 is installed
  • OR libvirt-client-0.9.6-0.23 is installed
  • OR libvirt-client-32bit-0.9.6-0.23 is installed
  • OR libvirt-doc-0.9.6-0.23 is installed
  • OR libvirt-python-0.9.6-0.23 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • libvirt-0.9.6-0.23 is installed
  • OR libvirt-client-0.9.6-0.23 is installed
  • OR libvirt-client-32bit-0.9.6-0.23 is installed
  • OR libvirt-doc-0.9.6-0.23 is installed
  • OR libvirt-python-0.9.6-0.23 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND LibVNCServer-0.9.1-154 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND apache2-mod_nss-1.0.14-0.4.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND apache2-mod_nss-1.0.14-0.4.25 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • MozillaFirefox-24.8.0esr-0.8 is installed
  • OR MozillaFirefox-translations-24.8.0esr-0.8 is installed
  • OR libfreebl3-3.16.4-0.8 is installed
  • OR libfreebl3-32bit-3.16.4-0.8 is installed
  • OR libfreebl3-x86-3.16.4-0.8 is installed
  • OR libsoftokn3-3.16.4-0.8 is installed
  • OR libsoftokn3-32bit-3.16.4-0.8 is installed
  • OR libsoftokn3-x86-3.16.4-0.8 is installed
  • OR mozilla-nspr-4.10.7-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.7-0.3 is installed
  • OR mozilla-nspr-x86-4.10.7-0.3 is installed
  • OR mozilla-nss-3.16.4-0.8 is installed
  • OR mozilla-nss-32bit-3.16.4-0.8 is installed
  • OR mozilla-nss-tools-3.16.4-0.8 is installed
  • OR mozilla-nss-x86-3.16.4-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-24.8.0esr-0.8 is installed
  • OR MozillaFirefox-translations-24.8.0esr-0.8 is installed
  • OR libfreebl3-3.16.4-0.8 is installed
  • OR libfreebl3-32bit-3.16.4-0.8 is installed
  • OR libfreebl3-x86-3.16.4-0.8 is installed
  • OR libsoftokn3-3.16.4-0.8 is installed
  • OR libsoftokn3-32bit-3.16.4-0.8 is installed
  • OR libsoftokn3-x86-3.16.4-0.8 is installed
  • OR mozilla-nspr-4.10.7-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.7-0.3 is installed
  • OR mozilla-nspr-x86-4.10.7-0.3 is installed
  • OR mozilla-nss-3.16.4-0.8 is installed
  • OR mozilla-nss-32bit-3.16.4-0.8 is installed
  • OR mozilla-nss-tools-3.16.4-0.8 is installed
  • OR mozilla-nss-x86-3.16.4-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND
  • MozillaFirefox-24.8.0esr-0.8 is installed
  • OR MozillaFirefox-translations-24.8.0esr-0.8 is installed
  • OR libfreebl3-3.16.4-0.8 is installed
  • OR libfreebl3-32bit-3.16.4-0.8 is installed
  • OR libfreebl3-x86-3.16.4-0.8 is installed
  • OR libsoftokn3-3.16.4-0.8 is installed
  • OR libsoftokn3-32bit-3.16.4-0.8 is installed
  • OR libsoftokn3-x86-3.16.4-0.8 is installed
  • OR mozilla-nspr-4.10.7-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.7-0.3 is installed
  • OR mozilla-nspr-x86-4.10.7-0.3 is installed
  • OR mozilla-nss-3.16.4-0.8 is installed
  • OR mozilla-nss-32bit-3.16.4-0.8 is installed
  • OR mozilla-nss-tools-3.16.4-0.8 is installed
  • OR mozilla-nss-x86-3.16.4-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-24.8.0esr-0.8 is installed
  • OR MozillaFirefox-translations-24.8.0esr-0.8 is installed
  • OR libfreebl3-3.16.4-0.8 is installed
  • OR libfreebl3-32bit-3.16.4-0.8 is installed
  • OR libfreebl3-x86-3.16.4-0.8 is installed
  • OR libsoftokn3-3.16.4-0.8 is installed
  • OR libsoftokn3-32bit-3.16.4-0.8 is installed
  • OR libsoftokn3-x86-3.16.4-0.8 is installed
  • OR mozilla-nspr-4.10.7-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.7-0.3 is installed
  • OR mozilla-nspr-x86-4.10.7-0.3 is installed
  • OR mozilla-nss-3.16.4-0.8 is installed
  • OR mozilla-nss-32bit-3.16.4-0.8 is installed
  • OR mozilla-nss-tools-3.16.4-0.8 is installed
  • OR mozilla-nss-x86-3.16.4-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP3 is installed
  • AND
  • MozillaFirefox-24.8.0esr-0.8 is installed
  • OR MozillaFirefox-translations-24.8.0esr-0.8 is installed
  • OR libfreebl3-3.16.4-0.8 is installed
  • OR libfreebl3-32bit-3.16.4-0.8 is installed
  • OR libfreebl3-x86-3.16.4-0.8 is installed
  • OR libsoftokn3-3.16.4-0.8 is installed
  • OR libsoftokn3-32bit-3.16.4-0.8 is installed
  • OR libsoftokn3-x86-3.16.4-0.8 is installed
  • OR mozilla-nspr-4.10.7-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.7-0.3 is installed
  • OR mozilla-nspr-x86-4.10.7-0.3 is installed
  • OR mozilla-nss-3.16.4-0.8 is installed
  • OR mozilla-nss-32bit-3.16.4-0.8 is installed
  • OR mozilla-nss-tools-3.16.4-0.8 is installed
  • OR mozilla-nss-x86-3.16.4-0.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • xen-4.2.5_04-0.9 is installed
  • OR xen-doc-html-4.2.5_04-0.9 is installed
  • OR xen-doc-pdf-4.2.5_04-0.9 is installed
  • OR xen-kmp-default-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-kmp-pae-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-libs-4.2.5_04-0.9 is installed
  • OR xen-libs-32bit-4.2.5_04-0.9 is installed
  • OR xen-tools-4.2.5_04-0.9 is installed
  • OR xen-tools-domU-4.2.5_04-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • xen-4.2.5_04-0.9 is installed
  • OR xen-doc-html-4.2.5_04-0.9 is installed
  • OR xen-doc-pdf-4.2.5_04-0.9 is installed
  • OR xen-kmp-default-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-kmp-pae-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-libs-4.2.5_04-0.9 is installed
  • OR xen-libs-32bit-4.2.5_04-0.9 is installed
  • OR xen-tools-4.2.5_04-0.9 is installed
  • OR xen-tools-domU-4.2.5_04-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND
  • xen-4.2.5_04-0.9 is installed
  • OR xen-doc-html-4.2.5_04-0.9 is installed
  • OR xen-doc-pdf-4.2.5_04-0.9 is installed
  • OR xen-kmp-default-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-kmp-pae-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-libs-4.2.5_04-0.9 is installed
  • OR xen-libs-32bit-4.2.5_04-0.9 is installed
  • OR xen-tools-4.2.5_04-0.9 is installed
  • OR xen-tools-domU-4.2.5_04-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • xen-4.2.5_04-0.9 is installed
  • OR xen-doc-html-4.2.5_04-0.9 is installed
  • OR xen-doc-pdf-4.2.5_04-0.9 is installed
  • OR xen-kmp-default-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-kmp-pae-4.2.5_04_3.0.101_0.47.52-0.9 is installed
  • OR xen-libs-4.2.5_04-0.9 is installed
  • OR xen-libs-32bit-4.2.5_04-0.9 is installed
  • OR xen-tools-4.2.5_04-0.9 is installed
  • OR xen-tools-domU-4.2.5_04-0.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND Package Information
  • gstreamer-0_10-plugins-base-0.10.35-5.15 is installed
  • OR gstreamer-0_10-plugins-base-32bit-0.10.35-5.15 is installed
  • OR gstreamer-0_10-plugins-base-doc-0.10.35-5.15 is installed
  • OR gstreamer-0_10-plugins-base-lang-0.10.35-5.15 is installed
  • OR gstreamer-0_10-plugins-base-x86-0.10.35-5.15 is installed
  • OR libgstapp-0_10-0-0.10.35-5.15 is installed
  • OR libgstapp-0_10-0-32bit-0.10.35-5.15 is installed
  • OR libgstapp-0_10-0-x86-0.10.35-5.15 is installed
  • OR libgstinterfaces-0_10-0-0.10.35-5.15 is installed
  • OR libgstinterfaces-0_10-0-32bit-0.10.35-5.15 is installed
  • OR libgstinterfaces-0_10-0-x86-0.10.35-5.15 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-CLIENT-TOOLS is installed
  • AND python-pycrypto-2.6.1-5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-CLIENT-TOOLS is installed
  • AND python-pycrypto-2.6.1-5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND
  • ImageMagick-6.4.3.6-7.34 is installed
  • OR libMagickCore1-6.4.3.6-7.34 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.34 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.34 is installed
  • OR libMagickCore1-6.4.3.6-7.34 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.34 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS is installed
  • AND
  • ImageMagick-6.4.3.6-7.34 is installed
  • OR libMagickCore1-6.4.3.6-7.34 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.34 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.34 is installed
  • OR libMagickCore1-6.4.3.6-7.34 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.34 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.78.14 is installed
  • OR libMagickCore1-6.4.3.6-7.78.14 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.78.14 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.78.14 is installed
  • OR libMagickCore1-6.4.3.6-7.78.14 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.78.14 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP4 is installed
  • AND
  • ImageMagick-6.4.3.6-7.78.29 is installed
  • OR libMagickCore1-6.4.3.6-7.78.29 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.78.29 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4 is installed
  • AND
  • ImageMagick-6.4.3.6-7.78.29 is installed
  • OR libMagickCore1-6.4.3.6-7.78.29 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.78.29 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP4 is installed
  • AND coolkey-1.1.0-22 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11-SECURITY is installed
  • AND sblim-sfcb-openssl1-1.3.11-0.28 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 is installed
  • AND
  • grub2-2.02~beta2-56.9 is installed
  • OR grub2-i386-pc-2.02~beta2-56.9 is installed
  • OR grub2-powerpc-ieee1275-2.02~beta2-56.9 is installed
  • OR grub2-s390x-emu-2.02~beta2-56.9 is installed
  • OR grub2-snapper-plugin-2.02~beta2-56.9 is installed
  • OR grub2-x86_64-efi-2.02~beta2-56.9 is installed
  • OR grub2-x86_64-xen-2.02~beta2-56.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND
  • grub2-2.02~beta2-56.9 is installed
  • OR grub2-i386-pc-2.02~beta2-56.9 is installed
  • OR grub2-powerpc-ieee1275-2.02~beta2-56.9 is installed
  • OR grub2-s390x-emu-2.02~beta2-56.9 is installed
  • OR grub2-snapper-plugin-2.02~beta2-56.9 is installed
  • OR grub2-x86_64-efi-2.02~beta2-56.9 is installed
  • OR grub2-x86_64-xen-2.02~beta2-56.9 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND
  • xen-4.5.2_02-4 is installed
  • OR xen-doc-html-4.5.2_02-4 is installed
  • OR xen-kmp-default-4.5.2_02_k3.12.49_11-4 is installed
  • OR xen-libs-4.5.2_02-4 is installed
  • OR xen-libs-32bit-4.5.2_02-4 is installed
  • OR xen-tools-4.5.2_02-4 is installed
  • OR xen-tools-domU-4.5.2_02-4 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND
  • xen-4.5.2_02-4 is installed
  • OR xen-doc-html-4.5.2_02-4 is installed
  • OR xen-kmp-default-4.5.2_02_k3.12.49_11-4 is installed
  • OR xen-libs-4.5.2_02-4 is installed
  • OR xen-libs-32bit-4.5.2_02-4 is installed
  • OR xen-tools-4.5.2_02-4 is installed
  • OR xen-tools-domU-4.5.2_02-4 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND Package Information
  • cvs-1.12.12-181 is installed
  • OR cvs-doc-1.12.12-181 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND unrar-5.0.14-3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS is installed
  • AND unrar-5.0.14-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND Package Information
  • java-1_8_0-openjdk-1.8.0.151-27.8.1 is installed
  • OR java-1_8_0-openjdk-demo-1.8.0.151-27.8.1 is installed
  • OR java-1_8_0-openjdk-devel-1.8.0.151-27.8.1 is installed
  • OR java-1_8_0-openjdk-headless-1.8.0.151-27.8.1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND
  • libtiff5-4.0.7-35 is installed
  • OR libtiff5-32bit-4.0.7-35 is installed
  • OR tiff-4.0.7-35 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND
  • libtiff5-4.0.7-35 is installed
  • OR libtiff5-32bit-4.0.7-35 is installed
  • OR tiff-4.0.7-35 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND gzip-1.6-7 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-BCL is installed
  • AND
  • libjavascriptcoregtk-4_0-18-2.24.4-2.47 is installed
  • OR libwebkit2gtk-4_0-37-2.24.4-2.47 is installed
  • OR libwebkit2gtk3-lang-2.24.4-2.47 is installed
  • OR typelib-1_0-JavaScriptCore-4_0-2.24.4-2.47 is installed
  • OR typelib-1_0-WebKit2-4_0-2.24.4-2.47 is installed
  • OR typelib-1_0-WebKit2WebExtension-4_0-2.24.4-2.47 is installed
  • OR webkit2gtk-4_0-injected-bundles-2.24.4-2.47 is installed
  • OR webkit2gtk3-2.24.4-2.47 is installed
  • OR webkit2gtk3-devel-2.24.4-2.47 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-BCL is installed
  • AND
  • libjavascriptcoregtk-4_0-18-2.24.4-2.47 is installed
  • OR libwebkit2gtk-4_0-37-2.24.4-2.47 is installed
  • OR libwebkit2gtk3-lang-2.24.4-2.47 is installed
  • OR typelib-1_0-JavaScriptCore-4_0-2.24.4-2.47 is installed
  • OR typelib-1_0-WebKit2-4_0-2.24.4-2.47 is installed
  • OR typelib-1_0-WebKit2WebExtension-4_0-2.24.4-2.47 is installed
  • OR webkit2gtk-4_0-injected-bundles-2.24.4-2.47 is installed
  • OR webkit2gtk3-2.24.4-2.47 is installed
  • OR webkit2gtk3-devel-2.24.4-2.47 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-ESPOS is installed
  • AND
  • xen-4.7.6_05-43.42 is installed
  • OR xen-doc-html-4.7.6_05-43.42 is installed
  • OR xen-libs-4.7.6_05-43.42 is installed
  • OR xen-libs-32bit-4.7.6_05-43.42 is installed
  • OR xen-tools-4.7.6_05-43.42 is installed
  • OR xen-tools-domU-4.7.6_05-43.42 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-ESPOS is installed
  • AND
  • xen-4.7.6_05-43.42 is installed
  • OR xen-doc-html-4.7.6_05-43.42 is installed
  • OR xen-libs-4.7.6_05-43.42 is installed
  • OR xen-libs-32bit-4.7.6_05-43.42 is installed
  • OR xen-tools-4.7.6_05-43.42 is installed
  • OR xen-tools-domU-4.7.6_05-43.42 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND openvswitch-2.7.0-3.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3 is installed
  • AND openvswitch-2.7.0-3.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND Package Information
  • apache-commons-daemon-1.0.15-6 is installed
  • OR apache-commons-daemon-javadoc-1.0.15-6 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND
  • python-cffi-1.11.2-5.11 is installed
  • OR python-cryptography-2.1.4-7.28 is installed
  • OR python-xattr-0.7.5-6.3 is installed
  • OR python3-cffi-1.11.2-5.11 is installed
  • OR python3-cryptography-2.1.4-7.28 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA is installed
  • AND
  • python-cffi-1.11.2-5.11 is installed
  • OR python-cryptography-2.1.4-7.28 is installed
  • OR python-xattr-0.7.5-6.3 is installed
  • OR python3-cffi-1.11.2-5.11 is installed
  • OR python3-cryptography-2.1.4-7.28 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND
  • libtiff5-4.0.9-44.27 is installed
  • OR libtiff5-32bit-4.0.9-44.27 is installed
  • OR tiff-4.0.9-44.27 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4 is installed
  • AND
  • libtiff5-4.0.9-44.27 is installed
  • OR libtiff5-32bit-4.0.9-44.27 is installed
  • OR tiff-4.0.9-44.27 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP5 is installed
  • AND
  • Mesa-18.3.2-14.3 is installed
  • OR Mesa-32bit-18.3.2-14.3 is installed
  • OR Mesa-dri-18.3.2-14.3 is installed
  • OR Mesa-dri-32bit-18.3.2-14.3 is installed
  • OR Mesa-drivers-18.3.2-14.3 is installed
  • OR Mesa-libEGL1-18.3.2-14.3 is installed
  • OR Mesa-libEGL1-32bit-18.3.2-14.3 is installed
  • OR Mesa-libGL1-18.3.2-14.3 is installed
  • OR Mesa-libGL1-32bit-18.3.2-14.3 is installed
  • OR Mesa-libGLESv2-2-18.3.2-14.3 is installed
  • OR Mesa-libglapi0-18.3.2-14.3 is installed
  • OR Mesa-libglapi0-32bit-18.3.2-14.3 is installed
  • OR libgbm1-18.3.2-14.3 is installed
  • OR libgbm1-32bit-18.3.2-14.3 is installed
  • OR libxatracker2-1.0.0-14.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP5 is installed
  • AND
  • Mesa-18.3.2-14.3 is installed
  • OR Mesa-32bit-18.3.2-14.3 is installed
  • OR Mesa-dri-18.3.2-14.3 is installed
  • OR Mesa-dri-32bit-18.3.2-14.3 is installed
  • OR Mesa-drivers-18.3.2-14.3 is installed
  • OR Mesa-libEGL1-18.3.2-14.3 is installed
  • OR Mesa-libEGL1-32bit-18.3.2-14.3 is installed
  • OR Mesa-libGL1-18.3.2-14.3 is installed
  • OR Mesa-libGL1-32bit-18.3.2-14.3 is installed
  • OR Mesa-libGLESv2-2-18.3.2-14.3 is installed
  • OR Mesa-libglapi0-18.3.2-14.3 is installed
  • OR Mesa-libglapi0-32bit-18.3.2-14.3 is installed
  • OR libgbm1-18.3.2-14.3 is installed
  • OR libgbm1-32bit-18.3.2-14.3 is installed
  • OR libxatracker2-1.0.0-14.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12-LTSS is installed
  • AND
  • MozillaFirefox-45.3.0esr-78 is installed
  • OR MozillaFirefox-translations-45.3.0esr-78 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12-LTSS is installed
  • AND
  • MozillaFirefox-45.3.0esr-78 is installed
  • OR MozillaFirefox-translations-45.3.0esr-78 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4 is installed
  • AND Package Information
  • compat-openssl097g-0.9.7g-146.22.44 is installed
  • OR compat-openssl097g-32bit-0.9.7g-146.22.44 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND Package Information
  • kgraft-patch-3_12_74-60_64_69-default-7-2 is installed
  • OR kgraft-patch-3_12_74-60_64_69-xen-7-2 is installed
  • OR kgraft-patch-SLE12-SP1_Update_24-7-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND ucode-intel-20180425-13.20 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP2 is installed
  • AND Package Information
  • java-1_6_0-ibm-1.6.0_sr15.0-0.5 is installed
  • OR java-1_6_0-ibm-devel-1.6.0_sr15.0-0.5 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr15.0-0.5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP3 is installed
  • AND mozilla-nss-devel-3.16.5-0.7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP4 is installed
  • AND Package Information
  • ImageMagick-6.4.3.6-7.30 is installed
  • OR ImageMagick-devel-6.4.3.6-7.30 is installed
  • OR libMagick++-devel-6.4.3.6-7.30 is installed
  • OR libMagick++1-6.4.3.6-7.30 is installed
  • OR libMagickWand1-6.4.3.6-7.30 is installed
  • OR libMagickWand1-32bit-6.4.3.6-7.30 is installed
  • OR perl-PerlMagick-6.4.3.6-7.30 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP1 is installed
  • AND Package Information
  • imap-2007e_suse-22 is installed
  • OR libc-client2007e_suse-2007e_suse-22 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP2 is installed
  • AND Package Information
  • freerdp-2.0.0~git.1463131968.4e66df7-12.3 is installed
  • OR libfreerdp2-2.0.0~git.1463131968.4e66df7-12.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP3 is installed
  • AND Package Information
  • libzzip-0-13-0.13.67-10.5 is installed
  • OR zziplib-0.13.67-10.5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP4 is installed
  • AND Package Information
  • libwebkit2gtk3-lang-2.22.6-2.35 is installed
  • OR webkit2gtk3-2.22.6-2.35 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP5 is installed
  • AND Package Information
  • libraw-0.15.4-33 is installed
  • OR libraw9-0.15.4-33 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 15 is installed
  • AND Package Information
  • pulseaudio-module-bluetooth-11.1-4 is installed
  • OR pulseaudio-module-lirc-11.1-4 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 6 is installed
  • AND Package Information
  • MozillaFirefox-52.2.0esr-108.3 is installed
  • OR MozillaFirefox-branding-SLE-52-31.1 is installed
  • OR MozillaFirefox-devel-52.2.0esr-108.3 is installed
  • OR MozillaFirefox-translations-52.2.0esr-108.3 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 is installed
  • AND Package Information
  • geotiff-1.4.2-5 is installed
  • OR geotiff-devel-1.4.2-5 is installed
  • OR libgeotiff2-1.4.2-5 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP3 is installed
  • AND Package Information
  • chromedriver-75.0.3770.90-2 is installed
  • OR chromium-75.0.3770.90-2 is installed
  • BACK