diff options
author | Nick White <git@njw.me.uk> | 2010-06-06 14:48:52 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-06-06 14:48:52 +0100 |
commit | 9f1146a84c5e6c38961db02520b5cab9cf72a434 (patch) | |
tree | 897d28745fd58625d0e38c4611d0c0a4a9997dc2 /eclass | |
parent | dbda90be63e8fba2ab971838525b35fe998d9a10 (diff) | |
download | njw-gentoo-local-9f1146a84c5e6c38961db02520b5cab9cf72a434.tar.bz2 njw-gentoo-local-9f1146a84c5e6c38961db02520b5cab9cf72a434.zip |
Remove old ebuilds, update goldenpod
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-libre.eclass | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/eclass/kernel-libre.eclass b/eclass/kernel-libre.eclass deleted file mode 100644 index 80cc3ec..0000000 --- a/eclass/kernel-libre.eclass +++ /dev/null @@ -1,65 +0,0 @@ -# -# Original Author: Nick White -# Purpose: override of kernel-2.eclass for the linux-libre kernel -# - -inherit kernel-2 -EXPORT_FUNCTIONS src_unpack - -KERNEL_URI="http://www.linux-libre.fsfla.org/pub/linux-libre/releases/${PV}-libre${LIBRE_VER}/linux-${PV}-libre${LIBRE_VER}.tar.bz2" -DEBLOB_CHECK="deblob-check" -DEBLOB_URI="http://www.linux-libre.fsfla.org/pub/linux-libre/releases/${PV}-libre${LIBRE_VER}/${DEBLOB_CHECK}" - -KERNEL_VER=${PV/-r*} - -# rename deblob-check to avoid collisions -if [[ $EAPI == 2 ]]; then - DEBLOB_CHECK="${DEBLOB_CHECK}-${KERNEL_VER}" - DEBLOB_URI="${DEBLOB_URI} -> ${DEBLOB_CHECK}" -fi - -# override the kernel-2 function as tarball is named differently -universal_unpack() { - cd ${WORKDIR} - unpack linux-${KERNEL_VER}-libre${LIBRE_VER}.tar.bz2 - mv ${WORKDIR}/linux-${KERNEL_VER} ${WORKDIR}/linux-${KV_FULL} \ - || die "Unable to move source tree to ${KV_FULL}." - cd ${S} - - # remove all backup files - find . -iname "*~" -exec rm {} \; 2> /dev/null -} - -check_for_blobs() { - # usage: check_for_blobs name_of_variable_containing_paths_to_check - # we want the name of a variable (not just its contents) - # so can unset it if blobs are found - - [[ "$SKIP_PATCH_DEBLOB" == "1" ]] && return 0 - [[ -z "${!1}" ]] && return 1 - - sh ${DISTDIR}/${DEBLOB_CHECK} ${!1} - - if [ $? -ne 0 ]; then - ewarn "Warning: A file in ${1} appears to contain blobs." - ewarn "Disabling ${1} for now." - eval "${1}=''" - ewarn "Please report this to http://bugs.gentoo.org/266157" - return 1 - fi - - return 0 -} - -kernel-libre_src_unpack() { - # kernel revision patches are included in tarball - UNIPATCH_LIST_DEFAULT="" - - if [ -n "${UNIPATCH_LIST_GENPATCHES}" ] || [ -n "${UNIPATCH_LIST}" ]; then - echo "Checking all patches are clean of blobs" - check_for_blobs "UNIPATCH_LIST_GENPATCHES" - check_for_blobs "UNIPATCH_LIST" - fi - - kernel-2_src_unpack -} |