version bump

This commit is contained in:
Tamás Gérczei 2019-10-17 07:24:08 +02:00
parent f753e4ca6c
commit 0a986224a6
2 changed files with 48 additions and 0 deletions

View File

@ -1 +1,2 @@
EBUILD fuse-overlayfs-0.6.4.ebuild 941 BLAKE2B a293d0655ea0da25ba3e64701ae9c4d31ea2f1a599fb3cdfb228bd45ec2e9ff847188aff3dbbc7501f1f6b021bd51fd213c5117e55f1e61ed23ba4e5b270b9b5 SHA512 a27f71e34106c22e2342abdf9cbfa68f7dd4e358c6b3bb56c1f13503fe4d2842712245625cbebe3e7d226bd3019a59b65e5e9f714124788c1ba6bfcdd64eb7cb
EBUILD fuse-overlayfs-0.6.5.ebuild 906 BLAKE2B fca3f9b1b7983b12009e7a1de17326f56cd808c04ded9927e64f27e2e63a86a3a2c19c4fad515ba800d7a90bcc3ea47f3224e93e0c3c8c1cfd2a122cea90978c SHA512 4edf985307ec4de6d2136419e28021fc6349e80d9fee0af119bc711b697c0cd6ea345457b8a43942e783c80c7bd5a79344ae21b529fdf5aa0fe12eeb62453325

View File

@ -0,0 +1,47 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit linux-info git-r3 autotools eutils
SLOT="0"
DESCRIPTION="FUSE implementation for overlayfs"
HOMEPAGE="https://github.com/containers/fuse-overlayfs"
EGIT_REPO_URI="${HOMEPAGE}.git"
LICENSE="GPL-3"
KEYWORDS="~amd64"
DEPEND="
sys-fs/fuse:3
"
RDEPEND="${DEPEND}"
BDEPEND=""
pkg_setup() {
linux-info_pkg_setup
kernel_is ge 4 18 0 || die "Linux 4.18.0 or newer required"
}
src_unpack() {
git-r3_fetch ${EGIT_REPO_URI} refs/tags/v${PV} || die "Failed to fetch"
git-r3_checkout || die "Failed to check out"
}
src_prepare() {
cd "${EGIT_CHECKOUT_DIR}"
eautoreconf || die "Failed to run autotools"
}
src_configure() {
cd "${EGIT_CHECKOUT_DIR}"
econf || die "Failed to configure"
}
src_compile() {
cd "${EGIT_CHECKOUT_DIR}"
emake || die "Failed to compile"
}