r1296 - trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian

Joshua Kwan joshk@haydn.debian.org
Tue, 24 Aug 2004 18:00:09 -0600


Author: joshk
Date: 2004-08-24 18:00:03 -0600 (Tue, 24 Aug 2004)
New Revision: 1296

Modified:
   trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/changelog
   trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/copyright
   trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/rules
Log:
fixed rules and stuff


Modified: trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/changelog
===================================================================
--- trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/changelog	2004-08-24 23:52:44 UTC (rev 1295)
+++ trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/changelog	2004-08-25 00:00:03 UTC (rev 1296)
@@ -1,11 +1,13 @@
-kernel-latest-2.4-i386 (100) UNRELEASED; urgency=low
+kernel-latest-2.4-sparc (40) unstable; urgency=low
 
-  * Created this package for meta packages that had
-    previously been provided by kernel-image-2.4.XX-i386
-    - This is to allow kernel-image packages for multiple
-      upstream kernel versions to co-exist.
-    - Initial version is 100, as previous versions of
-      the meta packages are already in the archive.
+  * This is a new package containing these metapackages:
+    - kernel-image-2.4-sparc32
+    - kernel-image-2.4-sparc32-smp
+    - kernel-image-2.4-sparc64
+    - kernel-image-2.4-sparc64-smp
+  * Use the versioning starting from the latest version of
+    kernel-image-sparc-2.4, which we have to be higher than
+    for this to enter unstable.
 
- -- Simon Horman <horms@debian.org>  Tue, 24 Aug 2004 15:47:38 +0900
+ -- Joshua Kwan <joshk@triplehelix.org>  Tue, 24 Aug 2004 16:57:21 -0700
 

Modified: trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/copyright
===================================================================
--- trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/copyright	2004-08-24 23:52:44 UTC (rev 1295)
+++ trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/copyright	2004-08-25 00:00:03 UTC (rev 1296)
@@ -2,7 +2,7 @@
 Linux was written by Linus Torvalds <Linus.Torvalds@cs.Helsinki.FI>
 and others.
 
-This package was put together by Simon Horman <horms@debian.org>
+This package was put together by Joshua Kwan <joshk@triplehelix.org>
 and provides meta packages only. As such there is no upstream.
 
 This program is free software; you can redistribute it and/or modify

Modified: trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/rules
===================================================================
--- trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/rules	2004-08-24 23:52:44 UTC (rev 1295)
+++ trunk/kernel-2.4/sparc/kernel-latest-2.4-sparc/debian/rules	2004-08-25 00:00:03 UTC (rev 1296)
@@ -1,6 +1,6 @@
 #!/usr/bin/make -f
 #
-# debian/rules for kernel-image-*-i386
+# debian/rules for kernel-latest-*-sparc
 #
 # GNU copyright 1997 to 1999 by Joey Hess.
 # Copyright (c) 1999-2002 Herbert Xu <herbert@debian.org>
@@ -12,28 +12,19 @@
 
 SHELL := sh -e
 
-FLAVOURS := 386 586tsc 686 686-smp k6 k7 k7-smp
+FLAVOURS := sparc32 sparc32-smp sparc64 sparc64-smp
 BINARY_ARCH := $(FLAVOURS:=.binary-arch)
+base := kernel-image-2.4
 
-unpack: unpack-stamp
-unpack-stamp:
-	dh_testdir
-	touch unpack-stamp
+build binary-indep:
+# Ye olde no-op.
 
-build: build-stamp
-build-stamp: unpack-stamp
-	dh_testdir
-	touch build-stamp
-
-debnum:
-	@echo $(debnum)
-
 clean:
 	rm -f *-stamp
 	dh_testdir
 	dh_clean
 
-install: build
+install: 
 	dh_testdir
 	dh_clean -k
 	dh_installdirs
@@ -41,23 +32,20 @@
 # Build architecture-independent files here.
 binary-indep:
 
-%.binary-arch-pkg:
+%.binary-arch:
 	dh_testroot
 	dh_testdir
-	dh_clean -k --package=$*
-	dh_installdirs --package=$*
-	dh_installdocs --package=$*
-	dh_installchangelogs --package=$*
-	dh_compress --package=$*
-	dh_fixperms --package=$*
-	dh_installdeb --package=$*
-	dh_gencontrol --package=$*
-	dh_md5sums --package=$*
-	dh_builddeb --package=$*
+	dh_clean -k --package=$(base)-$*
+	dh_installdirs --package=$(base)-$*
+	dh_installdocs --package=$(base)-$*
+	dh_installchangelogs --package=$(base)-$*
+	dh_compress --package=$(base)-$*
+	dh_fixperms --package=$(base)-$*
+	dh_installdeb --package=$(base)-$*
+	dh_gencontrol --package=$(base)-$*
+	dh_md5sums --package=$(base)-$*
+	dh_builddeb --package=$(base)-$*
 
-%.binary-arch: kernel-pcmcia-modules-2.4-%.binary-arch-pkg kernel-image-2.4-%.binary-arch-pkg
-	@true
-
 # Build architecture-dependent files here.
 binary-arch: install $(BINARY_ARCH)
 	@true