summaryrefslogtreecommitdiff
path: root/dev-python/zconfig
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/zconfig')
-rw-r--r--dev-python/zconfig/Manifest1
-rw-r--r--dev-python/zconfig/metadata.xml18
-rw-r--r--dev-python/zconfig/zconfig-4.3.ebuild41
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-python/zconfig/Manifest b/dev-python/zconfig/Manifest
deleted file mode 100644
index 62f61026594f..000000000000
--- a/dev-python/zconfig/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zconfig-4.3.tar.gz 128126 BLAKE2B fd2a4f12eb9c6277386a8834065499490e06081e800ac86ab8089c590f6df5f8b76029da289103158af0bb7d39ddc6c92bf015d350b5b7f527b7dd9341868bae SHA512 daf3fdd39bd9baa8c56005e02c72f332a448969fa9d53fcfe8b629dca4d10c785af139bf481b62420561934867aa31efacdf31795fcd86fc11d416c640366f91
diff --git a/dev-python/zconfig/metadata.xml b/dev-python/zconfig/metadata.xml
deleted file mode 100644
index 357b005e40e8..000000000000
--- a/dev-python/zconfig/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">zopefoundation/ZConfig</remote-id>
- <remote-id type="pypi">ZConfig</remote-id>
- </upstream>
- <longdescription lang="en">
-ZConfig is a configuration library intended for general use. It supports a hierarchical schema-driven configuration model that allows a schema to specify data conversion routines written in Python. ZConfig’s model is very different from the model supported by the ConfigParser module found in Python’s standard library, and is more suitable to configuration-intensive applications.
-
-ZConfig schema are written in an XML-based language and are able to “import” schema components provided by Python packages. Since components are able to bind to conversion functions provided by Python code in the package (or elsewhere), configuration objects can be arbitrarily complex, with values that have been verified against arbitrary constraints. This makes it easy for applications to separate configuration support from configuration loading even with configuration data being defined and consumed by a wide range of separate packages.
- </longdescription>
-</pkgmetadata>
diff --git a/dev-python/zconfig/zconfig-4.3.ebuild b/dev-python/zconfig/zconfig-4.3.ebuild
deleted file mode 100644
index fe49c7b5a928..000000000000
--- a/dev-python/zconfig/zconfig-4.3.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_USE_PEP517=setuptools
-PYPI_PN="ZConfig"
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Configuration library supporting a hierarchical schema-driven model"
-HOMEPAGE="
- https://github.com/zopefoundation/ZConfig/
- https://pypi.org/project/ZConfig/
-"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- test? (
- dev-python/docutils[${PYTHON_USEDEP}]
- dev-python/manuel[${PYTHON_USEDEP}]
- dev-python/zope-exceptions[${PYTHON_USEDEP}]
- dev-python/zope-interface[${PYTHON_USEDEP}]
- )
-"
-
-DOCS=( CHANGES.rst README.rst )
-
-distutils_enable_tests unittest
-distutils_enable_sphinx docs \
- dev-python/sphinxcontrib-programoutput
-
-python_test() {
- eunittest -s src/ZConfig/tests
-}