--- cpuid-3.3.orig/debian/changelog +++ cpuid-3.3/debian/changelog @@ -0,0 +1,82 @@ +cpuid (3.3-9) unstable; urgency=low + + * New maintainer. (Closes: #394729) + * Build-Depends on debhelper (>= 4). + * Update Standards-Version to 3.7.2. + * Remove netbsd-i386 from the Architecture field. + * Rework the package description and add upstream homepage. + * Fix broken manpage. + * Conform to policy by using "-O2 -g -Wall" as CFLAGS. + * Add dpatch support. + * Add debian/watch file. + + -- Aurélien GÉRÔME Mon, 23 Oct 2006 01:57:33 +0200 + +cpuid (3.3-8) unstable; urgency=low + + * orphaning the package + + -- Ramakrishnan Muthukrishnan Mon, 23 Oct 2006 00:09:56 +0530 + +cpuid (3.3-7) unstable; urgency=low + + * Added kfreebsd-amd64 to supported architectures. + (closes: #361627) + + -- Ramakrishnan Muthukrishnan Sun, 16 Apr 2006 00:20:00 +0530 + +cpuid (3.3-6) unstable; urgency=low + + * Removed reference to non-existant Info documentation from the + man page. (closes: #348396) + + -- Ramakrishnan Muthukrishnan Sat, 1 Apr 2006 08:20:57 +0530 + +cpuid (3.3-5) unstable; urgency=low + + * Fixed the copyright file. The copyright holder was not listed + and instead the license was mentioned in the place of copyright + holder. + (closes: #323654) + + -- Ramakrishnan Muthukrishnan Sat, 4 Mar 2006 20:28:03 +0530 + +cpuid (3.3-4) unstable; urgency=low + + * This release has changes only in the debian related files and + do not have any change in functionality. As the last changelog + entry lacked clear explanation of the bugs, those were reopened + and here I am again closing those bugs (with explanation, of + course!). + + * Added amd64 to the supported architectures (closes: #252772) + * Corrected the upstream homepage URL in the copyright file + (closes: #188002) + * Added other supported GNU/non-Linux systems like GNU/Hurd, + GNU/kfreeBSD etc to the Architecture list (closes: #260144) + * Changed maintainer field to my full name so that it is not + detected as NMU! + + -- Ramakrishnan Muthukrishnan Sun, 26 Sep 2004 14:35:46 +0530 + +cpuid (3.3-3) unstable; urgency=low + + * (closes: #252772) + * (closes: #188002) + * (closes: #260144) + + -- Ramakrishnan Muthukrishnan Sat, 25 Sep 2004 16:29:02 +0530 + +cpuid (3.3-2) unstable; urgency=low + + * Changed the brief useless description to a longer + one with more details. (Closes: #135309) + + -- Ramakrishnan M Sat, 16 Mar 2002 10:01:08 +0530 + +cpuid (3.3-1) unstable; urgency=low + + * Initial Release. + (Closes: #134787) + + -- Ramakrishnan M Tue, 19 Feb 2002 19:02:48 +0530 --- cpuid-3.3.orig/debian/control +++ cpuid-3.3/debian/control @@ -0,0 +1,17 @@ +Source: cpuid +Section: admin +Priority: optional +Maintainer: Aurélien GÉRÔME +Build-Depends: debhelper (>= 4), dpatch +Standards-Version: 3.7.2 + +Package: cpuid +Architecture: i386 amd64 kfreebsd-i386 kfreebsd-amd64 hurd-i386 +Depends: ${shlibs:Depends} +Description: Intel and AMD x86 CPUID display program + This program displays the vendor ID, the processor specific features, + the processor name string, different kinds of instruction set + extensions present, L1/L2 Cache information, and so on for the + processor on which it is running. + . + Homepage: http://www.ka9q.net/code/cpuid/ --- cpuid-3.3.orig/debian/rules +++ cpuid-3.3/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/dpatch/dpatch.make + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -O2 -g -Wall + +build: patch build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + $(MAKE) CFLAGS="$(CFLAGS)" + + touch build-stamp + +clean: clean1 unpatch +clean1: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/cpuid. + $(MAKE) install DESTDIR=$(CURDIR)/debian/cpuid + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples + dh_installmenu + dh_installcron + dh_installman debian/cpuid.1 + dh_installinfo + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean clean1 binary-indep binary-arch binary install configure --- cpuid-3.3.orig/debian/patches/00list +++ cpuid-3.3/debian/patches/00list @@ -0,0 +1 @@ +01_debian_build_system --- cpuid-3.3.orig/debian/patches/01_debian_build_system.dpatch +++ cpuid-3.3/debian/patches/01_debian_build_system.dpatch @@ -0,0 +1,17 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run + +--- cpuid-3.3.orig/Makefile ++++ cpuid-3.3/Makefile +@@ -1,7 +1,11 @@ + CFLAGS=-O2 -Wall ++DESTDIR= + + cpuid: cpuid.o + gcc -o $@ $^ + + clean: + rm -f *.o cpuid ++ ++install: ++ cp cpuid $(DESTDIR)/usr/bin/ +\ No newline at end of file --- cpuid-3.3.orig/debian/compat +++ cpuid-3.3/debian/compat @@ -0,0 +1 @@ +4 --- cpuid-3.3.orig/debian/copyright +++ cpuid-3.3/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Ramakrishnan Muthukrishnan + on Tue, 19 Feb 2002 19:02:48 +0530. + +It was downloaded from . + +Upstream Author: Phil Karn (KA9Q) + +Copyright: + +Copyright Phil Karn and licensed under the GNU +General Public License (GNU GPL) which is accessible from your Debian +System at /usr/share/common-licenses/GPL. --- cpuid-3.3.orig/debian/dirs +++ cpuid-3.3/debian/dirs @@ -0,0 +1 @@ +usr/bin --- cpuid-3.3.orig/debian/cpuid.1 +++ cpuid-3.3/debian/cpuid.1 @@ -0,0 +1,21 @@ +.TH CPUID 1 "October 23, 2006" +.SH NAME +cpuid \- program to find the CPUID of Intel and AMD x86 processors +.SH SYNOPSIS +.B cpuid +.SH DESCRIPTION +This manual page documents briefly the +.B cpuid +program. +.PP +This manual page was written for the Debian distribution, because +the original program does not have a manual page. +.PP +\fBcpuid\fP is a program to find the CPUID information of the Intel +or AMD x86 processors. +.SH OPTIONS +The program does not have any options. +.SH AUTHOR +This manual page was written by Ramakrishnan M +and modified by Aur\['e]lien G\['E]R\[^O]ME for the +Debian GNU/Linux system (but may be used by others). --- cpuid-3.3.orig/debian/watch +++ cpuid-3.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.ka9q.net/code/cpuid/cpuid-(.*)\.tar\.gz