mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-16 17:36:59 +02:00
*: Drop the use of mirror://kernel
The kernel mirror was dropped from the thirdpartymirrors file in profiles, so it's use needs to be replaced with an address to kernel.org.
This commit is contained in:
parent
bf810e30eb
commit
3f024c766b
@ -6,7 +6,7 @@ inherit flag-o-matic
|
|||||||
|
|
||||||
DESCRIPTION="User utilities for zisofs"
|
DESCRIPTION="User utilities for zisofs"
|
||||||
HOMEPAGE="http://www.kernel.org/pub/linux/utils/fs/zisofs/"
|
HOMEPAGE="http://www.kernel.org/pub/linux/utils/fs/zisofs/"
|
||||||
SRC_URI="mirror://kernel/linux/utils/fs/zisofs/${P}.tar.bz2"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/fs/zisofs/${P}.tar.bz2"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -6,7 +6,7 @@ inherit flag-o-matic
|
|||||||
|
|
||||||
DESCRIPTION="User utilities for zisofs"
|
DESCRIPTION="User utilities for zisofs"
|
||||||
HOMEPAGE="http://www.kernel.org/pub/linux/utils/fs/zisofs/"
|
HOMEPAGE="http://www.kernel.org/pub/linux/utils/fs/zisofs/"
|
||||||
SRC_URI="mirror://kernel/linux/utils/fs/zisofs/${P}.tar.bz2"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/fs/zisofs/${P}.tar.bz2"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -17,20 +17,20 @@ if [[ ${PV/_rc} != ${PV} ]] ; then
|
|||||||
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
||||||
PATCH_VERSION=$(get_version_component_range 1-3)
|
PATCH_VERSION=$(get_version_component_range 1-3)
|
||||||
LINUX_PATCH=patch-${PV//_/-}.bz2
|
LINUX_PATCH=patch-${PV//_/-}.bz2
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
||||||
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
||||||
elif [[ $(get_version_component_count) == 4 ]] ; then
|
elif [[ $(get_version_component_count) == 4 ]] ; then
|
||||||
# stable-release series
|
# stable-release series
|
||||||
LINUX_VER=$(get_version_component_range 1-3)
|
LINUX_VER=$(get_version_component_range 1-3)
|
||||||
LINUX_PATCH=patch-${PV}.bz2
|
LINUX_PATCH=patch-${PV}.bz2
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
LINUX_VER=${PV}
|
LINUX_VER=${PV}
|
||||||
SRC_URI=""
|
SRC_URI=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LINUX_SOURCES="linux-${LINUX_VER}.tar.bz2"
|
LINUX_SOURCES="linux-${LINUX_VER}.tar.bz2"
|
||||||
SRC_URI+=" mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -17,15 +17,15 @@ if [[ ${PV} == *_rc* ]] ; then
|
|||||||
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
||||||
PATCH_VERSION=$(get_version_component_range 1-3)
|
PATCH_VERSION=$(get_version_component_range 1-3)
|
||||||
LINUX_PATCH=patch-${PV//_/-}.xz
|
LINUX_PATCH=patch-${PV//_/-}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
||||||
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
VER_COUNT=$(get_version_component_count)
|
VER_COUNT=$(get_version_component_count)
|
||||||
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
||||||
# stable-release series
|
# stable-release series
|
||||||
LINUX_VER=$(get_version_component_range 1-2)
|
LINUX_VER=$(get_version_component_range 1-2)
|
||||||
LINUX_PATCH=patch-${PV}.xz
|
LINUX_PATCH=patch-${PV}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
LINUX_VER=${PV}
|
LINUX_VER=${PV}
|
||||||
SRC_URI=""
|
SRC_URI=""
|
||||||
@ -33,7 +33,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
||||||
SRC_URI+=" mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -17,15 +17,15 @@ if [[ ${PV} == *_rc* ]] ; then
|
|||||||
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
||||||
PATCH_VERSION=$(get_version_component_range 1-3)
|
PATCH_VERSION=$(get_version_component_range 1-3)
|
||||||
LINUX_PATCH=patch-${PV//_/-}.xz
|
LINUX_PATCH=patch-${PV//_/-}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
||||||
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
VER_COUNT=$(get_version_component_count)
|
VER_COUNT=$(get_version_component_count)
|
||||||
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
||||||
# stable-release series
|
# stable-release series
|
||||||
LINUX_VER=$(get_version_component_range 1-2)
|
LINUX_VER=$(get_version_component_range 1-2)
|
||||||
LINUX_PATCH=patch-${PV}.xz
|
LINUX_PATCH=patch-${PV}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
LINUX_VER=${PV}
|
LINUX_VER=${PV}
|
||||||
SRC_URI=""
|
SRC_URI=""
|
||||||
@ -33,7 +33,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
||||||
SRC_URI+=" mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -17,15 +17,15 @@ if [[ ${PV} == *_rc* ]] ; then
|
|||||||
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
||||||
PATCH_VERSION=$(get_version_component_range 1-3)
|
PATCH_VERSION=$(get_version_component_range 1-3)
|
||||||
LINUX_PATCH=patch-${PV//_/-}.xz
|
LINUX_PATCH=patch-${PV//_/-}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
||||||
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
VER_COUNT=$(get_version_component_count)
|
VER_COUNT=$(get_version_component_count)
|
||||||
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
||||||
# stable-release series
|
# stable-release series
|
||||||
LINUX_VER=$(get_version_component_range 1-2)
|
LINUX_VER=$(get_version_component_range 1-2)
|
||||||
LINUX_PATCH=patch-${PV}.xz
|
LINUX_PATCH=patch-${PV}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
LINUX_VER=${PV}
|
LINUX_VER=${PV}
|
||||||
SRC_URI=""
|
SRC_URI=""
|
||||||
@ -33,7 +33,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
||||||
SRC_URI+=" mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -17,15 +17,15 @@ if [[ ${PV} == *_rc* ]] ; then
|
|||||||
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
||||||
PATCH_VERSION=$(get_version_component_range 1-3)
|
PATCH_VERSION=$(get_version_component_range 1-3)
|
||||||
LINUX_PATCH=patch-${PV//_/-}.xz
|
LINUX_PATCH=patch-${PV//_/-}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
||||||
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
VER_COUNT=$(get_version_component_count)
|
VER_COUNT=$(get_version_component_count)
|
||||||
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
||||||
# stable-release series
|
# stable-release series
|
||||||
LINUX_VER=$(get_version_component_range 1-2)
|
LINUX_VER=$(get_version_component_range 1-2)
|
||||||
LINUX_PATCH=patch-${PV}.xz
|
LINUX_PATCH=patch-${PV}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
LINUX_VER=${PV}
|
LINUX_VER=${PV}
|
||||||
SRC_URI=""
|
SRC_URI=""
|
||||||
@ -33,7 +33,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
||||||
SRC_URI+=" mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -17,15 +17,15 @@ if [[ ${PV} == *_rc* ]] ; then
|
|||||||
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
|
||||||
PATCH_VERSION=$(get_version_component_range 1-3)
|
PATCH_VERSION=$(get_version_component_range 1-3)
|
||||||
LINUX_PATCH=patch-${PV//_/-}.xz
|
LINUX_PATCH=patch-${PV//_/-}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
||||||
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
VER_COUNT=$(get_version_component_count)
|
VER_COUNT=$(get_version_component_count)
|
||||||
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
if [[ ${VER_COUNT} -gt 2 ]] ; then
|
||||||
# stable-release series
|
# stable-release series
|
||||||
LINUX_VER=$(get_version_component_range 1-2)
|
LINUX_VER=$(get_version_component_range 1-2)
|
||||||
LINUX_PATCH=patch-${PV}.xz
|
LINUX_PATCH=patch-${PV}.xz
|
||||||
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
||||||
else
|
else
|
||||||
LINUX_VER=${PV}
|
LINUX_VER=${PV}
|
||||||
SRC_URI=""
|
SRC_URI=""
|
||||||
@ -33,7 +33,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
||||||
SRC_URI+=" mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -373,17 +373,17 @@ detect_version() {
|
|||||||
|
|
||||||
# at this point 031412, Linus is putting all 3.x kernels in a
|
# at this point 031412, Linus is putting all 3.x kernels in a
|
||||||
# 3.x directory, may need to revisit when 4.x is released
|
# 3.x directory, may need to revisit when 4.x is released
|
||||||
KERNEL_BASE_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.x"
|
KERNEL_BASE_URI="https://www.kernel.org/pub/linux/kernel/v${KV_MAJOR}.x"
|
||||||
|
|
||||||
[[ -n "${K_LONGTERM}" ]] &&
|
[[ -n "${K_LONGTERM}" ]] &&
|
||||||
KERNEL_BASE_URI="${KERNEL_BASE_URI}/longterm/v${KV_MAJOR}.${KV_PATCH_ARR}"
|
KERNEL_BASE_URI="${KERNEL_BASE_URI}/longterm/v${KV_MAJOR}.${KV_PATCH_ARR}"
|
||||||
else
|
else
|
||||||
#KERNEL_BASE_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.0"
|
#KERNEL_BASE_URI="https://www.kernel.org/pub/linux/kernel/v${KV_MAJOR}.0"
|
||||||
#KERNEL_BASE_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}"
|
#KERNEL_BASE_URI="https://www.kernel.org/pub/linux/kernel/v${KV_MAJOR}.${KV_MINOR}"
|
||||||
if [[ ${KV_MAJOR} -ge 3 ]]; then
|
if [[ ${KV_MAJOR} -ge 3 ]]; then
|
||||||
KERNEL_BASE_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.x"
|
KERNEL_BASE_URI="https://www.kernel.org/pub/linux/kernel/v${KV_MAJOR}.x"
|
||||||
else
|
else
|
||||||
KERNEL_BASE_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}"
|
KERNEL_BASE_URI="https://www.kernel.org/pub/linux/kernel/v${KV_MAJOR}.${KV_MINOR}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[[ -n "${K_LONGTERM}" ]] &&
|
[[ -n "${K_LONGTERM}" ]] &&
|
||||||
|
@ -57,7 +57,7 @@ case ${BTYPE} in
|
|||||||
SRC_URI="ftp://gcc.gnu.org/pub/binutils/snapshots/binutils-${BVER}.tar.bz2
|
SRC_URI="ftp://gcc.gnu.org/pub/binutils/snapshots/binutils-${BVER}.tar.bz2
|
||||||
ftp://sourceware.org/pub/binutils/snapshots/binutils-${BVER}.tar.bz2" ;;
|
ftp://sourceware.org/pub/binutils/snapshots/binutils-${BVER}.tar.bz2" ;;
|
||||||
hjlu)
|
hjlu)
|
||||||
SRC_URI="mirror://kernel/linux/devel/binutils/binutils-${BVER}.tar."
|
SRC_URI="https://www.kernel.org/pub/linux/devel/binutils/binutils-${BVER}.tar."
|
||||||
version_is_at_least 2.21.51.0.5 && SRC_URI+="xz" || SRC_URI+="bz2" ;;
|
version_is_at_least 2.21.51.0.5 && SRC_URI+="xz" || SRC_URI+="bz2" ;;
|
||||||
rel) SRC_URI="mirror://gnu/binutils/binutils-${BVER}.tar.bz2" ;;
|
rel) SRC_URI="mirror://gnu/binutils/binutils-${BVER}.tar.bz2" ;;
|
||||||
esac
|
esac
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86"
|
KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
|
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ EAPI="4"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="4"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="5"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="4"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.bz2"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.bz2"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="5"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="5"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="5"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="5"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -5,7 +5,7 @@ EAPI="5"
|
|||||||
|
|
||||||
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
|
||||||
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
HOMEPAGE="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/software/network/ethtool/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
|
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-2
|
inherit git-2
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
|
||||||
inherit git-r3
|
inherit git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
||||||
AUTOTOOLS_AUTORECONF=true
|
AUTOTOOLS_AUTORECONF=true
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kexec/${P}.tar.xz"
|
||||||
KEYWORDS="amd64 ~arm64 x86"
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
||||||
AUTOTOOLS_AUTORECONF=true
|
AUTOTOOLS_AUTORECONF=true
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kexec/${P}.tar.xz"
|
||||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
inherit git-r3 autotools
|
inherit git-r3 autotools
|
||||||
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kexec/${P}.tar.xz"
|
||||||
KEYWORDS="amd64 ~arm64 x86"
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
inherit git-r3 autotools
|
inherit git-r3 autotools
|
||||||
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kexec/${P}.tar.xz"
|
||||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ if [[ ${PV} == "9999" ]] ; then
|
|||||||
inherit git-r3 autotools
|
inherit git-r3 autotools
|
||||||
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kexec/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kexec/${P}.tar.xz"
|
||||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ if [[ ${PV} == 9999* ]]; then
|
|||||||
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git"
|
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git"
|
||||||
inherit autotools git-r3
|
inherit autotools git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kmod/${P}.tar.xz"
|
||||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
|
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
|
||||||
inherit libtool
|
inherit libtool
|
||||||
fi
|
fi
|
||||||
|
@ -11,7 +11,7 @@ if [[ ${PV} == 9999* ]]; then
|
|||||||
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git"
|
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git"
|
||||||
inherit autotools git-r3
|
inherit autotools git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kmod/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
inherit libtool
|
inherit libtool
|
||||||
fi
|
fi
|
||||||
|
@ -11,7 +11,7 @@ if [[ ${PV} == 9999* ]]; then
|
|||||||
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git"
|
EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git"
|
||||||
inherit autotools git-r3
|
inherit autotools git-r3
|
||||||
else
|
else
|
||||||
SRC_URI="mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kmod/${P}.tar.xz"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||||
inherit libtool
|
inherit libtool
|
||||||
fi
|
fi
|
||||||
|
@ -9,7 +9,7 @@ inherit eutils
|
|||||||
MY_P="${PN}-${PV:0:4}-${PV:0-1}"
|
MY_P="${PN}-${PV:0:4}-${PV:0-1}"
|
||||||
DESCRIPTION="POSIX man-pages (0p, 1p, 3p)"
|
DESCRIPTION="POSIX man-pages (0p, 1p, 3p)"
|
||||||
HOMEPAGE="http://www.kernel.org/doc/man-pages/"
|
HOMEPAGE="http://www.kernel.org/doc/man-pages/"
|
||||||
SRC_URI="mirror://kernel/linux/docs/man-pages/${PN}/${MY_P}.tar.bz2"
|
SRC_URI="https://www.kernel.org/pub/linux/docs/man-pages/${PN}/${MY_P}.tar.bz2"
|
||||||
|
|
||||||
LICENSE="man-pages-posix"
|
LICENSE="man-pages-posix"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -9,7 +9,7 @@ inherit eutils
|
|||||||
MY_P="${PN}-${PV:0:4}-${PV:0-1}"
|
MY_P="${PN}-${PV:0:4}-${PV:0-1}"
|
||||||
DESCRIPTION="POSIX man-pages (0p, 1p, 3p)"
|
DESCRIPTION="POSIX man-pages (0p, 1p, 3p)"
|
||||||
HOMEPAGE="http://www.kernel.org/doc/man-pages/"
|
HOMEPAGE="http://www.kernel.org/doc/man-pages/"
|
||||||
SRC_URI="mirror://kernel/linux/docs/man-pages/${PN}/${MY_P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/docs/man-pages/${PN}/${MY_P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="man-pages-posix-2013"
|
LICENSE="man-pages-posix-2013"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -7,8 +7,8 @@ GENTOO_PATCH=2
|
|||||||
|
|
||||||
DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
|
DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
|
||||||
HOMEPAGE="https://www.kernel.org/doc/man-pages/"
|
HOMEPAGE="https://www.kernel.org/doc/man-pages/"
|
||||||
SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
|
SRC_URI="https://www.kernel.org/pub/linux/docs/man-pages/Archive/${P}.tar.xz
|
||||||
mirror://kernel/linux/docs/man-pages/${P}.tar.xz
|
https://www.kernel.org/pub/linux/docs/man-pages/${P}.tar.xz
|
||||||
mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
|
mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
|
||||||
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
|
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ GENTOO_PATCH=2
|
|||||||
|
|
||||||
DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
|
DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
|
||||||
HOMEPAGE="https://www.kernel.org/doc/man-pages/"
|
HOMEPAGE="https://www.kernel.org/doc/man-pages/"
|
||||||
SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
|
SRC_URI="https://www.kernel.org/pub/linux/docs/man-pages/Archive/${P}.tar.xz
|
||||||
mirror://kernel/linux/docs/man-pages/${P}.tar.xz
|
https://www.kernel.org/pub/linux/docs/man-pages/${P}.tar.xz
|
||||||
mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
|
mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
|
||||||
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
|
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ inherit base python-single-r1
|
|||||||
|
|
||||||
DESCRIPTION="USB enumeration utilities"
|
DESCRIPTION="USB enumeration utilities"
|
||||||
HOMEPAGE="http://linux-usb.sourceforge.net/"
|
HOMEPAGE="http://linux-usb.sourceforge.net/"
|
||||||
SRC_URI="mirror://kernel/linux/utils/usb/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/usb/${PN}/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -9,7 +9,7 @@ inherit python-single-r1
|
|||||||
|
|
||||||
DESCRIPTION="USB enumeration utilities"
|
DESCRIPTION="USB enumeration utilities"
|
||||||
HOMEPAGE="http://linux-usb.sourceforge.net/"
|
HOMEPAGE="http://linux-usb.sourceforge.net/"
|
||||||
SRC_URI="mirror://kernel/linux/utils/usb/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/usb/${PN}/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -9,7 +9,7 @@ inherit python-single-r1
|
|||||||
|
|
||||||
DESCRIPTION="USB enumeration utilities"
|
DESCRIPTION="USB enumeration utilities"
|
||||||
HOMEPAGE="http://linux-usb.sourceforge.net/"
|
HOMEPAGE="http://linux-usb.sourceforge.net/"
|
||||||
SRC_URI="mirror://kernel/linux/utils/usb/${PN}/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/usb/${PN}/${P}.tar.xz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
@ -17,7 +17,7 @@ if [[ ${PV} == 9999 ]] ; then
|
|||||||
else
|
else
|
||||||
[[ "${PV}" = *_rc* ]] || \
|
[[ "${PV}" = *_rc* ]] || \
|
||||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
||||||
SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
DESCRIPTION="Various useful Linux utilities"
|
DESCRIPTION="Various useful Linux utilities"
|
||||||
|
@ -18,7 +18,7 @@ if [[ ${PV} == 9999 ]] ; then
|
|||||||
else
|
else
|
||||||
[[ "${PV}" = *_rc* ]] || \
|
[[ "${PV}" = *_rc* ]] || \
|
||||||
KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
||||||
SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
DESCRIPTION="Various useful Linux utilities"
|
DESCRIPTION="Various useful Linux utilities"
|
||||||
|
@ -18,7 +18,7 @@ if [[ ${PV} == 9999 ]] ; then
|
|||||||
else
|
else
|
||||||
[[ "${PV}" = *_rc* ]] || \
|
[[ "${PV}" = *_rc* ]] || \
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
||||||
SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
DESCRIPTION="Various useful Linux utilities"
|
DESCRIPTION="Various useful Linux utilities"
|
||||||
|
@ -18,7 +18,7 @@ if [[ ${PV} == 9999 ]] ; then
|
|||||||
else
|
else
|
||||||
[[ "${PV}" = *_rc* ]] || \
|
[[ "${PV}" = *_rc* ]] || \
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
||||||
SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
DESCRIPTION="Various useful Linux utilities"
|
DESCRIPTION="Various useful Linux utilities"
|
||||||
|
@ -8,7 +8,7 @@ inherit eutils multilib multilib-minimal toolchain-funcs pam
|
|||||||
|
|
||||||
DESCRIPTION="POSIX 1003.1e capabilities"
|
DESCRIPTION="POSIX 1003.1e capabilities"
|
||||||
HOMEPAGE="http://www.friedhoff.org/posixfilecaps.html"
|
HOMEPAGE="http://www.friedhoff.org/posixfilecaps.html"
|
||||||
SRC_URI="mirror://kernel/linux/libs/security/linux-privs/libcap2/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${P}.tar.xz"
|
||||||
|
|
||||||
# it's available under either of the licenses
|
# it's available under either of the licenses
|
||||||
LICENSE="|| ( GPL-2 BSD )"
|
LICENSE="|| ( GPL-2 BSD )"
|
||||||
|
@ -8,7 +8,7 @@ inherit eutils multilib multilib-minimal toolchain-funcs pam
|
|||||||
|
|
||||||
DESCRIPTION="POSIX 1003.1e capabilities"
|
DESCRIPTION="POSIX 1003.1e capabilities"
|
||||||
HOMEPAGE="http://www.friedhoff.org/posixfilecaps.html"
|
HOMEPAGE="http://www.friedhoff.org/posixfilecaps.html"
|
||||||
SRC_URI="mirror://kernel/linux/libs/security/linux-privs/libcap2/${P}.tar.xz"
|
SRC_URI="https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${P}.tar.xz"
|
||||||
|
|
||||||
# it's available under either of the licenses
|
# it's available under either of the licenses
|
||||||
LICENSE="|| ( GPL-2 BSD )"
|
LICENSE="|| ( GPL-2 BSD )"
|
||||||
|
Loading…
Reference in New Issue
Block a user