Recommend optional dependencies to have background processing by default

This commit is contained in:
Miro Hrončok 2020-05-13 12:35:15 +02:00
parent 0e520b7234
commit 02742889cf

View File

@ -5,7 +5,7 @@
Name: slic3r Name: slic3r
Version: 1.3.0 Version: 1.3.0
Release: 12%{?dist} Release: 13%{?dist}
Summary: G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.) Summary: G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)
License: AGPLv3 and CC-BY License: AGPLv3 and CC-BY
# Images are CC-BY, code is AGPLv3 # Images are CC-BY, code is AGPLv3
@ -103,6 +103,10 @@ Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
# It's only used for magically finding octoprint servers. # It's only used for magically finding octoprint servers.
#Recommends: perl(Net::Bonjour) #Recommends: perl(Net::Bonjour)
# Optional dependencies to allow background processing.
Recommends: perl(Thread::Queue)
Recommends: perl(threads::shared)
%description %description
Slic3r is a G-code generator for 3D printers. It's compatible with RepRaps, Slic3r is a G-code generator for 3D printers. It's compatible with RepRaps,
Makerbots, Ultimakers and many more machines. Makerbots, Ultimakers and many more machines.
@ -237,6 +241,9 @@ SLIC3R_NO_AUTO=1 perl Build.PL installdirs=vendor
%{_datadir}/%{name} %{_datadir}/%{name}
%changelog %changelog
* Wed May 13 2020 Miro Hrončok <mhroncok@redhat.com> - 1.3.0-13
- Recommend optional dependencies to have background processing by default
* Mon Mar 16 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.0-12 * Mon Mar 16 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.0-12
- Add BR: perl(Thread::Semaphore) - Add BR: perl(Thread::Semaphore)