mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
dev-util/cmakelang: treeclean
Signed-off-by: Florian Albrechtskirchinger <falbrechtskirchinger@gmail.com>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST cmakelang-0.6.13.gh.tar.gz 1022629 BLAKE2B f62ce29e81a79f0301b1f04e70d95419486e3687e2e34d89e9d0343749026c73cbc6ae0d9e4f079abd1d68ac021108e9322805df38299c5666d06db5f135105d SHA512 eb7fde540860b6119d0bb528f22592fb4b507f9319aeda0999da10bcc89ee1348fd7d701fc49aa5dac7616e1577e436cbd73de94dbbab0cafdf28e1812612342
|
||||
@@ -1,44 +0,0 @@
|
||||
# Copyright 2023-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{11..12} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Provides Quality Assurance (QA) tools for cmake"
|
||||
HOMEPAGE="
|
||||
https://pypi.org/project/cmakelang/
|
||||
https://github.com/cheshirekow/cmake_format
|
||||
"
|
||||
SRC_URI="https://github.com/cheshirekow/cmake_format/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/cmake_format-${PV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/jinja2[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND="
|
||||
${RDEPEND}
|
||||
"
|
||||
|
||||
DOCS=( cmakelang/doc/README.rst )
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/cmakelang-0.6.13-fix-setup.py.patch"
|
||||
)
|
||||
|
||||
EPYTEST_DESELECT=(
|
||||
# fails because the project lags behind CMake
|
||||
cmakelang/test/command_db_test.py
|
||||
# tests require network access
|
||||
cmakelang/test/screw_users_test.py
|
||||
)
|
||||
|
||||
# tests fail for 3.11+ because of hacky use of private class members
|
||||
# distutils_enable_tests pytest
|
||||
@@ -1,108 +0,0 @@
|
||||
--- cmake_format-0.6.13/cmakelang/pypi/setup.py.orig 2023-06-06 12:33:22.631609182 +0200
|
||||
+++ cmake_format-0.6.13/cmakelang/pypi/setup.py 2023-06-06 12:33:46.126544329 +0200
|
||||
@@ -25,6 +25,7 @@
|
||||
"cmakelang.lint",
|
||||
"cmakelang.parse",
|
||||
"cmakelang.parse.funs",
|
||||
+ "cmakelang.templates",
|
||||
],
|
||||
version=VERSION,
|
||||
description="Language tools for cmake (format, lint, etc)",
|
||||
@@ -61,97 +62,3 @@
|
||||
},
|
||||
install_requires=["six>=1.13.0"]
|
||||
)
|
||||
-
|
||||
-setup(
|
||||
- name="cmake-annotate",
|
||||
- packages=[],
|
||||
- version=VERSION,
|
||||
- description="Can format your listfiles so they don't look like crap",
|
||||
- long_description=long_description,
|
||||
- author="Josh Bialkowski",
|
||||
- author_email="josh.bialkowski@gmail.com",
|
||||
- url=GITHUB_URL,
|
||||
- download_url="{}/archive/{}.tar.gz".format(GITHUB_URL, VERSION),
|
||||
- keywords=["cmake", "annotate"],
|
||||
- license="GPLv3",
|
||||
- classifiers=[
|
||||
- "Development Status :: 3 - Alpha",
|
||||
- "Intended Audience :: Developers",
|
||||
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
|
||||
- ],
|
||||
- include_package_data=True,
|
||||
- install_requires=[
|
||||
- "cmakelang>={}".format(VERSION),
|
||||
- "pyyaml>=5.3"]
|
||||
-)
|
||||
-
|
||||
-setup(
|
||||
- name="cmake-format",
|
||||
- packages=[],
|
||||
- version=VERSION,
|
||||
- description="Can format your listfiles so they don't look like crap",
|
||||
- long_description=long_description,
|
||||
- author="Josh Bialkowski",
|
||||
- author_email="josh.bialkowski@gmail.com",
|
||||
- url=GITHUB_URL,
|
||||
- download_url="{}/archive/{}.tar.gz".format(GITHUB_URL, VERSION),
|
||||
- keywords=["cmake", "format", "formatter"],
|
||||
- license="GPLv3",
|
||||
- classifiers=[
|
||||
- "Development Status :: 3 - Alpha",
|
||||
- "Intended Audience :: Developers",
|
||||
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
|
||||
- ],
|
||||
- include_package_data=True,
|
||||
- extras_require={
|
||||
- "YAML": ["pyyaml>=5.3"],
|
||||
- },
|
||||
- install_requires=["cmakelang>={}".format(VERSION)]
|
||||
-)
|
||||
-
|
||||
-
|
||||
-setup(
|
||||
- name="cmake-lint",
|
||||
- packages=[],
|
||||
- version=VERSION,
|
||||
- description="Can check your listfiles for common problems",
|
||||
- long_description=long_description,
|
||||
- author="Josh Bialkowski",
|
||||
- author_email="josh.bialkowski@gmail.com",
|
||||
- url=GITHUB_URL,
|
||||
- download_url="{}/archive/{}.tar.gz".format(GITHUB_URL, VERSION),
|
||||
- keywords=["cmake", "lint", "linter"],
|
||||
- license="GPLv3",
|
||||
- classifiers=[
|
||||
- "Development Status :: 3 - Alpha",
|
||||
- "Intended Audience :: Developers",
|
||||
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
|
||||
- ],
|
||||
- include_package_data=True,
|
||||
- extras_require={
|
||||
- "YAML": ["pyyaml>=5.3"],
|
||||
- },
|
||||
- install_requires=["cmakelang>={}".format(VERSION)]
|
||||
-)
|
||||
-
|
||||
-
|
||||
-setup(
|
||||
- name="cmake-parse",
|
||||
- packages=[],
|
||||
- version=VERSION,
|
||||
- description="Python library for parsing cmake listfiles. ",
|
||||
- long_description=long_description,
|
||||
- author="Josh Bialkowski",
|
||||
- author_email="josh.bialkowski@gmail.com",
|
||||
- url=GITHUB_URL,
|
||||
- download_url="{}/archive/{}.tar.gz".format(GITHUB_URL, VERSION),
|
||||
- keywords=["cmake", "lint", "linter"],
|
||||
- license="GPLv3",
|
||||
- classifiers=[
|
||||
- "Development Status :: 3 - Alpha",
|
||||
- "Intended Audience :: Developers",
|
||||
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
|
||||
- ],
|
||||
- include_package_data=True,
|
||||
- install_requires=["cmakelang>={}".format(VERSION)]
|
||||
-)
|
||||
@@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>falbrechtskirchinger@gmail.com</email>
|
||||
<name>Florian Albrechtskirchinger</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">cmakelang</remote-id>
|
||||
<remote-id type="github">cheshirekow/cmake_format</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -86,11 +86,6 @@ sys-apps/qjournalctl
|
||||
dev-python/dataclasses-json
|
||||
dev-python/json-schema-for-humans
|
||||
|
||||
# Florian Albrechtskirchinger <falbrechtskirchinger@gmail.com> (2026-01-14)
|
||||
# Unmaintained upstream and increasingly outdated.
|
||||
# Removal on 2026-02-14
|
||||
dev-util/cmakelang
|
||||
|
||||
# Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> (2026-01-03)
|
||||
# Critical security vulnerabilities.
|
||||
<net-im/conduit-0.10.11
|
||||
|
||||
Reference in New Issue
Block a user