aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-03-05libleak: Add recipekraj/libleakKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05libbacktrace: Add recipeKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05XXX: Add Github actions CI supportKhem Raj
Add drone build Badge Add yoe.yml for Github actions CI support Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05packagegroup-meta-python: Add new modules (aiohue, ifaddr, pysonos)Andrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-aiohue: Integrate the hue control python moduleAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-pysonos: Integrate the SONOS control HomeAssistant moduleAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-ifaddr: Integrate a dependency of pysonosAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-mccabe: Fix HOMEPAGEAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-pep8: Fix HOMEPAGEAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-requests: Support idna version 3.1Fabio Berton
Change idna required version to use python3-idna recipe that currently is on version 3.1. Without this change python-request doesn't work as the idna version doesn't match the required versions. When bump python-request recipe, verify if the upstream project bumped the idna version and drop this patch. As this recipe was tested with python3-idna_3.1 don't allow higher versions. Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-pandas: Upgrade 1.2.2 -> 1.2.3Leon Anavi
Upgrade to release 1.2.3: - Fixed regression in to_excel() raising KeyError when giving duplicate columns with columns attribute - Fixed regression in nullable integer unary ops propagating mask on assignment - Fixed regression in DataFrame.__setitem__() not aligning DataFrame on right-hand side for boolean indexer - Fixed regression in to_json() failing to use compression with URL-like paths that are internally opened in binary mode or with user-provided file objects that are opened in binary mode - Fixed regression in Series.sort_index() and DataFrame.sort_index(), which exited with an ungraceful error when having kwarg ascending=None passed. Passing ascending=None is still considered invalid, and the improved error message suggests a proper usage (ascending must be a boolean or a list-like of boolean) - Fixed regression in DataFrame.transform() and Series.transform() giving incorrect column labels when passed a dictionary with a mix of list and non-list values Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-portion: Upgrade 2.1.4 -> 2.1.5Leon Anavi
Upgrade to release 2.1.5: - Getting items from an Interval using a slice does no longer return a list but an Interval instance. - Intervals are properly pretty-printed by pandas. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-astroid: Upgrade 2.5 -> 2.5.1Leon Anavi
Upgrade to release 2.5.1: - The ``context.path`` is reverted to a set because otherwise it leads to false positives for non `numpy` functions. - Don't transform dataclass ClassVars - Improve typing.TypedDict inference - Fix the `Duplicates found in MROs` false positive. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-yamlloader: Upgrade 0.5.5 -> 1.0.0Leon Anavi
Upgrade to the first stable release 1.0.0: - Main change is that it returns always an OrderedDict, even for Python >= 3.7 for consistency Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-ipython: Upgrade 7.20.0 -> 7.21.0Leon Anavi
Upgrade to release 7.21.0: - New "context" command in ipdb - Fix some issues on new osx-arm64 - Compatibility with Xeus-Python for debugger protocol - Misc docs fixes for compatibility and uniformity with Numpydoc Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-grpcio: Fix build on mips and muslKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-grpcio: Upgrade to 1.36.1Khem Raj
Release notes are here [1] See the differences after 1.35.0 upwards [1] https://github.com/grpc/grpc/releases Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05packagegroup-meta-python: Add python3-semantic-versionKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-twisted: Upgrade 20.3.0 -> 21.2.0Leon Anavi
Upgrade to release 21.2.0: - The enableSessions argument to twisted.internet.ssl.CertificateOptions now actually enables/disables OpenSSL's session cache. Also, due to session-related bugs, it defaults to False. - twisted.internet.defer.inlineCallbacks and ensureDeferred will now associate a contextvars.Context with the coroutines they run, meaning that ContextVar objects will maintain their value within the same coroutine, similarly to asyncio Tasks. This functionality requires Python 3.7+, or the contextvars PyPI backport to be installed for Python 3.5-3.6. - twisted.internet.defer.Deferred.fromCoroutine has been added. This is similar to the existing ensureDeferred function, but is named more consistently inside Twisted and does not pass through Deferreds. - trial now allows the @unittest.skipIf decorator to specify that an entire test class should be skipped. - The twisted.python.deprecate.deprecatedKeywordParameter decorator can be used to mark a keyword paramater of a function or method as deprecated. - Projects using Twisted can now perform type checking against a Twisted installation, for example using mypy. - twisted.python.util.InsensitiveDict now fully implements MutableMapping. - Python 3.8 is now tested and supported. - Support a coroutine function in twisted.internet.task.react. - PyPy 3.7 is now tested and supported. - twisted.web.twcgi.CGIProcessProtocol.processEnded(...) now handles an already-finished request, for example when request.connectionLost(...) was called previously. - Twisted's dependency on PyHamcrest has been moved from the base package to the new "test" extra. Consequently the test extra must be installed for Twisted's test suite to pass. - Fixed serialization of timedelta, date, and time objects in twisted.spread. - twisted.internet.asyncioreactor.AsyncioSelectorReactor now raises an exception if instantiated with an event loop which is not compatible with asyncio.SelectorEventLoop. This fixes the AsyncioSelectorReactor in Python 3.8+ on Windows, where in bp-34687 the default Windows asyncio event loop was changed to ProactorEventLoop. Applications that use AsyncioSelectorReactor on Windows with Python 3.8+ must call asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) before instantiating and running AsyncioSelectorReactor. - twisted.internet.process.registerReapProcessHandler and ._BaseProcess.reapProcess will no longer raise a TypeError when processing a None PID - INotify will close its file descriptor if a directory is automatically removed by twisted from the watchlist because it's deleted, avoiding orphaned filedescriptors. - DelayedCall.reset() is now working properly with asyncioreactor. - AsyncioSelectorReactor.seconds() now correctly returns an epoch time. - The _connDone parameter has been removed from twisted.internet.abstract.FileDescriptor.loseConnection()'s signature in order to match the signature in the base class twisted.internet._newtls.ConnectionMixin loseConnection(). - The Gtk3 reactor now runs on Wayland-only sessions - Descriptive error messages from twisted.internet.error are now present when running with 'python -OO'. - Comparator methods such as eq() now always return NotImplemented for uncomparable types. - When installing Twisted it now requires a minimum Python 3.5.4 version to match the version used with automated testing. This is the minimum Python version that we know that Twisted works with. License-Update: Add contributors and update year. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05python3-elementpath: Upgrade 2.1.4 -> 2.2.0Leon Anavi
Upgrade to release 2.2.0: - Optimize TDOP parser's tokenizer - Resolve ambiguities with operators and statements that are also names - Merge with XPath 3.0/3.1 develop (to be completed) Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05open-vm-tools: Do not use volatile qualifierKhem Raj
gcc 11 has started to error on it Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05nss: Disable WerrorKhem Raj
with newer compilers we are seeing new warnings, e.g. error: argument 1 of type 'int[1]' with mismatched bound [-Werror=array-parameter=] 8 | extern void pr_static_assert(int arg[(((long unsigned int)-1) > (long unsigned int)1) ? 1 : -1]); | ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ with gcc11 and clang has its own set which triggers here as well, its better to disable werror therefore, we still have warnings if someone wants to fix them but they wont break the builds Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05libiio: fix build when python bindings are enabledSam Van Den Berge
See https://github.com/openembedded/meta-openembedded/issues/248 Signed-off-by: Sam Van Den Berge <sam.van.den.berge@telenet.be> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05jasper: upgrade 2.0.25 -> 2.0.26Michael Vetter
Signed-off-by: Michael Vetter <jubalh@iodoru.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05grpc: move grpc plugins to a new grpc-compiler packageClément Péron
Like it's done for protobuf and flatbuffers move the binaries produce by gRPC to a grpc-compiler package. This is more explicit and keep coherency with protobuf and flatbuffers. Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05jsoncpp: Upgrade to 1.9.4Andrej Valek
- do not install obj files Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04opencv: Remove duplicate patchKhem Raj
<thread> include is already taken care with 0001-Fix-building-opencv-using-gcc-11.x-19244.patch Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04opencv: Add packageconfig for building testsKhem Raj
This could be enabled when ptests are enabled but generally its fine to disable them Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04grpc: remove gflags dependencyClément Péron
gFlags has been removed since: 1f670397ce7f8a12dfb1fb32d8857b2233022856 Remove gflags. With the move to abseil's flags, this removed the now-unnecessary submodule and installation commands. Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04grpc: Add PackageConfig to build only required pluginsClément Péron
Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04sigrok-cli: upgrade 0.7.1 -> 0.7.2zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04qpdf: upgrade 10.0.4 -> 10.2.0zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04nano: upgrade 5.5 -> 5.6zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04mailcap: upgrade 2.1.49 -> 2.1.52zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04hwdata: upgrade 0.343 -> 0.345zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04wireguard-tools: upgrade 1.0.20200827 -> 1.0.20210223zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04strongswan: upgrade 5.9.1 -> 5.9.2zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04openvpn: upgrade 2.5.0 -> 2.5.1zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04opensaf: upgrade 5.20.11 -> 5.21.03zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03abseil-cpp: Ask for C++14 std explicitlyKhem Raj
Newer gcc ( gcc11 ) will be defaulting to c++17 and abseil currently needs work to get working with c++17, so pin to c++14 untill upstream gets it working with c++17 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03nss: Fix warnings generated by getcwdAndrei Gherzan
getcwd() conforms to POSIX.1-2001 which leaves the behaviour when the buf argument is NULL, undefined. This makes gcc 10+ throw the following warning: argument 1 is null but the corresponding size argument 2 value is 4096 Initially, this was fixed by disabling NSS_ENABLE_WERROR. This patch re-enables NSS_ENABLE_WERROR (by leaving it to its default value) and takes advantage of the existing functionality in nss that wraps the getcwd call into a function making sure that the buf argument is always properly allocated. Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libcamera: Update to latestKhem Raj
Add a fix for build with gcc11 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
2021-03-03gimp: Disable svg icons on armKhem Raj
latest gcc11 causes segmentation faults during build | make[3]: *** [Makefile:2395: 24/gimp-color-space-perceptual.svg] Segmentation fault | make[3]: *** [Makefile:2395: 24/gimp-char-picker.svg] Segmentation fault Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
2021-03-03gimp: Add missing dependenciesKhem Raj
Disable checking for updates during runtime Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
2021-03-03libyui-ncurses: Pass -DNCURSES_WIDECHAR in CXXFLAGSKhem Raj
We want the wide character functions from the ncurses header. Unfortunately it doesn't provide them by default, but only if either: * NCURSES_WIDECHAR is defined (for ncurses 20111030 and up) * _XOPEN_SOURCE/_XOPEN_SOURCE_EXTENDED are suitably defined So far we have been implicitly relying on the latter, because for GNU libc when we define _GNU_SOURCE this causes libc to define the _XOPEN_SOURCE macros for us. Unfortunately this doesn't work on all libcs, because some (like musl libc) do not define _XOPEN_SOURCE when _GNU_SOURCE is defined. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libyui: Adopt to new cmake option to disable WerrorKhem Raj
Add -DCMAKE_BUILD_TYPE=RELWITHDEBINFO so we have balance between build speed and debug info Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libyui-ncurses: Disable WerrorKhem Raj
There are new warnings seen with new clang 12 and gcc11 lets disable the warnings-as-errors for now src/NCPopupTextEntry.cc:76:74: error: 'void operator delete(void*, std::size_t)' called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] | 76 | NCInputField::PLAIN); | | ^ Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libyui,libyui-ncurses: Upgrade to 4.0.0Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Pascal Bach <pascal.bach@siemens.com>
2021-03-03mongodb: Include <optional> c++ headerKhem Raj
Fixes build with gcc11 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03grpc: Upgrade to 1.36.1Khem Raj
Changelog https://github.com/grpc/grpc/releases/tag/v1.36.0-pre1 https://github.com/grpc/grpc/releases/tag/v1.36.0 https://github.com/grpc/grpc/releases/tag/v1.36.1 Signed-off-by: Khem Raj <raj.khem@gmail.com>