From 6be3ab9c603fdd1ce403ab7b020fce51f0f99a3b Mon Sep 17 00:00:00 2001 From: caodongxia <315816521@qq.com> Date: Fri, 30 Oct 2020 14:25:29 +0800 Subject: [PATCH] Remove subpackage python2-antlr --- python-apipkg.spec | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/python-apipkg.spec b/python-apipkg.spec index 45085af..2805fce 100644 --- a/python-apipkg.spec +++ b/python-apipkg.spec @@ -1,6 +1,6 @@ Name: python-apipkg Version: 1.5 -Release: 2 +Release: 3 Summary: Namespace control and lazy-import mechanism License: MIT @@ -8,7 +8,7 @@ URL: https://pypi.org/project/apipkg/ Source0: https://files.pythonhosted.org/packages/source/a/apipkg/apipkg-%{version}.tar.gz BuildArch: noarch -BuildRequires: python2-devel python2-setuptools_scm python3-devel python3-setuptools_scm +BuildRequires: python3-devel python3-setuptools_scm %description With apipkg you can control the exported namespace of a Python package and greatly reduce the @@ -16,16 +16,6 @@ number of imports for your users. It is a small pure Python module that works on and 3.4+, Jython and PyPy. It cooperates well with Python’s help() system, custom importers (PEP302) and common command-line completion tools. -%package -n python2-apipkg -Summary: Namespace control and lazy-import mechanism -%python_provide python2-apipkg - -%description -n python2-apipkg -With apipkg you can control the exported namespace of a Python package and greatly reduce the -number of imports for your users. It is a small pure Python module that works on CPython 2.7 -and 3.4+, Jython and PyPy. It cooperates well with Python’s help() system, custom importers (PEP302) -and common command-line completion tools. - %package -n python3-apipkg Summary: Namespace control and lazy-import mechanism %python_provide python3-apipkg @@ -41,22 +31,19 @@ and common command-line completion tools. %build export SETUPTOOLS_SCM_PRETEND_VERSION=%{version} -%py2_build %py3_build %install export SETUPTOOLS_SCM_PRETEND_VERSION=%{version} -%py2_install %py3_install -%files -n python2-apipkg -%doc CHANGELOG README.rst -%{python2_sitelib}/* - %files -n python3-apipkg %doc CHANGELOG README.rst %{python3_sitelib}/* %changelog +* Wed Oct 21 2020 chengzihan - 1.5-3 +- Remove Subpackage python2-apipkg + * Thu Mar 12 2020 chenli - 1.5-2 - Init package.