From 4b8afc661383363ea307224566b78e0a3911a5dd Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 20:48:26 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.4.1-1mamba;Tue Jun 24 2014] --- README.md | 2 ++ biosdevname.spec | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 biosdevname.spec diff --git a/README.md b/README.md index 7f8cf4d..e7144e9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # biosdevname +Biosdevname is a udev helper utility which provides a consistent naming mechanism for network devices based on their physical location as suggested by the system BIOS. + diff --git a/biosdevname.spec b/biosdevname.spec new file mode 100644 index 0000000..fddec6c --- /dev/null +++ b/biosdevname.spec @@ -0,0 +1,47 @@ +Name: biosdevname +Version: 0.4.1 +Release: 1mamba +Summary: Udev helper for naming devices per BIOS names +Group: System/Kernel and Hardware +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://linux.dell.com/biosdevname/ +Source: https://linux.dell.com/biosdevname/biosdevname-%{version}/biosdevname-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libpci-devel +BuildRequires: libz-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Biosdevname is a udev helper utility which provides a consistent naming mechanism for network devices based on their physical location as suggested by the system BIOS. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +/lib/udev/rules.d/71-biosdevname.rules +%{_sbindir}/biosdevname +%{_mandir}/man1/biosdevname.1* +%doc AUTHORS COPYING + +%changelog +* Tue Jun 24 2014 Silvan Calarco 0.4.1-1mamba +- package created using the webbuild interface