dmidecode-vl.spec 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. Summary: Tool to analyse BIOS DMI data.
  2. Summary(ja): BIOS DMI データを表示するツール
  3. Name: dmidecode
  4. Version: 3.5
  5. Release: 1%{?_dist_release}
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. Packager: shaolin, daisuke
  10. License: GPL
  11. URL: https://www.nongnu.org/dmidecode/
  12. Source0: https://download.savannah.gnu.org/releases/dmidecode/dmidecode-%{version}.tar.xz
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. BuildRequires: automake, autoconf
  15. ExclusiveArch: %{ix86} x86_64 ia64
  16. Obsoletes: kernel-utils
  17. %description
  18. dmidecode reports information about x86 & ia64 hardware as described in the
  19. system BIOS according to the SMBIOS/DMI standard. This information
  20. typically includes system manufacturer, model name, serial number,
  21. BIOS version, asset tag as well as a lot of other details of varying
  22. level of interest and reliability depending on the manufacturer.
  23. This will often include usage status for the CPU sockets, expansion
  24. slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of
  25. I/O ports (e.g. serial, parallel, USB).
  26. %description -l ja
  27. dmidecode を使うと、SMBIOS/DMI 規格に基づき、BIOS 上の
  28. x86 / ia64 ハードウェア情報を表示することができます。
  29. 表示される情報には、ハードウェアの製造元、モデル名、シリアル番号、
  30. BIOS のバージョンなど、数多くの詳細なハードウェア情報が含まれます。
  31. %debug_package
  32. %prep
  33. %setup -q
  34. %build
  35. %make_build CFLAGS="%{optflags}" LDFLAGS="%{?__global_ldflags}"
  36. %install
  37. rm -rf %{buildroot}
  38. make DESTDIR=%{buildroot} prefix=%{_prefix} install-bin install-man
  39. %clean
  40. rm -rf %{buildroot}
  41. %files
  42. %defattr(-,root,root)
  43. %license LICENSE
  44. %doc AUTHORS NEWS README
  45. %{_sbindir}/dmidecode
  46. %ifnarch ia64
  47. %{_sbindir}/vpddecode
  48. %{_sbindir}/ownership
  49. %{_sbindir}/biosdecode
  50. %endif
  51. %{_mandir}/man8/*
  52. %changelog
  53. * Sat Apr 22 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.5-1
  54. - new upstream release.
  55. - dropped all patches.
  56. * Sat Mar 21 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.2-1
  57. - new upstream release.
  58. - replaced all patches with rawhide's.
  59. * Mon Jan 13 2014 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.12-1
  60. - new upstream release
  61. - import patch0 from Fedora
  62. * Fri Apr 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11-1
  63. - update to 2.11
  64. * Fri May 23 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.9-2
  65. - spec in UTF-8
  66. * Sat May 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.9-1
  67. - initial build for Vine Linux
  68. * Sat May 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1:2.9-1.30.1
  69. - initial build for Vine Linux
  70. * Fri Mar 14 2008 Doug Chapman <doug.chapman@hp.com> 1:2.9-1.29.1
  71. - Do not package vpddecode, ownership and biosdecode on ia64 since those are x86 only
  72. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:2.9-1.27.1
  73. - Autorebuild for GCC 4.3
  74. * Mon Oct 22 2007 Prarit Bhargava <prarit@redhat.com> - 1:2.9
  75. - rebuild with version 2.9
  76. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:2.7-1.25.1
  77. - rebuild
  78. * Thu Feb 09 2006 Dave Jones <davej@redhat.com>
  79. - rebuild.
  80. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  81. - rebuilt
  82. * Mon Nov 28 2005 Dave Jones <davej@redhat.com>
  83. - Integrate several specfile cleanups from Robert Scheck. (#172543)
  84. * Sat Sep 24 2005 Dave Jones <davej@redhat.com>
  85. - Revert yesterdays patch, its unneeded in 2.7
  86. * Fri Sep 23 2005 Dave Jones <davej@redhat.com>
  87. - Don't try to modify areas mmap'd read-only.
  88. - Don't build on ia64 any more.
  89. (It breaks on some boxes very badly, and works on very few).
  90. * Mon Sep 12 2005 Dave Jones <davej@redhat.com>
  91. - Update to upstream 2.7
  92. * Fri Apr 15 2005 Florian La Roche <laroche@redhat.com>
  93. - remove empty scripts
  94. * Wed Mar 2 2005 Dave Jones <davej@redhat.com>
  95. - Update to upstream 2.6
  96. * Tue Mar 1 2005 Dave Jones <davej@redhat.com>
  97. - Rebuild for gcc4
  98. * Tue Feb 8 2005 Dave Jones <davej@redhat.com>
  99. - Rebuild with -D_FORTIFY_SOURCE=2
  100. * Tue Jan 11 2005 Dave Jones <davej@redhat.com>
  101. - Add missing Obsoletes: kernel-utils
  102. * Mon Jan 10 2005 Dave Jones <davej@redhat.com>
  103. - Update to upstream 2.5 release.
  104. * Sat Dec 18 2004 Dave Jones <davej@redhat.com>
  105. - Initial packaging, based upon kernel-utils package.