diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-editables.spec | 53 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 55 insertions, 0 deletions
@@ -0,0 +1 @@ +/editables-0.5.tar.gz diff --git a/python-editables.spec b/python-editables.spec new file mode 100644 index 0000000..ea525dd --- /dev/null +++ b/python-editables.spec @@ -0,0 +1,53 @@ +Name: python-editables +Version: 0.5 +Release: 1 +Summary: Editable installations +License: MIT +URL: https://github.com/pfmoore/editables +Source0: https://files.pythonhosted.org/packages/source/e/editables/editables-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: dos2unix +BuildRequires: fdupes +BuildRequires: python3-pip +BuildRequires: python3-wheel +BuildRequires: python3-flit + +%global common_description %{expand: +A Python library for creating “editable wheels” + +This library supports the building of wheels which, when installed, will expose +packages in a local directory on sys.path in “editable mode”. In other words, +changes to the package source will be reflected in the package visible to +Python, without needing a reinstall.} + +%description %{common_description} + +%package -n python3-editables +Summary: %{summary} + +%description -n python3-editables %{common_description} + +%prep +%autosetup -n editables-%{version} +dos2unix -c ascii README.md + +%build +%pyproject_build + +%install +%pyproject_install + +%files -n python3-editables +%doc README.md +%license LICENSE.txt +%{python3_sitelib}/* + +%changelog +* Mon Dec 04 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 0.5-1 +- Update package to version 0.5 + +* Thu Apr 13 2023 caodongxia <caodongxia@h-partners.com> - 0.3-1 +- Package init @@ -0,0 +1 @@ +520de8c3a9dc5dfb2b365d104541c9de editables-0.5.tar.gz |