Oval Definition:oval:org.opensuse.security:def:41207
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):1000201
1005879
1008253
1015332
1015422
1016259
1018832
1020868
1020873
1020875
1020877
1020878
1020882
1020884
1020885
1020891
1020894
1020896
1022428
1022610
1027712
1029696
1031529
1032309
1035204
1038690
1039357
1042892
1045340
1046191
1052311
1052368
1055478
1070737
1076017
1083488
1085114
1085447
1101820
1103098
1111657
1124734
1128378
1133037
1138748
1141619
1149792
578053
966435
966436
968565
976944
981848
986359
987216
988489
999646
CVE-2007-4772
CVE-2016-0766
CVE-2016-0773
CVE-2016-2523
CVE-2016-2530
CVE-2016-2531
CVE-2016-2532
CVE-2016-3092
CVE-2016-5388
CVE-2016-6664
CVE-2016-7444
CVE-2016-8610
CVE-2016-9586
CVE-2016-9893
CVE-2016-9895
CVE-2016-9897
CVE-2016-9898
CVE-2016-9899
CVE-2016-9900
CVE-2016-9901
CVE-2016-9902
CVE-2016-9904
CVE-2016-9905
CVE-2017-1000112
CVE-2017-1000364
CVE-2017-1000366
CVE-2017-13166
CVE-2017-3238
CVE-2017-3243
CVE-2017-3244
CVE-2017-3257
CVE-2017-3258
CVE-2017-3265
CVE-2017-3291
CVE-2017-3312
CVE-2017-3317
CVE-2017-3318
CVE-2017-5335
CVE-2017-5336
CVE-2017-5337
CVE-2017-5436
CVE-2017-6507
CVE-2017-7407
CVE-2017-7645
CVE-2017-9242
CVE-2018-1000004
CVE-2018-1068
CVE-2018-10903
CVE-2018-5391
CVE-2018-7566
CVE-2019-1010006
CVE-2019-11459
CVE-2019-7221
CVE-2019-9213
SUSE-SU-2016:0555-1
SUSE-SU-2016:1344-1
SUSE-SU-2016:2188-1
SUSE-SU-2016:3222-1
SUSE-SU-2017:0348-1
SUSE-SU-2017:0411-1
SUSE-SU-2017:1042-1
SUSE-SU-2017:1149-1
SUSE-SU-2017:1151-1
SUSE-SU-2017:1611-1
SUSE-SU-2017:1735-1
SUSE-SU-2017:2497-1
SUSE-SU-2018:0996-1
SUSE-SU-2019:2080-1
SUSE-SU-2020:0792-1
Platform(s):openSUSE Leap 42.3
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 Desktop 12 SP4
SUSE Linux Enterprise Module for Basesystem 15
SUSE Linux Enterprise Module for Basesystem 15 SP1
SUSE Linux Enterprise Module for Desktop Applications 15
SUSE Linux Enterprise Module for Desktop Applications 15 SP1
SUSE Linux Enterprise Module for Development Tools 15
SUSE Linux Enterprise Module for Development Tools 15 SP1
SUSE Linux Enterprise Module for Open Buildservice Development Tools 15
SUSE Linux Enterprise Module for Server Applications 15
SUSE Linux Enterprise Module for Server Applications 15 SP1
SUSE Linux Enterprise Server 11 SP3
SUSE Linux Enterprise Server 11 SP3-LTSS
SUSE Linux Enterprise Server 11 SP3-TERADATA
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 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 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 Linux Enterprise Workstation Extension 15 SP1
SUSE OpenStack Cloud 5
SUSE OpenStack Cloud 6
SUSE OpenStack Cloud 8
SUSE OpenStack Cloud Crowbar 8
Product(s):
Definition Synopsis
  • openSUSE Leap 42.3 is installed
  • AND Package Information
  • gvim-7.4.326-12 is installed
  • OR vim-7.4.326-12 is installed
  • OR vim-data-7.4.326-12 is installed
  • Definition Synopsis
  • SUSE Cloud Compute Node for SUSE Linux Enterprise 12 5 is installed
  • AND python-Jinja2-2.7.3-4 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP2 is installed
  • AND Package Information
  • libfreebl3-3.15.3-0.3 is installed
  • OR libfreebl3-32bit-3.15.3-0.3 is installed
  • OR mozilla-nspr-4.10.2-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.2-0.3 is installed
  • OR mozilla-nss-3.15.3-0.3 is installed
  • OR mozilla-nss-32bit-3.15.3-0.3 is installed
  • OR mozilla-nss-tools-3.15.3-0.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP3 is installed
  • AND Package Information
  • MozillaFirefox-24.6.0esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-24-0.7 is installed
  • OR MozillaFirefox-translations-24.6.0esr-0.8 is installed
  • OR libfreebl3-3.16.1-0.8 is installed
  • OR libfreebl3-32bit-3.16.1-0.8 is installed
  • OR libsoftokn3-3.16.1-0.8 is installed
  • OR libsoftokn3-32bit-3.16.1-0.8 is installed
  • OR mozilla-nspr-4.10.6-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.6-0.3 is installed
  • OR mozilla-nss-3.16.1-0.8 is installed
  • OR mozilla-nss-32bit-3.16.1-0.8 is installed
  • OR mozilla-nss-tools-3.16.1-0.8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP4 is installed
  • AND Package Information
  • libmysql55client18-5.5.45-0.11 is installed
  • OR libmysql55client18-32bit-5.5.45-0.11 is installed
  • OR libmysql55client_r18-5.5.45-0.11 is installed
  • OR libmysql55client_r18-32bit-5.5.45-0.11 is installed
  • OR mysql-5.5.45-0.11 is installed
  • OR mysql-client-5.5.45-0.11 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 is installed
  • AND Package Information
  • cups-1.7.5-5 is installed
  • OR cups-client-1.7.5-5 is installed
  • OR cups-libs-1.7.5-5 is installed
  • OR cups-libs-32bit-1.7.5-5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP1 is installed
  • AND Package Information
  • MozillaFirefox-45.4.0esr-81 is installed
  • OR MozillaFirefox-translations-45.4.0esr-81 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP2 is installed
  • AND openvpn-2.3.8-16.17 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP3 is installed
  • AND Package Information
  • evince-3.20.2-6.19 is installed
  • OR evince-browser-plugin-3.20.2-6.19 is installed
  • OR evince-lang-3.20.2-6.19 is installed
  • OR evince-plugin-djvudocument-3.20.2-6.19 is installed
  • OR evince-plugin-dvidocument-3.20.2-6.19 is installed
  • OR evince-plugin-pdfdocument-3.20.2-6.19 is installed
  • OR evince-plugin-psdocument-3.20.2-6.19 is installed
  • OR evince-plugin-tiffdocument-3.20.2-6.19 is installed
  • OR evince-plugin-xpsdocument-3.20.2-6.19 is installed
  • OR libevdocument3-4-3.20.2-6.19 is installed
  • OR libevview3-3-3.20.2-6.19 is installed
  • OR nautilus-evince-3.20.2-6.19 is installed
  • OR typelib-1_0-EvinceDocument-3_0-3.20.2-6.19 is installed
  • OR typelib-1_0-EvinceView-3_0-3.20.2-6.19 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP4 is installed
  • AND spice-vdagent-0.16.0-8.5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Basesystem 15 is installed
  • AND Package Information
  • libgcrypt-devel-1.8.2-4 is installed
  • OR libgcrypt20-1.8.2-4 is installed
  • OR libgcrypt20-32bit-1.8.2-4 is installed
  • OR libgcrypt20-hmac-1.8.2-4 is installed
  • OR libgcrypt20-hmac-32bit-1.8.2-4 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Basesystem 15 SP1 is installed
  • AND autofs-5.1.3-7.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Desktop Applications 15 is installed
  • AND Package Information
  • gd-2.2.5-2 is installed
  • OR gd-devel-2.2.5-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Desktop Applications 15 SP1 is installed
  • AND Package Information
  • libkpathsea6-6.2.3-11.8 is installed
  • OR libptexenc1-1.3.5-11.8 is installed
  • OR libsynctex1-1.18-11.8 is installed
  • OR libtexlua52-5-5.2.4-11.8 is installed
  • OR libtexluajit2-2.1.0beta2-11.8 is installed
  • OR perl-biber-2017.20170520.svn30357-11.8 is installed
  • OR texlive-2017.20170520-11.8 is installed
  • OR texlive-a2ping-bin-2017.20170520.svn27321-11.8 is installed
  • OR texlive-accfonts-bin-2017.20170520.svn12688-11.8 is installed
  • OR texlive-adhocfilelist-bin-2017.20170520.svn28038-11.8 is installed
  • OR texlive-afm2pl-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-aleph-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-amstex-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-arara-bin-2017.20170520.svn29036-11.8 is installed
  • OR texlive-asymptote-bin-2017.20170520.svn43843-11.8 is installed
  • OR texlive-authorindex-bin-2017.20170520.svn18790-11.8 is installed
  • OR texlive-autosp-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-biber-bin-2017.20170520.svn42679-11.8 is installed
  • OR texlive-bibexport-bin-2017.20170520.svn16219-11.8 is installed
  • OR texlive-bibtex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-bibtex8-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-bibtexu-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-bin-devel-2017.20170520-11.8 is installed
  • OR texlive-bundledoc-bin-2017.20170520.svn17794-11.8 is installed
  • OR texlive-cachepic-bin-2017.20170520.svn15543-11.8 is installed
  • OR texlive-checkcites-bin-2017.20170520.svn25623-11.8 is installed
  • OR texlive-checklistings-bin-2017.20170520.svn38300-11.8 is installed
  • OR texlive-chktex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-cjk-gs-integrate-bin-2017.20170520.svn37223-11.8 is installed
  • OR texlive-cjkutils-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-context-bin-2017.20170520.svn34112-11.8 is installed
  • OR texlive-convbkmk-bin-2017.20170520.svn30408-11.8 is installed
  • OR texlive-crossrefware-bin-2017.20170520.svn43866-11.8 is installed
  • OR texlive-cslatex-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-csplain-bin-2017.20170520.svn33902-11.8 is installed
  • OR texlive-ctanify-bin-2017.20170520.svn24061-11.8 is installed
  • OR texlive-ctanupload-bin-2017.20170520.svn23866-11.8 is installed
  • OR texlive-ctie-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-cweb-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-cyrillic-bin-bin-2017.20170520.svn29741-11.8 is installed
  • OR texlive-de-macro-bin-2017.20170520.svn17399-11.8 is installed
  • OR texlive-detex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-diadia-bin-2017.20170520.svn37645-11.8 is installed
  • OR texlive-dosepsbin-bin-2017.20170520.svn24759-11.8 is installed
  • OR texlive-dtl-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-dtxgen-bin-2017.20170520.svn29031-11.8 is installed
  • OR texlive-dviasm-bin-2017.20170520.svn8329-11.8 is installed
  • OR texlive-dvicopy-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-dvidvi-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-dviinfox-bin-2017.20170520.svn44515-11.8 is installed
  • OR texlive-dviljk-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-dvipdfmx-bin-2017.20170520.svn40273-11.8 is installed
  • OR texlive-dvipng-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-dvipos-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-dvips-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-dvisvgm-bin-2017.20170520.svn40987-11.8 is installed
  • OR texlive-ebong-bin-2017.20170520.svn21000-11.8 is installed
  • OR texlive-eplain-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-epspdf-bin-2017.20170520.svn29050-11.8 is installed
  • OR texlive-epstopdf-bin-2017.20170520.svn18336-11.8 is installed
  • OR texlive-exceltex-bin-2017.20170520.svn25860-11.8 is installed
  • OR texlive-fig4latex-bin-2017.20170520.svn14752-11.8 is installed
  • OR texlive-findhyph-bin-2017.20170520.svn14758-11.8 is installed
  • OR texlive-fontinst-bin-2017.20170520.svn29741-11.8 is installed
  • OR texlive-fontools-bin-2017.20170520.svn25997-11.8 is installed
  • OR texlive-fontware-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-fragmaster-bin-2017.20170520.svn13663-11.8 is installed
  • OR texlive-getmap-bin-2017.20170520.svn34971-11.8 is installed
  • OR texlive-glossaries-bin-2017.20170520.svn37813-11.8 is installed
  • OR texlive-gregoriotex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-gsftopk-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-jadetex-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-kotex-utils-bin-2017.20170520.svn32101-11.8 is installed
  • OR texlive-kpathsea-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-kpathsea-devel-6.2.3-11.8 is installed
  • OR texlive-lacheck-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-latex-bin-bin-2017.20170520.svn14050-11.8 is installed
  • OR texlive-latex-git-log-bin-2017.20170520.svn30983-11.8 is installed
  • OR texlive-latex-papersize-bin-2017.20170520.svn42296-11.8 is installed
  • OR texlive-latex2man-bin-2017.20170520.svn13663-11.8 is installed
  • OR texlive-latex2nemeth-bin-2017.20170520.svn42300-11.8 is installed
  • OR texlive-latexdiff-bin-2017.20170520.svn16420-11.8 is installed
  • OR texlive-latexfileversion-bin-2017.20170520.svn25012-11.8 is installed
  • OR texlive-latexindent-bin-2017.20170520.svn32150-11.8 is installed
  • OR texlive-latexmk-bin-2017.20170520.svn10937-11.8 is installed
  • OR texlive-latexpand-bin-2017.20170520.svn27025-11.8 is installed
  • OR texlive-lcdftypetools-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-lilyglyphs-bin-2017.20170520.svn31696-11.8 is installed
  • OR texlive-listbib-bin-2017.20170520.svn26126-11.8 is installed
  • OR texlive-listings-ext-bin-2017.20170520.svn15093-11.8 is installed
  • OR texlive-lollipop-bin-2017.20170520.svn41465-11.8 is installed
  • OR texlive-ltxfileinfo-bin-2017.20170520.svn29005-11.8 is installed
  • OR texlive-ltximg-bin-2017.20170520.svn32346-11.8 is installed
  • OR texlive-lua2dox-bin-2017.20170520.svn29053-11.8 is installed
  • OR texlive-luaotfload-bin-2017.20170520.svn34647-11.8 is installed
  • OR texlive-luatex-bin-2017.20170520.svn44549-11.8 is installed
  • OR texlive-lwarp-bin-2017.20170520.svn43292-11.8 is installed
  • OR texlive-m-tx-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-make4ht-bin-2017.20170520.svn37750-11.8 is installed
  • OR texlive-makedtx-bin-2017.20170520.svn38769-11.8 is installed
  • OR texlive-makeindex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-match_parens-bin-2017.20170520.svn23500-11.8 is installed
  • OR texlive-mathspic-bin-2017.20170520.svn23661-11.8 is installed
  • OR texlive-metafont-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-metapost-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-mex-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-mf2pt1-bin-2017.20170520.svn23406-11.8 is installed
  • OR texlive-mflua-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-mfware-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-mkgrkindex-bin-2017.20170520.svn14428-11.8 is installed
  • OR texlive-mkjobtexmf-bin-2017.20170520.svn8457-11.8 is installed
  • OR texlive-mkpic-bin-2017.20170520.svn33688-11.8 is installed
  • OR texlive-mltex-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-mptopdf-bin-2017.20170520.svn18674-11.8 is installed
  • OR texlive-multibibliography-bin-2017.20170520.svn30534-11.8 is installed
  • OR texlive-musixtex-bin-2017.20170520.svn37026-11.8 is installed
  • OR texlive-musixtnt-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-omegaware-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-patgen-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-pax-bin-2017.20170520.svn10843-11.8 is installed
  • OR texlive-pdfbook2-bin-2017.20170520.svn37537-11.8 is installed
  • OR texlive-pdfcrop-bin-2017.20170520.svn14387-11.8 is installed
  • OR texlive-pdfjam-bin-2017.20170520.svn17868-11.8 is installed
  • OR texlive-pdflatexpicscale-bin-2017.20170520.svn41779-11.8 is installed
  • OR texlive-pdftex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-pdftools-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-pdfxup-bin-2017.20170520.svn40690-11.8 is installed
  • OR texlive-pedigree-perl-bin-2017.20170520.svn25962-11.8 is installed
  • OR texlive-perltex-bin-2017.20170520.svn16181-11.8 is installed
  • OR texlive-petri-nets-bin-2017.20170520.svn39165-11.8 is installed
  • OR texlive-pfarrei-bin-2017.20170520.svn29348-11.8 is installed
  • OR texlive-pkfix-bin-2017.20170520.svn13364-11.8 is installed
  • OR texlive-pkfix-helper-bin-2017.20170520.svn13663-11.8 is installed
  • OR texlive-platex-bin-2017.20170520.svn22859-11.8 is installed
  • OR texlive-pmx-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-pmxchords-bin-2017.20170520.svn32405-11.8 is installed
  • OR texlive-ps2pk-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-pst-pdf-bin-2017.20170520.svn7838-11.8 is installed
  • OR texlive-pst2pdf-bin-2017.20170520.svn29333-11.8 is installed
  • OR texlive-pstools-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-ptex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-ptex-fontmaps-bin-2017.20170520.svn44206-11.8 is installed
  • OR texlive-ptex2pdf-bin-2017.20170520.svn29335-11.8 is installed
  • OR texlive-ptexenc-devel-1.3.5-11.8 is installed
  • OR texlive-purifyeps-bin-2017.20170520.svn13663-11.8 is installed
  • OR texlive-pygmentex-bin-2017.20170520.svn34996-11.8 is installed
  • OR texlive-pythontex-bin-2017.20170520.svn31638-11.8 is installed
  • OR texlive-rubik-bin-2017.20170520.svn32919-11.8 is installed
  • OR texlive-seetexk-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-splitindex-bin-2017.20170520.svn29688-11.8 is installed
  • OR texlive-srcredact-bin-2017.20170520.svn38710-11.8 is installed
  • OR texlive-sty2dtx-bin-2017.20170520.svn21215-11.8 is installed
  • OR texlive-svn-multi-bin-2017.20170520.svn13663-11.8 is installed
  • OR texlive-synctex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-synctex-devel-1.18-11.8 is installed
  • OR texlive-tetex-bin-2017.20170520.svn43957-11.8 is installed
  • OR texlive-tex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-tex4ebook-bin-2017.20170520.svn37771-11.8 is installed
  • OR texlive-tex4ht-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-texconfig-bin-2017.20170520.svn29741-11.8 is installed
  • OR texlive-texcount-bin-2017.20170520.svn13013-11.8 is installed
  • OR texlive-texdef-bin-2017.20170520.svn21802-11.8 is installed
  • OR texlive-texdiff-bin-2017.20170520.svn15506-11.8 is installed
  • OR texlive-texdirflatten-bin-2017.20170520.svn12782-11.8 is installed
  • OR texlive-texdoc-bin-2017.20170520.svn29741-11.8 is installed
  • OR texlive-texfot-bin-2017.20170520.svn33155-11.8 is installed
  • OR texlive-texliveonfly-bin-2017.20170520.svn24062-11.8 is installed
  • OR texlive-texloganalyser-bin-2017.20170520.svn13663-11.8 is installed
  • OR texlive-texlua-devel-5.2.4-11.8 is installed
  • OR texlive-texluajit-devel-2.1.0beta2-11.8 is installed
  • OR texlive-texosquery-bin-2017.20170520.svn43596-11.8 is installed
  • OR texlive-texsis-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-texware-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-thumbpdf-bin-2017.20170520.svn6898-11.8 is installed
  • OR texlive-tie-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-tpic2pdftex-bin-2017.20170520.svn29741-11.8 is installed
  • OR texlive-ttfutils-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-typeoutfileinfo-bin-2017.20170520.svn25648-11.8 is installed
  • OR texlive-ulqda-bin-2017.20170520.svn13663-11.8 is installed
  • OR texlive-uplatex-bin-2017.20170520.svn26326-11.8 is installed
  • OR texlive-uptex-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-urlbst-bin-2017.20170520.svn23262-11.8 is installed
  • OR texlive-velthuis-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-vlna-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-vpe-bin-2017.20170520.svn6897-11.8 is installed
  • OR texlive-web-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-xdvi-bin-2017.20170520.svn44143-11.8 is installed
  • OR texlive-xetex-bin-2017.20170520.svn44361-11.8 is installed
  • OR texlive-xmltex-bin-2017.20170520.svn3006-11.8 is installed
  • OR texlive-yplan-bin-2017.20170520.svn34398-11.8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Development Tools 15 is installed
  • AND Package Information
  • ant-1.9.10-3.3 is installed
  • OR ant-antlr-1.9.10-3.3 is installed
  • OR ant-apache-bcel-1.9.10-3.3 is installed
  • OR ant-apache-bsf-1.9.10-3.3 is installed
  • OR ant-apache-log4j-1.9.10-3.3 is installed
  • OR ant-apache-oro-1.9.10-3.3 is installed
  • OR ant-apache-regexp-1.9.10-3.3 is installed
  • OR ant-apache-resolver-1.9.10-3.3 is installed
  • OR ant-commons-logging-1.9.10-3.3 is installed
  • OR ant-javamail-1.9.10-3.3 is installed
  • OR ant-jdepend-1.9.10-3.3 is installed
  • OR ant-jmf-1.9.10-3.3 is installed
  • OR ant-junit-1.9.10-3.3 is installed
  • OR ant-manual-1.9.10-3.3 is installed
  • OR ant-scripts-1.9.10-3.3 is installed
  • OR ant-swing-1.9.10-3.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Development Tools 15 SP1 is installed
  • AND libtool-32bit-2.4.6-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Open Buildservice Development Tools 15 is installed
  • AND Package Information
  • libopenssl1_0_0-hmac-1.0.2p-3.22 is installed
  • OR libopenssl1_0_0-steam-1.0.2p-3.22 is installed
  • OR openssl-1_0_0-1.0.2p-3.22 is installed
  • OR openssl-1_0_0-cavs-1.0.2p-3.22 is installed
  • OR openssl-1_0_0-doc-1.0.2p-3.22 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Server Applications 15 is installed
  • AND Package Information
  • xen-4.10.1_04-1 is installed
  • OR xen-devel-4.10.1_04-1 is installed
  • OR xen-tools-4.10.1_04-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Server Applications 15 SP1 is installed
  • AND Package Information
  • libshibsp-lite7-2.6.1-1 is installed
  • OR libshibsp7-2.6.1-1 is installed
  • OR shibboleth-sp-2.6.1-1 is installed
  • OR shibboleth-sp-devel-2.6.1-1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • augeas-0.9.0-3.15 is installed
  • OR augeas-lenses-0.9.0-3.15 is installed
  • OR libaugeas0-0.9.0-3.15 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • augeas-0.9.0-3.15 is installed
  • OR augeas-lenses-0.9.0-3.15 is installed
  • OR libaugeas0-0.9.0-3.15 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-52.2.0esr-72.5 is installed
  • OR MozillaFirefox-branding-SLED-52-24.3 is installed
  • OR MozillaFirefox-translations-52.2.0esr-72.5 is installed
  • OR firefox-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi4-5.3.1+r233831-7 is installed
  • OR firefox-libstdc++6-5.3.1+r233831-7 is installed
  • OR libfreebl3-3.29.5-47.3 is installed
  • OR libfreebl3-32bit-3.29.5-47.3 is installed
  • OR libsoftokn3-3.29.5-47.3 is installed
  • OR libsoftokn3-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-3.29.5-47.3 is installed
  • OR mozilla-nss-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-tools-3.29.5-47.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-52.2.0esr-72.5 is installed
  • OR MozillaFirefox-branding-SLED-52-24.3 is installed
  • OR MozillaFirefox-translations-52.2.0esr-72.5 is installed
  • OR firefox-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi4-5.3.1+r233831-7 is installed
  • OR firefox-libstdc++6-5.3.1+r233831-7 is installed
  • OR libfreebl3-3.29.5-47.3 is installed
  • OR libfreebl3-32bit-3.29.5-47.3 is installed
  • OR libsoftokn3-3.29.5-47.3 is installed
  • OR libsoftokn3-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-3.29.5-47.3 is installed
  • OR mozilla-nss-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-tools-3.29.5-47.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND Package Information
  • kernel-bigsmp-3.0.101-0.47.90 is installed
  • OR kernel-bigsmp-base-3.0.101-0.47.90 is installed
  • OR kernel-bigsmp-devel-3.0.101-0.47.90 is installed
  • OR kernel-default-3.0.101-0.47.90 is installed
  • OR kernel-default-base-3.0.101-0.47.90 is installed
  • OR kernel-default-devel-3.0.101-0.47.90 is installed
  • OR kernel-default-man-3.0.101-0.47.90 is installed
  • OR kernel-ec2-3.0.101-0.47.90 is installed
  • OR kernel-ec2-base-3.0.101-0.47.90 is installed
  • OR kernel-ec2-devel-3.0.101-0.47.90 is installed
  • OR kernel-pae-3.0.101-0.47.90 is installed
  • OR kernel-pae-base-3.0.101-0.47.90 is installed
  • OR kernel-pae-devel-3.0.101-0.47.90 is installed
  • OR kernel-source-3.0.101-0.47.90 is installed
  • OR kernel-syms-3.0.101-0.47.90 is installed
  • OR kernel-trace-3.0.101-0.47.90 is installed
  • OR kernel-trace-base-3.0.101-0.47.90 is installed
  • OR kernel-trace-devel-3.0.101-0.47.90 is installed
  • OR kernel-xen-3.0.101-0.47.90 is installed
  • OR kernel-xen-base-3.0.101-0.47.90 is installed
  • OR kernel-xen-devel-3.0.101-0.47.90 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND Package Information
  • 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 12 is installed
  • AND wireshark-1.12.11-25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND wireshark-1.12.11-25 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 is installed
  • AND Package Information
  • gnome-keyring-3.10.1-4 is installed
  • OR gnome-keyring-32bit-3.10.1-4 is installed
  • OR gnome-keyring-lang-3.10.1-4 is installed
  • OR gnome-keyring-pam-3.10.1-4 is installed
  • OR gnome-keyring-pam-32bit-3.10.1-4 is installed
  • OR libgck-modules-gnome-keyring-3.10.1-4 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND
  • tomcat-8.0.32-8 is installed
  • OR tomcat-admin-webapps-8.0.32-8 is installed
  • OR tomcat-docs-webapp-8.0.32-8 is installed
  • OR tomcat-el-3_0-api-8.0.32-8 is installed
  • OR tomcat-javadoc-8.0.32-8 is installed
  • OR tomcat-jsp-2_3-api-8.0.32-8 is installed
  • OR tomcat-lib-8.0.32-8 is installed
  • OR tomcat-servlet-3_1-api-8.0.32-8 is installed
  • OR tomcat-webapps-8.0.32-8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND
  • tomcat-8.0.32-8 is installed
  • OR tomcat-admin-webapps-8.0.32-8 is installed
  • OR tomcat-docs-webapp-8.0.32-8 is installed
  • OR tomcat-el-3_0-api-8.0.32-8 is installed
  • OR tomcat-javadoc-8.0.32-8 is installed
  • OR tomcat-jsp-2_3-api-8.0.32-8 is installed
  • OR tomcat-lib-8.0.32-8 is installed
  • OR tomcat-servlet-3_1-api-8.0.32-8 is installed
  • OR tomcat-webapps-8.0.32-8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND Package Information
  • libX11-6-1.6.2-4 is installed
  • OR libX11-6-32bit-1.6.2-4 is installed
  • OR libX11-data-1.6.2-4 is installed
  • OR libX11-xcb1-1.6.2-4 is installed
  • OR libX11-xcb1-32bit-1.6.2-4 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND
  • kgraft-patch-3_12_74-60_64_57-default-6-2 is installed
  • OR kgraft-patch-3_12_74-60_64_57-xen-6-2 is installed
  • OR kgraft-patch-SLE12-SP1_Update_20-6-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS is installed
  • AND
  • kgraft-patch-3_12_74-60_64_57-default-6-2 is installed
  • OR kgraft-patch-3_12_74-60_64_57-xen-6-2 is installed
  • OR kgraft-patch-SLE12-SP1_Update_20-6-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND Package Information
  • xen-4.5.5_24-22.49 is installed
  • OR xen-doc-html-4.5.5_24-22.49 is installed
  • OR xen-kmp-default-4.5.5_24_k3.12.74_60.64.93-22.49 is installed
  • OR xen-libs-4.5.5_24-22.49 is installed
  • OR xen-libs-32bit-4.5.5_24-22.49 is installed
  • OR xen-tools-4.5.5_24-22.49 is installed
  • OR xen-tools-domU-4.5.5_24-22.49 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND libtcnative-1-0-1.1.34-12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND libtcnative-1-0-1.1.34-12 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND apache2-mod_jk-1.2.40-5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-BCL is installed
  • AND
  • MozillaFirefox-68.2.0-109.95 is installed
  • OR MozillaFirefox-devel-68.2.0-109.95 is installed
  • OR MozillaFirefox-translations-common-68.2.0-109.95 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-BCL is installed
  • AND
  • MozillaFirefox-68.2.0-109.95 is installed
  • OR MozillaFirefox-devel-68.2.0-109.95 is installed
  • OR MozillaFirefox-translations-common-68.2.0-109.95 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-ESPOS is installed
  • AND
  • java-1_7_1-ibm-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-alsa-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-devel-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-jdbc-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-plugin-1.7.1_sr4.25-38.23 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-ESPOS is installed
  • AND
  • java-1_7_1-ibm-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-alsa-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-devel-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-jdbc-1.7.1_sr4.25-38.23 is installed
  • OR java-1_7_1-ibm-plugin-1.7.1_sr4.25-38.23 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-LTSS is installed
  • AND
  • gpg2-2.0.24-9.3 is installed
  • OR gpg2-lang-2.0.24-9.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-LTSS is installed
  • AND
  • gpg2-2.0.24-9.3 is installed
  • OR gpg2-lang-2.0.24-9.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND
  • libfpm_pb0-1.1.1-17.3 is installed
  • OR libospf0-1.1.1-17.3 is installed
  • OR libospfapiclient0-1.1.1-17.3 is installed
  • OR libquagga_pb0-1.1.1-17.3 is installed
  • OR libzebra1-1.1.1-17.3 is installed
  • OR quagga-1.1.1-17.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3 is installed
  • AND
  • libfpm_pb0-1.1.1-17.3 is installed
  • OR libospf0-1.1.1-17.3 is installed
  • OR libospfapiclient0-1.1.1-17.3 is installed
  • OR libquagga_pb0-1.1.1-17.3 is installed
  • OR libzebra1-1.1.1-17.3 is installed
  • OR quagga-1.1.1-17.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND dnsmasq-2.76-17 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-BCL is installed
  • AND
  • tomcat-8.0.53-29.22 is installed
  • OR tomcat-admin-webapps-8.0.53-29.22 is installed
  • OR tomcat-docs-webapp-8.0.53-29.22 is installed
  • OR tomcat-el-3_0-api-8.0.53-29.22 is installed
  • OR tomcat-javadoc-8.0.53-29.22 is installed
  • OR tomcat-jsp-2_3-api-8.0.53-29.22 is installed
  • OR tomcat-lib-8.0.53-29.22 is installed
  • OR tomcat-servlet-3_1-api-8.0.53-29.22 is installed
  • OR tomcat-webapps-8.0.53-29.22 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-BCL is installed
  • AND
  • tomcat-8.0.53-29.22 is installed
  • OR tomcat-admin-webapps-8.0.53-29.22 is installed
  • OR tomcat-docs-webapp-8.0.53-29.22 is installed
  • OR tomcat-el-3_0-api-8.0.53-29.22 is installed
  • OR tomcat-javadoc-8.0.53-29.22 is installed
  • OR tomcat-jsp-2_3-api-8.0.53-29.22 is installed
  • OR tomcat-lib-8.0.53-29.22 is installed
  • OR tomcat-servlet-3_1-api-8.0.53-29.22 is installed
  • OR tomcat-webapps-8.0.53-29.22 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-ESPOS is installed
  • AND
  • libecpg6-10.9-1.12 is installed
  • OR libpq5-10.9-1.12 is installed
  • OR libpq5-32bit-10.9-1.12 is installed
  • OR postgresql10-10.9-1.12 is installed
  • OR postgresql10-contrib-10.9-1.12 is installed
  • OR postgresql10-docs-10.9-1.12 is installed
  • OR postgresql10-libs-10.9-1.12 is installed
  • OR postgresql10-plperl-10.9-1.12 is installed
  • OR postgresql10-plpython-10.9-1.12 is installed
  • OR postgresql10-pltcl-10.9-1.12 is installed
  • OR postgresql10-server-10.9-1.12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-ESPOS is installed
  • AND
  • libecpg6-10.9-1.12 is installed
  • OR libpq5-10.9-1.12 is installed
  • OR libpq5-32bit-10.9-1.12 is installed
  • OR postgresql10-10.9-1.12 is installed
  • OR postgresql10-contrib-10.9-1.12 is installed
  • OR postgresql10-docs-10.9-1.12 is installed
  • OR postgresql10-libs-10.9-1.12 is installed
  • OR postgresql10-plperl-10.9-1.12 is installed
  • OR postgresql10-plpython-10.9-1.12 is installed
  • OR postgresql10-pltcl-10.9-1.12 is installed
  • OR postgresql10-server-10.9-1.12 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-LTSS is installed
  • AND
  • kgraft-patch-4_4_176-94_88-default-3-2 is installed
  • OR kgraft-patch-SLE12-SP3_Update_24-3-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-LTSS is installed
  • AND
  • kgraft-patch-4_4_176-94_88-default-3-2 is installed
  • OR kgraft-patch-SLE12-SP3_Update_24-3-2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND ant-1.9.4-3.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA is installed
  • AND ant-1.9.4-3.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND Package Information
  • ntp-4.2.8p12-64.8 is installed
  • OR ntp-doc-4.2.8p12-64.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND opensc-0.13.0-3.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4 is installed
  • AND opensc-0.13.0-3.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP5 is installed
  • AND
  • accountsservice-0.6.42-16.8 is installed
  • OR accountsservice-lang-0.6.42-16.8 is installed
  • OR libaccountsservice0-0.6.42-16.8 is installed
  • OR typelib-1_0-AccountsService-1_0-0.6.42-16.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP5 is installed
  • AND
  • accountsservice-0.6.42-16.8 is installed
  • OR accountsservice-lang-0.6.42-16.8 is installed
  • OR libaccountsservice0-0.6.42-16.8 is installed
  • OR typelib-1_0-AccountsService-1_0-0.6.42-16.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12-LTSS is installed
  • AND
  • MozillaFirefox-45.6.0esr-96 is installed
  • OR MozillaFirefox-translations-45.6.0esr-96 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12-LTSS is installed
  • AND
  • MozillaFirefox-45.6.0esr-96 is installed
  • OR MozillaFirefox-translations-45.6.0esr-96 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND Package Information
  • 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
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3 is installed
  • AND Package Information
  • evince-3.20.2-6.27 is installed
  • OR evince-browser-plugin-3.20.2-6.27 is installed
  • OR evince-lang-3.20.2-6.27 is installed
  • OR evince-plugin-djvudocument-3.20.2-6.27 is installed
  • OR evince-plugin-dvidocument-3.20.2-6.27 is installed
  • OR evince-plugin-pdfdocument-3.20.2-6.27 is installed
  • OR evince-plugin-psdocument-3.20.2-6.27 is installed
  • OR evince-plugin-tiffdocument-3.20.2-6.27 is installed
  • OR evince-plugin-xpsdocument-3.20.2-6.27 is installed
  • OR libevdocument3-4-3.20.2-6.27 is installed
  • OR libevview3-3-3.20.2-6.27 is installed
  • OR nautilus-evince-3.20.2-6.27 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 is installed
  • AND Package Information
  • kernel-default-3.12.38-44 is installed
  • OR kernel-default-extra-3.12.38-44 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP1 is installed
  • AND Package Information
  • kernel-default-3.12.62-60.64.8 is installed
  • OR kernel-default-extra-3.12.62-60.64.8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP2 is installed
  • AND Package Information
  • libpcap-1.8.1-9 is installed
  • OR libpcap1-32bit-1.8.1-9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP3 is installed
  • AND Package Information
  • libraw-0.15.4-16 is installed
  • OR libraw9-0.15.4-16 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP4 is installed
  • AND Package Information
  • kernel-default-4.12.14-95.16 is installed
  • OR kernel-default-extra-4.12.14-95.16 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 15 SP1 is installed
  • AND imobiledevice-tools-1.2.0+git20170122.45fda81-1 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 5 is installed
  • AND Package Information
  • java-1_6_0-ibm-1.6.0_sr16.35-78 is installed
  • OR java-1_6_0-ibm-devel-1.6.0_sr16.35-78 is installed
  • OR java-1_6_0-ibm-fonts-1.6.0_sr16.35-78 is installed
  • OR java-1_6_0-ibm-jdbc-1.6.0_sr16.35-78 is installed
  • OR java-1_6_0-ibm-plugin-1.6.0_sr16.35-78 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 6 is installed
  • AND memcached-1.4.15-1 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 8 is installed
  • AND python-paramiko-2.2.4-4.3 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud Crowbar 8 is installed
  • AND Package Information
  • openstack-aodh-5.1.1~dev5-3.5 is installed
  • OR openstack-aodh-api-5.1.1~dev5-3.5 is installed
  • OR openstack-aodh-doc-5.1.1~dev5-3.5 is installed
  • OR openstack-aodh-evaluator-5.1.1~dev5-3.5 is installed
  • OR openstack-aodh-expirer-5.1.1~dev5-3.5 is installed
  • OR openstack-aodh-listener-5.1.1~dev5-3.5 is installed
  • OR openstack-aodh-notifier-5.1.1~dev5-3.5 is installed
  • OR openstack-barbican-5.0.1~dev11-3.8 is installed
  • OR openstack-barbican-api-5.0.1~dev11-3.8 is installed
  • OR openstack-barbican-doc-5.0.1~dev11-3.8 is installed
  • OR openstack-barbican-keystone-listener-5.0.1~dev11-3.8 is installed
  • OR openstack-barbican-retry-5.0.1~dev11-3.8 is installed
  • OR openstack-barbican-worker-5.0.1~dev11-3.8 is installed
  • OR openstack-cinder-11.1.2~dev14-3.6 is installed
  • OR openstack-cinder-api-11.1.2~dev14-3.6 is installed
  • OR openstack-cinder-backup-11.1.2~dev14-3.6 is installed
  • OR openstack-cinder-doc-11.1.2~dev14-3.6 is installed
  • OR openstack-cinder-scheduler-11.1.2~dev14-3.6 is installed
  • OR openstack-cinder-volume-11.1.2~dev14-3.6 is installed
  • OR openstack-dashboard-12.0.4~dev1-3.8 is installed
  • OR openstack-designate-5.0.2~dev5-3.5 is installed
  • OR openstack-designate-agent-5.0.2~dev5-3.5 is installed
  • OR openstack-designate-api-5.0.2~dev5-3.5 is installed
  • OR openstack-designate-central-5.0.2~dev5-3.5 is installed
  • OR openstack-designate-doc-5.0.2~dev5-3.5 is installed
  • OR openstack-designate-producer-5.0.2~dev5-3.5 is installed
  • OR openstack-designate-sink-5.0.2~dev5-3.5 is installed
  • OR openstack-designate-worker-5.0.2~dev5-3.5 is installed
  • OR openstack-glance-15.0.2~dev4-3.3 is installed
  • OR openstack-glance-api-15.0.2~dev4-3.3 is installed
  • OR openstack-glance-doc-15.0.2~dev4-3.3 is installed
  • OR openstack-glance-registry-15.0.2~dev4-3.3 is installed
  • OR openstack-heat-9.0.5~dev11-3.6 is installed
  • OR openstack-heat-api-9.0.5~dev11-3.6 is installed
  • OR openstack-heat-api-cfn-9.0.5~dev11-3.6 is installed
  • OR openstack-heat-api-cloudwatch-9.0.5~dev11-3.6 is installed
  • OR openstack-heat-doc-9.0.5~dev11-3.6 is installed
  • OR openstack-heat-engine-9.0.5~dev11-3.6 is installed
  • OR openstack-heat-plugin-heat_docker-9.0.5~dev11-3.6 is installed
  • OR openstack-heat-templates-0.0.0+git.1525957319.6b5a7cd-3.3 is installed
  • OR openstack-heat-test-9.0.5~dev11-3.6 is installed
  • OR openstack-horizon-plugin-designate-ui-5.0.2~dev5-3.3 is installed
  • OR openstack-horizon-plugin-freezer-ui-5.0.1~dev6-3.3 is installed
  • OR openstack-horizon-plugin-gbp-ui-5.0.1~dev21-4.3 is installed
  • OR openstack-horizon-plugin-manila-ui-2.10.3~dev4-4.5 is installed
  • OR openstack-horizon-plugin-neutron-lbaas-ui-3.0.3~dev2-3.5 is installed
  • OR openstack-horizon-plugin-trove-ui-9.0.1~dev7-3.3 is installed
  • OR openstack-ironic-9.1.5~dev7-3.6 is installed
  • OR openstack-ironic-api-9.1.5~dev7-3.6 is installed
  • OR openstack-ironic-conductor-9.1.5~dev7-3.6 is installed
  • OR openstack-ironic-doc-9.1.5~dev7-3.6 is installed
  • OR openstack-keystone-12.0.1~dev19-5.8 is installed
  • OR openstack-keystone-doc-12.0.1~dev19-5.8 is installed
  • OR openstack-manila-5.0.2~dev55-3.6 is installed
  • OR openstack-manila-api-5.0.2~dev55-3.6 is installed
  • OR openstack-manila-data-5.0.2~dev55-3.6 is installed
  • OR openstack-manila-doc-5.0.2~dev55-3.6 is installed
  • OR openstack-manila-scheduler-5.0.2~dev55-3.6 is installed
  • OR openstack-manila-share-5.0.2~dev55-3.6 is installed
  • OR openstack-neutron-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-dhcp-agent-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-doc-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-fwaas-11.0.2~dev7-3.5 is installed
  • OR openstack-neutron-fwaas-doc-11.0.2~dev7-3.5 is installed
  • OR openstack-neutron-ha-tool-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-l3-agent-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-lbaas-11.0.4~dev4-3.3 is installed
  • OR openstack-neutron-lbaas-agent-11.0.4~dev4-3.3 is installed
  • OR openstack-neutron-lbaas-doc-11.0.4~dev4-3.3 is installed
  • OR openstack-neutron-linuxbridge-agent-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-macvtap-agent-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-metadata-agent-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-metering-agent-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-openvswitch-agent-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-server-11.0.6~dev63-3.6 is installed
  • OR openstack-neutron-vpn-agent-11.0.1~dev1-3.3 is installed
  • OR openstack-neutron-vpnaas-11.0.1~dev1-3.3 is installed
  • OR openstack-neutron-vpnaas-doc-11.0.1~dev1-3.3 is installed
  • OR openstack-neutron-vyatta-agent-11.0.1~dev1-3.3 is installed
  • OR openstack-neutron-zvm-agent-8.0.1~dev12-4.3 is installed
  • OR openstack-nova-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-api-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-cells-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-compute-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-conductor-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-console-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-consoleauth-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-doc-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-novncproxy-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-placement-api-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-scheduler-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-serialproxy-16.1.5~dev49-3.8 is installed
  • OR openstack-nova-virt-zvm-8.0.1~dev56-3.3 is installed
  • OR openstack-nova-vncproxy-16.1.5~dev49-3.8 is installed
  • OR openstack-octavia-1.0.3~dev21-4.6 is installed
  • OR openstack-octavia-amphora-agent-1.0.3~dev21-4.6 is installed
  • OR openstack-octavia-api-1.0.3~dev21-4.6 is installed
  • OR openstack-octavia-health-manager-1.0.3~dev21-4.6 is installed
  • OR openstack-octavia-housekeeping-1.0.3~dev21-4.6 is installed
  • OR openstack-octavia-worker-1.0.3~dev21-4.6 is installed
  • OR openstack-trove-8.0.1~dev11-3.3 is installed
  • OR openstack-trove-api-8.0.1~dev11-3.3 is installed
  • OR openstack-trove-conductor-8.0.1~dev11-3.3 is installed
  • OR openstack-trove-doc-8.0.1~dev11-3.3 is installed
  • OR openstack-trove-guestagent-8.0.1~dev11-3.3 is installed
  • OR openstack-trove-taskmanager-8.0.1~dev11-3.3 is installed
  • OR python-aodh-5.1.1~dev5-3.5 is installed
  • OR python-barbican-5.0.1~dev11-3.8 is installed
  • OR python-barbicanclient-4.5.2-4.3 is installed
  • OR python-barbicanclient-doc-4.5.2-4.3 is installed
  • OR python-cinder-11.1.2~dev14-3.6 is installed
  • OR python-designate-5.0.2~dev5-3.5 is installed
  • OR python-glance-15.0.2~dev4-3.3 is installed
  • OR python-heat-9.0.5~dev11-3.6 is installed
  • OR python-horizon-12.0.4~dev1-3.8 is installed
  • OR python-horizon-plugin-designate-ui-5.0.2~dev5-3.3 is installed
  • OR python-horizon-plugin-freezer-ui-5.0.1~dev6-3.3 is installed
  • OR python-horizon-plugin-gbp-ui-5.0.1~dev21-4.3 is installed
  • OR python-horizon-plugin-manila-ui-2.10.3~dev4-4.5 is installed
  • OR python-horizon-plugin-neutron-lbaas-ui-3.0.3~dev2-3.5 is installed
  • OR python-horizon-plugin-trove-ui-9.0.1~dev7-3.3 is installed
  • OR python-ironic-9.1.5~dev7-3.6 is installed
  • OR python-keystone-12.0.1~dev19-5.8 is installed
  • OR python-keystone-json-assignment-0.0.2-3.3 is installed
  • OR python-manila-5.0.2~dev55-3.6 is installed
  • OR python-manilaclient-1.17.3-3.3 is installed
  • OR python-manilaclient-doc-1.17.3-3.3 is installed
  • OR python-neutron-11.0.6~dev63-3.6 is installed
  • OR python-neutron-fwaas-11.0.2~dev7-3.5 is installed
  • OR python-neutron-lbaas-11.0.4~dev4-3.3 is installed
  • OR python-neutron-vpnaas-11.0.1~dev1-3.3 is installed
  • OR python-nova-16.1.5~dev49-3.8 is installed
  • OR python-octavia-1.0.3~dev21-4.6 is installed
  • OR python-trove-8.0.1~dev11-3.3 is installed
  • OR python-vmware-nsx-11.0.3~dev16-3.3 is installed
  • OR python-vmware-nsxlib-11.0.4~dev7-3.3 is installed
  • BACK