]> Untitled Git - hvlinux.git/commitdiff
Remove download of patches from hugovil.com
authorHugo Villeneuve <hugo@hugovil.com>
Tue, 19 Aug 2014 04:04:50 +0000 (00:04 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Mon, 24 Nov 2014 13:41:43 +0000 (08:41 -0500)
config/urls
functions/fpkg
stage0/packages-update
stage1/packages-update
stage2/packages-update
stage3/packages-update
stage4/packages-update
stage5/packages-update

index 719d1f26b9a064b51ac54c821152be74b992c21d..8e1bb406638dfcdbcd4bb0e8db6a916fefdaaa28 100644 (file)
@@ -9,8 +9,6 @@ HV_BASE_URL="http://www.hugovil.com/repository/hvlinux"
 LFS_PATCHES_URL="${LFS_BASE_URL}/patches/lfs/development"
 BLFS_PATCHES_URL="${LFS_BASE_URL}/patches/blfs/svn"
 CLFS_PATCHES_URL="http://patches.cross-lfs.org/dev"
-HV_PATCHES_URL="${HV_BASE_URL}/patches"
-LFS_OLD_PATCHES_URL="${HV_BASE_URL}/patches/lfs"
 
 LFS_PACKAGES_URL="ftp://ftp.osuosl.org/pub/lfs/lfs-packages/conglomeration"
 CLFS_PKG_SVN_URL="http://cross-lfs.org/files/packages/svn"
index 829a139772ea7bcea945f3ec38ce28aa4eb22983..6c0c26eb86f5708514165aa18d2dd28fe537e4a6 100644 (file)
@@ -15,8 +15,6 @@ WGETCMD="wget --directory-prefix=${LFS_PKG_DIR} --timeout=15 --tries=3 -nc --con
 LFS_PATCHES_LIST=${LFS_PKG_DIR}/patches/list-lfs.html
 BLFS_PATCHES_LIST=${LFS_PKG_DIR}/patches/list-blfs.html
 CLFS_PATCHES_LIST=${LFS_PKG_DIR}/patches/list-clfs.html
-HV_PATCHES_LIST=${LFS_PKG_DIR}/patches/list-hv.html
-LFS_OLD_PATCHES_LIST=${LFS_PKG_DIR}/patches/list-lfs-old.html
 
 # Test if the given file extension correspond to a compressed archive
 # Arg. #1: File extension
@@ -215,12 +213,6 @@ update_packages_init()
         rcmd "Fetching LFS patches list" static_fetch_patches_list ${LFS_PATCHES_URL} ${LFS_PATCHES_LIST}
     fi
 
-    if [ -n "${USE_LFS_OLD_PATCHES}" ]; then
-        # Getting list of all LFS old patches from hugovil.com server.
-        rcmd "Fetching LFS old patches list" static_fetch_patches_list \
-            ${LFS_OLD_PATCHES_URL} ${LFS_OLD_PATCHES_LIST}
-    fi
-
     if [ -n "${USE_BLFS_PATCHES}" ]; then
         # Getting list of all patches from BLFS server.
         rcmd "Fetching BLFS patches list" static_fetch_patches_list ${BLFS_PATCHES_URL} ${BLFS_PATCHES_LIST}
@@ -230,11 +222,6 @@ update_packages_init()
         # Getting list of all patches from CLFS server.
         rcmd "Fetching CLFS patches list" static_fetch_patches_list ${CLFS_PATCHES_URL} ${CLFS_PATCHES_LIST}
     fi
-
-    if [ -n "${USE_HV_PATCHES}" ]; then
-        # Getting list of all patches from hugovil.com server.
-        rcmd "Fetching hugovil.com patches list" static_fetch_patches_list ${HV_PATCHES_URL} ${HV_PATCHES_LIST}
-    fi
 }
 
 # Get patch for package if it is not in the repository
