Python3 moved to devel:languages:python3

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pycparser?expand=0&rev=5
This commit is contained in:
Sascha Peilicke 2013-06-17 12:52:52 +00:00 committed by Git OBS Bridge
parent a432659a04
commit 694f2a84be
2 changed files with 0 additions and 79 deletions

View File

@ -1,26 +0,0 @@
-------------------------------------------------------------------
Sat Apr 13 10:11:29 UTC 2013 - toddrme2178@gmail.com
- Remove pre_checkin.sh since the two packages are not the same
-------------------------------------------------------------------
Fri Apr 12 11:13:01 UTC 2013 - toddrme2178@gmail.com
- Added requires and buildrequires python3. It will not work
properly without them on openSUSE < 12.3
-------------------------------------------------------------------
Tue Mar 19 12:51:18 UTC 2013 - speilicke@suse.com
- Drop some unneded macros
-------------------------------------------------------------------
Wed Feb 27 15:22:33 UTC 2013 - p.drouand@gmail.com
- Initial python3 support
-------------------------------------------------------------------
Sun Feb 10 09:48:07 UTC 2013 - saschpe@suse.de
- Initial version

View File

@ -1,53 +0,0 @@
#
# spec file for package python-pycparser
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
Name: python3-pycparser
Version: 2.09.1
Release: 0
License: BSD-3-Clause
Summary: C parser in Python
Url: https://bitbucket.org/eliben/pycparser
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/p/pycparser/pycparser-%{version}.tar.gz
BuildRequires: python3
BuildRequires: python3-devel
Requires: python3
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
pycparser is a complete parser of the C language, written in pure Python using
the PLY parsing library. It parses C code into an AST and can serve as a
front-end for C compilers or analysis tools.
%prep
%setup -q -n pycparser-%{version}
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%check
python3 tests/all_tests.py
%files
%defattr(-,root,root,-)
%doc README.rst examples
%{python3_sitelib}/*
%changelog