Sync with portage [Thu Mar 28 17:50:53 MSK 2024].

master 2551
root 4 weeks ago
parent d275479ea1
commit fcee11f39e

Binary file not shown.

Binary file not shown.

@ -0,0 +1,22 @@
From 82a6d09fa8db7a0667b365e9c06e99f8c0dfd245 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
Date: Thu, 28 Mar 2024 12:54:18 +0100
Subject: [PATCH] Replace the last use of pbr with modern packaging
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 395acaa..e0895f5 100755
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -16 +16,2 @@ import sys, os
-import pbr.version
+import importlib.metadata
+import packaging
@@ -56 +57 @@ copyright = u'2023, Jamie Lennox'
-version_info = pbr.version.VersionInfo(project)
+version_info = packaging.version.parse(importlib.metadata.version(project))
@@ -59 +60 @@ version_info = pbr.version.VersionInfo(project)
-version = version_info.version_string()
+version = version_info.base_version
@@ -61 +62 @@ version = version_info.version_string()
-release = version_info.release_string()
+release = version_info.public

@ -36,6 +36,11 @@ distutils_enable_sphinx doc/source
distutils_enable_tests pytest
python_prepare_all() {
local PATCHES=(
# https://github.com/jamielennox/requests-mock/pull/255
"${FILESDIR}/${P}-no-pbr.patch"
)
# Disable reno which only works inside a git repository
sed -i "s/'reno.sphinxext',//" doc/source/conf.py || die
# Remove the release notes section which requires reno

@ -0,0 +1,36 @@
From 3aa8cc92e474e91c2a4014b4b4ec2f1e4b2e620a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
Date: Thu, 28 Mar 2024 13:20:00 +0100
Subject: [PATCH] Replace deprecated `pytest.warns(None)`
Replace the deprecated `pytest.warns(None)` use with the `error` warning
filter, as recommended
in https://github.com/pytest-dev/pytest/issues/9404#issue-1076710891.
With this change, the tests pass with pytest-8.1.1.
---
tests/unit/test_call_run.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/unit/test_call_run.py b/tests/unit/test_call_run.py
index 30972c1a..88a72714 100644
--- a/tests/unit/test_call_run.py
+++ b/tests/unit/test_call_run.py
@@ -1,3 +1,4 @@
+import warnings
from unittest.mock import patch
import pytest
@@ -35,11 +36,10 @@ def test_run_with_cfg(self):
)
def test_doesnt_warn_about_expected_kwargs(self, expected_kwarg):
kw = {expected_kwarg: 123}
- with pytest.warns(None) as warn_rec:
+ with warnings.catch_warnings():
+ warnings.simplefilter("error")
run("", **kw)
- assert not len(warn_rec)
-
class TestParseGlobalCfg:
def test_path_correct(self):

