[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1096 - trunk/type-handling/debian



Author: aurel32
Date: 2006-01-23 11:19:28 +0000 (Mon, 23 Jan 2006)
New Revision: 1096

Modified:
   trunk/type-handling/debian/changelog
   trunk/type-handling/debian/rules
Log:
type-handling (0.2.19) unstable; urgency=low

  * Don't provide anything containing x86_64, as the underscore symbol is 
    not allowed in packages name.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 23 Jan 2006 12:16:24 +0100




Modified: trunk/type-handling/debian/changelog
===================================================================
--- trunk/type-handling/debian/changelog	2006-01-23 10:05:11 UTC (rev 1095)
+++ trunk/type-handling/debian/changelog	2006-01-23 11:19:28 UTC (rev 1096)
@@ -1,3 +1,10 @@
+type-handling (0.2.19) unstable; urgency=low
+
+  * Don't provide anything containing x86_64, as the underscore symbol is 
+    not allowed in packages name.
+
+ -- Aurelien Jarno <aurel32@debian.org>  Mon, 23 Jan 2006 12:16:24 +0100
+
 type-handling (0.2.18) unstable; urgency=low
 
   * Provides and filters out both the Debian and GNU type/CPU. Should fix

Modified: trunk/type-handling/debian/rules
===================================================================
--- trunk/type-handling/debian/rules	2006-01-23 10:05:11 UTC (rev 1095)
+++ trunk/type-handling/debian/rules	2006-01-23 11:19:28 UTC (rev 1096)
@@ -11,7 +11,7 @@
 DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-cpus := $(shell grep -v ^\# /usr/share/dpkg/cputable | (while read debian gnu regex ; do echo $${debian} ; echo $${gnu}; done) | sort -u)
+cpus := $(shell grep -v ^\# /usr/share/dpkg/cputable | (while read debian gnu regex ; do echo $${debian} ; echo $${gnu}; done) | grep -vx x86_64 | sort -u)
 systems := $(shell grep -v ^\# /usr/share/dpkg/ostable | (while read debian gnu regex ; do echo $${debian} ; echo $${gnu}; done) | sort -u)
 
 not_cpus := $(shell echo $(cpus) | tr " " "\n" | grep -vx $(DEB_BUILD_ARCH_CPU) | grep -vx $(DEB_BUILD_GNU_CPU))



Reply to: