summaryrefslogtreecommitdiff
path: root/dev-python/skia-pathops
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/skia-pathops
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/skia-pathops')
-rw-r--r--dev-python/skia-pathops/Manifest1
-rw-r--r--dev-python/skia-pathops/files/skia-pathops-0.9.2-no-net.patch11
-rw-r--r--dev-python/skia-pathops/metadata.xml15
-rw-r--r--dev-python/skia-pathops/skia-pathops-0.9.2.ebuild40
4 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/skia-pathops/Manifest b/dev-python/skia-pathops/Manifest
deleted file mode 100644
index 1fbc7f61fc2e..000000000000
--- a/dev-python/skia-pathops/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST skia_pathops-0.9.2.tar.gz 65115346 BLAKE2B 59d6484e052537514376795f3d3d90bc83de2140a34d8b85ccb94ae58063fcb843d27808b5f9038ffa7c209919986998b3178f37f85e233e78a9c895abf76f64 SHA512 808d8cf000798eebb77c8bd2ef67a694e0d68b85b7765da9df66021fbc786232fddf5c1cc06695d0617824cc57b2346656968c8d489323cf99ae9f840896fffa
diff --git a/dev-python/skia-pathops/files/skia-pathops-0.9.2-no-net.patch b/dev-python/skia-pathops/files/skia-pathops-0.9.2-no-net.patch
deleted file mode 100644
index 0cac67bc7689..000000000000
--- a/dev-python/skia-pathops/files/skia-pathops-0.9.2-no-net.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/setup.py
-+++ b/setup.py
-@@ -252,7 +252,7 @@ def build_skia(build_base):
- build_cmd = [sys.executable, build_skia_py, build_dir]
-
- if inside_sdist:
-- build_cmd.append("--no-sync-deps")
-+ build_cmd += ["--no-sync-deps", "--no-virtualenv", "--no-fetch-gn", "--gn-path", "/usr/bin/gn"]
-
- env = os.environ
- target_cpu = None
diff --git a/dev-python/skia-pathops/metadata.xml b/dev-python/skia-pathops/metadata.xml
deleted file mode 100644
index 39029ac90c40..000000000000
--- a/dev-python/skia-pathops/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>gasc@eurecom.fr</email>
- <name>Gasc Henri</name>
- </maintainer>
- <upstream>
- <remote-id type="github">fonttools/skia-pathops</remote-id>
- <remote-id type="pypi">skia-pathops</remote-id>
- </upstream>
- <longdescription lang="en">
- Python bindings for the Google Skia library's Path Ops module, performing boolean operations on paths (intersection, union, difference, xor).
- </longdescription>
-</pkgmetadata>
diff --git a/dev-python/skia-pathops/skia-pathops-0.9.2.ebuild b/dev-python/skia-pathops/skia-pathops-0.9.2.ebuild
deleted file mode 100644
index 0f57c3e6b3b6..000000000000
--- a/dev-python/skia-pathops/skia-pathops-0.9.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 pypi
-
-HASH="ab37d6fa21f25965d4ad059745c76f13ddfb92a2c06a842a42ad77961c24"
-DESCRIPTION="Python bindings for the Skia Path Ops"
-HOMEPAGE="
- https://skia.org/dev/present/pathops
- https://pypi.org/project/skia-pathops/
- https://github.com/fonttools/skia-pathops
-"
-SRC_URI="https://files.pythonhosted.org/packages/4a/f6/${HASH}/skia_pathops-${PV}.tar.gz"
-S="${WORKDIR}/skia_pathops-${PV}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-BDEPEND="
- app-alternatives/ninja
- app-arch/unzip
- dev-python/cython[${PYTHON_USEDEP}]
- dev-build/gn
-"
-
-PATCHES=( "${FILESDIR}"/${P}-no-net.patch )
-
-REPYTEST_DESELECT=(
- tests/pathops_test.py::PathTest::test_transform
- "tests/pathops_test.py::test_path_operation[conic_2_quad-operations3-expected3]"
- "tests/pathops_test.py::test_path_operation[arc_to_quads-operations4-expected4]"
-)
-
-distutils_enable_tests pytest