Oval Definition:oval:org.opensuse.security:def:22102
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):1000396
1001299
1055478
1055825
1056058
1065363
1066242
1070737
1074462
1077080
1082692
1086247
1090099
1092100
1096449
1101820
1104199
1104202
1111657
1130324
1138748
1149792
1152107
1169511
1171252
1171254
1173798
1174205
1174757
1175691
1176069
1178671
981848
CVE-2016-0634
CVE-2016-7543
CVE-2017-1000422
CVE-2017-17997
CVE-2017-3735
CVE-2017-3736
CVE-2018-10194
CVE-2018-10903
CVE-2018-10915
CVE-2018-10925
CVE-2018-1122
CVE-2018-1123
CVE-2018-1124
CVE-2018-1125
CVE-2018-1126
CVE-2018-6126
CVE-2018-7320
CVE-2018-7321
CVE-2018-7322
CVE-2018-7323
CVE-2018-7324
CVE-2018-7325
CVE-2018-7326
CVE-2018-7327
CVE-2018-7328
CVE-2018-7329
CVE-2018-7330
CVE-2018-7331
CVE-2018-7332
CVE-2018-7333
CVE-2018-7334
CVE-2018-7335
CVE-2018-7336
CVE-2018-7337
CVE-2018-7417
CVE-2018-7418
CVE-2018-7419
CVE-2018-7420
CVE-2018-7421
CVE-2019-16746
CVE-2019-9924
CVE-2020-12321
CVE-2020-12653
CVE-2020-12654
CVE-2020-14314
CVE-2020-14331
CVE-2020-14386
CVE-2020-16166
CVE-2020-2756
CVE-2020-2757
CVE-2020-2773
CVE-2020-2781
CVE-2020-2800
CVE-2020-2803
CVE-2020-2805
CVE-2020-2830
SUSE-SU-2017:3169-1
SUSE-SU-2018:0811-1
SUSE-SU-2018:1332-1
SUSE-SU-2018:1398-1
SUSE-SU-2018:1783-2
SUSE-SU-2018:1950-1
SUSE-SU-2018:2451-2
SUSE-SU-2018:3377-1
SUSE-SU-2020:0792-1
Platform(s):openSUSE Leap 42.1
openSUSE Leap 42.2
SUSE Cloud Compute Node for SUSE Linux Enterprise 12 5
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 Module for Basesystem 15
SUSE Linux Enterprise Module for Containers 12
SUSE Linux Enterprise Module for Legacy Software 12
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-LTSS
SUSE Linux Enterprise Server 11 SP3-TERADATA
SUSE Linux Enterprise Server 11 SP4
SUSE Linux Enterprise Server 11 SP4-LTSS
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 SP2-LTSS
SUSE Linux Enterprise Server 12 SP3
SUSE Linux Enterprise Server 12 SP3-BCL
SUSE Linux Enterprise Server 12 SP3-ESPOS
SUSE Linux Enterprise Server 12 SP3-LTSS
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 Raspberry Pi 12 SP2
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-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 11 SP4-LTSS
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 SP2-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP3
SUSE Linux Enterprise Server for SAP Applications 12 SP3-BCL
SUSE Linux Enterprise Server for SAP Applications 12 SP3-ESPOS
SUSE Linux Enterprise Server for SAP Applications 12 SP3-LTSS
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
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 OpenStack Cloud 5
SUSE OpenStack Cloud 6
SUSE Package Hub for SUSE Linux Enterprise 12
SUSE Package Hub for SUSE Linux Enterprise 12 SP1
SUSE Package Hub for SUSE Linux Enterprise 12 SP2
SUSE Package Hub for SUSE Linux Enterprise 12 SP3
Product(s):
Definition Synopsis
  • openSUSE Leap 42.1 is installed
  • AND Package Information
  • irssi-0.8.20-6.1 is installed
  • OR irssi-devel-0.8.20-6.1 is installed
  • Definition Synopsis
  • openSUSE Leap 42.2 is installed
  • AND kopete-16.08.2-3.1 is installed
  • Definition Synopsis
  • SUSE Cloud Compute Node for SUSE Linux Enterprise 12 5 is installed
  • AND python-requests-2.8.1-6.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP2 is installed
  • AND Package Information
  • Mesa-7.11.2-0.9.1 is installed
  • OR Mesa-32bit-7.11.2-0.9.1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP3 is installed
  • AND Package Information
  • ImageMagick-6.4.3.6-7.30.1 is installed
  • OR libMagick++1-6.4.3.6-7.30.1 is installed
  • OR libMagickCore1-6.4.3.6-7.30.1 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.30.1 is installed
  • OR libMagickWand1-6.4.3.6-7.30.1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP4 is installed
  • AND Package Information
  • MozillaFirefox-38.4.0esr-25.6 is installed
  • OR MozillaFirefox-branding-SLED-38-15.31 is installed
  • OR MozillaFirefox-translations-38.4.0esr-25.6 is installed
  • OR libfreebl3-3.19.2.1-19.3 is installed
  • OR libfreebl3-32bit-3.19.2.1-19.3 is installed
  • OR libsoftokn3-3.19.2.1-19.3 is installed
  • OR libsoftokn3-32bit-3.19.2.1-19.3 is installed
  • OR mozilla-nspr-4.10.10-16.1 is installed
  • OR mozilla-nspr-32bit-4.10.10-16.1 is installed
  • OR mozilla-nss-3.19.2.1-19.3 is installed
  • OR mozilla-nss-32bit-3.19.2.1-19.3 is installed
  • OR mozilla-nss-tools-3.19.2.1-19.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 is installed
  • AND Package Information
  • krb5-1.12.1-6 is installed
  • OR krb5-32bit-1.12.1-6 is installed
  • OR krb5-client-1.12.1-6 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP1 is installed
  • AND Package Information
  • gpg2-2.0.24-3 is installed
  • OR gpg2-lang-2.0.24-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP2 is installed
  • AND Package Information
  • libXi-1.7.4-17.1 is installed
  • OR libXi6-1.7.4-17.1 is installed
  • OR libXi6-32bit-1.7.4-17.1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP3 is installed
  • AND Package Information
  • libsoup-2.54.1-5.3.1 is installed
  • OR libsoup-2_4-1-2.54.1-5.3.1 is installed
  • OR libsoup-2_4-1-32bit-2.54.1-5.3.1 is installed
  • OR libsoup-lang-2.54.1-5.3.1 is installed
  • OR typelib-1_0-Soup-2_4-2.54.1-5.3.1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Basesystem 15 is installed
  • AND Package Information
  • apr-devel-1.6.3-1 is installed
  • OR libapr1-1.6.3-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Containers 12 is installed
  • AND Package Information
  • containerd-0.2.9+gitr706_06b9cb351610-16.8 is installed
  • OR docker-17.09.1_ce-98.8 is installed
  • OR docker-libnetwork-0.7.0.1+gitr2066_7b2b1feb1de4-10 is installed
  • OR docker-runc-1.0.0rc4+gitr3338_3f2f8b84a77f-1.3 is installed
  • OR golang-github-docker-libnetwork-0.7.0.1+gitr2066_7b2b1feb1de4-10 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Legacy Software 12 is installed
  • AND Package Information
  • java-1_6_0-ibm-1.6.0_sr16.45-49 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr16.45-49 is installed
  • OR java-1_6_0-ibm-jdbc-1.6.0_sr16.45-49 is installed
  • OR java-1_6_0-ibm-plugin-1.6.0_sr16.45-49 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • libfreebl3-3.12.8-1.2 is installed
  • OR libfreebl3-32bit-3.12.8-1.2 is installed
  • OR libfreebl3-x86-3.12.8-1.2 is installed
  • OR mozilla-nspr-4.8.6-1.2 is installed
  • OR mozilla-nspr-32bit-4.8.6-1.2 is installed
  • OR mozilla-nspr-x86-4.8.6-1.2 is installed
  • OR mozilla-nss-3.12.8-1.2 is installed
  • OR mozilla-nss-32bit-3.12.8-1.2 is installed
  • OR mozilla-nss-tools-3.12.8-1.2 is installed
  • OR mozilla-nss-x86-3.12.8-1.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • libfreebl3-3.12.8-1.2 is installed
  • OR libfreebl3-32bit-3.12.8-1.2 is installed
  • OR libfreebl3-x86-3.12.8-1.2 is installed
  • OR mozilla-nspr-4.8.6-1.2 is installed
  • OR mozilla-nspr-32bit-4.8.6-1.2 is installed
  • OR mozilla-nspr-x86-4.8.6-1.2 is installed
  • OR mozilla-nss-3.12.8-1.2 is installed
  • OR mozilla-nss-32bit-3.12.8-1.2 is installed
  • OR mozilla-nss-tools-3.12.8-1.2 is installed
  • OR mozilla-nss-x86-3.12.8-1.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • libfreebl3-3.12.8-1.2 is installed
  • OR libfreebl3-32bit-3.12.8-1.2 is installed
  • OR libfreebl3-x86-3.12.8-1.2 is installed
  • OR mozilla-nspr-4.8.6-1.2 is installed
  • OR mozilla-nspr-32bit-4.8.6-1.2 is installed
  • OR mozilla-nspr-x86-4.8.6-1.2 is installed
  • OR mozilla-nss-3.12.8-1.2 is installed
  • OR mozilla-nss-32bit-3.12.8-1.2 is installed
  • OR mozilla-nss-tools-3.12.8-1.2 is installed
  • OR mozilla-nss-x86-3.12.8-1.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • libfreebl3-3.12.8-1.2 is installed
  • OR libfreebl3-32bit-3.12.8-1.2 is installed
  • OR libfreebl3-x86-3.12.8-1.2 is installed
  • OR mozilla-nspr-4.8.6-1.2 is installed
  • OR mozilla-nspr-32bit-4.8.6-1.2 is installed
  • OR mozilla-nspr-x86-4.8.6-1.2 is installed
  • OR mozilla-nss-3.12.8-1.2 is installed
  • OR mozilla-nss-32bit-3.12.8-1.2 is installed
  • OR mozilla-nss-tools-3.12.8-1.2 is installed
  • OR mozilla-nss-x86-3.12.8-1.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • libfreebl3-3.12.8-1.2 is installed
  • OR libfreebl3-32bit-3.12.8-1.2 is installed
  • OR libfreebl3-x86-3.12.8-1.2 is installed
  • OR mozilla-nspr-4.8.6-1.2 is installed
  • OR mozilla-nspr-32bit-4.8.6-1.2 is installed
  • OR mozilla-nspr-x86-4.8.6-1.2 is installed
  • OR mozilla-nss-3.12.8-1.2 is installed
  • OR mozilla-nss-32bit-3.12.8-1.2 is installed
  • OR mozilla-nss-tools-3.12.8-1.2 is installed
  • OR mozilla-nss-x86-3.12.8-1.2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • libtiff3-3.8.2-141.148 is installed
  • OR libtiff3-32bit-3.8.2-141.148 is installed
  • OR libtiff3-x86-3.8.2-141.148 is installed
  • OR tiff-3.8.2-141.148 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • libtiff3-3.8.2-141.148 is installed
  • OR libtiff3-32bit-3.8.2-141.148 is installed
  • OR libtiff3-x86-3.8.2-141.148 is installed
  • OR tiff-3.8.2-141.148 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • libtiff3-3.8.2-141.148 is installed
  • OR libtiff3-32bit-3.8.2-141.148 is installed
  • OR libtiff3-x86-3.8.2-141.148 is installed
  • OR tiff-3.8.2-141.148 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • libtiff3-3.8.2-141.148 is installed
  • OR libtiff3-32bit-3.8.2-141.148 is installed
  • OR libtiff3-x86-3.8.2-141.148 is installed
  • OR tiff-3.8.2-141.148 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • libxcrypt-3.0.3-0.6 is installed
  • OR libxcrypt-32bit-3.0.3-0.6 is installed
  • OR libxcrypt-x86-3.0.3-0.6 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • libxcrypt-3.0.3-0.6 is installed
  • OR libxcrypt-32bit-3.0.3-0.6 is installed
  • OR libxcrypt-x86-3.0.3-0.6 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • libxcrypt-3.0.3-0.6 is installed
  • OR libxcrypt-32bit-3.0.3-0.6 is installed
  • OR libxcrypt-x86-3.0.3-0.6 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND NetworkManager-gnome-0.7.0.r1053-11.16 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
  • kdelibs3-3.5.10-23.30.5 is installed
  • OR kdelibs3-32bit-3.5.10-23.30.5 is installed
  • OR kdelibs3-default-style-3.5.10-23.30.5 is installed
  • OR kdelibs3-default-style-32bit-3.5.10-23.30.5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • kdelibs3-3.5.10-23.30.5 is installed
  • OR kdelibs3-32bit-3.5.10-23.30.5 is installed
  • OR kdelibs3-default-style-3.5.10-23.30.5 is installed
  • OR kdelibs3-default-style-32bit-3.5.10-23.30.5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • MozillaFirefox-17.0.9esr-0.3 is installed
  • OR MozillaFirefox-translations-17.0.9esr-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND
  • MozillaFirefox-17.0.9esr-0.3 is installed
  • OR MozillaFirefox-translations-17.0.9esr-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • MozillaFirefox-17.0.9esr-0.3 is installed
  • OR MozillaFirefox-translations-17.0.9esr-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND
  • MozillaFirefox-17.0.9esr-0.3 is installed
  • OR MozillaFirefox-translations-17.0.9esr-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • MozillaFirefox-17.0.9esr-0.3 is installed
  • OR MozillaFirefox-translations-17.0.9esr-0.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND kvm-0.15.1-0.27 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND kvm-0.15.1-0.27 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND kvm-0.15.1-0.27 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND kvm-0.15.1-0.27 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • dbus-1-1.2.10-3.25 is installed
  • OR dbus-1-32bit-1.2.10-3.25 is installed
  • OR dbus-1-x11-1.2.10-3.25 is installed
  • OR dbus-1-x86-1.2.10-3.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • dbus-1-1.2.10-3.25 is installed
  • OR dbus-1-32bit-1.2.10-3.25 is installed
  • OR dbus-1-x11-1.2.10-3.25 is installed
  • OR dbus-1-x86-1.2.10-3.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • dbus-1-1.2.10-3.25 is installed
  • OR dbus-1-32bit-1.2.10-3.25 is installed
  • OR dbus-1-x11-1.2.10-3.25 is installed
  • OR dbus-1-x86-1.2.10-3.25 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND Package Information
  • e2fsprogs-1.41.9-2.7 is installed
  • OR libcom_err2-1.41.9-2.7 is installed
  • OR libcom_err2-32bit-1.41.9-2.7 is installed
  • OR libcom_err2-x86-1.41.9-2.7 is installed
  • OR libext2fs2-1.41.9-2.7 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND
  • xen-4.1.6_08-17 is installed
  • OR xen-devel-4.1.6_08-17 is installed
  • OR xen-doc-html-4.1.6_08-17 is installed
  • OR xen-doc-pdf-4.1.6_08-17 is installed
  • OR xen-kmp-default-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-pae-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-trace-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-libs-4.1.6_08-17 is installed
  • OR xen-libs-32bit-4.1.6_08-17 is installed
  • OR xen-tools-4.1.6_08-17 is installed
  • OR xen-tools-domU-4.1.6_08-17 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND
  • xen-4.1.6_08-17 is installed
  • OR xen-devel-4.1.6_08-17 is installed
  • OR xen-doc-html-4.1.6_08-17 is installed
  • OR xen-doc-pdf-4.1.6_08-17 is installed
  • OR xen-kmp-default-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-pae-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-kmp-trace-4.1.6_08_3.0.101_0.7.29-17 is installed
  • OR xen-libs-4.1.6_08-17 is installed
  • OR xen-libs-32bit-4.1.6_08-17 is installed
  • OR xen-tools-4.1.6_08-17 is installed
  • OR xen-tools-domU-4.1.6_08-17 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • Mesa-9.0.3-0.19 is installed
  • OR Mesa-32bit-9.0.3-0.19 is installed
  • OR Mesa-x86-9.0.3-0.19 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • Mesa-9.0.3-0.19 is installed
  • OR Mesa-32bit-9.0.3-0.19 is installed
  • OR Mesa-x86-9.0.3-0.19 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND
  • Mesa-9.0.3-0.19 is installed
  • OR Mesa-32bit-9.0.3-0.19 is installed
  • OR Mesa-x86-9.0.3-0.19 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • Mesa-9.0.3-0.19 is installed
  • OR Mesa-32bit-9.0.3-0.19 is installed
  • OR Mesa-x86-9.0.3-0.19 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP3 is installed
  • AND
  • Mesa-9.0.3-0.19 is installed
  • OR Mesa-32bit-9.0.3-0.19 is installed
  • OR Mesa-x86-9.0.3-0.19 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND Package Information
  • java-1_7_0-ibm-1.7.0_sr4.1-0.5 is installed
  • OR java-1_7_0-ibm-alsa-1.7.0_sr4.1-0.5 is installed
  • OR java-1_7_0-ibm-jdbc-1.7.0_sr4.1-0.5 is installed
  • OR java-1_7_0-ibm-plugin-1.7.0_sr4.1-0.5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND
  • curl-7.37.0-70.27 is installed
  • OR curl-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-7.37.0-70.27 is installed
  • OR libcurl4-32bit-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-32bit-7.37.0-70.27 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • curl-7.37.0-70.27 is installed
  • OR curl-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-7.37.0-70.27 is installed
  • OR libcurl4-32bit-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-32bit-7.37.0-70.27 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS is installed
  • AND
  • curl-7.37.0-70.27 is installed
  • OR curl-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-7.37.0-70.27 is installed
  • OR libcurl4-32bit-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-32bit-7.37.0-70.27 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • curl-7.37.0-70.27 is installed
  • OR curl-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-7.37.0-70.27 is installed
  • OR libcurl4-32bit-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-7.37.0-70.27 is installed
  • OR libcurl4-openssl1-32bit-7.37.0-70.27 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND
  • kernel-bigsmp-3.0.101-0.47.106.56 is installed
  • OR kernel-bigsmp-base-3.0.101-0.47.106.56 is installed
  • OR kernel-bigsmp-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-default-3.0.101-0.47.106.56 is installed
  • OR kernel-default-base-3.0.101-0.47.106.56 is installed
  • OR kernel-default-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-default-man-3.0.101-0.47.106.56 is installed
  • OR kernel-ec2-3.0.101-0.47.106.56 is installed
  • OR kernel-ec2-base-3.0.101-0.47.106.56 is installed
  • OR kernel-ec2-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-pae-3.0.101-0.47.106.56 is installed
  • OR kernel-pae-base-3.0.101-0.47.106.56 is installed
  • OR kernel-pae-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-source-3.0.101-0.47.106.56 is installed
  • OR kernel-syms-3.0.101-0.47.106.56 is installed
  • OR kernel-trace-3.0.101-0.47.106.56 is installed
  • OR kernel-trace-base-3.0.101-0.47.106.56 is installed
  • OR kernel-trace-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-xen-3.0.101-0.47.106.56 is installed
  • OR kernel-xen-base-3.0.101-0.47.106.56 is installed
  • OR kernel-xen-devel-3.0.101-0.47.106.56 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS is installed
  • AND
  • kernel-bigsmp-3.0.101-0.47.106.56 is installed
  • OR kernel-bigsmp-base-3.0.101-0.47.106.56 is installed
  • OR kernel-bigsmp-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-default-3.0.101-0.47.106.56 is installed
  • OR kernel-default-base-3.0.101-0.47.106.56 is installed
  • OR kernel-default-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-default-man-3.0.101-0.47.106.56 is installed
  • OR kernel-ec2-3.0.101-0.47.106.56 is installed
  • OR kernel-ec2-base-3.0.101-0.47.106.56 is installed
  • OR kernel-ec2-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-pae-3.0.101-0.47.106.56 is installed
  • OR kernel-pae-base-3.0.101-0.47.106.56 is installed
  • OR kernel-pae-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-source-3.0.101-0.47.106.56 is installed
  • OR kernel-syms-3.0.101-0.47.106.56 is installed
  • OR kernel-trace-3.0.101-0.47.106.56 is installed
  • OR kernel-trace-base-3.0.101-0.47.106.56 is installed
  • OR kernel-trace-devel-3.0.101-0.47.106.56 is installed
  • OR kernel-xen-3.0.101-0.47.106.56 is installed
  • OR kernel-xen-base-3.0.101-0.47.106.56 is installed
  • OR kernel-xen-devel-3.0.101-0.47.106.56 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND Package Information
  • java-1_7_0-ibm-1.7.0_sr10.5-64.1 is installed
  • OR java-1_7_0-ibm-alsa-1.7.0_sr10.5-64.1 is installed
  • OR java-1_7_0-ibm-devel-1.7.0_sr10.5-64.1 is installed
  • OR java-1_7_0-ibm-jdbc-1.7.0_sr10.5-64.1 is installed
  • OR java-1_7_0-ibm-plugin-1.7.0_sr10.5-64.1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-78.40 is installed
  • OR libMagickCore1-6.4.3.6-78.40 is installed
  • OR libMagickCore1-32bit-6.4.3.6-78.40 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-78.40 is installed
  • OR libMagickCore1-6.4.3.6-78.40 is installed
  • OR libMagickCore1-32bit-6.4.3.6-78.40 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP4 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 SP4 is installed
  • AND apache2-mod_nss-1.0.14-0.4.25 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP4 is installed
  • AND apache2-mod_perl-2.0.4-40.24 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP4-LTSS is installed
  • AND
  • MozillaFirefox-60.8.0esr-78.43 is installed
  • OR MozillaFirefox-translations-common-60.8.0esr-78.43 is installed
  • OR MozillaFirefox-translations-other-60.8.0esr-78.43 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4-LTSS is installed
  • AND
  • MozillaFirefox-60.8.0esr-78.43 is installed
  • OR MozillaFirefox-translations-common-60.8.0esr-78.43 is installed
  • OR MozillaFirefox-translations-other-60.8.0esr-78.43 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 is installed
  • AND
  • libmspack-0.4-10 is installed
  • OR libmspack0-0.4-10 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND
  • libmspack-0.4-10 is installed
  • OR libmspack0-0.4-10 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 is installed
  • AND Package Information
  • apache2-2.4.10-6.1 is installed
  • OR apache2-doc-2.4.10-6.1 is installed
  • OR apache2-example-pages-2.4.10-6.1 is installed
  • OR apache2-prefork-2.4.10-6.1 is installed
  • OR apache2-utils-2.4.10-6.1 is installed
  • OR apache2-worker-2.4.10-6.1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND
  • apache2-2.4.16-7 is installed
  • OR apache2-doc-2.4.16-7 is installed
  • OR apache2-example-pages-2.4.16-7 is installed
  • OR apache2-prefork-2.4.16-7 is installed
  • OR apache2-utils-2.4.16-7 is installed
  • OR apache2-worker-2.4.16-7 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND
  • apache2-2.4.16-7 is installed
  • OR apache2-doc-2.4.16-7 is installed
  • OR apache2-example-pages-2.4.16-7 is installed
  • OR apache2-prefork-2.4.16-7 is installed
  • OR apache2-utils-2.4.16-7 is installed
  • OR apache2-worker-2.4.16-7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND Package Information
  • libvirt-1.2.18.1-4 is installed
  • OR libvirt-client-1.2.18.1-4 is installed
  • OR libvirt-daemon-1.2.18.1-4 is installed
  • OR libvirt-daemon-config-network-1.2.18.1-4 is installed
  • OR libvirt-daemon-config-nwfilter-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-interface-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-libxl-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-lxc-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-network-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-nodedev-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-nwfilter-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-qemu-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-secret-1.2.18.1-4 is installed
  • OR libvirt-daemon-driver-storage-1.2.18.1-4 is installed
  • OR libvirt-daemon-lxc-1.2.18.1-4 is installed
  • OR libvirt-daemon-qemu-1.2.18.1-4 is installed
  • OR libvirt-daemon-xen-1.2.18.1-4 is installed
  • OR libvirt-doc-1.2.18.1-4 is installed
  • OR libvirt-lock-sanlock-1.2.18.1-4 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND ucode-intel-20180703-13.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS is installed
  • AND ucode-intel-20180703-13.25 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND Package Information
  • bind-9.9.9P1-62.1 is installed
  • OR bind-chrootenv-9.9.9P1-62.1 is installed
  • OR bind-devel-9.9.9P1-62.1 is installed
  • OR bind-doc-9.9.9P1-62.1 is installed
  • OR bind-libs-9.9.9P1-62.1 is installed
  • OR bind-libs-32bit-9.9.9P1-62.1 is installed
  • OR bind-utils-9.9.9P1-62.1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND
  • libXi-1.7.4-17 is installed
  • OR libXi6-1.7.4-17 is installed
  • OR libXi6-32bit-1.7.4-17 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND
  • libXi-1.7.4-17 is installed
  • OR libXi6-1.7.4-17 is installed
  • OR libXi6-32bit-1.7.4-17 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND Package Information
  • alsa-1.0.27.2-11 is installed
  • OR alsa-docs-1.0.27.2-11 is installed
  • OR libasound2-1.0.27.2-11 is installed
  • OR libasound2-32bit-1.0.27.2-11 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-BCL is installed
  • AND
  • MozillaFirefox-52.8.1esr-109.34 is installed
  • OR MozillaFirefox-devel-52.8.1esr-109.34 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-BCL is installed
  • AND
  • MozillaFirefox-52.8.1esr-109.34 is installed
  • OR MozillaFirefox-devel-52.8.1esr-109.34 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-ESPOS is installed
  • AND
  • bash-4.3-83.23 is installed
  • OR bash-doc-4.3-83.23 is installed
  • OR libreadline6-6.3-83.23 is installed
  • OR libreadline6-32bit-6.3-83.23 is installed
  • OR readline-doc-6.3-83.23 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-ESPOS is installed
  • AND
  • bash-4.3-83.23 is installed
  • OR bash-doc-4.3-83.23 is installed
  • OR libreadline6-6.3-83.23 is installed
  • OR libreadline6-32bit-6.3-83.23 is installed
  • OR readline-doc-6.3-83.23 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-LTSS 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 SP2-LTSS 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 SP3 is installed
  • AND
  • libopenssl-devel-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-32bit-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-hmac-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-hmac-32bit-1.0.2j-60.16 is installed
  • OR openssl-1.0.2j-60.16 is installed
  • OR openssl-doc-1.0.2j-60.16 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3 is installed
  • AND
  • libopenssl-devel-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-32bit-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-hmac-1.0.2j-60.16 is installed
  • OR libopenssl1_0_0-hmac-32bit-1.0.2j-60.16 is installed
  • OR openssl-1.0.2j-60.16 is installed
  • OR openssl-doc-1.0.2j-60.16 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND Package Information
  • bind-9.9.9P1-62 is installed
  • OR bind-chrootenv-9.9.9P1-62 is installed
  • OR bind-doc-9.9.9P1-62 is installed
  • OR bind-libs-9.9.9P1-62 is installed
  • OR bind-libs-32bit-9.9.9P1-62 is installed
  • OR bind-utils-9.9.9P1-62 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-BCL is installed
  • AND
  • glibc-2.22-62.22 is installed
  • OR glibc-32bit-2.22-62.22 is installed
  • OR glibc-devel-2.22-62.22 is installed
  • OR glibc-devel-32bit-2.22-62.22 is installed
  • OR glibc-html-2.22-62.22 is installed
  • OR glibc-i18ndata-2.22-62.22 is installed
  • OR glibc-info-2.22-62.22 is installed
  • OR glibc-locale-2.22-62.22 is installed
  • OR glibc-locale-32bit-2.22-62.22 is installed
  • OR glibc-profile-2.22-62.22 is installed
  • OR glibc-profile-32bit-2.22-62.22 is installed
  • OR nscd-2.22-62.22 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-BCL is installed
  • AND
  • glibc-2.22-62.22 is installed
  • OR glibc-32bit-2.22-62.22 is installed
  • OR glibc-devel-2.22-62.22 is installed
  • OR glibc-devel-32bit-2.22-62.22 is installed
  • OR glibc-html-2.22-62.22 is installed
  • OR glibc-i18ndata-2.22-62.22 is installed
  • OR glibc-info-2.22-62.22 is installed
  • OR glibc-locale-2.22-62.22 is installed
  • OR glibc-locale-32bit-2.22-62.22 is installed
  • OR glibc-profile-2.22-62.22 is installed
  • OR glibc-profile-32bit-2.22-62.22 is installed
  • OR nscd-2.22-62.22 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-ESPOS is installed
  • AND
  • bzip2-1.0.6-30.8 is installed
  • OR bzip2-doc-1.0.6-30.8 is installed
  • OR libbz2-1-1.0.6-30.8 is installed
  • OR libbz2-1-32bit-1.0.6-30.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-ESPOS is installed
  • AND
  • bzip2-1.0.6-30.8 is installed
  • OR bzip2-doc-1.0.6-30.8 is installed
  • OR libbz2-1-1.0.6-30.8 is installed
  • OR libbz2-1-32bit-1.0.6-30.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-LTSS is installed
  • AND
  • kgraft-patch-4_4_143-94_47-default-7-2 is installed
  • OR kgraft-patch-SLE12-SP3_Update_16-7-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-LTSS is installed
  • AND
  • kgraft-patch-4_4_143-94_47-default-7-2 is installed
  • OR kgraft-patch-SLE12-SP3_Update_16-7-2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND
  • libtirpc-1.0.1-17.6 is installed
  • OR libtirpc-netconfig-1.0.1-17.6 is installed
  • OR libtirpc3-1.0.1-17.6 is installed
  • OR libtirpc3-32bit-1.0.1-17.6 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA is installed
  • AND
  • libtirpc-1.0.1-17.6 is installed
  • OR libtirpc-netconfig-1.0.1-17.6 is installed
  • OR libtirpc3-1.0.1-17.6 is installed
  • OR libtirpc3-32bit-1.0.1-17.6 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND
  • python3-rpm-4.11.2-16.21 is installed
  • OR rpm-4.11.2-16.21 is installed
  • OR rpm-32bit-4.11.2-16.21 is installed
  • OR rpm-build-4.11.2-16.21 is installed
  • OR rpm-python-4.11.2-16.21 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4 is installed
  • AND
  • python3-rpm-4.11.2-16.21 is installed
  • OR rpm-4.11.2-16.21 is installed
  • OR rpm-32bit-4.11.2-16.21 is installed
  • OR rpm-build-4.11.2-16.21 is installed
  • OR rpm-python-4.11.2-16.21 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND SuSEfirewall2-3.6.312.333-3.13 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP5 is installed
  • AND
  • ghostscript-9.27-23.28 is installed
  • OR ghostscript-x11-9.27-23.28 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP5 is installed
  • AND
  • ghostscript-9.27-23.28 is installed
  • OR ghostscript-x11-9.27-23.28 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12-LTSS is installed
  • AND
  • kgraft-patch-3_12_60-52_54-default-9-2 is installed
  • OR kgraft-patch-3_12_60-52_54-xen-9-2 is installed
  • OR kgraft-patch-SLE12_Update_15-9-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12-LTSS is installed
  • AND
  • kgraft-patch-3_12_60-52_54-default-9-2 is installed
  • OR kgraft-patch-3_12_60-52_54-xen-9-2 is installed
  • OR kgraft-patch-SLE12_Update_15-9-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for Raspberry Pi 12 SP2 is installed
  • AND apache2-mod_jk-1.2.40-5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND Package Information
  • libjpeg-turbo-1.5.3-31.19 is installed
  • OR libjpeg62-62.2.0-31.19 is installed
  • OR libjpeg62-32bit-62.2.0-31.19 is installed
  • OR libjpeg62-turbo-1.5.3-31.19 is installed
  • OR libjpeg8-8.1.2-31.19 is installed
  • OR libjpeg8-32bit-8.1.2-31.19 is installed
  • OR libturbojpeg0-8.1.2-31.19 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3 is installed
  • AND Package Information
  • compat-openssl098-0.9.8j-106.15 is installed
  • OR libopenssl0_9_8-0.9.8j-106.15 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP2 is installed
  • AND automake-1.10.1-4.131.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP3 is installed
  • AND augeas-devel-0.9.0-3.15 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP4 is installed
  • AND apache2-mod_fcgid-2.2-31.27 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 is installed
  • AND Package Information
  • gstreamer-0_10-plugins-bad-0.10.23-17 is installed
  • OR gstreamer-0_10-plugins-bad-lang-0.10.23-17 is installed
  • OR libgstbasecamerabinsrc-0_10-23-0.10.23-17 is installed
  • OR libgstbasecamerabinsrc-0_10-23-32bit-0.10.23-17 is installed
  • OR libgstbasevideo-0_10-23-0.10.23-17 is installed
  • OR libgstbasevideo-0_10-23-32bit-0.10.23-17 is installed
  • OR libgstcodecparsers-0_10-23-0.10.23-17 is installed
  • OR libgstphotography-0_10-23-0.10.23-17 is installed
  • OR libgstphotography-0_10-23-32bit-0.10.23-17 is installed
  • OR libgstsignalprocessor-0_10-23-0.10.23-17 is installed
  • OR libgstsignalprocessor-0_10-23-32bit-0.10.23-17 is installed
  • OR libgstvdp-0_10-23-0.10.23-17 is installed
  • OR libgstvdp-0_10-23-32bit-0.10.23-17 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP1 is installed
  • AND Package Information
  • libpcrecpp0-8.39-5 is installed
  • OR libpcrecpp0-32bit-8.39-5 is installed
  • OR pcre-8.39-5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP2 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 SP3 is installed
  • AND Package Information
  • bluez-5.13-5.4 is installed
  • OR bluez-cups-5.13-5.4 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP4 is installed
  • AND Package Information
  • glib2-2.48.2-12.12 is installed
  • OR libgio-fam-2.48.2-12.12 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 5 is installed
  • AND Package Information
  • git-1.7.12.4-0.11.2 is installed
  • OR git-core-1.7.12.4-0.11.2 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 6 is installed
  • AND Package Information
  • openstack-swift-2.1.0-4.1 is installed
  • OR openstack-swift-account-2.1.0-4.1 is installed
  • OR openstack-swift-container-2.1.0-4.1 is installed
  • OR openstack-swift-object-2.1.0-4.1 is installed
  • OR openstack-swift-proxy-2.1.0-4.1 is installed
  • OR python-swift-2.1.0-4.1 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 is installed
  • AND Package Information
  • znc-1.6.0-18 is installed
  • OR znc-devel-1.6.0-18 is installed
  • OR znc-perl-1.6.0-18 is installed
  • OR znc-python3-1.6.0-18 is installed
  • OR znc-tcl-1.6.0-18 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP1 is installed
  • AND Package Information
  • pdns-4.1.11-20 is installed
  • OR pdns-backend-geoip-4.1.8-lp151.2.3 is installed
  • OR pdns-backend-godbc-4.1.11-20 is installed
  • OR pdns-backend-ldap-4.1.11-20 is installed
  • OR pdns-backend-lua-4.1.11-20 is installed
  • OR pdns-backend-mydns-4.1.11-20 is installed
  • OR pdns-backend-mysql-4.1.11-20 is installed
  • OR pdns-backend-postgresql-4.1.11-20 is installed
  • OR pdns-backend-remote-4.1.11-20 is installed
  • OR pdns-backend-sqlite3-4.1.11-20 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP2 is installed
  • AND Package Information
  • mongodb-3.4.10-5 is installed
  • OR mongodb-mongoperf-3.4.10-5 is installed
  • OR mongodb-mongos-3.4.10-5 is installed
  • OR mongodb-server-3.4.10-5 is installed
  • OR mongodb-shell-3.4.10-5 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP3 is installed
  • AND Package Information
  • chromedriver-79.0.3945.88-22 is installed
  • OR chromium-79.0.3945.88-22 is installed
  • BACK