Re: Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-08-13 Thread Miro Hrončok
On 22. 07. 24 19:00, Miro Hrončok wrote: On 03. 07. 24 15:00, Tomáš Orsava wrote: On 7/3/24 12:07, Miro Hrončok wrote: Hello. I am working on the RPM pyproject declarative buildsystem. t;dr it turns this: BuildSystem:  pyproject into this:     %prep     %autosetup -p1 -C    

Re: Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-07-24 Thread Miro Hrončok
On 24. 07. 24 6:01, Neal Gompa wrote: On Mon, Jul 22, 2024 at 1:01 PM Miro Hrončok wrote: On 03. 07. 24 15:00, Tomáš Orsava wrote: On 7/3/24 12:07, Miro Hrončok wrote: Hello. I am working on the RPM pyproject declarative buildsystem. t;dr it turns this: BuildSystem: pyproj

Re: Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-07-23 Thread Neal Gompa
On Mon, Jul 22, 2024 at 1:01 PM Miro Hrončok wrote: > > On 03. 07. 24 15:00, Tomáš Orsava wrote: > > > > On 7/3/24 12:07, Miro Hrončok wrote: > >> Hello. > >> > >> I am working on the RPM pyproject declarative buildsystem. > >> > >> t;dr it turns this: > >> > >> BuildSystem: pyprojec

Re: Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-07-22 Thread Miro Hrončok
On 03. 07. 24 15:00, Tomáš Orsava wrote: On 7/3/24 12:07, Miro Hrončok wrote: Hello. I am working on the RPM pyproject declarative buildsystem. t;dr it turns this: BuildSystem:  pyproject into this:     %prep     %autosetup -p1 -C     %generate_buildrequires     %pyproject_bu

Re: Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-07-03 Thread Petr Viktorin
Hello, I recommend starting out with the explicit option. Requiring BuildOption(install) sounds good, and can be changed to a better default after people get some experience with the system. -- ___ python-devel mailing list -- python-devel@lists.fedora

Re: Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-07-03 Thread Petr Viktorin
Hello, I recommend starting out with the explicit option. Requiring BuildOption(install) sounds good, and can be changed to a better default after people get some experience with the system. -- ___ python-devel mailing list -- python-devel@lists.fedora

Re: Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-07-03 Thread Tomáš Orsava
On 7/3/24 12:07, Miro Hrončok wrote: Hello. I am working on the RPM pyproject declarative buildsystem. t;dr it turns this: BuildSystem:  pyproject into this:     %prep     %autosetup -p1 -C     %generate_buildrequires     %pyproject_buildrequires     %build     %pyproject_whe

Default BuildOption(install) for the RPM pyproject declarative buildsystem

2024-07-03 Thread Miro Hrončok
Hello. I am working on the RPM pyproject declarative buildsystem. t;dr it turns this: BuildSystem: pyproject into this: %prep %autosetup -p1 -C %generate_buildrequires %pyproject_buildrequires %build %pyproject_wheel %install %pyproject_install