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"
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
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}
# 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
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}
# 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()