forked from pool/python-pycparser
Compare commits
4 Commits
Author | SHA256 | Date | |
---|---|---|---|
4402804a31 | |||
7e13f7ce3a | |||
cdb20e946d | |||
d907250560 |
BIN
pycparser-2.22.tar.gz
(Stored with Git LFS)
BIN
pycparser-2.22.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
pycparser-2.23.tar.gz
Normal file
3
pycparser-2.23.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2
|
||||||
|
size 173734
|
@@ -1,3 +1,39 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 29 16:39:51 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to elease_v2.23:
|
||||||
|
* Allow abstract declarator "static" (GH issue #539)
|
||||||
|
* Add support for Python 3.13
|
||||||
|
* Add dirent and socket typedefs.
|
||||||
|
* Support for labels with no statement
|
||||||
|
* Accept empty 'case' or 'default' labels
|
||||||
|
* fix: preserve parentheses for statement exprs
|
||||||
|
* fix: hex float types
|
||||||
|
* Explicit error for comments, with README link
|
||||||
|
* showemptyattrs option on Node.show()
|
||||||
|
* Add fake typedefs for GNU Extension 128-bit integers.
|
||||||
|
* Typedef for __kernel_sa_family_t in linux/socket.h
|
||||||
|
- update to elease_v2.22:
|
||||||
|
* Add missing SCHAR limit defines
|
||||||
|
* Use proper SPDX identifier
|
||||||
|
* Add Python 3.11 as a supported version
|
||||||
|
* Fix multi-pragma/single statement blocks
|
||||||
|
* Add an encoding parameter to parse_file
|
||||||
|
* Feature/add pragma support
|
||||||
|
* Set up permissions to ci.yml
|
||||||
|
* _build_tables: Invalidate cache before importing generated
|
||||||
|
modules
|
||||||
|
* Upgrade GitHub Actions
|
||||||
|
* Create a Security Policy
|
||||||
|
* New example to generate AST from scratch
|
||||||
|
* Add support for Python 3.12
|
||||||
|
* ply: Make generated lextab.py deterministic
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 09:29:45 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Convert to pip-based build
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Apr 21 08:39:27 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sun Apr 21 08:39:27 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pycparser
|
# spec file for package python-pycparser
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pycparser
|
Name: python-pycparser
|
||||||
Version: 2.22
|
Version: 2.23
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C parser in Python
|
Summary: C parser in Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@@ -26,12 +26,13 @@ Group: Development/Languages/Python
|
|||||||
URL: https://github.com/eliben/pycparser
|
URL: https://github.com/eliben/pycparser
|
||||||
Source0: https://files.pythonhosted.org/packages/source/p/pycparser/pycparser-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/p/pycparser/pycparser-%{version}.tar.gz
|
||||||
Source99: %{name}-rpmlintrc
|
Source99: %{name}-rpmlintrc
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -45,10 +46,10 @@ front-end for C compilers or analysis tools.
|
|||||||
sed -i 's/\r//' LICENSE
|
sed -i 's/\r//' LICENSE
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%{python_expand %fdupes %{buildroot}%{$python_sitelib}}
|
%{python_expand %fdupes %{buildroot}%{$python_sitelib}}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@@ -58,6 +59,7 @@ sed -i 's/\r//' LICENSE
|
|||||||
%doc README.rst
|
%doc README.rst
|
||||||
%doc examples/
|
%doc examples/
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/pycparser
|
||||||
|
%{python_sitelib}/pycparser-%{version}*-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user