Commit Graph

21680 Commits

Author SHA1 Message Date
Oleksandr Kravchuk
e6502e4d93 gtk4: set UPSTREAM_CHECK_REGEX to stable versions
Check for even numbers only as odd ones are for development versions.

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-10 09:11:56 -08:00
Oleksandr Kravchuk
ccbffe235e cpuid: update to 20211129
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-10 09:11:56 -08:00
Oleksandr Kravchuk
872b60f3ea bmon: fix PV
The commit hash is pointing out to the tag v4.0, not 2.1.0.

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-10 09:11:56 -08:00
Khem Raj
8f8c7ba3e9 packagegroup-meta-oe: Add unifex
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:37:06 -08:00
Andrei Gherzan
72a51076a7 mosquitto: Don't depends on dlt-daemon unconditionally
This dependency is already handled through a PACKAGECONFIG so there is
no need for it in DEPENDS anymore.

Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:37:06 -08:00
Yi Zhao
1fd5ca10a2 openldap: fix strip issue with new patch
The patch install-strip.patch tries to fix the [already-stripped] QA
error with an outdated install-sh script which causes a parallel
installation failure:

  ../../build/shtool mkdir -p TOPDIR/tmp-glibc/work/core2-32-wrs-linux/openldap/2.5.9-r0/image/usr/lib
  STRIPPROG="" ../../i686-wrs-linux-libtool --mode=install ../../contrib/ldapc++/install-sh -c  -m 644 liblber.la TOPDIR/tmp-glibc/work/core2-32-wrs-linux/openldap/2.5.9-r0/image/usr/lib
  mkdir: cannot create directory 'TOPDIR/tmp-glibc/work/core2-32-wrs-linux/openldap/2.5.9-r0/image/usr/lib': File exists

With the new version of openldap, we can fix the strip issue by
unsetting STRIP_OPTS.

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:37:06 -08:00
Patrick Williams
edc54a229f unifex: add recipe
libunifex is a library for enabling C++ "Unified Executors" in C++20,
based on current standards work being proposed for C++23 (P2300)[1].
This library provides C++20 support for async and co-routines.

1. https://isocpp.org/files/papers/P2300R3.html

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:37:06 -08:00
Ed Tanous
2ce62b0658 Update to new version of boost-uri
The newest version of boost-uri has several new features, and has
compatibility with boost 1.78.

