commit f0df440d40a56e959f24c26b61152a0b4784705d2eb330d4e47875f2fdaaab8a Author: Pascal Bleser Date: Wed Jun 1 22:07:39 2011 +0000 20110305 OBS-URL: https://build.opensuse.org/package/show/utilities/cpuid?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/cpuid-20110305.src.tar.gz b/cpuid-20110305.src.tar.gz new file mode 100644 index 0000000..75538f0 --- /dev/null +++ b/cpuid-20110305.src.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b90960ecc5cf3466d0d78269365f6fc6233e1aeb3491c7d25342f20405cc7e +size 59044 diff --git a/cpuid.changes b/cpuid.changes new file mode 100644 index 0000000..48f598f --- /dev/null +++ b/cpuid.changes @@ -0,0 +1,44 @@ +------------------------------------------------------------------- +Wed Jun 1 22:05:31 UTC 2011 - pascal.bleser@opensuse.org + +- update to 20110305 +- moved to utilities + +------------------------------------------------------------------- +Sat Dec 22 00:00:00 UTC 2007 - guru@unixtech.be + +- moved to openSUSE Build Service + + +------------------------------------------------------------------- +Mon Sep 18 00:00:00 UTC 2006 - guru@unixtech.be + +- new upstream version + + +------------------------------------------------------------------- +Wed Aug 23 00:00:00 UTC 2006 - guru@unixtech.be + +- new upstream version + + +------------------------------------------------------------------- +Tue Aug 8 00:00:00 UTC 2006 - guru@unixtech.be + +- new upstream version + + +------------------------------------------------------------------- +Mon Jul 31 00:00:00 UTC 2006 - guru@unixtech.be + +- added binary stripping on SUSE < 9.3 +- removed Packager and Distribution, injected by rpmmacros +- new upstream version + + +------------------------------------------------------------------- +Mon Apr 3 00:00:00 UTC 2006 - guru@unixtech.be + +- new package + + diff --git a/cpuid.spec b/cpuid.spec new file mode 100644 index 0000000..b3bb669 --- /dev/null +++ b/cpuid.spec @@ -0,0 +1,38 @@ +# vim: set ts=4 sw=4 et: + +Name: cpuid +Version: 20110305 +Release: 0 +Summary: X86 CPU Identification Tool +Source: http://www.etallen.com/cpuid/cpuid-%{version}.src.tar.gz +URL: http://www.etallen.com/ +Group: System/Management +License: BSD +BuildRoot: %{_tmppath}/build-%{name}-%{version} +BuildRequires: gcc make glibc-devel + +%description +cpuid executes the CPUID instruction on x86-family CPUs and decodes the +results into English descriptions. It knows about Intel, AMD, and Cyrix CPUs, +and is fairly complete. + +%prep +%setup -q + +%build +%__make CFLAGS="%{optflags} -Wall" + +%install +%__install -D -m 0755 cpuid "%{buildroot}%{_bindir}/cpuid" +%__install -D -m 0644 cpuid.man "%{buildroot}%{_mandir}/man1/cpuid.1" + +%clean +%{?buildroot:%__rm -rf "%{buildroot}"} + +%files +%defattr(-,root,root) +%doc ChangeLog FUTURE LICENSE +%{_bindir}/cpuid +%doc %{_mandir}/man1/cpuid.1* + +%changelog