@ -44,6 +44,11 @@ BDEPEND="
distutils_enable_tests pytest
src_prepare() {
local PATCHES=(
# https://github.com/taverntesting/tavern/pull/922
"${FILESDIR}/${P}-pytest-8.patch"
)
# strip unnecessary pins, upstream doesn't update them a lot
sed -i -E -e 's:,?<=?[0-9.]+::' pyproject.toml || die
distutils-r1_src_prepare

Binary file not shown.

@ -1 +1 @@
Thu, 28 Mar 2024 12:10:31 +0000
Thu, 28 Mar 2024 14:10:32 +0000

@ -1 +1 @@
Thu, 28 Mar 2024 12:10:31 +0000
Thu, 28 Mar 2024 14:10:32 +0000

Binary file not shown.

@ -13,4 +13,4 @@ RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://files.pythonhosted.org/packages/source/r/requests-mock/requests-mock-1.12.0.tar.gz
_eclasses_=distutils-r1 8262de2e5a28df8624b96e031d8d0f2b flag-o-matic 24c947ff5f858625cf0b33c15eed4425 multibuild d67e78a235f541871c7dfe4cf7931489 multilib c19072c3cd7ac5cb21de013f7e9832e0 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 2eecb475512bc76e5ea9192a681b9e6b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f python-utils-r1 8904b60325f22500b0c3ad4b68a42448 toolchain-funcs e56c7649b804f051623c8bc1a1c44084
_md5_=40117a8b361026ef0a2ddb32a19c8639
_md5_=93bb300b3545b94b6272df27d4f4f17a

@ -13,4 +13,4 @@ RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/taverntesting/tavern/archive/2.10.1.tar.gz -> tavern-2.10.1.gh.tar.gz
_eclasses_=distutils-r1 8262de2e5a28df8624b96e031d8d0f2b flag-o-matic 24c947ff5f858625cf0b33c15eed4425 multibuild d67e78a235f541871c7dfe4cf7931489 multilib c19072c3cd7ac5cb21de013f7e9832e0 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f python-utils-r1 8904b60325f22500b0c3ad4b68a42448 toolchain-funcs e56c7649b804f051623c8bc1a1c44084
_md5_=a9cb06783e8863865645c67045f889db
_md5_=31cfb79c1eeaf891034b11a1ab285978

@ -0,0 +1,17 @@
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 virtual/pkgconfig
DEFINED_PHASES=compile configure install postinst prepare setup test
DEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux app-alternatives/awk sys-libs/libcap cups? ( net-print/cups ) app-arch/lz4:= app-arch/zstd:= app-arch/brotli:= dbengine? ( dev-libs/judy dev-libs/openssl:= ) dev-libs/libpcre2:= dev-libs/libuv:= dev-libs/libyaml dev-libs/protobuf:= bpf? ( virtual/libelf:= ) sys-libs/zlib ipmi? ( sys-libs/freeipmi ) dev-libs/json-c:= mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl:= ) nodejs? ( net-libs/nodejs ) prometheus? ( app-arch/snappy:= dev-libs/protobuf:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) mysql? ( python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/mysqlclient[python_targets_python3_11(-)] ) ) postgres? ( python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/psycopg:2[python_targets_python3_11(-)] ) ) tor? ( python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) python_single_target_python3_11? ( net-libs/stem[python_targets_python3_11(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) systemd? ( sys-apps/systemd ) virtual/pkgconfig
DESCRIPTION=Linux real time system monitoring, done right!
EAPI=8
HOMEPAGE=https://github.com/netdata/netdata https://my-netdata.io/
IDEPEND=filecaps? ( sys-libs/libcap )
INHERIT=cmake fcaps linux-info optfeature python-single-r1 systemd
IUSE=aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python systemd tor xen +filecaps python_single_target_python3_10 python_single_target_python3_11
KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86
LICENSE=GPL-3+ MIT BSD
RDEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux app-alternatives/awk sys-libs/libcap cups? ( net-print/cups ) app-arch/lz4:= app-arch/zstd:= app-arch/brotli:= dbengine? ( dev-libs/judy dev-libs/openssl:= ) dev-libs/libpcre2:= dev-libs/libuv:= dev-libs/libyaml dev-libs/protobuf:= bpf? ( virtual/libelf:= ) sys-libs/zlib ipmi? ( sys-libs/freeipmi ) dev-libs/json-c:= mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl:= ) nodejs? ( net-libs/nodejs ) prometheus? ( app-arch/snappy:= dev-libs/protobuf:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) mysql? ( python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/mysqlclient[python_targets_python3_11(-)] ) ) postgres? ( python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/psycopg:2[python_targets_python3_11(-)] ) ) tor? ( python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) python_single_target_python3_11? ( net-libs/stem[python_targets_python3_11(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) systemd? ( sys-apps/systemd )
REQUIRED_USE=mysql? ( python ) python? ( ^^ ( python_single_target_python3_10 python_single_target_python3_11 ) ) tor? ( python )
SLOT=0
SRC_URI=https://github.com/netdata/netdata/releases/download/v1.45.1/netdata-v1.45.1.tar.gz -> netdata-1.45.1.tar.gz
_eclasses_=cmake c7c9a62d6232cac66d4ea32d575c3e7c fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 24c947ff5f858625cf0b33c15eed4425 linux-info 7ca3057b277f1e5978947b4cc289ce62 multilib c19072c3cd7ac5cb21de013f7e9832e0 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 8904b60325f22500b0c3ad4b68a42448 systemd c8b03e8df84486aa991d4396686e8942 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 xdg-utils baea6080dd821f5562d715887954c9d3
_md5_=23780c4b4035ec1b5d898b8469dc84e2

@ -1,16 +1,16 @@
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5 virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl]
DEFINED_PHASES=compile configure install postinst prepare setup test unpack
DEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux app-alternatives/awk sys-libs/libcap cups? ( net-print/cups ) app-arch/lz4:= app-arch/zstd:= app-arch/brotli:= dbengine? ( dev-libs/judy dev-libs/openssl:= ) dev-libs/libpcre2:= dev-libs/libuv:= dev-libs/libyaml dev-libs/protobuf:= bpf? ( virtual/libelf:= ) sys-libs/zlib ipmi? ( sys-libs/freeipmi ) dev-libs/json-c:= mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl:= ) nodejs? ( net-libs/nodejs ) prometheus? ( app-arch/snappy:= dev-libs/protobuf:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) mysql? ( python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/mysqlclient[python_targets_python3_11(-)] ) ) postgres? ( python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/psycopg:2[python_targets_python3_11(-)] ) ) tor? ( python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) python_single_target_python3_11? ( net-libs/stem[python_targets_python3_11(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) virtual/pkgconfig
DEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux app-alternatives/awk sys-libs/libcap cups? ( net-print/cups ) app-arch/lz4:= app-arch/zstd:= app-arch/brotli:= dbengine? ( dev-libs/judy dev-libs/openssl:= ) dev-libs/libpcre2:= dev-libs/libuv:= dev-libs/libyaml dev-libs/protobuf:= bpf? ( virtual/libelf:= ) sys-libs/zlib ipmi? ( sys-libs/freeipmi ) dev-libs/json-c:= mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl:= ) nodejs? ( net-libs/nodejs ) prometheus? ( app-arch/snappy:= dev-libs/protobuf:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) mysql? ( python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/mysqlclient[python_targets_python3_11(-)] ) ) postgres? ( python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/psycopg:2[python_targets_python3_11(-)] ) ) tor? ( python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) python_single_target_python3_11? ( net-libs/stem[python_targets_python3_11(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) systemd? ( sys-apps/systemd ) virtual/pkgconfig
DESCRIPTION=Linux real time system monitoring, done right!
EAPI=8
HOMEPAGE=https://github.com/netdata/netdata https://my-netdata.io/
IDEPEND=filecaps? ( sys-libs/libcap )
INHERIT=cmake fcaps linux-info optfeature python-single-r1 systemd git-r3
IUSE=aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python tor xen +filecaps python_single_target_python3_10 python_single_target_python3_11
IUSE=aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python systemd tor xen +filecaps python_single_target_python3_10 python_single_target_python3_11
LICENSE=GPL-3+ MIT BSD
PROPERTIES=live
RDEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux app-alternatives/awk sys-libs/libcap cups? ( net-print/cups ) app-arch/lz4:= app-arch/zstd:= app-arch/brotli:= dbengine? ( dev-libs/judy dev-libs/openssl:= ) dev-libs/libpcre2:= dev-libs/libuv:= dev-libs/libyaml dev-libs/protobuf:= bpf? ( virtual/libelf:= ) sys-libs/zlib ipmi? ( sys-libs/freeipmi ) dev-libs/json-c:= mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl:= ) nodejs? ( net-libs/nodejs ) prometheus? ( app-arch/snappy:= dev-libs/protobuf:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) mysql? ( python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/mysqlclient[python_targets_python3_11(-)] ) ) postgres? ( python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/psycopg:2[python_targets_python3_11(-)] ) ) tor? ( python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) python_single_target_python3_11? ( net-libs/stem[python_targets_python3_11(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl )
RDEPEND=acct-group/netdata acct-user/netdata app-misc/jq >=app-shells/bash-4:0 || ( net-analyzer/openbsd-netcat net-analyzer/netcat ) net-libs/libwebsockets net-misc/curl net-misc/wget sys-apps/util-linux app-alternatives/awk sys-libs/libcap cups? ( net-print/cups ) app-arch/lz4:= app-arch/zstd:= app-arch/brotli:= dbengine? ( dev-libs/judy dev-libs/openssl:= ) dev-libs/libpcre2:= dev-libs/libuv:= dev-libs/libyaml dev-libs/protobuf:= bpf? ( virtual/libelf:= ) sys-libs/zlib ipmi? ( sys-libs/freeipmi ) dev-libs/json-c:= mongodb? ( dev-libs/mongo-c-driver ) nfacct? ( net-firewall/nfacct net-libs/libmnl:= ) nodejs? ( net-libs/nodejs ) prometheus? ( app-arch/snappy:= dev-libs/protobuf:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) mysql? ( python_single_target_python3_10? ( dev-python/mysqlclient[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/mysqlclient[python_targets_python3_11(-)] ) ) postgres? ( python_single_target_python3_10? ( dev-python/psycopg:2[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/psycopg:2[python_targets_python3_11(-)] ) ) tor? ( python_single_target_python3_10? ( net-libs/stem[python_targets_python3_10(-)] ) python_single_target_python3_11? ( net-libs/stem[python_targets_python3_11(-)] ) ) ) xen? ( app-emulation/xen-tools dev-libs/yajl ) systemd? ( sys-apps/systemd )
REQUIRED_USE=mysql? ( python ) python? ( ^^ ( python_single_target_python3_10 python_single_target_python3_11 ) ) tor? ( python )
SLOT=0
_eclasses_=cmake c7c9a62d6232cac66d4ea32d575c3e7c fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 24c947ff5f858625cf0b33c15eed4425 git-r3 86fa1f157b70b9d2ff340c4633b1cf4b linux-info 7ca3057b277f1e5978947b4cc289ce62 multilib c19072c3cd7ac5cb21de013f7e9832e0 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 8904b60325f22500b0c3ad4b68a42448 systemd c8b03e8df84486aa991d4396686e8942 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 xdg-utils baea6080dd821f5562d715887954c9d3
_md5_=035a60a62137bc40cef69c2003a6f84f
_md5_=23780c4b4035ec1b5d898b8469dc84e2

@ -9,6 +9,6 @@ LICENSE=GPL-3
RDEPEND=acct-group/prowlarr acct-user/prowlarr dev-libs/icu dev-util/lttng-ust:0 dev-db/sqlite
RESTRICT=bindist strip test
SLOT=0
SRC_URI=amd64? ( elibc_glibc? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.14.3.4333/Prowlarr.master.1.14.3.4333.linux-core-x64.tar.gz ) elibc_musl? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.14.3.4333/Prowlarr.master.1.14.3.4333.linux-musl-core-x64.tar.gz ) ) arm? ( elibc_glibc? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.14.3.4333/Prowlarr.master.1.14.3.4333.linux-core-arm.tar.gz ) elibc_musl? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.14.3.4333/Prowlarr.master.1.14.3.4333.linux-musl-core-arm.tar.gz ) ) arm64? ( elibc_glibc? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.14.3.4333/Prowlarr.master.1.14.3.4333.linux-core-arm64.tar.gz ) elibc_musl? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.14.3.4333/Prowlarr.master.1.14.3.4333.linux-musl-core-arm64.tar.gz ) )
SRC_URI=amd64? ( elibc_glibc? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.15.0.4361/Prowlarr.master.1.15.0.4361.linux-core-x64.tar.gz ) elibc_musl? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.15.0.4361/Prowlarr.master.1.15.0.4361.linux-musl-core-x64.tar.gz ) ) arm? ( elibc_glibc? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.15.0.4361/Prowlarr.master.1.15.0.4361.linux-core-arm.tar.gz ) elibc_musl? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.15.0.4361/Prowlarr.master.1.15.0.4361.linux-musl-core-arm.tar.gz ) ) arm64? ( elibc_glibc? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.15.0.4361/Prowlarr.master.1.15.0.4361.linux-core-arm64.tar.gz ) elibc_musl? ( https://github.com/Prowlarr/Prowlarr/releases/download/v1.15.0.4361/Prowlarr.master.1.15.0.4361.linux-musl-core-arm64.tar.gz ) )
_eclasses_=multilib c19072c3cd7ac5cb21de013f7e9832e0 systemd c8b03e8df84486aa991d4396686e8942 toolchain-funcs e56c7649b804f051623c8bc1a1c44084
_md5_=4cad2147353b6e499f8158ae4b012e84

@ -9,6 +9,6 @@ LICENSE=GPL-3
RDEPEND=acct-group/sonarr acct-user/sonarr media-video/mediainfo dev-libs/icu dev-util/lttng-ust:0 dev-db/sqlite
RESTRICT=bindist strip test
SLOT=0
SRC_URI=amd64? ( elibc_glibc? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1367/Sonarr.develop.4.0.2.1367.linux-x64.tar.gz ) elibc_musl? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1367/Sonarr.develop.4.0.2.1367.linux-musl-x64.tar.gz ) ) arm? ( elibc_glibc? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1367/Sonarr.develop.4.0.2.1367.linux-arm.tar.gz ) ) arm64? ( elibc_glibc? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1367/Sonarr.develop.4.0.2.1367.linux-arm64.tar.gz ) elibc_musl? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1367/Sonarr.develop.4.0.2.1367.linux-musl-arm64.tar.gz ) )
SRC_URI=amd64? ( elibc_glibc? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1408/Sonarr.develop.4.0.2.1408.linux-x64.tar.gz ) elibc_musl? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1408/Sonarr.develop.4.0.2.1408.linux-musl-x64.tar.gz ) ) arm? ( elibc_glibc? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1408/Sonarr.develop.4.0.2.1408.linux-arm.tar.gz ) ) arm64? ( elibc_glibc? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1408/Sonarr.develop.4.0.2.1408.linux-arm64.tar.gz ) elibc_musl? ( https://github.com/Sonarr/Sonarr/releases/download/v4.0.2.1408/Sonarr.develop.4.0.2.1408.linux-musl-arm64.tar.gz ) )
_eclasses_=multilib c19072c3cd7ac5cb21de013f7e9832e0 systemd c8b03e8df84486aa991d4396686e8942 toolchain-funcs e56c7649b804f051623c8bc1a1c44084
_md5_=d2434edc294d6dfc5195155c8c3d1bd8

@ -1 +1 @@
Thu, 28 Mar 2024 12:10:31 +0000
Thu, 28 Mar 2024 14:10:32 +0000

@ -1 +1 @@
Thu Mar 28 12:10:31 PM UTC 2024
Thu Mar 28 02:10:32 PM UTC 2024

@ -1 +1 @@
Thu, 28 Mar 2024 12:30:01 +0000
Thu, 28 Mar 2024 14:30:00 +0000

@ -1 +1 @@
3be9c0ed6b834250ba3f2346e4ca0199ced56f1a 1711624872 2024-03-28T11:21:12+00:00
b20fdb60f530ab07059a8b0627bb96d2e6c75a89 1711634655 2024-03-28T14:04:15+00:00

@ -1 +1 @@
1711627800 Thu 28 Mar 2024 12:10:00 PM UTC
1711635000 Thu 28 Mar 2024 02:10:00 PM UTC

@ -1 +1 @@
Thu, 28 Mar 2024 12:10:31 +0000
Thu, 28 Mar 2024 14:10:32 +0000

Binary file not shown.

@ -1,2 +1,3 @@
DIST netdata-1.44.0.tar.gz 47423685 BLAKE2B 2b430d07abed1e49c5b7a3c24188446e929301eecc849d03ee9c33860f13942dbc06453401d166195b1aadd16e28e19b7533d16fc10e6f3eca51117b52485a85 SHA512 ef3534351504385ac33e18917a839c6506c377a4f25246d8819da916c6e46ae3d2d6f5422e8a685fd3aabbf851829233943abce8a8aeba0ce94db011ed406602
DIST netdata-1.45.0.tar.gz 74873918 BLAKE2B c7b255b25e48f3594c652f69b80a9b18ea836dfb11d1e82606240a83baf4d62d1f14a718e933f3c9455333971c9a5dac8b48f3cebd0bfcc52b0cb91a34af7920 SHA512 d6e3b3def40995fb25afc5cb6e6ce83b7f6a33e095351f16bf8a5279196638b62a2b4175cb513a262eb2b6981952c129c58302ecf6b9d0d720fb7e0f27d43d29
DIST netdata-1.45.1.tar.gz 74875031 BLAKE2B 9d1f912288f316f2a08bb2d91b99a5e401107d27d8ff795806e93142a6f0dbaefdab9d0bef4a4790a4d3ab3c5820e5dd16e175543c1dcdbf5d010dfb68811eeb SHA512 f658f40084d2b7accbcfe59b853bb63f2701b65358ca29eff354447819eeff9309fde207b49bff1b02c9d8f23fa4ec74269bbd083840d6d3ac0e657600952f83

@ -0,0 +1,155 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python{3_9,3_10,3_11} )
inherit cmake fcaps linux-info optfeature python-single-r1 systemd
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/netdata/${PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
fi
DESCRIPTION="Linux real time system monitoring, done right!"
HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/"
LICENSE="GPL-3+ MIT BSD"
SLOT="0"
IUSE="aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python systemd tor xen"
REQUIRED_USE="
mysql? ( python )
python? ( ${PYTHON_REQUIRED_USE} )
tor? ( python )"
# most unconditional dependencies are for plugins.d/charts.d.plugin:
RDEPEND="
acct-group/netdata
acct-user/netdata
app-misc/jq
>=app-shells/bash-4:0
|| (
net-analyzer/openbsd-netcat
net-analyzer/netcat
)
net-libs/libwebsockets
net-misc/curl
net-misc/wget
sys-apps/util-linux
app-alternatives/awk
sys-libs/libcap
cups? ( net-print/cups )
app-arch/lz4:=
app-arch/zstd:=
app-arch/brotli:=
dbengine? (
dev-libs/judy
dev-libs/openssl:=
)
dev-libs/libpcre2:=
dev-libs/libuv:=
dev-libs/libyaml
dev-libs/protobuf:=
bpf? ( virtual/libelf:= )
sys-libs/zlib
ipmi? ( sys-libs/freeipmi )
dev-libs/json-c:=
mongodb? ( dev-libs/mongo-c-driver )
nfacct? (
net-firewall/nfacct
net-libs/libmnl:=
)
nodejs? ( net-libs/nodejs )
prometheus? (
app-arch/snappy:=
dev-libs/protobuf:=
)
python? (
${PYTHON_DEPS}
$(python_gen_cond_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
mysql? ( $(python_gen_cond_dep 'dev-python/mysqlclient[${PYTHON_USEDEP}]') )
postgres? ( $(python_gen_cond_dep 'dev-python/psycopg:2[${PYTHON_USEDEP}]') )
tor? ( $(python_gen_cond_dep 'net-libs/stem[${PYTHON_USEDEP}]') )
)
xen? (
app-emulation/xen-tools
dev-libs/yajl
)
systemd? ( sys-apps/systemd )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
FILECAPS=(
'cap_dac_read_search,cap_sys_ptrace+ep'
'usr/libexec/netdata/plugins.d/apps.plugin'
'usr/libexec/netdata/plugins.d/debugfs.plugin'
)
pkg_setup() {
use python && python-single-r1_pkg_setup
linux-info_pkg_setup
}
src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_Git=TRUE
-DCMAKE_INSTALL_PREFIX=/
-DENABLE_ACLK=$(usex aclk)
-DENABLE_CLOUD=$(usex cloud)
-DENABLE_DBENGINE=$(usex dbengine)
-DENABLE_PLUGIN_CUPS=$(usex cups)
-DENABLE_PLUGIN_NFACCT=$(usex nfacct)
-DENABLE_PLUGIN_FREEIPMI=$(usex ipmi)
-DENABLE_EXPORTER_MONGODB=$(usex mongodb)
-DENABLE_EXPORTER_PROMETHEUS_REMOTE_WRITE=$(usex prometheus)
-DENABLE_PLUGIN_XENSTAT=$(usex xen)
-DENABLE_PLUGIN_EBPF=$(usex bpf)
-DENABLE_PLUGIN_GO=FALSE
-DENABLE_PLUGIN_SYSTEMD_JOURNAL=$(usex systemd)
)
cmake_src_configure
}
src_install() {
cmake_src_install
rm -rf "${D}/var/cache" || die
rm -rf "${D}/var/run" || die
keepdir /var/log/netdata
fowners -Rc netdata:netdata /var/log/netdata
keepdir /var/lib/netdata
keepdir /var/lib/netdata/registry
keepdir /var/lib/netdata/cloud.d
fowners -Rc netdata:netdata /var/lib/netdata
newinitd "${D}/usr/lib/netdata/system/openrc/init.d/netdata" "${PN}"
newconfd "${D}/usr/lib/netdata/system/openrc/conf.d/netdata" "${PN}"
systemd_newunit "${D}/usr/lib/netdata/system/systemd/netdata.service.v235" netdata.service
systemd_dounit "${D}/usr/lib/netdata/system/systemd/netdata-updater.service"
systemd_dounit "${D}/usr/lib/netdata/system/systemd/netdata-updater.timer"
insinto /etc/netdata
doins system/netdata.conf
}
pkg_postinst() {
fcaps_pkg_postinst
if use nfacct ; then
fcaps 'cap_net_admin' 'usr/libexec/netdata/plugins.d/nfacct.plugin'
fi
if use xen ; then
fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/xenstat.plugin'
fi
if use ipmi ; then
fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/freeipmi.plugin'
fi
optfeature "go.d external plugin" net-analyzer/netdata-go-plugin
}

