summaryrefslogtreecommitdiff
path: root/dev-python/pychm
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pychm')
-rw-r--r--dev-python/pychm/Manifest1
-rw-r--r--dev-python/pychm/metadata.xml20
-rw-r--r--dev-python/pychm/pychm-0.8.6-r1.ebuild41
3 files changed, 0 insertions, 62 deletions
diff --git a/dev-python/pychm/Manifest b/dev-python/pychm/Manifest
deleted file mode 100644
index a5d9bf0b55c6..000000000000
--- a/dev-python/pychm/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pychm-0.8.6.gh.tar.gz 23803 BLAKE2B fdf3c37eead60455fd5bde1638a010f2788074752f98c32cf4b3431b4a87b8893c23a9fa29995352b35b41f628b7026fdbfa6ff20b75e8a6efdf75fc2da3f67d SHA512 cc1b254b6c58aba038171ad9db1eea3212094d7fb9386b22ada67381d702b388e6a1dde0317b5724587ee135d2695c546a7c2d65af7091dafeb394647597b0ae
diff --git a/dev-python/pychm/metadata.xml b/dev-python/pychm/metadata.xml
deleted file mode 100644
index 090f075f55af..000000000000
--- a/dev-python/pychm/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <longdescription>
-The chm package provides three modules, chm, chmlib and extra, which
-provide access to the API implemented by the C library chmlib and some
-additional classes and functions. They are used to access MS-ITSS
-encoded files - Compressed Html Help files (.chm).
- </longdescription>
- <longdescription lang="ja">
-Chmパッケージは、C言語ライブラリChmのAPI実装とそれに幾つか拡張されたクラスと関数
-にアクセスする手段のchm, chmlib, extraの3つのモジュールを提供します。MS-ITSSエン
-コード・ファイルに使われています。-- Compressed Html Help ファイル (.chm)。
- </longdescription>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-python/pychm/pychm-0.8.6-r1.ebuild b/dev-python/pychm/pychm-0.8.6-r1.ebuild
deleted file mode 100644
index cf4c890a3f43..000000000000
--- a/dev-python/pychm/pychm-0.8.6-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for the chmlib library"
-HOMEPAGE="
- https://github.com/dottedmag/pychm/
- https://pypi.org/project/pychm/
-"
-SRC_URI="
- https://github.com/dottedmag/pychm/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc x86"
-
-DEPEND="
- dev-libs/chmlib
-"
-RDEPEND="
- ${DEPEND}
-"
-
-distutils_enable_tests pytest
-
-src_test() {
- # need to avoid relative import of 'chm' directory but tests rely
- # on locating files relatively via tests/...
- mv tests .. || die
- cd .. || die
- distutils-r1_src_test
-}