python-pyparsing: drop package

No idea if this is used.
It's a pure python package.
No other packages depend on this.
Can be installed via pip on device.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
This commit is contained in:
Alexandru Ardelean
2026-06-11 19:49:20 +03:00
committed by Alexandru Ardelean
parent a06fb85350
commit 3993db02bd
2 changed files with 0 additions and 77 deletions
-47
View File
@@ -1,47 +0,0 @@
#
# Copyright (C) 2019-2020 CZ.NIC z.s.p.o. (http://www.nic.cz/)
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-pyparsing
PKG_VERSION:=3.3.2
PKG_RELEASE:=1
PYPI_NAME:=pyparsing
PKG_HASH:=c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_DEPENDS:=python-flit-core/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-pyparsing
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=Define and execute parsing grammars
URL:=https://github.com/pyparsing/pyparsing/
DEPENDS:=+python3-light +python3-unittest
endef
define Package/python3-pyparsing/description
The pyparsing module is an alternative approach to creating
and executing simple grammars, vs. the traditional lex/yacc
approach, or the use of regular expressions.
The pyparsing module provides a library of classes that
client code uses to construct the grammar directly in Python code.
endef
$(eval $(call Py3Package,python3-pyparsing))
$(eval $(call BuildPackage,python3-pyparsing))
$(eval $(call BuildPackage,python3-pyparsing-src))
-30
View File
@@ -1,30 +0,0 @@
#!/bin/sh
[ "$1" = python3-pyparsing ] || exit 0
python3 - << 'EOF'
import pyparsing as pp
# Basic word and integer parsing
word = pp.Word(pp.alphas)
integer = pp.Word(pp.nums)
result = word.parse_string("hello")
assert result[0] == "hello"
result = integer.parse_string("42")
assert result[0] == "42"
# Combined expression
greeting = word + pp.Literal(",") + word
result = greeting.parse_string("Hello, World")
assert result[0] == "Hello"
assert result[2] == "World"
# OneOf
colors = pp.one_of("red green blue")
result = colors.parse_string("green")
assert result[0] == "green"
EOF