@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/"
LICENSE="GPL-3+ MIT BSD"
SLOT="0"
IUSE="aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python tor xen"
IUSE="aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python systemd tor xen"
REQUIRED_USE="
mysql? ( python )
python? ( ${PYTHON_REQUIRED_USE} )
@ -78,7 +78,8 @@ RDEPEND="
xen? (
app-emulation/xen-tools
dev-libs/yajl
)"
)
systemd? ( sys-apps/systemd )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
@ -108,6 +109,7 @@ src_configure() {
-DENABLE_PLUGIN_XENSTAT=$(usex xen)
-DENABLE_PLUGIN_EBPF=$(usex bpf)
-DENABLE_PLUGIN_GO=FALSE
-DENABLE_PLUGIN_SYSTEMD_JOURNAL=$(usex systemd)
)
cmake_src_configure
}

Binary file not shown.

@ -1,6 +1,6 @@
DIST Prowlarr.master.1.14.3.4333.linux-core-arm.tar.gz 87104562 BLAKE2B 7ca1d95b4a34280a5da867de935af6bb6bd22eb2f28af8c0f4ff8a4372717b40b0de72ba4d3cddf3de5da26c218db8d22bdd12fbd88848cef6761382f9729e7d SHA512 8bca2a702f0048f2ec8a62ec3761180e390ec7c0ca9be5261505ff2c11a1c298bdac73c5d38ad64d66d052144c5c34d70be4960f35fca94dacbebfee6832c2a1
DIST Prowlarr.master.1.14.3.4333.linux-core-arm64.tar.gz 86391731 BLAKE2B 6ee3779c434af683a349b31246c57c6bcc8de872f989e661048f70e0932d09e23f63a3f1f0bfa89d924112392a6dd3fcb28d287e8a2c017357ba3acc59754ad9 SHA512 857c98288d63e577fdb5a50d7aa8e2b81af8f14de692f32d7f328c1c73aaf8448240f4549dfcf656c25f24f49deafa7bc243855bcbb3cd3f43e78c2798a12128
DIST Prowlarr.master.1.14.3.4333.linux-core-x64.tar.gz 91394597 BLAKE2B 3cfc7d6bbbba3652dd8fd4424c2e68bb11e64e1a425cbcf5f8d80cea8c90cb651b4cd6d48931fe65523bce7ddf98363ef66815d8f860a608ba95915d881c02ce SHA512 b49325d24d2000044072777716df383630282ac88eaf5e70338be612e8af0b1675375cc0b2d912e3fe5f1faa32e7249e90c73ce570a03a05a1c677572927556a
DIST Prowlarr.master.1.14.3.4333.linux-musl-core-arm.tar.gz 87172398 BLAKE2B 750d3bb0f3b3de0bbf124fdefe7ffd3b53290fc2002d4fc48760f6fe3710514d01e5ded6941b082c3b0b884ea788e0b9a010c84fd1f377667cc7ab75c021e302 SHA512 e41b83e2b3f080d2e104a966f097b73ec10022bf90ea4e85fbf8c91a8a5a21814dc8369fc4fe0567efe7a5fd617d5598473d52b31001e42630033035c306f500
DIST Prowlarr.master.1.14.3.4333.linux-musl-core-arm64.tar.gz 86447873 BLAKE2B df5a0088f6b585a8c30df7dc29cc50fb08228c6d3eefba3009290dfe11e972bc127c1ef1bdbcc542c87dbe76425052fdf1fe5cfd879664645b48d3f31437a4f6 SHA512 708f075fd736c8f7ddefca2d50f109aeed9f9459ec1e983c88ff6bc6cc7591a3e170eccab436c0fb1d3716585a04c0e81db9c4c5dc077adb5ee0840f3b44221e
DIST Prowlarr.master.1.14.3.4333.linux-musl-core-x64.tar.gz 90471128 BLAKE2B 8e196326957b87c3ece9f183ebd2499f958655505f445d327813cc686be462033d8515584286cd35e20ad06eab2baa390ffed462abd14136bd7048b092f4e062 SHA512 90dc63f86ae87c540bf5cfba05e6e9ef9d460910a37bc7885bc91420493a1a1b21613fe594925269f012fac18dda3c8644d09a3395558bb775d5e38a81882b90
DIST Prowlarr.master.1.15.0.4361.linux-core-arm.tar.gz 87098625 BLAKE2B da7ac5738b40c9e4f3ca8219839f00a58a6a022a041af14f0ed98b5b5b9eb7a7641bab75444a5b4e9afa77052358245948453cf07e634163f5f373b81cbe8e83 SHA512 3574f276164f43ff3ee3f0ea083e1ea871b5a7eeea8e277389140888be39d34cf9dfcc7121e5129255328de6af728da22619465b79eeb6b222088cd4856eeb62
DIST Prowlarr.master.1.15.0.4361.linux-core-arm64.tar.gz 86352257 BLAKE2B fc9e810fe98d11a58d77fdd21ec52479860721015628bf34421eedadfaaa28f2cc833e902eb886b9387a12e55eb2f0f4c046735ff371d5b553f2f497a3c96f3d SHA512 a41958a569b07563fd564734720f6e134144d545c85a5bb6fd7b6441d72e113e4d48982331989c4b3a172c3ad065ea5557425cf92061e8fd5891f3da12eed04a
DIST Prowlarr.master.1.15.0.4361.linux-core-x64.tar.gz 91380374 BLAKE2B 9cf44e7e37e06ccb44be79b44ab0119bc56470dc03e0d1e98495ef830287350683999d111ab8fcdb92dfa15aa06a01b604823cdf1cf5d9fa7326c6f259c28404 SHA512 1aa1e5efb14fb9e082f1428705aad70dedd7d10376fbc4e69e56e07977cf1fe85ef9a05966bcad2374ad78b7f604c205d25a7bbbf07f12cf094babb835a27907
DIST Prowlarr.master.1.15.0.4361.linux-musl-core-arm.tar.gz 87161102 BLAKE2B 8a2d0d6633db6626be384000e3ea5cd2fa786b897ca0c0924590131f0f89f489fccf397e209bf5fae4e3b6b065a96f5f2738ada310d872c2652ae047db9339c6 SHA512 bf9d0c6626a44e793d52f9e0e42b47c953948b2e241198aa3f332c988717ea465d5e7cc4339d643c1e95d9adfbeb2b453bc170cc24663547bcddd86734367bb9
DIST Prowlarr.master.1.15.0.4361.linux-musl-core-arm64.tar.gz 86408081 BLAKE2B e485b3d8e1ef90d1afd43809d1186b571af2143845c5b723a923bac55f1cb1b1dc2713177965866ee9ece3c62370ccd6249a9e3c18c4538cf9c3b3d47fdae992 SHA512 9e25d0ad08408635d2aadbdc7709b15e3e8c45b1a29163d3ba74add7197e49ebf5e74be2a3cb37fc7d1caf36ad450544586c13a76a3e2aceeebaf7a1de6ceafe
DIST Prowlarr.master.1.15.0.4361.linux-musl-core-x64.tar.gz 90443100 BLAKE2B e1adad3fc093f3ef19cf32cd4c41852336509f6f548e4412fc60d8f29fcb1ddd3f39928c2975a0aa45909c3c7f4f700f90a33508cbc5bf756164a5b49b1572c0 SHA512 b1bbd0ec418aec6204e246c40a01a4ecc07704fe8590412e50751e352756286233a9e3fa6e613bbaea01f7f4340018746d2fa694306d37bcf8f06a6b71770bbc

