Revert "Apply python3 build" 42/230442/1 accepted/tizen_6.0_base accepted/tizen_6.0_base_tool accepted/tizen_6.0_base_tool_hotfix accepted/tizen_6.5_base accepted/tizen_6.5_base_tool accepted/tizen_7.0_base accepted/tizen_7.0_base_hotfix accepted/tizen_7.0_base_tool accepted/tizen_7.0_base_tool_hotfix accepted/tizen_8.0_base accepted/tizen_9.0_base accepted/tizen_base_dev accepted/tizen_base_tool tizen_6.0_base tizen_6.0_base_hotfix tizen_6.5_base tizen_7.0_base tizen_7.0_base_hotfix tizen_8.0_base tizen_9.0_base accepted/tizen/6.0/base/20201029.105627 accepted/tizen/6.0/base/20230713.143028 accepted/tizen/6.0/base/tool/20201029.111517 accepted/tizen/6.0/base/tool/hotfix/20201030.124306 accepted/tizen/6.0/base/tool/hotfix/20201102.085406 accepted/tizen/6.5/base/20230714.002651 accepted/tizen/6.5/base/tool/20211027.120809 accepted/tizen/7.0/base/20230714.003059 accepted/tizen/7.0/base/hotfix/20230714.003910 accepted/tizen/7.0/base/tool/20221028.122021 accepted/tizen/7.0/base/tool/hotfix/20221115.090605 accepted/tizen/8.0/base/20231005.045130 accepted/tizen/9.0/base/20241030.075917 accepted/tizen/base/20200413.213127 accepted/tizen/base/20230714.003508 accepted/tizen/base/dev/20241206.041510 submit/tizen_6.0_base/20201029.184802 submit/tizen_6.0_base_hotfix/20201030.192502 submit/tizen_6.0_base_hotfix/20201102.162702 submit/tizen_6.5_base/20211026.180901 submit/tizen_6.5_base/20211027.183101 submit/tizen_6.5_base/20211027.201001 submit/tizen_7.0_base/20221028.201101 submit/tizen_7.0_base_hotfix/20221115.161601 submit/tizen_base/20200413.010723 submit/tizen_base/20200413.035900 submit/tizen_base/20201207.055733 submit/tizen_base/20201208.051231 submit/tizen_base/20201208.051733 tizen_6.0.m2_release tizen_6.5.m2_release tizen_7.0_m2_release tizen_8.0_m2_release tizen_9.0_m2_release
authorHyunjee Kim <hj0426.kim@samsung.com>
Fri, 10 Apr 2020 03:53:28 +0000 (12:53 +0900)
committerHyunjee Kim <hj0426.kim@samsung.com>
Fri, 10 Apr 2020 03:53:34 +0000 (12:53 +0900)
This reverts commit b9331e913c6207145dc57714cd61ffcf4111610f.

Change-Id: I74998f6421ff2d4a600dbd63c31a254675d5b243
Signed-off-by: Hyunjee Kim <hj0426.kim@samsung.com>
packaging/python3-pyparsing.manifest [deleted file]
packaging/python3-pyparsing.spec [deleted file]

diff --git a/packaging/python3-pyparsing.manifest b/packaging/python3-pyparsing.manifest
deleted file mode 100644 (file)
index 017d22d..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<manifest>
- <request>
-    <domain name="_"/>
- </request>
-</manifest>
diff --git a/packaging/python3-pyparsing.spec b/packaging/python3-pyparsing.spec
deleted file mode 100644 (file)
index 72431ba..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-#
-# spec file for package python3-pyparsing
-#
-# Copyright (c) 2017 SUSE LINUX 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-pyparsing
-Version:        2.2.0
-Release:        0
-Summary:        Grammar Parser Library for Python
-License:        MIT
-Group:          Development/Languages/Python
-Url:            https://pypi.python.org/pypi/pyparsing
-Source:         https://files.pythonhosted.org/packages/source/p/pyparsing/pyparsing-%{version}.tar.gz
-Source1001:     %{name}.manifest
-
-BuildRequires:  python3
-
-BuildArch:      noarch
-
-Provides:       python3-parsing = %{version}
-Obsoletes:      python3-parsing < %{version}
-
-%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.
-
-%prep
-%setup -q -n pyparsing-%{version}
-
-%build
-cp %{SOURCE1001} .
-%{_bindir}/python3 setup.py build
-# Fix wrong EOL encoding:
-sed -i 's/\r$//' CHANGES LICENSE README examples/*
-
-%install
-%{_bindir}/python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
-
-# ensure egg-info is a directory
-rm %{buildroot}%{python3_sitelib}/*.egg-info
-cp -r pyparsing.egg-info %{buildroot}%{python3_sitelib}/pyparsing-%{version}-py%{python3_version}.egg-info
-
-
-%remove_docs
-
-%files
-%defattr(-,root,root,-)
-%manifest %{name}.manifest
-%license LICENSE
-%{python3_sitelib}/pyparsing.py*
-%{python3_sitelib}/pyparsing-%{version}-py*.egg-info/
-%{python3_sitelib}/__pycache__/pyparsing*
-
-%changelog
-