[Glibc-bsd-commits] r1927 - in trunk/type-handling: . debian

aurel32 at alioth.debian.org aurel32 at alioth.debian.org
Tue May 15 21:25:34 UTC 2007


Author: aurel32
Date: 2007-05-15 21:25:34 +0000 (Tue, 15 May 2007)
New Revision: 1927

Modified:
   trunk/type-handling/debian/changelog
   trunk/type-handling/debian/control
   trunk/type-handling/type-handling
Log:
  * Support the new format of /usr/share/dpkg/ostable, patch by Petr
    Salinger (Closes: bug#424041). 



Modified: trunk/type-handling/debian/changelog
===================================================================
--- trunk/type-handling/debian/changelog	2007-05-15 21:21:55 UTC (rev 1926)
+++ trunk/type-handling/debian/changelog	2007-05-15 21:25:34 UTC (rev 1927)
@@ -1,8 +1,10 @@
 type-handling (0.2.20) unstable; urgency=low
 
   * Really uses cache, patch by Sjoerd Simons (Closes: bug#424035).
+  * Support the new format of /usr/share/dpkg/ostable, patch by Petr
+    Salinger (Closes: bug#424041). 
 
- -- Aurelien Jarno <aurel32 at debian.org>  Tue, 15 May 2007 23:19:22 +0200
+ -- Aurelien Jarno <aurel32 at debian.org>  Tue, 15 May 2007 23:22:01 +0200
 
 type-handling (0.2.19) unstable; urgency=low
 

Modified: trunk/type-handling/debian/control
===================================================================
--- trunk/type-handling/debian/control	2007-05-15 21:21:55 UTC (rev 1926)
+++ trunk/type-handling/debian/control	2007-05-15 21:25:34 UTC (rev 1927)
@@ -3,13 +3,13 @@
 Priority: optional
 Maintainer: GNU/kFreeBSD Maintainers <debian-bsd at lists.debian.org>
 Uploaders: Aurelien Jarno <aurel32 at debian.org>, Guillem Jover <guillem at debian.org>
-Build-Depends: debhelper (>= 4.1.0), dpkg-dev (>= 1.13.9)
+Build-Depends: debhelper (>= 4.1.0), dpkg-dev (>= 1.14.0)
 Standards-Version: 3.6.2
 
 Package: type-handling
 Architecture: any
 Provides: i386, linux-gnu, i386-linux-gnu, not+ia64, not+alpha, not+amd64, not+arm, not+hppa, not+m32r, not+m68k, not+mips, not+mipsel, not+powerpc, not+ppc64, not+s390, not+s390x, not+sh3, not+sh3eb, not+sh4, not+sh4eb, not+sparc, not+darwin, not+freebsd, not+hurd, not+kfreebsd, not+knetbsd, not+netbsd, not+openbsd
-Depends: dpkg-dev (>= 1.13.9)
+Depends: dpkg-dev (>= 1.14.0)
 Description: dpkg architecture generation script
  This package provides a script known as "type-handling", whose purpose is
  converting System and CPU combinations into the architecture variable names

Modified: trunk/type-handling/type-handling
===================================================================
--- trunk/type-handling/type-handling	2007-05-15 21:21:55 UTC (rev 1926)
+++ trunk/type-handling/type-handling	2007-05-15 21:25:34 UTC (rev 1927)
@@ -1,7 +1,7 @@
 #!/bin/sh -e
 
 all_cpus=`grep -v ^# /usr/share/dpkg/cputable | (while read debian gnu regex ; do echo ${debian} ; done)`
-all_systems=`grep -v ^# /usr/share/dpkg/ostable | (while read debian gnu regex ; do echo ${debian} ; done)`
+all_systems=`grep -v ^# /usr/share/dpkg/ostable | (while read debian gnu regex ; do echo ${debian} ; done) | cut -f2 -d-  | sort -u`
 
 if [ "$#" = "0" ] ; then
   echo "Known cpus: `for i in ${all_cpus} ; do echo -n $i\  ; done`"




More information about the Glibc-bsd-commits mailing list