@ -1,5 +1,5 @@
DIST Sonarr.develop.4.0.2.1367.linux-arm.tar.gz 94800748 BLAKE2B d62d333540b0cc22f92213739ef5bd62b140faa27ce21d312dd90330a4fd15a981dbbe29a9ec2f2dccff18415f5083b9cc9276d205b788b4623ee6e595a697b4 SHA512 5e844e772c54522a304c6fd45159ae17fc8e1b161e8499127c47a541f9db8a3a97b2cf3d4770338f734e04d4549d1c8e1a9dec80f0ac14316c0b10d6d62f5213
DIST Sonarr.develop.4.0.2.1367.linux-arm64.tar.gz 94538279 BLAKE2B efdbe20916d49efa5b72ed6ea685074047f485b95ff7f61eed0bec89a40c312efe32462a4961fb04f4e8c84a3b86997c0b05467b094254861031e1a2f9abe82a SHA512 6090a0a68a3419f2a052e22579f13a404b51c015bb6cfa87aa07fd60c6840094dbdb64abc65b709f6fd80567ad071d61e07a8e083b264dd669e907786e9e9dd7
DIST Sonarr.develop.4.0.2.1367.linux-musl-arm64.tar.gz 94595064 BLAKE2B 2303e05301d37e2013bf093fab5b1ece7799559e81dc5b3ad92195a77571a610f78caee3dd6018bbedea8fbd0362ea56d91866a7f0f69a508219479529ff3d22 SHA512 4a74a267122cdf5834dfbbe61e223ff92a141ff51a9f8f0d1b88931e12388d408758a8f728576054671e6c3be773fda86f152ff72712c4b310cc8edda387ab39
DIST Sonarr.develop.4.0.2.1367.linux-musl-x64.tar.gz 99532251 BLAKE2B 590a30ad8c8cb69d2bc9061550a29b24e9db900f6c73efa5adfe9ad863e7e7bfa714fc0248d45a71e18b3647b29f4a1bc3964a4b459529072b496b0f3ebad013 SHA512 70a95780e7f760fb253b4694cb0a6548c81472150b8be79bc0931e2dfed060919543aa7223aa72a2c51433ec302ce82070b468150703229f2c62a6470ccda18d
DIST Sonarr.develop.4.0.2.1367.linux-x64.tar.gz 100474997 BLAKE2B 9280b671efcfee907e2ccd3606ee8e392c65dd170fd0deea437b5c4cf59998df0a6eb155a336ecda3bf508a2ee45f4d8c8cb4b1bb2dd570f4b6d54e609d3171b SHA512 bd9941903c0348b55d554688c1f071abd3a73c4d6c0ce8e4d5f0c33c6099ef8c0145a44bd16fef9b22cf85fc95d9350359968e9e4d509bbf18198fc8fac1fec3
DIST Sonarr.develop.4.0.2.1408.linux-arm.tar.gz 94812808 BLAKE2B 73e6387b6811ba199882f8e06d2638d388a57b8179c332487396f9061073375819353ba4a8617aee684c406733c6389b0314c83ad694bc0525a23008c09b59d0 SHA512 41b24ba0c8d298b7aa7865da5b674691f0be2b38b38772a5a2d89027fd00c5e2102a78795ce2a3fc3d729a8d6ddd81b4f1d773b4ca693dbe82781f33e8d5dec8
DIST Sonarr.develop.4.0.2.1408.linux-arm64.tar.gz 94542349 BLAKE2B 18a248f005d169adc5fdf43a8139f9bd2539610f93be0a47e7b03309d2433460b85d166e804a41cc3d6376df23a0ce7d0a99e4a9557dfc005701c6e2c1b58223 SHA512 2fd1ec368ef434291508f37ff1ffca8502a8c69a7828ab56034d8d6c58f82f2b3ebe50f42b743be83000cb2dc1469f5920f099e89cdf61bf0721cbca9ff3ecb0
DIST Sonarr.develop.4.0.2.1408.linux-musl-arm64.tar.gz 94603860 BLAKE2B dfe38df7c22002204db996a72109d803c969c9b5948fd67e1359d70ef1c90df7d6fe7aa4850c2b1582273815fca657e8d83e1115289439ddf12595cb7be1bd4f SHA512 392e9ff013492ff2544e278b0113d7aa53266307816a36d830276aff5ce1d2b64e803829e7da4d087d44d13f19efa67682e5de6a49afe03156c05fb5dfba291d
DIST Sonarr.develop.4.0.2.1408.linux-musl-x64.tar.gz 99551543 BLAKE2B 881d8fb80d346838dc895b5511404e624953d6a787420174939768c5829ae2159b0b5376d262324e9163f10da2e2cd0c238361a05a3629b9040de7eb3c71c840 SHA512 2035509ac579678fffa60e77444cfde68bad98b85db959a2decb1cf2c6cfff692f642241fa66907e1888fd00918e4c8b7d5dfdb4f2816b5c98f37f547eeaaf83
DIST Sonarr.develop.4.0.2.1408.linux-x64.tar.gz 100479247 BLAKE2B dc49fe44a7d783a2f7c44d17851ea551a17b2d40d72b144ae4c102997ed0c8d85778a3382fe8b5f66eac2acbae2a682fe307ec02bd32915bd522a9c71355a537 SHA512 cf12588f6a3c3424463bc1aa0fe1ba11085ae52aaed411d821ebd6a272fd1b9a2ad10d147280f7192e9d393c4ca4e968ce4880da39ade085b75b786481987a7a

Loading…
Cancel
Save