summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2022-04-11 20:05:49 UTCRepository mirror & CI2022-04-113149-4853/+4869
|
* Merge updates from masterRepository mirror & CI2022-04-1115-84/+139
|\
| * dev-python/manuel: EAPI 8, PEP517Michał Górny2022-04-111-0/+37
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-testing: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-schema: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-interface: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-i18nmessageid: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-exceptions: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-event: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-deprecation: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-configuration: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/zope-component: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/sphinxcontrib-bibtex: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/ruamel-yaml: Use distutils_write_namespaceMichał Górny2022-04-111-4/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Bump min. dependency versionsMichał Górny2022-04-111-9/+11
| | | | | | | | | | | | | | | | | | Bump min. dependency versions to match oldest stable in ::gentoo, in order to avoid requiring developers to repeat them in BDEPEND with higher version. Closes: https://github.com/gentoo/gentoo/pull/24965 Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Print deprecation warning for distutils buildsMichał Górny2022-04-111-0/+9
| | | | | | | | | | | | | | | | | | | | Print deprecation warnings for non-PEP517 builds using plain distutils. This is a small subset of Python packages overall, and the first step towards deprecating legacy build support. Transitioning pure distutils packages is also important to avoid .egg-info collisions when we switch from CPython distutils to setuptools-vendored distutils. Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/ruamel-std-pathlib: Use distutils_write_namespaceMichał Górny2022-04-111-6/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Introduce distutils_write_namespaceMichał Górny2022-04-111-0/+41
| | | | | | | | | | | | | | | | Introduce a distutils_write_namespace helper that can be used to temporarily write a namespace __init__.py as needed to run tests when legacy dev-python/namespace-* packages are installed. Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Skip build_ext when there no .c/.pyx filesMichał Górny2022-04-111-1/+11
| | | | | | | | | | | | | | | | | | Skip issuing build_ext when there appears to be no .c/.pyx files. Since starting setuptools is expensive, this gives a major speedup to building pure Python packages. If the check misfires, the worst that can happen is that C extensions will be built serialized. Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Call build_ext instead of build in PEP517 modeMichał Górny2022-04-111-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Call `setup.py build_ext` instead of the wholesale `build` in PEP517 mode. After all, the call is not strictly necessary; it is only done in order to build C extensions in parallel (PEP517 backend does not support specifying job count). By skipping the other tasks build command does (and then repeats via PEP517 call), the ebuild can build a few seconds faster. Since this is a potentially breaking change (but very unlikely to actually break anything), let's test it behind GPEP517_TESTING. Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Update namespace package doc URLMichał Górny2022-04-111-1/+1
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Issue a QA warning if "build" existsMichał Górny2022-04-111-1/+7
| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * distutils-r1.eclass: Prefer "rm -rf build" over "setup.py clean -a"Michał Górny2022-04-111-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prefer using "rm -rf build" directly over "setup.py clean -a". This has three advantages: 1. It is much faster. 2. It works on packages that have broken "setup.py clean", e.g. dev-python/pydantic. 3. It works on packages that block "setup.py clean" and tell you to use "git clean" (sic!), e.g. dev-python/scipy. This is a potentially (but unlikely) breaking change, so do it conditionally to GPEP517_TESTING. Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * dev-python/twisted: Stabilize 22.4.0 arm64, #837845Arthur Zamarin2022-04-111-1/+1
| | | | | | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* | 2022-04-11 19:34:30 UTCRepository mirror & CI2022-04-116-7/+23
| |
* | Merge updates from masterRepository mirror & CI2022-04-118-18/+416
|\|
| * games-engines/devilutionx: fix patch line endingsSam James2022-04-111-12/+11
| | | | | | | | | | Closes: https://bugs.gentoo.org/837764 Signed-off-by: Sam James <sam@gentoo.org>
| * net-ftp/proftpd: update upstream metadataSam James2022-04-111-1/+1
| | | | | | | | Signed-off-by: Sam James <sam@gentoo.org>
| * sci-libs/gdal: use pcre2 instead of pcre1Sam James2022-04-111-0/+329
| | | | | | | | Signed-off-by: Sam James <sam@gentoo.org>
| * dev-libs/libgit2: Stabilize 1.4.2 arm, #837755Arthur Zamarin2022-04-111-1/+1
| | | | | | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
| * sys-apps/fwupd: Revbump to fix vala detectionLars Wendler2022-04-111-2/+1
| | | | | | | | | | | | | | | | which has been changed for EAPI-8 Closes: https://bugs.gentoo.org/837866 Closes: https://bugs.gentoo.org/837857 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
| * dev-libs/libgit2: Stabilize 1.4.2 arm64, #837755Arthur Zamarin2022-04-111-1/+1
| | | | | | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
| * dev-libs/libgit2: Stabilize 1.4.2 ppc64, #837755Arthur Zamarin2022-04-111-1/+1
| | | | | | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
| * dev-libs/libgit2: Stabilize 1.4.2 ppc, #837755Arthur Zamarin2022-04-111-1/+1
| | | | | | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
| * dev-util/flatpak-builder: fixed building for muslAlfred Persson Forsberg2022-04-113-2/+73
| | | | | | | | | | | | | | Closes: https://github.com/gentoo/gentoo/pull/24991 Closes: https://bugs.gentoo.org/834671 Signed-off-by: Alfred Persson Forsberg <cat@catcream.org> Signed-off-by: Zac Medico <zmedico@gentoo.org>
* | 2022-04-11 19:19:29 UTCRepository mirror & CI2022-04-119-18/+18
| |
* | Merge updates from masterRepository mirror & CI2022-04-1110-39/+14
|\|
| * net-nds/tac_plus: use httpsMichael Mair-Keimberger2022-04-113-4/+4
| | | | | | | | | | | | | | Closes: https://github.com/gentoo/gentoo/pull/24996 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
| * dev-util/pycharm-professional: use httpsMichael Mair-Keimberger2022-04-113-7/+7
| | | | | | | | | | | | | | Closes: https://github.com/gentoo/gentoo/pull/24995 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
| * sys-apps/iproute2: remove unused patchMichael Mair-Keimberger2022-04-111-25/+0
| | | | | | | | | | | | | | Closes: https://github.com/gentoo/gentoo/pull/24994 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
| * dev-db/mysql-init-scripts: update tmpfiles pathConrad Kostecki2022-04-113-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | The path '/var/run' is deprecated, as the following message is being shown: /usr/lib/tmpfiles.d/mysql.conf:1: Line references path below legacy directory /var/run/, updating /var/run/mysqld /run/mysqld; please update the tmpfiles.d/ drop-in file accordingly. Closes: https://github.com/gentoo/gentoo/pull/24947 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* | 2022-04-11 19:04:24 UTCRepository mirror & CI2022-04-1124-24/+24
| |
* | Merge updates from masterRepository mirror & CI2022-04-112-3/+10
|\|
| * net-libs/libomemo: Make 0.8.1 USE=-test work without dev-util/cmockaSebastian Pipping2022-04-111-0/+7
| | | | | | | | | | | | Closes: https://bugs.gentoo.org/837827 Signed-off-by: Sebastian Pipping <sping@gentoo.org> Package-Manager: Portage-3.0.30, Repoman-3.0.3
| * eclass/cdrom.eclass: add EAPI 8Conrad Kostecki2022-04-111-3/+3
| | | | | | | | Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* | 2022-04-11 18:34:29 UTCRepository mirror & CI2022-04-116-27/+27
| |
* | Merge updates from masterRepository mirror & CI2022-04-116-274/+13
|\|
| * www-client/microsoft-edge: remove oldStephan Hartmann2022-04-112-117/+0
| | | | | | | | Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
| * www-client/microsoft-edge: amd64 stable (100.0.1185.39)Stephan Hartmann2022-04-111-1/+1
| | | | | | | | Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
| * www-client/microsoft-edge: automated bump (100.0.1185.39)Stephan Hartmann2022-04-112-0/+117
| | | | | | | | Signed-off-by: Stephan Hartmann <sultan@gentoo.org>