Initial import
This commit is contained in:
4
sys-cluster/drbd-kmod/Manifest
Normal file
4
sys-cluster/drbd-kmod/Manifest
Normal file
@@ -0,0 +1,4 @@
|
||||
DIST drbd-9.0.27-1.tar.gz 1133216 SHA256 e3366b94faaa9399c857cc2517dd99a8dff049fd3b7326be078ed5f3cf31753e SHA512 e8a2ec57241b9933dd5655e2d6e65d04c0e88017ed76773b5d351f0ed30c167a8b1f4e7145221fb0aec8bdb5ca3d95c428b46c9dceb2576b6c3598962abc699f WHIRLPOOL c8178803a09f4da16342364b3d3ec903d5d083b1aacc49a2c54bbdba9ab88baf1cf6f443f99865e7083c2d5c0f6cbe50e4f62e8f1df519256ff949edf1fef693
|
||||
EBUILD drbd-kmod-9.0.27-r1.ebuild 846 SHA256 c58483a775790a0c22908c6072e1c7063e94b127e6ee2df34f645469c1071578 SHA512 639c53d0c9edf61a1c81dd301c2596b2b3304351649eb6d58ea1adf72b11e2212e56b7a61b4e4c4da39a5c37c819fddeb890e071b2f985f67e8757c2f3c3b1cb WHIRLPOOL bb98e94dcb5c3222e0453e6e2a9f3e29b2b9535e9062e9e795f48e0345f7623fd342c99ede999e688d5c0d49f50d30ea39f95867d6317029e32b80175042d923
|
||||
EBUILD drbd-kmod-9.1.3.ebuild 967 SHA256 8dce76f7b55e711025a2b3a5ceeb5fa7ae6de472511264f1059ac810bd47888f SHA512 4e217d5111387c4a83730cad7112666958224b496fecbf9c7b130defeaf9b59270502da746dd22d8c6fb0d3b1e981fbfea264c9b3ebead60b6816a32ddb69640 WHIRLPOOL 9b92976b942ff89f32401427f04e8d0de7f93891e843a30d7762097e0374ea91f1f2a575b2e6fa7127c520f0f4d3035410b66840746889252f52d9cfe983da7f
|
||||
EBUILD drbd-kmod-9.1.8.ebuild 967 SHA256 8dce76f7b55e711025a2b3a5ceeb5fa7ae6de472511264f1059ac810bd47888f SHA512 4e217d5111387c4a83730cad7112666958224b496fecbf9c7b130defeaf9b59270502da746dd22d8c6fb0d3b1e981fbfea264c9b3ebead60b6816a32ddb69640 WHIRLPOOL 9b92976b942ff89f32401427f04e8d0de7f93891e843a30d7762097e0374ea91f1f2a575b2e6fa7127c520f0f4d3035410b66840746889252f52d9cfe983da7f
|
||||
53
sys-cluster/drbd-kmod/drbd-kmod-9.0.27-r1.ebuild
Normal file
53
sys-cluster/drbd-kmod/drbd-kmod-9.0.27-r1.ebuild
Normal file
@@ -0,0 +1,53 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools linux-mod
|
||||
|
||||
DESCRIPTION="DRBD kernel module"
|
||||
HOMEPAGE="https://www.linbit.com"
|
||||
|
||||
# Package name lacks the "r" for the release
|
||||
MY_PN="${PN/-kmod/}"
|
||||
MY_PV="${PVR/-r/-}"
|
||||
SRC_URI="https://www.linbit.com/downloads/drbd/9.0/${MY_PN}-${MY_PV}.tar.gz"
|
||||
S="${WORKDIR}/${MY_PN}-${MY_PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
convert_to_m Makefile
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
set_arch_to_kernel
|
||||
get_version
|
||||
|
||||
myemakeargs=(
|
||||
KVER="${KV_FULL}"
|
||||
KDIR="${KERNEL_DIR}"
|
||||
)
|
||||
|
||||
emake "${myemakeargs[@]}" module
|
||||
}
|
||||
|
||||
src_install() {
|
||||
set_arch_to_kernel
|
||||
|
||||
myemakeargs=(
|
||||
KVER="${KV_FULL}"
|
||||
KDIR="${KERNEL_DIR}"
|
||||
DESTDIR="${D}"
|
||||
)
|
||||
|
||||
emake "${myemakeargs[@]}" install
|
||||
}
|
||||
56
sys-cluster/drbd-kmod/drbd-kmod-9.1.3.ebuild
Normal file
56
sys-cluster/drbd-kmod/drbd-kmod-9.1.3.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools linux-mod git-r3
|
||||
|
||||
DESCRIPTION="DRBD kernel module"
|
||||
HOMEPAGE="https://www.linbit.com"
|
||||
|
||||
# Package name lacks the "r" for the release
|
||||
MY_PN="${PN/-kmod/}"
|
||||
MY_PV="${PVR/-r/-}"
|
||||
#SRC_URI="https://www.linbit.com/downloads/drbd/9.0/${MY_PN}-${MY_PV}.tar.gz"
|
||||
EGIT_REPO_URI="https://github.com/LINBIT/drbd.git"
|
||||
EGIT_COMMIT="${MY_PN}-${MY_PV}"
|
||||
#S="${WORKDIR}/${MY_PN}-${MY_PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
dev-util/coccinelle[python]"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
convert_to_m Makefile
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
set_arch_to_kernel
|
||||
get_version
|
||||
|
||||
myemakeargs=(
|
||||
KVER="${KV_FULL}"
|
||||
KDIR="${KERNEL_DIR}"
|
||||
)
|
||||
|
||||
emake "${myemakeargs[@]}" module
|
||||
}
|
||||
|
||||
src_install() {
|
||||
set_arch_to_kernel
|
||||
|
||||
myemakeargs=(
|
||||
KVER="${KV_FULL}"
|
||||
KDIR="${KERNEL_DIR}"
|
||||
DESTDIR="${D}"
|
||||
)
|
||||
|
||||
emake "${myemakeargs[@]}" install
|
||||
}
|
||||
56
sys-cluster/drbd-kmod/drbd-kmod-9.1.8.ebuild
Normal file
56
sys-cluster/drbd-kmod/drbd-kmod-9.1.8.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools linux-mod git-r3
|
||||
|
||||
DESCRIPTION="DRBD kernel module"
|
||||
HOMEPAGE="https://www.linbit.com"
|
||||
|
||||
# Package name lacks the "r" for the release
|
||||
MY_PN="${PN/-kmod/}"
|
||||
MY_PV="${PVR/-r/-}"
|
||||
#SRC_URI="https://www.linbit.com/downloads/drbd/9.0/${MY_PN}-${MY_PV}.tar.gz"
|
||||
EGIT_REPO_URI="https://github.com/LINBIT/drbd.git"
|
||||
EGIT_COMMIT="${MY_PN}-${MY_PV}"
|
||||
#S="${WORKDIR}/${MY_PN}-${MY_PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
dev-util/coccinelle[python]"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
convert_to_m Makefile
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
set_arch_to_kernel
|
||||
get_version
|
||||
|
||||
myemakeargs=(
|
||||
KVER="${KV_FULL}"
|
||||
KDIR="${KERNEL_DIR}"
|
||||
)
|
||||
|
||||
emake "${myemakeargs[@]}" module
|
||||
}
|
||||
|
||||
src_install() {
|
||||
set_arch_to_kernel
|
||||
|
||||
myemakeargs=(
|
||||
KVER="${KV_FULL}"
|
||||
KDIR="${KERNEL_DIR}"
|
||||
DESTDIR="${D}"
|
||||
)
|
||||
|
||||
emake "${myemakeargs[@]}" install
|
||||
}
|
||||
Reference in New Issue
Block a user