Remove download of patches from hugovil.com
[hvlinux.git] / stage0 / packages-update
index 2345293..a59e8ba 100755 (executable)
@@ -1,35 +1,39 @@
 #!/bin/bash
 
-LFS_STAGE="stage0"
-# We don't use LFS or BLFS patches because we want to carefully
-# select which patch get applied
+USE_LFS_PATCHES=1
+USE_BLFS_PATCHES=1
 USE_CLFS_PATCHES=1
-USE_HV_PATCHES=1
 
-# Reading system configuration informations, functions and package versions.
-source ../sysinfos
-source ../functions
-source ../functions-update
-source ../packages-list
+source ../functions/main
 
-update_packages_init
+update_packages_init ${*}
 
-if [ ${#} -eq 1 -a "x${1}" = "xtest" ]; then
-    export TEST_INTEGRITY=1
+if [ "x${KERNEL}" = "x${NOUVEAU_NVIDIA_KERNEL}" ]; then
+    # Special case
+    fpkg -m hv ${KERNEL}
+else
+    fpkg -s "linux/kernel/v$(get_pkg_ver1 ${KERNEL}).0" ${KERNEL} ${KERNEL_URL}
 fi
 
-fpkg       ${KERNEL}    "http://www.kernel.org/pub/linux/kernel/v2.6"
-fpkg       ${FILE_PKG}  "ftp://ftp.astron.com/pub/file"
-fpkg_gnu   ${NCURSES}
-fpkg_gnu   ${GMP}
-fpkg_gnu   ${MPFR}
+fpkg -e "tar.gz" ${FILE_PKG} "ftp://ftp.astron.com/pub/file"
+fpkg -m gnu ${NCURSES}
+fpkg -m gnu ${GMP}
+fpkg -m gnu ${MPFR}
 fpkg -e "tar.gz" ${MPC} "http://www.multiprecision.org/mpc/download"
 fpkg -s "$(get_pkg_ver ${PPL})" ${PPL} \
-    "http://www.cs.unipr.it/ppl/Download/ftp/releases"
-fpkg       ${CLOOG_PPL} "ftp://gcc.gnu.org/pub/gcc/infrastructure"
-fpkg_gnu   ${BINUTILS}
-fpkg_gnu   ${GCC} "gcc/${GCC}"
-fpkg       ${EGLIBC} "http://cross-lfs.org/files/packages/svn"
-fpkg       ${EGLIBC_PORTS} "http://cross-lfs.org/files/packages/svn"
+    "http://bugseng.com/products/ppl/download/ftp/releases"
+fpkg -e "tar.gz" ${CLOOG} "http://www.bastoul.net/cloog/pages/download"
+fpkg -e "tar.bz2" -m gnu ${BINUTILS}
+
+# For GCC, we don't use LFS or BLFS patches because we want to carefully
+# select which patch get applied
+unset USE_LFS_PATCHES
+unset USE_BLFS_PATCHES
+fpkg -m gnu -s "gcc/${GCC}" ${GCC}
+USE_LFS_PATCHES=1
+USE_BLFS_PATCHES=1
+
+fpkg ${EGLIBC} ${CLFS_PKG_COSMO_URL}
+fpkg ${EGLIBC_PORTS} ${CLFS_PKG_COSMO_URL}
 
 exit $?