pyparsing2 2.4.7-ok1 source package in openKylin

Changelog

pyparsing2 (2.4.7-ok1) yangtze; urgency=medium

  * Build for openkylin.

 -- sufang <email address hidden>  Fri, 04 Nov 2022 15:13:53 +0800

Upload details

Uploaded by:
sufang
Sponsored by:
Cibot
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main python
Huanghe V3.0 release main python
Nile V2.0 proposed main python
Nile V2.0 release main python
Yangtze V1.0 release main python
Yangtze V1.0 proposed main python

Downloads

File Size SHA-256 Checksum
pyparsing2_2.4.7.orig.tar.gz 638.3 KiB 198062e79a5f5171f1ad5c39466b60d707caf9c28caf37c63b2630073e57386a
pyparsing2_2.4.7-ok1.debian.tar.xz 6.5 KiB fd9d130e0603a8856cd06519e82957048dea62287ba571ee8cd7a812f8173251
pyparsing2_2.4.7-ok1.dsc 1.9 KiB 4a0c0897664d11ebe7fafaad133ef62b383bcb1cfcaa406a29498aa8e9bab1ab

View changes file

Binary packages built by this source

pypy-pyparsing: Transitional package for pypy PyParsing v2.x

 This is a transitional package for pypy PyParsing v2.x
 .
 The pypy-pyparsing package has been renamed to reflect its only v 2.x,
 when upstream is now v 3.x, incompatible due to v3.x using CPython types
 and type hashes.

pypy-pyparsing2: alt to creating/executing simple grammars pyparsing2 - pypy

 This is the older version v2.x of pyparsing to support pypy.
 .
 The parsing module is an alternative approach to creating and
 executing simple grammars, vs. the traditional lex/yacc approach, or
 the use of regular expressions. The parsing module provides a
 library of classes that client code uses to construct the grammar
 directly in Python code.
 .
 Here's an example:
 .
  from pyparsing import Word, alphas
  greet = Word(alphas) + "," + Word(alphas) + "!"
  hello = "Hello, World!"
  print hello, "->", greet.parseString(hello)
 .
 This package contains the PyPy version of python-pyparsing.

python-pyparsing2-doc: alt to creating/executing simple grammars pyparsing2 - doc

 This is the older version v2.x of pyparsing to support pypy.
 .
 The parsing module is an alternative approach to creating and
 executing simple grammars, vs. the traditional lex/yacc approach, or
 the use of regular expressions. The parsing module provides a
 library of classes that client code uses to construct the grammar
 directly in Python code.
 .
 Here's an example:
 .
  from pyparsing import Word, alphas
  greet = Word(alphas) + "," + Word(alphas) + "!"
  hello = "Hello, World!"
  print hello, "->", greet.parseString(hello)
 .
 This package contains documentation for python-pyparsing2.