@@ -291,11 +278,6 @@ static_getpatch()
         static_checkpatch ${PACK} ${LFS_PATCHES_LIST} ${LFS_PATCHES_URL}
     fi
 
-    if [ -n "${USE_LFS_OLD_PATCHES}" ]; then
-        # Checking if patch is available from LFS old.
-        static_checkpatch ${PACK} ${LFS_OLD_PATCHES_LIST} ${LFS_OLD_PATCHES_URL}
-    fi
-
     if [ -n "${USE_BLFS_PATCHES}" ]; then
         # Checking if patch is available from BLFS.
         static_checkpatch ${PACK} ${BLFS_PATCHES_LIST} ${BLFS_PATCHES_URL}
@@ -305,11 +287,6 @@ static_getpatch()
         # Checking if patch is available from CLFS.
         static_checkpatch ${PACK} ${CLFS_PATCHES_LIST} ${CLFS_PATCHES_URL}
     fi
-
-    if [ -n "${USE_HV_PATCHES}" ]; then
-        # Checking if patch is available from hugovil.com.
-        static_checkpatch ${PACK} ${HV_PATCHES_LIST} ${HV_PATCHES_URL}
-    fi
 }
 
 detect_file_not_found()
index e6e9b0d262b9ee611f023c0c4739db91e2d4fc97..a59e8ba29965bc093a1fe8cf331b9aca7387cef6 100755 (executable)
@@ -1,10 +1,8 @@
 #!/bin/bash
 
 USE_LFS_PATCHES=1
-USE_LFS_OLD_PATCHES=1
 USE_BLFS_PATCHES=1
 USE_CLFS_PATCHES=1
-USE_HV_PATCHES=1
 
 source ../functions/main
 
index 2920824cbda59620f9c4da6932ea45532c6fde32..1bfab4846037118a2bdc25e2b3b59ef56128cca8 100755 (executable)
@@ -1,10 +1,8 @@
 #!/bin/bash
 
 USE_LFS_PATCHES=1
-USE_LFS_OLD_PATCHES=1
 USE_BLFS_PATCHES=1
 USE_CLFS_PATCHES=1
-USE_HV_PATCHES=1
 
 source ../functions/main
 
index e2c27f2276f302c1937db0442cbcbd7a44b67e6e..bb0ec218050d365f52ade3a2d6589170c9c6257f 100755 (executable)
@@ -1,10 +1,8 @@
 #!/bin/bash
 
 USE_LFS_PATCHES=1
-USE_LFS_OLD_PATCHES=1
 USE_BLFS_PATCHES=1
 USE_CLFS_PATCHES=1
-USE_HV_PATCHES=1
 
 source ../functions/main
 
index 7503013508401c41b940edb013ae70d1920f6b7e..3486bcc24934e2817a6873d364cdfd14cf4e5e02 100755 (executable)
@@ -1,9 +1,7 @@
 #!/bin/bash
 
 USE_LFS_PATCHES=1
-USE_LFS_OLD_PATCHES=1
 USE_BLFS_PATCHES=1
-USE_HV_PATCHES=1
 
 source ../functions/main
 
index d88a1de074247542e73511df44b366c8d0916d9b..c5af9dc3faafe5ae6f11a9d9a1793add960dc4af 100755 (executable)
@@ -1,9 +1,7 @@
 #!/bin/bash
 
 USE_LFS_PATCHES=1
-USE_LFS_OLD_PATCHES=1
 USE_BLFS_PATCHES=1
-USE_HV_PATCHES=1
 
 source ../functions/main
 
index 0f994c8ce985e95562aa0860b2394378d2afead2..3ac98f6e4b078decc806c6a7d3aa656f8f622ed7 100755 (executable)
@@ -1,9 +1,7 @@
 #!/bin/bash
 
 USE_LFS_PATCHES=1
-USE_LFS_OLD_PATCHES=1
 USE_BLFS_PATCHES=1
-USE_HV_PATCHES=1
 
 source ../functions/main