automatic version update by autodist [release 1.47-1mamba;Thu Nov 11 2021]
This commit is contained in:
parent
3a1ae4d7d9
commit
19ed7d40c7
@ -1,4 +1,9 @@
|
|||||||
# sg3_utils
|
# sg3_utils
|
||||||
|
|
||||||
Collection of Linux utilities for devices that use the SCSI command set.
|
Collection of Linux utilities for devices that use the SCSI command set.
|
||||||
|
Includes utilities to copy data based on "dd" syntax and semantics (called sg_dd, sgp_dd and sgm_dd); check INQUIRY data and VPD pages (sg_inq); check mode and log pages (sginfo, sg_modes and sg_logs); spin up and down disks (sg_start); do self tests (sg_senddiag); and various other functions.
|
||||||
|
See the README, ChangeLog and COVERAGE files. Requires the linux kernel 2.4 series or later. In the 2.4 series SCSI generic device names (e.g. /dev/sg0) must be used. In the 2.6 series other device names may be used as well (e.g. /dev/sda).
|
||||||
|
|
||||||
|
Warning: Some of these tools access the internals of your system and the incorrect usage of them may render your system inoperable.
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
Name: sg3_utils
|
Name: sg3_utils
|
||||||
Version: 1.44
|
Version: 1.47
|
||||||
Release: 2mamba
|
Release: 1mamba
|
||||||
Summary: Utilities for devices that use SCSI command sets
|
Summary: Utilities for devices that use SCSI command sets
|
||||||
Group: System/Tools
|
Group: System/Tools
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Automatic Build System <autodist@mambasoft.it>
|
||||||
URL: http://sg.danny.cz/sg/sg3_utils.html
|
URL: https://sg.danny.cz/sg/sg3_utils.html
|
||||||
Source: http://sg.danny.cz/sg/p/sg3_utils-%{version}.tar.xz
|
Source: http://sg.danny.cz/sg/p/sg3_utils-%{version}.tar.xz
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
@ -15,6 +15,11 @@ BuildRequires: glibc-devel
|
|||||||
|
|
||||||
%description
|
%description
|
||||||
Collection of Linux utilities for devices that use the SCSI command set.
|
Collection of Linux utilities for devices that use the SCSI command set.
|
||||||
|
Includes utilities to copy data based on "dd" syntax and semantics (called sg_dd, sgp_dd and sgm_dd); check INQUIRY data and VPD pages (sg_inq); check mode and log pages (sginfo, sg_modes and sg_logs); spin up and down disks (sg_start); do self tests (sg_senddiag); and various other functions.
|
||||||
|
See the README, ChangeLog and COVERAGE files. Requires the linux kernel 2.4 series or later. In the 2.4 series SCSI generic device names (e.g. /dev/sg0) must be used. In the 2.6 series other device names may be used as well (e.g. /dev/sda).
|
||||||
|
|
||||||
|
Warning: Some of these tools access the internals of your system and the incorrect usage of them may render your system inoperable.
|
||||||
|
|
||||||
|
|
||||||
%package -n lib%{name}
|
%package -n lib%{name}
|
||||||
Summary: Devel package for %{name}
|
Summary: Devel package for %{name}
|
||||||
@ -23,6 +28,11 @@ Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|||||||
|
|
||||||
%description -n lib%{name}
|
%description -n lib%{name}
|
||||||
Collection of Linux utilities for devices that use the SCSI command set.
|
Collection of Linux utilities for devices that use the SCSI command set.
|
||||||
|
Includes utilities to copy data based on "dd" syntax and semantics (called sg_dd, sgp_dd and sgm_dd); check INQUIRY data and VPD pages (sg_inq); check mode and log pages (sginfo, sg_modes and sg_logs); spin up and down disks (sg_start); do self tests (sg_senddiag); and various other functions.
|
||||||
|
See the README, ChangeLog and COVERAGE files. Requires the linux kernel 2.4 series or later. In the 2.4 series SCSI generic device names (e.g. /dev/sg0) must be used. In the 2.6 series other device names may be used as well (e.g. /dev/sda).
|
||||||
|
|
||||||
|
Warning: Some of these tools access the internals of your system and the incorrect usage of them may render your system inoperable.
|
||||||
|
|
||||||
This package contains the shared library for %{name}.
|
This package contains the shared library for %{name}.
|
||||||
|
|
||||||
%package -n lib%{name}-devel
|
%package -n lib%{name}-devel
|
||||||
@ -32,11 +42,15 @@ Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|||||||
|
|
||||||
%description -n lib%{name}-devel
|
%description -n lib%{name}-devel
|
||||||
Collection of Linux utilities for devices that use the SCSI command set.
|
Collection of Linux utilities for devices that use the SCSI command set.
|
||||||
This package contains static libraries and header files needed for development.
|
Includes utilities to copy data based on "dd" syntax and semantics (called sg_dd, sgp_dd and sgm_dd); check INQUIRY data and VPD pages (sg_inq); check mode and log pages (sginfo, sg_modes and sg_logs); spin up and down disks (sg_start); do self tests (sg_senddiag); and various other functions.
|
||||||
|
See the README, ChangeLog and COVERAGE files. Requires the linux kernel 2.4 series or later. In the 2.4 series SCSI generic device names (e.g. /dev/sg0) must be used. In the 2.6 series other device names may be used as well (e.g. /dev/sda).
|
||||||
|
|
||||||
%debug_package
|
Warning: Some of these tools access the internals of your system and the incorrect usage of them may render your system inoperable.
|
||||||
|
|
||||||
|
This package contains static libraries and header files need for development.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -61,11 +75,11 @@ This package contains static libraries and header files needed for development.
|
|||||||
%{_bindir}/sgm_dd
|
%{_bindir}/sgm_dd
|
||||||
%{_bindir}/sgp_dd
|
%{_bindir}/sgp_dd
|
||||||
%{_bindir}/scsi_*
|
%{_bindir}/scsi_*
|
||||||
%{_mandir}/man8/*.8*
|
%{_mandir}/man8/*.8.gz
|
||||||
|
|
||||||
%files -n lib%{name}
|
%files -n lib%{name}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libsgutils2.so.*
|
%{_libdir}/libsgutils2-*.so.*
|
||||||
%doc AUTHORS COPYING CREDITS
|
%doc AUTHORS COPYING CREDITS
|
||||||
|
|
||||||
%files -n lib%{name}-devel
|
%files -n lib%{name}-devel
|
||||||
@ -78,8 +92,14 @@ This package contains static libraries and header files needed for development.
|
|||||||
%doc ChangeLog NEWS README README.sg_start
|
%doc ChangeLog NEWS README README.sg_start
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat Feb 19 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 1.44-2mamba
|
* Thu Nov 11 2021 Automatic Build System <autodist@mambasoft.it> 1.47-1mamba
|
||||||
- rebuilt with debug package
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Apr 03 2021 Automatic Build System <autodist@mambasoft.it> 1.46-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Mar 19 2020 Automatic Build System <autodist@mambasoft.it> 1.45-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Mon Oct 15 2018 Automatic Build System <autodist@mambasoft.it> 1.44-1mamba
|
* Mon Oct 15 2018 Automatic Build System <autodist@mambasoft.it> 1.44-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
Loading…
Reference in New Issue
Block a user