Bump to 0.5 accepted/tizen_9.0_base accepted/tizen_base accepted/tizen_base_asan accepted/tizen_base_dev accepted/tizen_base_toolchain accepted/tizen_base_x accepted/tizen_base_x_asan sandbox/python3-editables_0.5 tizen_9.0_base tizen_base accepted/tizen/9.0/base/20241030.075347 accepted/tizen/base/20240328.042820 accepted/tizen/base/asan/20240406.082052 accepted/tizen/base/dev/20241206.041221 accepted/tizen/base/toolchain/20240424.234607 accepted/tizen/base/x/20240328.085811 accepted/tizen/base/x/asan/20240412.002621 tizen_9.0_m2_release
authorTizenOpenSource <tizenopensrc@samsung.com>
Tue, 6 Feb 2024 02:30:41 +0000 (11:30 +0900)
committerTizenOpenSource <tizenopensrc@samsung.com>
Tue, 6 Feb 2024 02:30:41 +0000 (11:30 +0900)
Signed-off-by: TizenOpenSource <tizenopensrc@samsung.com>
packaging/python3-editables.manifest [new file with mode: 0644]
packaging/python3-editables.spec [new file with mode: 0644]

diff --git a/packaging/python3-editables.manifest b/packaging/python3-editables.manifest
new file mode 100644 (file)
index 0000000..86dbb26
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+    <request>
+        <domain name="_" />
+    </request>
+</manifest>
diff --git a/packaging/python3-editables.spec b/packaging/python3-editables.spec
new file mode 100644 (file)
index 0000000..fc5ca80
--- /dev/null
@@ -0,0 +1,41 @@
+Name:           python3-editables
+Version:        0.5
+Release:        0
+Summary:        Editable installations
+License:        MIT
+URL:            https://github.com/pfmoore/editables
+Source0:        editables-%{version}.tar.gz
+Source1001:     %{name}.manifest
+
+BuildRequires:  pkgconfig(python3)
+BuildRequires:  python3-build
+BuildRequires:  python3-flit_core
+BuildRequires:  python3-pip
+
+BuildArch:      noarch
+
+%description
+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.
+
+%prep
+%setup -q -n editables-%{version}
+
+%build
+cp %{SOURCE1001} .
+%{_bindir}/python3 -m build -n
+
+%install
+%{_bindir}/python3 -m pip install --root %{buildroot} ./dist/editables-%{version}-py3-*.whl
+
+%files 
+%manifest %{name}.manifest
+%license LICENSE.txt
+%{python3_sitelib}/editables/*.py
+%{python3_sitelib}/editables/py.typed
+%{python3_sitelib}/editables/__pycache__/*
+%{python3_sitelib}/editables-%{version}.dist-info/*