summaryrefslogtreecommitdiff
path: root/dev-python/pygments-github-lexers
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pygments-github-lexers')
-rw-r--r--dev-python/pygments-github-lexers/Manifest1
-rw-r--r--dev-python/pygments-github-lexers/files/pygments-github-lexers-0.0.5-escape-sequences.patch22
-rw-r--r--dev-python/pygments-github-lexers/metadata.xml12
-rw-r--r--dev-python/pygments-github-lexers/pygments-github-lexers-0.0.5-r2.ebuild36
4 files changed, 0 insertions, 71 deletions
diff --git a/dev-python/pygments-github-lexers/Manifest b/dev-python/pygments-github-lexers/Manifest
deleted file mode 100644
index 93a451e8bf75..000000000000
--- a/dev-python/pygments-github-lexers/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pygments-github-lexers-0.0.5.gh.tar.gz 6337 BLAKE2B 21fb1a0627c9ebf42d86d6cceea3ebec4339ef29b1d881d8b3bd5f90060ec2ba76a69ae4bf9e92420a10950ae20c7ea7ff44d5fccf8add06be1f1353cd8b7800 SHA512 429a8a81eb0228c806b6fafe5e1c64be92e719170b1af666aa9c9c7923ff4058972a167193dd0ab1ace0395fa1f6621212f800b07dcce4e59970fd905e046d71
diff --git a/dev-python/pygments-github-lexers/files/pygments-github-lexers-0.0.5-escape-sequences.patch b/dev-python/pygments-github-lexers/files/pygments-github-lexers-0.0.5-escape-sequences.patch
deleted file mode 100644
index 65c90e857bb2..000000000000
--- a/dev-python/pygments-github-lexers/files/pygments-github-lexers-0.0.5-escape-sequences.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/pygments_github_lexers/github.py b/pygments_github_lexers/github.py
-index d2fa4b2..36a5c94 100644
---- a/pygments_github_lexers/github.py
-+++ b/pygments_github_lexers/github.py
-@@ -53,7 +53,7 @@ class Dasm16Lexer(RegexLexer):
-
- # Regexes yo
- char = r'[a-zA-Z$._0-9@]'
-- identifier = r'(?:[a-zA-Z$_]' + char + '*|\.' + char + '+)'
-+ identifier = r'(?:[a-zA-Z$_]' + char + r'*|\.' + char + '+)'
- number = r'[+-]?(?:0[xX][a-zA-Z0-9]+|\d+)'
- binary_number = r'0b[01_]+'
- instruction = r'(?i)(' + '|'.join(INSTRUCTIONS) + ')'
-@@ -379,7 +379,7 @@ class TOMLLexer(RegexLexer):
- (r'#.*?$', Comment.Single),
- (r'"(\\\\|\\"|[^"])*"', String),
- (r'(true|false)$', Keyword.Constant),
-- ('[a-zA-Z_][a-zA-Z0-9_\-]*', Name),
-+ (r'[a-zA-Z_][a-zA-Z0-9_\-]*', Name),
-
- # Datetime
- (r'\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z', Number.Integer),
diff --git a/dev-python/pygments-github-lexers/metadata.xml b/dev-python/pygments-github-lexers/metadata.xml
deleted file mode 100644
index 90e6c7f88d46..000000000000
--- a/dev-python/pygments-github-lexers/metadata.xml
+++ /dev/null
@@ -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>chutzpah@gentoo.org</email>
- <name>Patrick McLean</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">pygments-github-lexers</remote-id>
- <remote-id type="github">liluo/pygments-github-lexers</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pygments-github-lexers/pygments-github-lexers-0.0.5-r2.ebuild b/dev-python/pygments-github-lexers/pygments-github-lexers-0.0.5-r2.ebuild
deleted file mode 100644
index 6bcc5fde564b..000000000000
--- a/dev-python/pygments-github-lexers/pygments-github-lexers-0.0.5-r2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2019-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1
-
-DESCRIPTION="Pygments Github custom lexers"
-HOMEPAGE="
- https://github.com/liluo/pygments-github-lexers/
- https://pypi.org/project/pygments-github-lexers/
-"
-SRC_URI="
- https://github.com/liluo/${PN}/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- dev-python/pygments[${PYTHON_USEDEP}]
-"
-BDEPEND="
- ${RDEPEND}
-"
-
-PATCHES=(
- "${FILESDIR}/pygments-github-lexers-0.0.5-escape-sequences.patch"
-)
-
-# no tests