diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-01-17 20:06:58 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-01-17 20:06:58 +0000 |
commit | 08c5e4df7a4b66ba8dbb827ca2e3a973d4f19ab0 (patch) | |
tree | 347af25df153363454776e1fe95fc4e8100a7e7d /dev-build/gyp | |
parent | fc6e577018dec28e18904f9ad5c1417976e3c728 (diff) |
gentoo auto-resync : 17:01:2024 - 20:06:58
Diffstat (limited to 'dev-build/gyp')
-rw-r--r-- | dev-build/gyp/Manifest | 4 | ||||
-rw-r--r-- | dev-build/gyp/gyp-20200512145953.ebuild | 53 | ||||
-rw-r--r-- | dev-build/gyp/gyp-99999999999999.ebuild | 53 | ||||
-rw-r--r-- | dev-build/gyp/metadata.xml | 12 |
4 files changed, 122 insertions, 0 deletions
diff --git a/dev-build/gyp/Manifest b/dev-build/gyp/Manifest new file mode 100644 index 000000000000..1294444d6d58 --- /dev/null +++ b/dev-build/gyp/Manifest @@ -0,0 +1,4 @@ +DIST gyp-20200512145953.tar.xz 443884 BLAKE2B 74ff269e3e8aa51e6b34f795892f6e8922d098a81b4d855619520d3d366e79b611931cddf4ee2ec60a7e040af11ac8eba7582ad10e24de627df5a4aa4eba6474 SHA512 35bf2af22f2e632b3d6e546e5017df8effd0c7ad80beed9b95ed1e2f294d70215889bc6a0147506461254e951d70189dc48824af10a6620e996945d2cf5586ee +EBUILD gyp-20200512145953.ebuild 1517 BLAKE2B 259ed354bc13caab7d58f6b66658e1e7cd11dfa036fede46e235504530d0649e58e4503d311186fa52461c5f023db0e85d105740ae1e4c855107e90d662dfb52 SHA512 abbed34097844d414a6e8eb4e4f79e3c1acb3f78fb98e79c4b29e060c061e29b67b5e317d61ca0094e764d68ed4270f6afdfae572cf10d0a3d96b6c850e30f9b +EBUILD gyp-99999999999999.ebuild 1520 BLAKE2B 3ca6a99fc6b467d0b7f3ae6d8ae2ef408a60b1293b2510444eb1c0b52f0a93f9d8b173db41a6f9ce29268af60f487a694b2af2038880f376d193e362ff957ef0 SHA512 e34e502fbbfbaf6c8c0efec36f1f2a29584d91858f38775eb1c709a7d2ae4150634da4030e9afaede71b6ab4976626fd0c6803f64ce8b951cd389bfa862a1c3d +MISC metadata.xml 383 BLAKE2B 11d9ccc1a7c12278a0087dd176b09d4ef34a9e9372b1a278e3dc19744605a424f02c38d4c311a4148e4938274780020d45f77a5497fab070e80e0e2e655516cc SHA512 c7c78ed2fbac6a1eaa4e6c9ac1bbca07e6d4584ed925d9a37b53e903ee29497e98720cb5eb94918c103288cdb61e4a586e758e6bfbf5f4ff97c8ff5ba54921de diff --git a/dev-build/gyp/gyp-20200512145953.ebuild b/dev-build/gyp/gyp-20200512145953.ebuild new file mode 100644 index 000000000000..1e3d8e400eef --- /dev/null +++ b/dev-build/gyp/gyp-20200512145953.ebuild @@ -0,0 +1,53 @@ +# Copyright 2017-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_SINGLE_IMPL="1" + +inherit distutils-r1 + +DESCRIPTION="GYP (Generate Your Projects) meta-build system" +HOMEPAGE="https://gyp.gsrc.io/ https://chromium.googlesource.com/external/gyp" + +if [[ "${PV}" == "99999999999999" ]]; then + EGIT_REPO_URI="https://chromium.googlesource.com/external/gyp" + inherit git-r3 +else + SRC_URI="https://home.apache.org/~arfrever/distfiles/${P}.tar.xz" + KEYWORDS="amd64 ~arm64 ~loong ppc64 x86" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="" + +BDEPEND="" +DEPEND="" +RDEPEND="" + +python_prepare_all() { + distutils-r1_python_prepare_all + + sed -e "s/' Linux %s' % ' '\.join(platform.linux_distribution())/' Linux'/" -i gyptest.py || die + sed \ + -e "s/import collections/import collections.abc/" \ + -e "s/collections\.MutableSet/collections.abc.MutableSet/" \ + -i pylib/gyp/common.py || die + sed -e "s/the_dict_key is 'variables'/the_dict_key == 'variables'/" -i pylib/gyp/input.py || die + sed \ + -e "s/import collections/import collections.abc/" \ + -e "s/collections\.Iterable/collections.abc.Iterable/" \ + -i pylib/gyp/msvs_emulation.py || die + sed \ + -e "s/os\.environ\['PRESERVE'\] is not ''/os.environ['PRESERVE'] != ''/" \ + -e "s/conditions is ()/conditions == ()/" \ + -i test/lib/TestCmd.py || die +} + +python_test() { + # More errors with DeprecationWarnings enabled. + local -x PYTHONWARNINGS="" + + "${PYTHON}" gyptest.py --all --verbose +} diff --git a/dev-build/gyp/gyp-99999999999999.ebuild b/dev-build/gyp/gyp-99999999999999.ebuild new file mode 100644 index 000000000000..3ef8251ef799 --- /dev/null +++ b/dev-build/gyp/gyp-99999999999999.ebuild @@ -0,0 +1,53 @@ +# Copyright 2017-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_SINGLE_IMPL="1" + +inherit distutils-r1 + +DESCRIPTION="GYP (Generate Your Projects) meta-build system" +HOMEPAGE="https://gyp.gsrc.io/ https://chromium.googlesource.com/external/gyp" + +if [[ "${PV}" == "99999999999999" ]]; then + EGIT_REPO_URI="https://chromium.googlesource.com/external/gyp" + inherit git-r3 +else + SRC_URI="https://home.apache.org/~arfrever/distfiles/${P}.tar.xz" + KEYWORDS="amd64 ~arm64 ~loong ~ppc64 x86" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="" + +BDEPEND="" +DEPEND="" +RDEPEND="" + +python_prepare_all() { + distutils-r1_python_prepare_all + + sed -e "s/' Linux %s' % ' '\.join(platform.linux_distribution())/' Linux'/" -i gyptest.py || die + sed \ + -e "s/^import collections/import collections.abc/" \ + -e "s/collections\.MutableSet/collections.abc.MutableSet/" \ + -i pylib/gyp/common.py || die + sed -e "s/the_dict_key is 'variables'/the_dict_key == 'variables'/" -i pylib/gyp/input.py || die + sed \ + -e "s/^import collections/import collections.abc/" \ + -e "s/collections\.Iterable/collections.abc.Iterable/" \ + -i pylib/gyp/msvs_emulation.py || die + sed \ + -e "s/os\.environ\['PRESERVE'\] is not ''/os.environ['PRESERVE'] != ''/" \ + -e "s/conditions is ()/conditions == ()/" \ + -i test/lib/TestCmd.py || die +} + +python_test() { + # More errors with DeprecationWarnings enabled. + local -x PYTHONWARNINGS="" + + "${PYTHON}" gyptest.py --all --verbose +} diff --git a/dev-build/gyp/metadata.xml b/dev-build/gyp/metadata.xml new file mode 100644 index 000000000000..58dbc167607e --- /dev/null +++ b/dev-build/gyp/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person" proxied="yes"> + <email>arfrever.fta@gmail.com</email> + <name>Arfrever Frehtes Taifersar Arahesis</name> + </maintainer> + <maintainer type="project"> + <email>cjk@gentoo.org</email> + <name>Cjk</name> + </maintainer> +</pkgmetadata> |