Signed-off-by: Ed Tanous <ed@tanous.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:37:06 -08:00
Yi Zhao
a920266b9c openldap: upgrade 2.5.8 -> 2.5.9
OpenLDAP 2.5.9 Release (2021/10/25)
  Fixed slapo-accesslog to initialize minCSN on import of 2.4 databases (ITS#9720)

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:37:06 -08:00
Hongxu Jia
9bf6b5fe54 libblockdev: Do not include duplicate entries in bd_lvm_lvs output
We use "-o segtypes" for the "lvs" command which means multisegment
LVs will be twice in the output. [1]
...
$ lvs --noheadings --nosuffix --nameprefixes --unquoted --units=b -a -o
vg_name,lv_name,lv_uuid,lv_size,lv_attr,segtype,origin,pool_lv,data_lv,metadata_lv,role,move_pv,data_percent,metadata_percent,copy_percent,lv_tags

OUTPUT:
|LVM2_VG_NAME=rootvg LVM2_LV_NAME=RCSMW-ARM_CXP2020233_2_R20A154
LVM2_LV_UUID=TgjM5V-jhXX-tPTf-gPMa-c3w6-QEjo-7qkmVg
LVM2_LV_SIZE=71303168 LVM2_LV_ATTR=wi-ao--- LVM2_SEGTYPE=linear
LVM2_ORIGIN= LVM2_POOL_LV= LVM2_DATA_LV= LVM2_METADATA_LV=
LVM2_LV_ROLE=public LVM2_MOVE_PV= LVM2_DATA_PERCENT=
LVM2_METADATA_PERCENT= LVM2_COPY_PERCENT= LVM2_LV_TAGS=

|LVM2_VG_NAME=rootvg LVM2_LV_NAME=RCSMW-ARM_CXP2020233_2_R20A154
LVM2_LV_UUID=TgjM5V-jhXX-tPTf-gPMa-c3w6-QEjo-7qkmVg
LVM2_LV_SIZE=71303168 LVM2_LV_ATTR=wi-ao--- LVM2_SEGTYPE=linear
LVM2_ORIGIN= LVM2_POOL_LV= LVM2_DATA_LV= LVM2_METADATA_LV=
LVM2_LV_ROLE=public LVM2_MOVE_PV= LVM2_DATA_PERCENT=
LVM2_METADATA_PERCENT= LVM2_COPY_PERCENT= LVM2_LV_TAGS=
...

See [2]

[1] https://github.com/storaged-project/libblockdev/pull/671
[2] https://github.com/storaged-project/libblockdev/issues/667

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:37:06 -08:00
Khem Raj
d57dcb3f69 tbb: Upgrade to 2021.4.0
* Drop upstreamed patches
* Drop 0001-set_my_tls_end_of_input-Use-an-arbitrary-but-valid-p.patch
* which is fixed differently
* Forward port rest of them
* Add a patch to fix build with musl
* Add a patch to disable LTO on rv32 (configuration) and arm ( crashes )

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-09 08:36:36 -08:00
Mauro Anjo
b450b0bb82 libcamera: Update to latest commit
Drop patch for musl/aarch64 and bump source commit to latest version that
has the patch applied.

Signed-off-by: Mauro Anjo <maurosanjo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-08 11:12:23 -08:00
Xu Huan
77d96d9f8f python3-rsa: upgrade 4.7.2 -> 4.8
changelog:
================================================================

- Switch to Poetry for dependency and release management.
- Compatibility with Python 3.10.
- Chain exceptions using raise new_exception from old_exception (#157)
- Added marker file for PEP 561. This will allow type checking tools
in dependent projects to use type annotations from Python-RSA (#136).
- Use the Chinese Remainder Theorem when decrypting with a private key.
This makes decryption 2-4x faster (#163).

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-08 11:10:23 -08:00
Xu Huan
c0b91fe353 python3-configparser: upgrade 5.1.0 -> 5.2.0
changelog:
Project now uses PEP 420 (native) namespace package for backports package.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-08 11:10:23 -08:00
Xu Huan
8902dd77c0 python3-cmd2: upgrade 2.3.1 -> 2.3.3
changelog:
=================================================================
Enhancements:
Added clearer exception handling to BorderedTable and SimpleTable.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-08 11:10:23 -08:00
Xu Huan
a14e291e1b python3-bitstruct: upgrade 8.11.1 -> 8.12.1
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-08 11:10:23 -08:00
Xu Huan
fc0cc3e449 python3-aiofiles: upgrade 0.7.0 -> 0.8.0
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-08 11:10:23 -08:00
Khem Raj
67df2ce4c9 libunix-statgrab: Use compiler driver for linking as well
the build system tries to deduce the compiler and its friends and fails
because OE passes LDFLAGS assuming that linker will be invoked via
compiler driver ( gcc or clang ) therefore prefixes linker options with
-Wl, but libunix-statgrab build system enquires LD variable for linker
and uses LDFLAGS with it, which causes linker to fail since ld does not
recognise -Wl, etc. Therefore using CCLD for linker is right choice here

Fixes
Checking for cc... i686-yoe-linux-ld: unrecognized option '-Wl,-O1'
i686-yoe-linux-ld: use the --help option for usage information

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-06 10:15:36 -08:00
Wang Mingyu
c2a611d45a gsl: upgrade 2.7 -> 2.7.1
Changes:
  update libtool version numbers

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-06 09:56:50 -08:00
Oleksandr Kravchuk
c57e4d5faa fb-test: fix SRC_URI
Original repo doesn't exist any more. Even though I couldn't find any
new official repo, this is the only one on github that contains used
commit hash.

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-06 09:56:50 -08:00
Peter Kjellerstedt
f0b4e37b77 gattlib: Explicitly disable Python support
Under some configuration, CMake may pick up the existence of python
from the native recipe sysroot and use that when linking for target,
resulting in the following error:

  ld: .../recipe-sysroot-native/usr/lib/libpython3.10.so: error adding
  symbols: file in wrong format

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-06 09:56:50 -08:00
Xu Huan
4a53cdded7 python3-pycparser: upgrade 2.20 -> 2.21
Lisence-Update:
year updated to 2020

changelog:
=================================================================
  - Much improved support for C11 (multiple PRs)
  - Support for parehthesized compount statements
  - Support for modern Python versions (3.9 and 3.10)
  - Fix support for structs with nested enums
  - Multiple small bug fixes

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-06 09:56:20 -08:00
Xu Huan
1af22aa957 python3-pyephem: upgrade 4.1 -> 4.1.1
changelog:
===============================================================
When you provide PyEphem with a Python datetime that has a time
 zone attached, PyEphem now detects the time zone and converts
the date and time to UTC automatically.

A new search routine had been written and tested to power the
:ref:`transit-rising-setting` methods previous_rising(),
previous_setting(), next_rising(), and next_setting(). They
should no longer be susceptible to getting hung up in a loop.
You should also find them substantially faster.

Fixed the constellation() routine so that it uses astrometric,
rather than apparent, right ascension and declination. This
should make it more accurate along the borders of each
constellation.

Fixed how the underlying “libastro” library computes whether a
body’s image is deflected by gravity when its light passes close
 to the Sun. Previously, users would see coordinates jump
unexpectedly as the deflection formula turned on and off haphazardly.

Fixed the star positions in the ephem.stars star catalog by adding
 8.75 years of proper motion to each star. Previously, each
1991.25 position from the Hipparcos catalog was being incorrectly
treated as a 2000.0 position.

A new routine unrefract() lets you compute the real altitude of
a body that you observe in the sky at a given apparent altitude.

The old cities.lookup() function is now officially deprecated.
Because of a Google API restriction, it stopped working in 2018.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-06 09:56:20 -08:00
Zheng Ruoqin
2fea67dc42 python3-ujson: upgrade 4.2.0 -> 4.3.0
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-06 09:56:20 -08:00
Zheng Ruoqin
76f0c526ea python3-typeguard: upgrade 2.13.0 -> 2.13.2
Fixed typing_extensions being imported unconditionally on Python < 3.9

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-06 09:56:20 -08:00
Zheng Ruoqin
cc0ad0f33f python3-rdflib: upgrade 6.0.0 -> 6.0.2
changlog:
====================================================
rename arg LOVE to ns in rdfpipe
Remove Tox reference to Python 3.6
Add Brick DefinedNamespace
Use setName on TokenConverter to set the name property
Add test for adding JSON-LD to guess_format()
Fix mypy type errors and add mypy to .drone.yml

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-06 09:56:20 -08:00
Xu Huan
bdd244a6c1 python3-pymongo: upgrade 3.12.0 -> 4.0
See changelog: https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-06 09:56:20 -08:00
Windel Bouwman
6d81831c79 python3-coloredlogs: Added nativesdk
Signed-off-by: Windel Bouwman <windel.bouwman@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-12-06 09:56:20 -08:00
Alexander Kanavin
83754792c0 libid3tag: add from oe-core
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-03 08:08:18 -08:00
Hongxu Jia
bde2553860 ostree: workaround compile error with option gcc option -Og
While DEBUG_BUILD = "1" in local.conf, `-Og' is added to cfalgs by Yocto,
it broke ostree build with `-Werror=aggregate-return' (the
-Werror=aggregate-return is added by ostree configure.ac)

So remove -Og and use -O2 as workaround

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-02 22:40:22 -08:00
Khem Raj
73acbc2952 ntpsec: Disable seccomp on riscv32
rv32 does not have seccomp support yet.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-02 22:40:22 -08:00
Khem Raj
b3e202468f gjs: Link with libatomic on rv32
Fixes
libgjs-internal.a(gi_object.cpp.o): in function `no symbol':
object.cpp:(.text+0x534c): undefined reference to `__atomic_fetch_add_8'

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-02 19:16:01 -08:00
Khem Raj
1bef1dbf20 meta-networking,meta-python: Fix README for yocto check layer
This ensures that Maintainer entries are as expected

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-02 18:36:58 -08:00
Andrey Zhizhikin
ca5055ed28 gpsd: fix clang buid via export CC explicitly
gpsd scons build system defaults CC to 'gcc', which prevents clang
toolchain to be used.

Export CC explicitly via environment to override default assignment in
scons.

Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-02 07:52:17 -08:00
Yi Zhao
d9a6d3ea3c openldap: fix parallel build failure
Add slapd-common.o as dependency for ldif-filter to fix the parallel
build failure:
  ld: cannot find slapd-common.o: No such file or directory

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-02 07:52:17 -08:00
Mingli Yu
a12cd7869b libteam: switch to python3
The original fix for team_basic_test.py only change the interpreter
to python3, but still some error as below:
 # ./run-ptest
 File "/usr/lib64/libteam/ptest/./team_basic_test.py", line 35
 print "Usage: team_basic_test.py [OPTION...]"
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?

 # ./run-ptest
 RUN #1
 # "ip link add testteamx type team"
 # "teamnl testteamx getoption mode"
 # "ip link del testteamx"
 # "modprobe -r team_mode_loadbalance team_mode_roundrobin team_mode_activebackup team_mode_broadcast team"
 Traceback (most recent call last):
  File "/usr/lib64/libteam/ptest/./team_basic_test.py", line 206, in <module>
    main()
  File "/usr/lib64/libteam/ptest/./team_basic_test.py", line 203, in main
    btest.run()
  File "/usr/lib64/libteam/ptest/./team_basic_test.py", line 180, in run
    self._run_one_loop(i + 1)
  File "/usr/lib64/libteam/ptest/./team_basic_test.py", line 173, in _run_one_loop
    self._run_one_mode(mode_name)
  File "/usr/lib64/libteam/ptest/./team_basic_test.py", line 101, in _run_one_mode
    cmd_exec("teamnl %s getoption mode" % team_name, "*NOMODE*")
  File "/usr/lib64/libteam/ptest/./team_basic_test.py", line 80, in cmd_exec
    raise CmdExecUnexpectedOutputException(output, expected_output)
 __main__.CmdExecUnexpectedOutputException: Command execution output unexpected: "b'*NOMODE*'" != "*NOMODE*"

 So rework team_basic_test.py to fix the above issue.

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-02 07:52:17 -08:00
Zheng Ruoqin
d0f133d642 spitools: upgrade 1.0.0 -> 1.0.1
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 22:37:01 -08:00
Hongxu Jia
b692321c30 ostree: use Yocto mirror
Clean up PREMIRRORS setting, the Yocto mirror is updated

$ mkdir ./ostree && cd ./ostree
$ wget http://downloads.yoctoproject.org/mirror/sources/git2_github.com.ostreedev.ostree.tar.gz
$ tar -xvf git2_github.com.ostreedev.ostree.tar.gz
$ git show f1155c8d283c3c85d74d5e1050b0dcf8198f750a --oneline
f1155c8d (tag: v2021.6) Release 2021.6

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 22:37:01 -08:00
Hongxu Jia
1bacbe783a ostree: add nativesdk support
# Changed in V2: s/$OECORE_NATIVE_SYSROOT/\$OECORE_NATIVE_SYSROOT/ for
# ostree wrapper of nativesdk
Refer the impment of native, use the same PACKAGECONFIG, EXTRA_OECONF
and similar create_wrapper for ostree

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 20:36:31 -08:00
Trevor Gamblin
a7313d4503 libnftnl: upgrade 1.2.0 -> 1.2.1
Also fix patch contributor name in the process of reworking it to apply
on the new 1.2.1 release (I had accidentally modified it when reworking
it previously).

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:47:27 -08:00
Khem Raj
2609687905 libcamera: Fix build break on musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
Mauro Anjo
6950f12060 Upgrade libcamera
Upgrades libcamera to latest commit, now libcamera.so is a symlink so
made changes to include all created symlinks.

Signed-off-by: Mauro Anjo <maurosanjo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
Gianfranco
bef6866092 vboxguestdrivers: drop md5sum from SRC_URI.
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
Gianfranco
611e7f2729 vboxguestdrivers: upgrade 6.1.28 -> 6.1.30
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
Bartosz Golaszewski
ac67765cb0 libgpiod: ptest: redirect stderr to stdout for test executables
Catch2 (used by the C++ tests) prints its output to stderr instead of
stdout. Redirect stderr to stdout for all test executables.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
wangmy
213cf9f5e6 dnf-plugin-tui: Fix a bug with newer version rpm.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
Khem Raj
a56b7f825c packagegroup-xfce-base: Mark TUNE_PKGARCH specific
librsvg is direct dependency which gets debian renamed so this does
not qualify to be allarch

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
Khem Raj
f9ef583258 packagegroup-core-clutter: Mark TUNE_PKGARCH specific
libclutter is direct dependency which gets debian renamed so this does
not qualify to be allarch

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:28 -08:00
Khem Raj
c68a306c02 influxdb: Fix build with Go 1.17 on x86_64
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:39:23 -08:00
Khem Raj
6e9faaa578 influxdb: Upgrade to 1.8.10
Changes are here [1]

License-Update: Updated copyright info [2]

Fix sh interpreter path

[1] https://dl.influxdata.com/platform/nightlies/1.8/CHANGELOG.md
[2] 809ac4f0d5 (diff-c693279643b8cd5d248172d9c22cb7cf4ed163a3c98c8a3f69c2717edd3eacb7)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-12-01 12:24:21 -08:00