Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pyparsing
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Python Team
packages
pyparsing
Commits
1eb2041f
Project 'python-team/modules/pyparsing' was moved to 'python-team/packages/pyparsing'. Please update any links and bookmarks that may still have the old path.
Commit
1eb2041f
authored
5 years ago
by
Sandro Tosi
Browse files
Options
Downloads
Patches
Plain Diff
Drop python2 support; Closes: #937503
parent
e1d81a07
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+7
-0
7 additions, 0 deletions
debian/changelog
debian/control
+0
-27
0 additions, 27 deletions
debian/control
debian/rules
+1
-1
1 addition, 1 deletion
debian/rules
with
8 additions
and
28 deletions
debian/changelog
+
7
−
0
View file @
1eb2041f
pyparsing (2.4.6-2) UNRELEASED; urgency=medium
* Team upload.
* Drop python2 support; Closes: #937503
-- Sandro Tosi <morph@debian.org> Fri, 17 Apr 2020 23:50:42 -0400
pyparsing (2.4.6-1) unstable; urgency=medium
* Team upload.
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
0
−
27
View file @
1eb2041f
...
...
@@ -11,8 +11,6 @@ Build-Depends:
dh-python,
pypy,
pypy-setuptools,
python-all,
python-setuptools,
python3-all,
python3-setuptools,
python3-sphinx
...
...
@@ -49,31 +47,6 @@ Description: alternative to creating and executing simple grammars - pypy
.
This package contains the PyPy version of python-pyparsing.
Package: python-pyparsing
Architecture: all
Depends:
${misc:Depends},
${python:Depends},
Provides:
${python:Provides},
Suggests:
python-pyparsing-doc,
Description: alternative to creating and executing simple grammars - Python 2.7
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 Python 2.7 module.
Package: python-pyparsing-doc
Architecture: all
Multi-Arch: foreign
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
1
−
1
View file @
1eb2041f
...
...
@@ -5,7 +5,7 @@
export PYBUILD_NAME = pyparsing
%:
dh $@ --with=
python2,
python3,pypy,sphinxdoc --buildsystem=pybuild
dh $@ --with=python3,pypy,sphinxdoc --buildsystem=pybuild
override_dh_auto_build-indep:
dh_auto_build
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment