Author: alexander
Date: 2007-06-14 03:19:26 -0600 (Thu, 14 Jun 2007)
New Revision: 1920

Modified:
   trunk/packages/LFS-BOOK/Makefile
   trunk/packages/file/Makefile
   trunk/packages/findutils/Makefile
   trunk/packages/less/Makefile
   trunk/packages/man-pages/Makefile
   trunk/packages/tar/Makefile
Log:
Updated LFS packages and the book


Modified: trunk/packages/LFS-BOOK/Makefile
===================================================================
--- trunk/packages/LFS-BOOK/Makefile    2007-06-14 09:18:46 UTC (rev 1919)
+++ trunk/packages/LFS-BOOK/Makefile    2007-06-14 09:19:26 UTC (rev 1920)
@@ -10,7 +10,7 @@
 #URL-$(FILE)= http://www.linuxfromscratch.org/lfs/downloads/6.2/$(FILE)
 #SHA-$(FILE)= 729bcf04d8e4ed0af3c58daf0d289e94d6385052
 
-REV= 8152
+REV= 8164
 REVPARM= -r $(REV)
 
 URL= svn://svn.linuxfromscratch.org/LFS/trunk/BOOK

Modified: trunk/packages/file/Makefile
===================================================================
--- trunk/packages/file/Makefile        2007-06-14 09:18:46 UTC (rev 1919)
+++ trunk/packages/file/Makefile        2007-06-14 09:19:26 UTC (rev 1920)
@@ -1,12 +1,12 @@
 # File Makefile
 
 NM= file
-VRS= 4.20
+VRS= 4.21
 DIR= $(NM)-$(VRS)
 
 FILE= $(DIR).tar.gz
 URL-$(FILE)= ftp://ftp.gw.com/mirrors/pub/unix/file/$(FILE)
-SHA-$(FILE)= af5878e3c61c725a82ff185fcef5b631ad8468ab
+SHA-$(FILE)= 4a919572fed1896212c2d7f41f841845efc1287a
 
 # Targets
 

Modified: trunk/packages/findutils/Makefile
===================================================================
--- trunk/packages/findutils/Makefile   2007-06-14 09:18:46 UTC (rev 1919)
+++ trunk/packages/findutils/Makefile   2007-06-14 09:19:26 UTC (rev 1920)
@@ -1,12 +1,12 @@
 # Findutils Makefile
 
 NM= findutils
-VRS= 4.2.30
+VRS= 4.2.31
 DIR= $(NM)-$(VRS)
 
 FILE= $(DIR).tar.gz
 URL-$(FILE)= http://ftp.gnu.org/gnu/findutils/$(FILE)
-SHA-$(FILE)= d9f174b67f44bcb5ea3147c8ce313e89d2a900fc
+SHA-$(FILE)= e031ddb4f50c8a053d3f216d10f92621c1fa21ba
 
 # Targets
 

Modified: trunk/packages/less/Makefile
===================================================================
--- trunk/packages/less/Makefile        2007-06-14 09:18:46 UTC (rev 1919)
+++ trunk/packages/less/Makefile        2007-06-14 09:19:26 UTC (rev 1920)
@@ -1,16 +1,13 @@
 # Less Makefile 
 
 NM= less
-VRS= 394
+VRS= 403
 DIR= $(NM)-$(VRS)
 
 FILE= $(DIR).tar.gz
-URL-$(FILE)= $(HTTP)/$(NM)/$(FILE)
-SHA-$(FILE)= fa0d9aa30ec461866786c4080bb594fc3337bb02
+URL-$(FILE)= http://www.greenwoodsoftware.com/less/$(FILE)
+SHA-$(FILE)= f9fa97a9e215b6c62c1bfd049e03725a26ae71e8
 
-PATCH1= $(DIR)-signal_fix-1.patch
-URL-$(PATCH1)= $(HTTP)/$(NM)/$(PATCH1)
-SHA-$(PATCH1)= 6951f821ad33dae0ed4cee99ab89023216db848c
 # Targets
 
 include $(ROOT)/scripts/functions
@@ -19,11 +16,10 @@
        chroot "$(MP)" $(chenv-pre-bash) \
        'cd $(ROOT) && make ch-$(NM) $(chbash-pre-bash)'
 
-stage2: Makefile $(FILE) $(PATCH1)
+stage2: Makefile $(FILE)
        $(std_build)
 
 compile-stage2:
-       patch -Np1 -i ../$(PATCH1)
        ./configure --prefix=/usr --sysconfdir=/etc
        make
        make install

Modified: trunk/packages/man-pages/Makefile
===================================================================
--- trunk/packages/man-pages/Makefile   2007-06-14 09:18:46 UTC (rev 1919)
+++ trunk/packages/man-pages/Makefile   2007-06-14 09:19:26 UTC (rev 1920)
@@ -6,7 +6,7 @@
 
 FILE= $(DIR).tar.bz2
 URL-$(FILE)= http://www.kernel.org/pub/linux/docs/manpages/$(FILE)
-SHA-$(FILE)= c0bf66824bf995cc692adfe7fe6c51890a1489c0
+SHA-$(FILE)= 96cdd349325c37e46d40cf66567f3c904e79d583
 
 # Targets
 

Modified: trunk/packages/tar/Makefile
===================================================================
--- trunk/packages/tar/Makefile 2007-06-14 09:18:46 UTC (rev 1919)
+++ trunk/packages/tar/Makefile 2007-06-14 09:19:26 UTC (rev 1920)
@@ -1,21 +1,26 @@
 # Tar Makefile
 
 NM= tar
-VRS= 1.16.1
+VRS= 1.17
 DIR= $(NM)-$(VRS)
 
 FILE= $(DIR).tar.bz2
 URL-$(FILE)= http://ftp.gnu.org/gnu/tar/$(FILE)
-SHA-$(FILE)= ab3ccbc09da1dc040fb92a0de85ae34fc70b03a9
+SHA-$(FILE)= 97f4b67bf88dba1d451a1ec375f18cfaa3c9f36f
 
+PATCH1= $(DIR)-sort_exclude_test-1.patch
+URL-$(PATCH1)= 
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+SHA-$(PATCH1)= 55a733ee002c60b3c4d2bc25042eac6c9974874f
+
 # Targets
 
 include $(ROOT)/scripts/functions
 
-stage1: $(FILE)
+stage1: $(FILE) $(PATCH1)
        $(std_build)
 
 compile-stage1:
+       patch -Np1 -i ../$(PATCH1)
        ./configure --prefix=$(WD)
        make
        make install
@@ -24,10 +29,11 @@
        chroot "$(MP)" $(chenv-post-bash) \
        'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
 
-stage2: Makefile $(FILE) $(PATCH1) $(PATCH2) $(PATCH3)
+stage2: Makefile $(FILE) $(PATCH1)
        $(std_build)
 
 compile-stage2:
+       patch -Np1 -i ../$(PATCH1)
        ./configure --prefix=/usr --bindir=/bin --libexecdir=/usr/sbin
        make
        make install

-- 
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to