Oval Definition:oval:org.opensuse.security:def:21131
Revision Date:2020-12-01Version:1
Title:Security update for python-cffi, python-cryptography, python-xattr (Moderate)
Description:
This update for python-cffi, python-cryptography and python-xattr 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 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.

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.

- Fixed the 'negative left shift' warning by replacing bitshifting
in appropriate places by bitwise and comparison to self; patch
taken from upstream git. Drop cffi-1.5.2-wnoerror.patch: no
longer required.

- 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 to 1.5.2:

* support for cffi-based embedding
* more robustness for shutdown logic


Updated python-cryptography to 2.1.4 (bsc#1138748, jsc#ECO-1256, jsc#PM-1598)

- Make this version of the package compatible with OpenSSL 1.1.1d (bsc#1149792)

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

Update to version 2.1.4:

* Added X509_up_ref for an upcoming pyOpenSSL release.
* Corrected a bug with the manylinux1 wheels where OpenSSL's stack
was marked executable.
* support for OpenSSL 1.0.0 has been removed.
* Added support for Diffie-Hellman key exchange
* The OS random engine for OpenSSL has been rewritten

python-xattr was just rebuilt to adjust its cffi depedency.
Family:unixClass:patch
Status:Reference(s):1010685
1027519
1055478
1070737
1072947
1077445
1078662
1080740
1082063
1082210
1083417
1083420
1083422
1083424
1083426
1084300
1086039
1089152
1089635
1090820
1090822
1090823
1101820
1111657
1129186
1130721
1131233
1131237
1131239
1131241
1131245
1135715
1138748
1140747
1144902
1148931
1149792
1151021
1159646
1176496
1176764
981848
988903
CVE-2013-7490
CVE-2016-1248
CVE-2016-1549
CVE-2017-5754
CVE-2018-10471
CVE-2018-10472
CVE-2018-10903
CVE-2018-7170
CVE-2018-7182
CVE-2018-7183
CVE-2018-7184
CVE-2018-7185
CVE-2018-7738
CVE-2018-8897
CVE-2019-0196
CVE-2019-0197
CVE-2019-0211
CVE-2019-0217
CVE-2019-0220
CVE-2019-10218
CVE-2019-11478
CVE-2019-14835
CVE-2019-17571
CVE-2019-1787
CVE-2019-1788
CVE-2019-1789
CVE-2019-20919
CVE-2019-3838
CVE-2019-8595
CVE-2019-8607
CVE-2019-8615
CVE-2019-8644
CVE-2019-8649
CVE-2019-8658
CVE-2019-8666
CVE-2019-8669
CVE-2019-8671
CVE-2019-8672
CVE-2019-8673
CVE-2019-8676
CVE-2019-8677
CVE-2019-8678
CVE-2019-8679
CVE-2019-8680
CVE-2019-8681
CVE-2019-8683
CVE-2019-8684
CVE-2019-8686
CVE-2019-8687
CVE-2019-8688
CVE-2019-8689
CVE-2019-8690
SUSE-SU-2016:2942-1
SUSE-SU-2018:1765-2
SUSE-SU-2018:3230-1
SUSE-SU-2019:0390-1
SUSE-SU-2019:0719-1
SUSE-SU-2019:0878-1
SUSE-SU-2019:0897-1
SUSE-SU-2019:1935-1
SUSE-SU-2019:2345-2
SUSE-SU-2019:2875-1
SUSE-SU-2020:0054-1
SUSE-SU-2020:0790-1
SUSE-SU-2020:2856-1
Platform(s):openSUSE Leap 42.1
openSUSE Leap 42.2
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 Module for Public Cloud 12
SUSE Linux Enterprise Module for Toolchain 12
SUSE Linux Enterprise Module for Web Scripting 12
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-LTSS
SUSE Linux Enterprise Server 11 SP3-TERADATA
SUSE Linux Enterprise Server 11 SP4
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
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 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 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 SP2
SUSE Package Hub for SUSE Linux Enterprise 12 SP3
Product(s):
Definition Synopsis
  • openSUSE Leap 42.1 is installed
  • AND Package Information
  • chromedriver-51.0.2704.79-54.1 is installed
  • OR chromium-51.0.2704.79-54.1 is installed
  • OR chromium-desktop-gnome-51.0.2704.79-54.1 is installed
  • OR chromium-desktop-kde-51.0.2704.79-54.1 is installed
  • OR chromium-ffmpegsumo-51.0.2704.79-54.1 is installed
  • Definition Synopsis
  • openSUSE Leap 42.2 is installed
  • AND Package Information
  • plasma5-desktop-5.8.2-1.1 is installed
  • OR plasma5-desktop-lang-5.8.2-1.1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP2 is installed
  • AND Package Information
  • cups-1.3.9-8.46.48.1 is installed
  • OR cups-client-1.3.9-8.46.48.1 is installed
  • OR cups-libs-1.3.9-8.46.48.1 is installed
  • OR cups-libs-32bit-1.3.9-8.46.48.1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP3 is installed
  • AND Package Information
  • libldap-2_4-2-2.4.26-0.30 is installed
  • OR libldap-2_4-2-32bit-2.4.26-0.30 is installed
  • OR openldap2-client-2.4.26-0.30 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP4 is installed
  • AND Package Information
  • giflib-4.1.6-13 is installed
  • OR giflib-32bit-4.1.6-13 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 is installed
  • AND Package Information
  • tigervnc-1.3.0-22.3 is installed
  • OR xorg-x11-Xvnc-1.3.0-22.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP1 is installed
  • AND Package Information
  • pam-1.1.8-14 is installed
  • OR pam-32bit-1.1.8-14 is installed
  • OR pam-doc-1.1.8-14 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP2 is installed
  • AND autofs-5.0.9-21 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP3 is installed
  • AND Package Information
  • apparmor-docs-2.8.2-49.21 is installed
  • OR apparmor-parser-2.8.2-49.21 is installed
  • OR apparmor-profiles-2.8.2-49.21 is installed
  • OR apparmor-utils-2.8.2-49.21 is installed
  • OR libapparmor1-2.8.2-49.21 is installed
  • OR libapparmor1-32bit-2.8.2-49.21 is installed
  • OR pam_apparmor-2.8.2-49.21 is installed
  • OR pam_apparmor-32bit-2.8.2-49.21 is installed
  • OR perl-apparmor-2.8.2-49.21 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise High Availability Extension 11 SP3 is installed
  • AND libgnutls-extra26-2.4.1-24.39.51 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Public Cloud 12 is installed
  • AND python-requests-2.3.0-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Toolchain 12 is installed
  • AND Package Information
  • cpp5-5.3.1+r233831-9 is installed
  • OR gcc5-5.3.1+r233831-9 is installed
  • OR gcc5-c++-5.3.1+r233831-9 is installed
  • OR gcc5-fortran-5.3.1+r233831-9 is installed
  • OR gcc5-info-5.3.1+r233831-9 is installed
  • OR gcc5-locale-5.3.1+r233831-9 is installed
  • OR libffi-devel-gcc5-5.3.1+r233831-9 is installed
  • OR libstdc++6-devel-gcc5-5.3.1+r233831-9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Web Scripting 12 is installed
  • AND python3-3.4.1-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Point of Sale 11 SP3 is installed
  • AND Package Information
  • MozillaFirefox-45.8.0esr-68 is installed
  • OR MozillaFirefox-translations-45.8.0esr-68 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Real Time Extension 11 SP4 is installed
  • AND Package Information
  • kernel-rt-3.0.101.rt130-69.30 is installed
  • OR kernel-rt-base-3.0.101.rt130-69.30 is installed
  • OR kernel-rt-devel-3.0.101.rt130-69.30 is installed
  • OR kernel-rt_trace-3.0.101.rt130-69.30 is installed
  • OR kernel-rt_trace-base-3.0.101.rt130-69.30 is installed
  • OR kernel-rt_trace-devel-3.0.101.rt130-69.30 is installed
  • OR kernel-source-rt-3.0.101.rt130-69.30 is installed
  • OR kernel-syms-rt-3.0.101.rt130-69.30 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 is installed
  • AND
  • libapr-util1-1.3.4-12.19 is installed
  • OR libapr-util1-32bit-1.3.4-12.19 is installed
  • OR libapr1-1.3.3-11.16 is installed
  • OR libapr1-32bit-1.3.3-11.16 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 is installed
  • AND
  • libapr-util1-1.3.4-12.19 is installed
  • OR libapr-util1-32bit-1.3.4-12.19 is installed
  • OR libapr1-1.3.3-11.16 is installed
  • OR libapr1-32bit-1.3.3-11.16 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
  • dhcp-3.1.3.ESV-0.17 is installed
  • OR dhcp-client-3.1.3.ESV-0.17 is installed
  • OR dhcp-relay-3.1.3.ESV-0.17 is installed
  • OR dhcp-server-3.1.3.ESV-0.17 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • dhcp-3.1.3.ESV-0.17 is installed
  • OR dhcp-client-3.1.3.ESV-0.17 is installed
  • OR dhcp-relay-3.1.3.ESV-0.17 is installed
  • OR dhcp-server-3.1.3.ESV-0.17 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • dhcp-3.1.3.ESV-0.17 is installed
  • OR dhcp-client-3.1.3.ESV-0.17 is installed
  • OR dhcp-relay-3.1.3.ESV-0.17 is installed
  • OR dhcp-server-3.1.3.ESV-0.17 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND Package Information
  • fetchmail-6.3.8.90-13.16 is installed
  • OR fetchmailconf-6.3.8.90-13.16 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • xen-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-html-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-pdf-4.0.3_21548_16-0.5 is installed
  • OR xen-kmp-default-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-pae-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-trace-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-libs-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-domU-4.0.3_21548_16-0.5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • xen-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-html-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-pdf-4.0.3_21548_16-0.5 is installed
  • OR xen-kmp-default-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-pae-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-trace-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-libs-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-domU-4.0.3_21548_16-0.5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • xen-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-html-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-pdf-4.0.3_21548_16-0.5 is installed
  • OR xen-kmp-default-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-pae-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-trace-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-libs-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-domU-4.0.3_21548_16-0.5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • xen-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-html-4.0.3_21548_16-0.5 is installed
  • OR xen-doc-pdf-4.0.3_21548_16-0.5 is installed
  • OR xen-kmp-default-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-pae-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-kmp-trace-4.0.3_21548_16_2.6.32.59_0.9-0.5 is installed
  • OR xen-libs-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-4.0.3_21548_16-0.5 is installed
  • OR xen-tools-domU-4.0.3_21548_16-0.5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.78.5 is installed
  • OR libMagickCore1-6.4.3.6-7.78.5 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.78.5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • ImageMagick-6.4.3.6-7.78.5 is installed
  • OR libMagickCore1-6.4.3.6-7.78.5 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.78.5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • xorg-x11-libXfixes-7.4-1.16 is installed
  • OR xorg-x11-libXfixes-32bit-7.4-1.16 is installed
  • OR xorg-x11-libXfixes-x86-7.4-1.16 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • xorg-x11-libXfixes-7.4-1.16 is installed
  • OR xorg-x11-libXfixes-32bit-7.4-1.16 is installed
  • OR xorg-x11-libXfixes-x86-7.4-1.16 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • xorg-x11-libXfixes-7.4-1.16 is installed
  • OR xorg-x11-libXfixes-32bit-7.4-1.16 is installed
  • OR xorg-x11-libXfixes-x86-7.4-1.16 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND Package Information
  • NetworkManager-0.7.1_git20090811-3.20 is installed
  • OR NetworkManager-glib-0.7.1_git20090811-3.20 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND
  • xen-4.1.6_08-32 is installed
  • OR xen-devel-4.1.6_08-32 is installed
  • OR xen-doc-html-4.1.6_08-32 is installed
  • OR xen-doc-pdf-4.1.6_08-32 is installed
  • OR xen-kmp-default-4.1.6_08_3.0.101_0.7.44-32 is installed
  • OR xen-kmp-pae-4.1.6_08_3.0.101_0.7.44-32 is installed
  • OR xen-kmp-trace-4.1.6_08_3.0.101_0.7.44-32 is installed
  • OR xen-libs-4.1.6_08-32 is installed
  • OR xen-libs-32bit-4.1.6_08-32 is installed
  • OR xen-tools-4.1.6_08-32 is installed
  • OR xen-tools-domU-4.1.6_08-32 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND
  • xen-4.1.6_08-32 is installed
  • OR xen-devel-4.1.6_08-32 is installed
  • OR xen-doc-html-4.1.6_08-32 is installed
  • OR xen-doc-pdf-4.1.6_08-32 is installed
  • OR xen-kmp-default-4.1.6_08_3.0.101_0.7.44-32 is installed
  • OR xen-kmp-pae-4.1.6_08_3.0.101_0.7.44-32 is installed
  • OR xen-kmp-trace-4.1.6_08_3.0.101_0.7.44-32 is installed
  • OR xen-libs-4.1.6_08-32 is installed
  • OR xen-libs-32bit-4.1.6_08-32 is installed
  • OR xen-tools-4.1.6_08-32 is installed
  • OR xen-tools-domU-4.1.6_08-32 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • MozillaFirefox-17.0.7esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-7-0.12 is installed
  • OR MozillaFirefox-translations-17.0.7esr-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-17.0.7esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-7-0.12 is installed
  • OR MozillaFirefox-translations-17.0.7esr-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND
  • MozillaFirefox-17.0.7esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-7-0.12 is installed
  • OR MozillaFirefox-translations-17.0.7esr-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-17.0.7esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-7-0.12 is installed
  • OR MozillaFirefox-translations-17.0.7esr-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP3 is installed
  • AND
  • MozillaFirefox-17.0.7esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-7-0.12 is installed
  • OR MozillaFirefox-translations-17.0.7esr-0.8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND Package Information
  • evince-2.28.2-0.7 is installed
  • OR evince-doc-2.28.2-0.7 is installed
  • OR evince-lang-2.28.2-0.7 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND
  • MozillaFirefox-38.8.0esr-40 is installed
  • OR MozillaFirefox-translations-38.8.0esr-40 is installed
  • OR libfreebl3-3.20.2-30 is installed
  • OR libfreebl3-32bit-3.20.2-30 is installed
  • OR libsoftokn3-3.20.2-30 is installed
  • OR libsoftokn3-32bit-3.20.2-30 is installed
  • OR mozilla-nspr-4.12-26 is installed
  • OR mozilla-nspr-32bit-4.12-26 is installed
  • OR mozilla-nss-3.20.2-30 is installed
  • OR mozilla-nss-32bit-3.20.2-30 is installed
  • OR mozilla-nss-tools-3.20.2-30 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-38.8.0esr-40 is installed
  • OR MozillaFirefox-translations-38.8.0esr-40 is installed
  • OR libfreebl3-3.20.2-30 is installed
  • OR libfreebl3-32bit-3.20.2-30 is installed
  • OR libsoftokn3-3.20.2-30 is installed
  • OR libsoftokn3-32bit-3.20.2-30 is installed
  • OR mozilla-nspr-4.12-26 is installed
  • OR mozilla-nspr-32bit-4.12-26 is installed
  • OR mozilla-nss-3.20.2-30 is installed
  • OR mozilla-nss-32bit-3.20.2-30 is installed
  • OR mozilla-nss-tools-3.20.2-30 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS is installed
  • AND
  • MozillaFirefox-38.8.0esr-40 is installed
  • OR MozillaFirefox-translations-38.8.0esr-40 is installed
  • OR libfreebl3-3.20.2-30 is installed
  • OR libfreebl3-32bit-3.20.2-30 is installed
  • OR libsoftokn3-3.20.2-30 is installed
  • OR libsoftokn3-32bit-3.20.2-30 is installed
  • OR mozilla-nspr-4.12-26 is installed
  • OR mozilla-nspr-32bit-4.12-26 is installed
  • OR mozilla-nss-3.20.2-30 is installed
  • OR mozilla-nss-32bit-3.20.2-30 is installed
  • OR mozilla-nss-tools-3.20.2-30 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-38.8.0esr-40 is installed
  • OR MozillaFirefox-translations-38.8.0esr-40 is installed
  • OR libfreebl3-3.20.2-30 is installed
  • OR libfreebl3-32bit-3.20.2-30 is installed
  • OR libsoftokn3-3.20.2-30 is installed
  • OR libsoftokn3-32bit-3.20.2-30 is installed
  • OR mozilla-nspr-4.12-26 is installed
  • OR mozilla-nspr-32bit-4.12-26 is installed
  • OR mozilla-nss-3.20.2-30 is installed
  • OR mozilla-nss-32bit-3.20.2-30 is installed
  • OR mozilla-nss-tools-3.20.2-30 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND Package Information
  • MozillaFirefox-45.8.0esr-68.1 is installed
  • OR MozillaFirefox-translations-45.8.0esr-68.1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA 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 SP3-TERADATA 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 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 Package Information
  • kdenetwork4-filesharing-4.3.5-0.4 is installed
  • OR kget-4.3.5-0.4 is installed
  • OR kopete-4.3.5-0.4 is installed
  • OR krdc-4.3.5-0.4 is installed
  • OR krfb-4.3.5-0.4 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 is installed
  • AND
  • vorbis-tools-1.4.0-23 is installed
  • OR vorbis-tools-lang-1.4.0-23 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND
  • vorbis-tools-1.4.0-23 is installed
  • OR vorbis-tools-lang-1.4.0-23 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 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 SP1 is installed
  • AND
  • gdk-pixbuf-2.30.6-7 is installed
  • OR gdk-pixbuf-lang-2.30.6-7 is installed
  • OR gdk-pixbuf-query-loaders-2.30.6-7 is installed
  • OR gdk-pixbuf-query-loaders-32bit-2.30.6-7 is installed
  • OR libgdk_pixbuf-2_0-0-2.30.6-7 is installed
  • OR libgdk_pixbuf-2_0-0-32bit-2.30.6-7 is installed
  • OR typelib-1_0-GdkPixbuf-2_0-2.30.6-7 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND
  • gdk-pixbuf-2.30.6-7 is installed
  • OR gdk-pixbuf-lang-2.30.6-7 is installed
  • OR gdk-pixbuf-query-loaders-2.30.6-7 is installed
  • OR gdk-pixbuf-query-loaders-32bit-2.30.6-7 is installed
  • OR libgdk_pixbuf-2_0-0-2.30.6-7 is installed
  • OR libgdk_pixbuf-2_0-0-32bit-2.30.6-7 is installed
  • OR typelib-1_0-GdkPixbuf-2_0-2.30.6-7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND apache2-mod_perl-2.0.8-11 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND
  • python-cffi-1.11.2-2.19 is installed
  • OR python-cryptography-2.1.4-3.15 is installed
  • OR python-xattr-0.7.5-3.2 is installed
  • OR python3-cffi-1.11.2-2.19 is installed
  • OR python3-cryptography-2.1.4-3.15 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS is installed
  • AND
  • python-cffi-1.11.2-2.19 is installed
  • OR python-cryptography-2.1.4-3.15 is installed
  • OR python-xattr-0.7.5-3.2 is installed
  • OR python3-cffi-1.11.2-2.19 is installed
  • OR python3-cryptography-2.1.4-3.15 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND
  • gvim-7.4.326-7 is installed
  • OR vim-7.4.326-7 is installed
  • OR vim-data-7.4.326-7 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND
  • gvim-7.4.326-7 is installed
  • OR vim-7.4.326-7 is installed
  • OR vim-data-7.4.326-7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND Package Information
  • apache-commons-daemon-1.0.15-4 is installed
  • OR apache-commons-daemon-javadoc-1.0.15-4 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-BCL is installed
  • AND
  • ntp-4.2.8p11-64.5 is installed
  • OR ntp-doc-4.2.8p11-64.5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-BCL is installed
  • AND
  • ntp-4.2.8p11-64.5 is installed
  • OR ntp-doc-4.2.8p11-64.5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-ESPOS is installed
  • AND
  • qemu-2.6.2-41.43 is installed
  • OR qemu-block-curl-2.6.2-41.43 is installed
  • OR qemu-block-rbd-2.6.2-41.43 is installed
  • OR qemu-block-ssh-2.6.2-41.43 is installed
  • OR qemu-guest-agent-2.6.2-41.43 is installed
  • OR qemu-ipxe-1.0.0-41.43 is installed
  • OR qemu-kvm-2.6.2-41.43 is installed
  • OR qemu-lang-2.6.2-41.43 is installed
  • OR qemu-seabios-1.9.1-41.43 is installed
  • OR qemu-sgabios-8-41.43 is installed
  • OR qemu-tools-2.6.2-41.43 is installed
  • OR qemu-vgabios-1.9.1-41.43 is installed
  • OR qemu-x86-2.6.2-41.43 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-ESPOS is installed
  • AND
  • qemu-2.6.2-41.43 is installed
  • OR qemu-block-curl-2.6.2-41.43 is installed
  • OR qemu-block-rbd-2.6.2-41.43 is installed
  • OR qemu-block-ssh-2.6.2-41.43 is installed
  • OR qemu-guest-agent-2.6.2-41.43 is installed
  • OR qemu-ipxe-1.0.0-41.43 is installed
  • OR qemu-kvm-2.6.2-41.43 is installed
  • OR qemu-lang-2.6.2-41.43 is installed
  • OR qemu-seabios-1.9.1-41.43 is installed
  • OR qemu-sgabios-8-41.43 is installed
  • OR qemu-tools-2.6.2-41.43 is installed
  • OR qemu-vgabios-1.9.1-41.43 is installed
  • OR qemu-x86-2.6.2-41.43 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-LTSS is installed
  • AND
  • kgraft-patch-4_4_121-92_114-default-3-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_30-3-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-LTSS is installed
  • AND
  • kgraft-patch-4_4_121-92_114-default-3-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_30-3-2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND
  • git-2.12.3-27.5 is installed
  • OR git-core-2.12.3-27.5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3 is installed
  • AND
  • git-2.12.3-27.5 is installed
  • OR git-core-2.12.3-27.5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND Package Information
  • MozillaFirefox-52.2.0esr-108 is installed
  • OR MozillaFirefox-translations-52.2.0esr-108 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-BCL is installed
  • AND
  • ibus-1.5.13-15.11 is installed
  • OR ibus-gtk-1.5.13-15.11 is installed
  • OR ibus-gtk3-1.5.13-15.11 is installed
  • OR ibus-lang-1.5.13-15.11 is installed
  • OR libibus-1_0-5-1.5.13-15.11 is installed
  • OR typelib-1_0-IBus-1_0-1.5.13-15.11 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-BCL is installed
  • AND
  • ibus-1.5.13-15.11 is installed
  • OR ibus-gtk-1.5.13-15.11 is installed
  • OR ibus-gtk3-1.5.13-15.11 is installed
  • OR ibus-lang-1.5.13-15.11 is installed
  • OR libibus-1_0-5-1.5.13-15.11 is installed
  • OR typelib-1_0-IBus-1_0-1.5.13-15.11 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-ESPOS is installed
  • AND
  • kgraft-patch-4_4_162-94_69-default-7-2 is installed
  • OR kgraft-patch-SLE12-SP3_Update_21-7-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-ESPOS is installed
  • AND
  • kgraft-patch-4_4_162-94_69-default-7-2 is installed
  • OR kgraft-patch-SLE12-SP3_Update_21-7-2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-LTSS is installed
  • AND sudo-1.8.20p2-3.14 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-LTSS is installed
  • AND sudo-1.8.20p2-3.14 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND
  • res-signingkeys-3.0.38-52.26 is installed
  • OR smt-3.0.38-52.26 is installed
  • OR smt-support-3.0.38-52.26 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA is installed
  • AND
  • res-signingkeys-3.0.38-52.26 is installed
  • OR smt-3.0.38-52.26 is installed
  • OR smt-support-3.0.38-52.26 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND
  • libSoundTouch0-1.7.1-5.6 is installed
  • OR soundtouch-1.7.1-5.6 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4 is installed
  • AND
  • libSoundTouch0-1.7.1-5.6 is installed
  • OR soundtouch-1.7.1-5.6 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND Package Information
  • apache-commons-beanutils-1.9.2-1 is installed
  • OR apache-commons-beanutils-javadoc-1.9.2-1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP5 is installed
  • AND
  • cups-1.7.5-20.26 is installed
  • OR cups-client-1.7.5-20.26 is installed
  • OR cups-libs-1.7.5-20.26 is installed
  • OR cups-libs-32bit-1.7.5-20.26 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP5 is installed
  • AND
  • cups-1.7.5-20.26 is installed
  • OR cups-client-1.7.5-20.26 is installed
  • OR cups-libs-1.7.5-20.26 is installed
  • OR cups-libs-32bit-1.7.5-20.26 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12-LTSS is installed
  • AND
  • xen-4.4.4_04-22.22 is installed
  • OR xen-doc-html-4.4.4_04-22.22 is installed
  • OR xen-kmp-default-4.4.4_04_k3.12.60_52.54-22.22 is installed
  • OR xen-libs-4.4.4_04-22.22 is installed
  • OR xen-libs-32bit-4.4.4_04-22.22 is installed
  • OR xen-tools-4.4.4_04-22.22 is installed
  • OR xen-tools-domU-4.4.4_04-22.22 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12-LTSS is installed
  • AND
  • xen-4.4.4_04-22.22 is installed
  • OR xen-doc-html-4.4.4_04-22.22 is installed
  • OR xen-kmp-default-4.4.4_04_k3.12.60_52.54-22.22 is installed
  • OR xen-libs-4.4.4_04-22.22 is installed
  • OR xen-libs-32bit-4.4.4_04-22.22 is installed
  • OR xen-tools-4.4.4_04-22.22 is installed
  • OR xen-tools-domU-4.4.4_04-22.22 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for Raspberry Pi 12 SP2 is installed
  • AND Package Information
  • krb5-1.12.5-40.23 is installed
  • OR krb5-client-1.12.5-40.23 is installed
  • OR krb5-doc-1.12.5-40.23 is installed
  • OR krb5-plugin-kdb-ldap-1.12.5-40.23 is installed
  • OR krb5-plugin-preauth-otp-1.12.5-40.23 is installed
  • OR krb5-plugin-preauth-pkinit-1.12.5-40.23 is installed
  • OR krb5-server-1.12.5-40.23 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND Package Information
  • libmysqlclient-devel-10.0.28-20.16 is installed
  • OR libmysqlclient18-10.0.28-20.16 is installed
  • OR libmysqlclient18-32bit-10.0.28-20.16 is installed
  • OR libmysqlclient_r18-10.0.28-20.16 is installed
  • OR libmysqld-devel-10.0.28-20.16 is installed
  • OR libmysqld18-10.0.28-20.16 is installed
  • OR mariadb-10.0.28-20.16 is installed
  • OR mariadb-client-10.0.28-20.16 is installed
  • OR mariadb-errormessages-10.0.28-20.16 is installed
  • OR mariadb-tools-10.0.28-20.16 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND Package Information
  • kgraft-patch-3_12_62-60_64_8-default-9-3 is installed
  • OR kgraft-patch-3_12_62-60_64_8-xen-9-3 is installed
  • OR kgraft-patch-SLE12-SP1_Update_8-9-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND Package Information
  • kgraft-patch-4_4_121-92_73-default-2-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_21-2-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 is installed
  • AND Package Information
  • libreoffice-4.3.3.2-6 is installed
  • OR libreoffice-base-4.3.3.2-6 is installed
  • OR libreoffice-base-drivers-mysql-4.3.3.2-6 is installed
  • OR libreoffice-base-drivers-postgresql-4.3.3.2-6 is installed
  • OR libreoffice-calc-4.3.3.2-6 is installed
  • OR libreoffice-calc-extensions-4.3.3.2-6 is installed
  • OR libreoffice-draw-4.3.3.2-6 is installed
  • OR libreoffice-filters-optional-4.3.3.2-6 is installed
  • OR libreoffice-gnome-4.3.3.2-6 is installed
  • OR libreoffice-icon-theme-tango-4.3.3.2-6 is installed
  • OR libreoffice-impress-4.3.3.2-6 is installed
  • OR libreoffice-l10n-af-4.3.3.2-6 is installed
  • OR libreoffice-l10n-ar-4.3.3.2-6 is installed
  • OR libreoffice-l10n-ca-4.3.3.2-6 is installed
  • OR libreoffice-l10n-cs-4.3.3.2-6 is installed
  • OR libreoffice-l10n-da-4.3.3.2-6 is installed
  • OR libreoffice-l10n-de-4.3.3.2-6 is installed
  • OR libreoffice-l10n-en-4.3.3.2-6 is installed
  • OR libreoffice-l10n-es-4.3.3.2-6 is installed
  • OR libreoffice-l10n-fi-4.3.3.2-6 is installed
  • OR libreoffice-l10n-fr-4.3.3.2-6 is installed
  • OR libreoffice-l10n-gu-4.3.3.2-6 is installed
  • OR libreoffice-l10n-hi-4.3.3.2-6 is installed
  • OR libreoffice-l10n-hu-4.3.3.2-6 is installed
  • OR libreoffice-l10n-it-4.3.3.2-6 is installed
  • OR libreoffice-l10n-ja-4.3.3.2-6 is installed
  • OR libreoffice-l10n-ko-4.3.3.2-6 is installed
  • OR libreoffice-l10n-nb-4.3.3.2-6 is installed
  • OR libreoffice-l10n-nl-4.3.3.2-6 is installed
  • OR libreoffice-l10n-nn-4.3.3.2-6 is installed
  • OR libreoffice-l10n-pl-4.3.3.2-6 is installed
  • OR libreoffice-l10n-pt-BR-4.3.3.2-6 is installed
  • OR libreoffice-l10n-pt-PT-4.3.3.2-6 is installed
  • OR libreoffice-l10n-ru-4.3.3.2-6 is installed
  • OR libreoffice-l10n-sk-4.3.3.2-6 is installed
  • OR libreoffice-l10n-sv-4.3.3.2-6 is installed
  • OR libreoffice-l10n-xh-4.3.3.2-6 is installed
  • OR libreoffice-l10n-zh-Hans-4.3.3.2-6 is installed
  • OR libreoffice-l10n-zh-Hant-4.3.3.2-6 is installed
  • OR libreoffice-l10n-zu-4.3.3.2-6 is installed
  • OR libreoffice-mailmerge-4.3.3.2-6 is installed
  • OR libreoffice-math-4.3.3.2-6 is installed
  • OR libreoffice-officebean-4.3.3.2-6 is installed
  • OR libreoffice-pyuno-4.3.3.2-6 is installed
  • OR libreoffice-writer-4.3.3.2-6 is installed
  • OR libreoffice-writer-extensions-4.3.3.2-6 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP1 is installed
  • AND Package Information
  • flash-player-11.2.202.616-126 is installed
  • OR flash-player-gnome-11.2.202.616-126 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP2 is installed
  • AND Package Information
  • libcares2-1.9.1-8 is installed
  • OR libcares2-32bit-1.9.1-8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP3 is installed
  • AND Package Information
  • libixion-0.12.1-13.2 is installed
  • OR libixion-0_12-0-0.12.1-13.2 is installed
  • OR libmwaw-0.3.11-7.5 is installed
  • OR libmwaw-0_3-3-0.3.11-7.5 is installed
  • OR liborcus-0.12.1-10.5 is installed
  • OR liborcus-0_12-0-0.12.1-10.5 is installed
  • OR libreoffice-5.3.5.2-43.5 is installed
  • OR libreoffice-base-5.3.5.2-43.5 is installed
  • OR libreoffice-base-drivers-mysql-5.3.5.2-43.5 is installed
  • OR libreoffice-base-drivers-postgresql-5.3.5.2-43.5 is installed
  • OR libreoffice-calc-5.3.5.2-43.5 is installed
  • OR libreoffice-calc-extensions-5.3.5.2-43.5 is installed
  • OR libreoffice-draw-5.3.5.2-43.5 is installed
  • OR libreoffice-filters-optional-5.3.5.2-43.5 is installed
  • OR libreoffice-gnome-5.3.5.2-43.5 is installed
  • OR libreoffice-icon-theme-galaxy-5.3.5.2-43.5 is installed
  • OR libreoffice-icon-theme-tango-5.3.5.2-43.5 is installed
  • OR libreoffice-impress-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-af-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-ar-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-bg-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-ca-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-cs-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-da-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-de-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-en-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-es-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-fi-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-fr-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-gu-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-hi-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-hr-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-hu-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-it-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-ja-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-ko-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-lt-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-nb-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-nl-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-nn-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-pl-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-pt_BR-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-pt_PT-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-ro-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-ru-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-sk-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-sv-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-uk-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-xh-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-zh_CN-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-zh_TW-5.3.5.2-43.5 is installed
  • OR libreoffice-l10n-zu-5.3.5.2-43.5 is installed
  • OR libreoffice-mailmerge-5.3.5.2-43.5 is installed
  • OR libreoffice-math-5.3.5.2-43.5 is installed
  • OR libreoffice-officebean-5.3.5.2-43.5 is installed
  • OR libreoffice-pyuno-5.3.5.2-43.5 is installed
  • OR libreoffice-writer-5.3.5.2-43.5 is installed
  • OR libreoffice-writer-extensions-5.3.5.2-43.5 is installed
  • OR libreofficekit-5.3.5.2-43.5 is installed
  • OR libstaroffice-0.0.3-4 is installed
  • OR libstaroffice-0_0-0-0.0.3-4 is installed
  • OR libzmf-0.0.1-4 is installed
  • OR libzmf-0_0-0-0.0.1-4 is installed
  • OR myspell-af_NA-20170511-16.2 is installed
  • OR myspell-af_ZA-20170511-16.2 is installed
  • OR myspell-ar-20170511-16.2 is installed
  • OR myspell-ar_AE-20170511-16.2 is installed
  • OR myspell-ar_BH-20170511-16.2 is installed
  • OR myspell-ar_DZ-20170511-16.2 is installed
  • OR myspell-ar_EG-20170511-16.2 is installed
  • OR myspell-ar_IQ-20170511-16.2 is installed
  • OR myspell-ar_JO-20170511-16.2 is installed
  • OR myspell-ar_KW-20170511-16.2 is installed
  • OR myspell-ar_LB-20170511-16.2 is installed
  • OR myspell-ar_LY-20170511-16.2 is installed
  • OR myspell-ar_MA-20170511-16.2 is installed
  • OR myspell-ar_OM-20170511-16.2 is installed
  • OR myspell-ar_QA-20170511-16.2 is installed
  • OR myspell-ar_SA-20170511-16.2 is installed
  • OR myspell-ar_SD-20170511-16.2 is installed
  • OR myspell-ar_SY-20170511-16.2 is installed
  • OR myspell-ar_TN-20170511-16.2 is installed
  • OR myspell-ar_YE-20170511-16.2 is installed
  • OR myspell-be_BY-20170511-16.2 is installed
  • OR myspell-bg_BG-20170511-16.2 is installed
  • OR myspell-bn_BD-20170511-16.2 is installed
  • OR myspell-bn_IN-20170511-16.2 is installed
  • OR myspell-bs-20170511-16.2 is installed
  • OR myspell-bs_BA-20170511-16.2 is installed
  • OR myspell-ca-20170511-16.2 is installed
  • OR myspell-ca_AD-20170511-16.2 is installed
  • OR myspell-ca_ES-20170511-16.2 is installed
  • OR myspell-ca_ES_valencia-20170511-16.2 is installed
  • OR myspell-ca_FR-20170511-16.2 is installed
  • OR myspell-ca_IT-20170511-16.2 is installed
  • OR myspell-cs_CZ-20170511-16.2 is installed
  • OR myspell-da_DK-20170511-16.2 is installed
  • OR myspell-de-20170511-16.2 is installed
  • OR myspell-de_AT-20170511-16.2 is installed
  • OR myspell-de_CH-20170511-16.2 is installed
  • OR myspell-de_DE-20170511-16.2 is installed
  • OR myspell-dictionaries-20170511-16.2 is installed
  • OR myspell-el_GR-20170511-16.2 is installed
  • OR myspell-en-20170511-16.2 is installed
  • OR myspell-en_AU-20170511-16.2 is installed
  • OR myspell-en_BS-20170511-16.2 is installed
  • OR myspell-en_BZ-20170511-16.2 is installed
  • OR myspell-en_CA-20170511-16.2 is installed
  • OR myspell-en_GB-20170511-16.2 is installed
  • OR myspell-en_GH-20170511-16.2 is installed
  • OR myspell-en_IE-20170511-16.2 is installed
  • OR myspell-en_IN-20170511-16.2 is installed
  • OR myspell-en_JM-20170511-16.2 is installed
  • OR myspell-en_MW-20170511-16.2 is installed
  • OR myspell-en_NA-20170511-16.2 is installed
  • OR myspell-en_NZ-20170511-16.2 is installed
  • OR myspell-en_PH-20170511-16.2 is installed
  • OR myspell-en_TT-20170511-16.2 is installed
  • OR myspell-en_US-20170511-16.2 is installed
  • OR myspell-en_ZA-20170511-16.2 is installed
  • OR myspell-en_ZW-20170511-16.2 is installed
  • OR myspell-es-20170511-16.2 is installed
  • OR myspell-es_AR-20170511-16.2 is installed
  • OR myspell-es_BO-20170511-16.2 is installed
  • OR myspell-es_CL-20170511-16.2 is installed
  • OR myspell-es_CO-20170511-16.2 is installed
  • OR myspell-es_CR-20170511-16.2 is installed
  • OR myspell-es_CU-20170511-16.2 is installed
  • OR myspell-es_DO-20170511-16.2 is installed
  • OR myspell-es_EC-20170511-16.2 is installed
  • OR myspell-es_ES-20170511-16.2 is installed
  • OR myspell-es_GT-20170511-16.2 is installed
  • OR myspell-es_HN-20170511-16.2 is installed
  • OR myspell-es_MX-20170511-16.2 is installed
  • OR myspell-es_NI-20170511-16.2 is installed
  • OR myspell-es_PA-20170511-16.2 is installed
  • OR myspell-es_PE-20170511-16.2 is installed
  • OR myspell-es_PR-20170511-16.2 is installed
  • OR myspell-es_PY-20170511-16.2 is installed
  • OR myspell-es_SV-20170511-16.2 is installed
  • OR myspell-es_UY-20170511-16.2 is installed
  • OR myspell-es_VE-20170511-16.2 is installed
  • OR myspell-et_EE-20170511-16.2 is installed
  • OR myspell-fr_BE-20170511-16.2 is installed
  • OR myspell-fr_CA-20170511-16.2 is installed
  • OR myspell-fr_CH-20170511-16.2 is installed
  • OR myspell-fr_FR-20170511-16.2 is installed
  • OR myspell-fr_LU-20170511-16.2 is installed
  • OR myspell-fr_MC-20170511-16.2 is installed
  • OR myspell-gu_IN-20170511-16.2 is installed
  • OR myspell-he_IL-20170511-16.2 is installed
  • OR myspell-hi_IN-20170511-16.2 is installed
  • OR myspell-hr_HR-20170511-16.2 is installed
  • OR myspell-hu_HU-20170511-16.2 is installed
  • OR myspell-it_IT-20170511-16.2 is installed
  • OR myspell-lightproof-en-20170511-16.2 is installed
  • OR myspell-lightproof-hu_HU-20170511-16.2 is installed
  • OR myspell-lightproof-pt_BR-20170511-16.2 is installed
  • OR myspell-lightproof-ru_RU-20170511-16.2 is installed
  • OR myspell-lo_LA-20170511-16.2 is installed
  • OR myspell-lt_LT-20170511-16.2 is installed
  • OR myspell-lv_LV-20170511-16.2 is installed
  • OR myspell-nb_NO-20170511-16.2 is installed
  • OR myspell-nl_BE-20170511-16.2 is installed
  • OR myspell-nl_NL-20170511-16.2 is installed
  • OR myspell-nn_NO-20170511-16.2 is installed
  • OR myspell-no-20170511-16.2 is installed
  • OR myspell-pl_PL-20170511-16.2 is installed
  • OR myspell-pt_AO-20170511-16.2 is installed
  • OR myspell-pt_BR-20170511-16.2 is installed
  • OR myspell-pt_PT-20170511-16.2 is installed
  • OR myspell-ro-20170511-16.2 is installed
  • OR myspell-ro_RO-20170511-16.2 is installed
  • OR myspell-ru_RU-20170511-16.2 is installed
  • OR myspell-sk_SK-20170511-16.2 is installed
  • OR myspell-sl_SI-20170511-16.2 is installed
  • OR myspell-sr-20170511-16.2 is installed
  • OR myspell-sr_CS-20170511-16.2 is installed
  • OR myspell-sr_Latn_CS-20170511-16.2 is installed
  • OR myspell-sr_Latn_RS-20170511-16.2 is installed
  • OR myspell-sr_RS-20170511-16.2 is installed
  • OR myspell-sv_FI-20170511-16.2 is installed
  • OR myspell-sv_SE-20170511-16.2 is installed
  • OR myspell-te-20170511-16.2 is installed
  • OR myspell-te_IN-20170511-16.2 is installed
  • OR myspell-th_TH-20170511-16.2 is installed
  • OR myspell-uk_UA-20170511-16.2 is installed
  • OR myspell-vi-20170511-16.2 is installed
  • OR myspell-vi_VN-20170511-16.2 is installed
  • OR myspell-zu_ZA-20170511-16.2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP4 is installed
  • AND Package Information
  • bluez-5.13-5.7 is installed
  • OR bluez-cups-5.13-5.7 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 5 is installed
  • AND Package Information
  • openstack-nova-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-api-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-cells-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-cert-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-compute-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-conductor-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-console-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-consoleauth-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-doc-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-novncproxy-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-objectstore-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-scheduler-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-serialproxy-2014.2.4~a0~dev80-20.1 is installed
  • OR openstack-nova-vncproxy-2014.2.4~a0~dev80-20.1 is installed
  • OR python-nova-2014.2.4~a0~dev80-20.1 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 6 is installed
  • AND Package Information
  • openstack-heat-5.0.2~a0~dev9-1.4 is installed
  • OR openstack-heat-api-5.0.2~a0~dev9-1.4 is installed
  • OR openstack-heat-api-cfn-5.0.2~a0~dev9-1.4 is installed
  • OR openstack-heat-api-cloudwatch-5.0.2~a0~dev9-1.4 is installed
  • OR openstack-heat-engine-5.0.2~a0~dev9-1.4 is installed
  • OR openstack-heat-plugin-heat_docker-5.0.2~a0~dev9-1.4 is installed
  • OR python-heat-5.0.2~a0~dev9-1.4 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 is installed
  • AND Package Information
  • MozillaThunderbird-45.3.0-9 is installed
  • OR MozillaThunderbird-buildsymbols-45.3.0-9 is installed
  • OR MozillaThunderbird-devel-45.3.0-9 is installed
  • OR MozillaThunderbird-translations-common-45.3.0-9 is installed
  • OR MozillaThunderbird-translations-other-45.3.0-9 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP2 is installed
  • AND Package Information
  • chromedriver-59.0.3071.86-20 is installed
  • OR chromium-59.0.3071.86-20 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP3 is installed
  • AND Package Information
  • chromedriver-78.0.3904.108-16 is installed
  • OR chromium-78.0.3904.108-16 is installed
  • BACK