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

r1774 - in glibc-package: branches/glibc-2.4/debian branches/glibc-2.4/debian/control.in branches/glibc-2.4/debian/rules.d trunk/debian trunk/debian/control.in trunk/debian/rules.d



Author: aurel32
Date: 2006-08-23 22:25:04 +0000 (Wed, 23 Aug 2006)
New Revision: 1774

Modified:
   glibc-package/branches/glibc-2.4/debian/changelog
   glibc-package/branches/glibc-2.4/debian/control
   glibc-package/branches/glibc-2.4/debian/control.in/opt
   glibc-package/branches/glibc-2.4/debian/rules.d/control.mk
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/control
   glibc-package/trunk/debian/control.in/opt
   glibc-package/trunk/debian/rules.d/control.mk
Log:
 * debian/control.in/opt: add a new line at the end of the file.  (Closes:
   #384375).
 * debian/rules.d/control.mk: add a check to make sur that all files in
   debian/control.in have a new line at the end.




Modified: glibc-package/branches/glibc-2.4/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.4/debian/changelog	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/branches/glibc-2.4/debian/changelog	2006-08-23 22:25:04 UTC (rev 1774)
@@ -142,8 +142,17 @@
 
  -- Clint Adams <schizo@debian.org>  Sun, 28 May 2006 03:28:14 +0200
 
-glibc (2.3.6.ds1-3) UNRELEASED; urgency=low
+glibc (2.3.6.ds1-4) unstable; urgency=low
 
+  * debian/control.in/opt: add a new line at the end of the file.  (Closes:
+    #384375). 
+  * debian/rules.d/control.mk: add a check to make sur that all files in
+    debian/control.in have a new line at the end.
+
+ -- Aurelien Jarno <aurel32@debian.org>  Thu, 24 Aug 2006 00:21:25 +0200
+
+glibc (2.3.6.ds1-3) unstable; urgency=low
+
   * patches/any/cvs-sysctl.diff: patch from upstream to fix the sysctl()
     problem for NPTL.
   * patches/any/local-sysctl.diff: remove the NPTL fix from this patch, apply
@@ -160,7 +169,7 @@
     This way the 32-bit libc6 on amd64 is able use the locales correctly (it
     was already done for other bi-arch architectures).  (Closes: #379959).
 
- -- Aurelien Jarno <aurel32@debian.org>  Thu, 17 Aug 2006 01:14:40 +0200
+ -- Aurelien Jarno <aurel32@debian.org>  Wed, 23 Aug 2006 00:38:22 +0200
 
 glibc (2.3.6.ds1-2) unstable; urgency=low
 

Modified: glibc-package/branches/glibc-2.4/debian/control
===================================================================
--- glibc-package/branches/glibc-2.4/debian/control	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/branches/glibc-2.4/debian/control	2006-08-23 22:25:04 UTC (rev 1774)
@@ -554,6 +554,7 @@
  Pentium Pro, Pentium II/III/IV, Celeron CPU's and similar class CPU's
  (including clones such as AMD Athlon/Opteron, VIA C3 Nehemiah, but not VIA 
  C3 Ezla).  
+
 Package: libnss-dns-udeb
 XC-Package-Type: udeb
 Architecture: any

Modified: glibc-package/branches/glibc-2.4/debian/control.in/opt
===================================================================
--- glibc-package/branches/glibc-2.4/debian/control.in/opt	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/branches/glibc-2.4/debian/control.in/opt	2006-08-23 22:25:04 UTC (rev 1774)
@@ -71,3 +71,4 @@
  Pentium Pro, Pentium II/III/IV, Celeron CPU's and similar class CPU's
  (including clones such as AMD Athlon/Opteron, VIA C3 Nehemiah, but not VIA 
  C3 Ezla).  
+

Modified: glibc-package/branches/glibc-2.4/debian/rules.d/control.mk
===================================================================
--- glibc-package/branches/glibc-2.4/debian/rules.d/control.mk	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/branches/glibc-2.4/debian/rules.d/control.mk	2006-08-23 22:25:04 UTC (rev 1774)
@@ -18,6 +18,12 @@
 debian/control: $(stamp)control
 $(stamp)control: debian/control.in/main $(control_deps) \
 		   debian/rules.d/control.mk # debian/sysdeps/depflags.pl
+
+	# Check that all files end with a new line
+	set -e ; for i in debian/control.in/* ; do \
+		tail -n1 $$i | grep -q "^$$" ; \
+	done
+
 	cat debian/control.in/main		>  $@T
 	cat debian/control.in/libc6		>> $@T
 	cat debian/control.in/libc6.1		>> $@T

Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/trunk/debian/changelog	2006-08-23 22:25:04 UTC (rev 1774)
@@ -1,3 +1,12 @@
+glibc (2.3.6.ds1-4) unstable; urgency=low
+
+  * debian/control.in/opt: add a new line at the end of the file.  (Closes:
+    #384375). 
+  * debian/rules.d/control.mk: add a check to make sur that all files in
+    debian/control.in have a new line at the end.
+
+ -- Aurelien Jarno <aurel32@debian.org>  Thu, 24 Aug 2006 00:21:25 +0200
+
 glibc (2.3.6.ds1-3) unstable; urgency=low
 
   * patches/any/cvs-sysctl.diff: patch from upstream to fix the sysctl()

Modified: glibc-package/trunk/debian/control
===================================================================
--- glibc-package/trunk/debian/control	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/trunk/debian/control	2006-08-23 22:25:04 UTC (rev 1774)
@@ -557,6 +557,7 @@
  Pentium Pro, Pentium II/III/IV, Celeron CPU's and similar class CPU's
  (including clones such as AMD Athlon/Opteron, VIA C3 Nehemiah, but not VIA 
  C3 Ezla).  
+
 Package: libnss-dns-udeb
 XC-Package-Type: udeb
 Architecture: any

Modified: glibc-package/trunk/debian/control.in/opt
===================================================================
--- glibc-package/trunk/debian/control.in/opt	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/trunk/debian/control.in/opt	2006-08-23 22:25:04 UTC (rev 1774)
@@ -71,3 +71,4 @@
  Pentium Pro, Pentium II/III/IV, Celeron CPU's and similar class CPU's
  (including clones such as AMD Athlon/Opteron, VIA C3 Nehemiah, but not VIA 
  C3 Ezla).  
+

Modified: glibc-package/trunk/debian/rules.d/control.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/control.mk	2006-08-23 22:21:05 UTC (rev 1773)
+++ glibc-package/trunk/debian/rules.d/control.mk	2006-08-23 22:25:04 UTC (rev 1774)
@@ -18,6 +18,12 @@
 debian/control: $(stamp)control
 $(stamp)control: debian/control.in/main $(control_deps) \
 		   debian/rules.d/control.mk # debian/sysdeps/depflags.pl
+
+	# Check that all files end with a new line
+	set -e ; for i in debian/control.in/* ; do \
+		tail -n1 $$i | grep -q "^$$" ; \
+	done
+
 	cat debian/control.in/main		>  $@T
 	cat debian/control.in/libc6		>> $@T
 	cat debian/control.in/libc6.1		>> $@T



Reply to: