From d031d102728856e6bbaeaa55ec22e9ae95e4785b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 2 Apr 2018 17:45:29 +0100 Subject: sys-fs/{spl,zfs} : version bump --- sys-fs/spl-utils/Manifest | 2 +- sys-fs/spl-utils/spl-utils-0.7.6.ebuild | 60 --------------------------------- sys-fs/spl-utils/spl-utils-0.7.7.ebuild | 60 +++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+), 61 deletions(-) delete mode 100644 sys-fs/spl-utils/spl-utils-0.7.6.ebuild create mode 100644 sys-fs/spl-utils/spl-utils-0.7.7.ebuild (limited to 'sys-fs/spl-utils') diff --git a/sys-fs/spl-utils/Manifest b/sys-fs/spl-utils/Manifest index 8646e5d7..4555f1f0 100644 --- a/sys-fs/spl-utils/Manifest +++ b/sys-fs/spl-utils/Manifest @@ -1 +1 @@ -DIST spl-0.7.6.tar.gz 550089 SHA256 648148762969d1ee94290c494c4f022aeacabe0e84cddf65906af608be666f95 SHA512 b8e74e4ad8c16df1a4742639f00c4c4162607d136145bae58489f9a34539dcc5569da18639a67ac5d9d52b5feac93e052323ebf6efce6a92ba9a2b965f940fdd WHIRLPOOL 0e2ca78be72a46e84e6829c23229a68c657a64e3f47e1a1e3c0eab0cb6e52fd0efb9f50941a95e53590d6feb95558e5fce0d7bfc900149a9b11cc822e6be4c1b +DIST spl-0.7.7.tar.gz 551498 BLAKE2B 6372777f4f4e2eb9048eaff0120414289bec532487bfa5cd8b9bde7632469ead204c4b5198a701775e92dbd6ecd94f343b612557e87a60c18b3ba7cd9594fe0c SHA512 22d0d2eb65063a59acf3d34a5781285978d85087ba18176c4f30d9b8d8a888adc5e75b06d4157de1655bbc144c67c6646f5a4209e674c3eb4b16c39da3447987 diff --git a/sys-fs/spl-utils/spl-utils-0.7.6.ebuild b/sys-fs/spl-utils/spl-utils-0.7.6.ebuild deleted file mode 100644 index 02a1ed1b..00000000 --- a/sys-fs/spl-utils/spl-utils-0.7.6.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -inherit flag-o-matic autotools-utils - -MY_PN="spl" -MY_P="${MY_PN}-${PV}" - -SRC_URI="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PV}/${MY_P}.tar.gz" - -DESCRIPTION="The Solaris Porting Layer is a Linux kernel module which provides many of the Solaris kernel APIs" -HOMEPAGE="http://zfsonlinux.org/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64" -IUSE="debug" - -RESTRICT="debug? ( strip ) test" - -S="${WORKDIR}/${MY_P}" - -COMMON_DEPEND="dev-lang/perl - virtual/awk" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND} - !sys-devel/spl" - -AT_M4DIR="config" -AUTOTOOLS_IN_SOURCE_BUILD="1" - -DOCS=( AUTHORS DISCLAIMER ) - -src_prepare() { - # Workaround for hard coded path - sed -i "s|/sbin/lsmod|/bin/lsmod|" "${S}/scripts/check.sh" || \ - die "Cannot patch check.sh" - - # splat is unnecessary unless we are debugging - use debug || { sed -e 's/^subdir-m += splat$//' -i "${S}/module/Makefile.in" || die ; } - - # Set module revision number - [ ${PV} != "9999" ] && \ - { sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-redcore/" "${S}/META" || die "Could not set Redcore release"; } - - autotools-utils_src_prepare -} - -src_configure() { - filter-ldflags -Wl,* - - local myeconfargs=( - --bindir="${EPREFIX}/bin" - --sbindir="${EPREFIX}/sbin" - --with-config=user - $(use_enable debug) - ) - autotools-utils_src_configure -} diff --git a/sys-fs/spl-utils/spl-utils-0.7.7.ebuild b/sys-fs/spl-utils/spl-utils-0.7.7.ebuild new file mode 100644 index 00000000..02a1ed1b --- /dev/null +++ b/sys-fs/spl-utils/spl-utils-0.7.7.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +inherit flag-o-matic autotools-utils + +MY_PN="spl" +MY_P="${MY_PN}-${PV}" + +SRC_URI="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PV}/${MY_P}.tar.gz" + +DESCRIPTION="The Solaris Porting Layer is a Linux kernel module which provides many of the Solaris kernel APIs" +HOMEPAGE="http://zfsonlinux.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64" +IUSE="debug" + +RESTRICT="debug? ( strip ) test" + +S="${WORKDIR}/${MY_P}" + +COMMON_DEPEND="dev-lang/perl + virtual/awk" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND} + !sys-devel/spl" + +AT_M4DIR="config" +AUTOTOOLS_IN_SOURCE_BUILD="1" + +DOCS=( AUTHORS DISCLAIMER ) + +src_prepare() { + # Workaround for hard coded path + sed -i "s|/sbin/lsmod|/bin/lsmod|" "${S}/scripts/check.sh" || \ + die "Cannot patch check.sh" + + # splat is unnecessary unless we are debugging + use debug || { sed -e 's/^subdir-m += splat$//' -i "${S}/module/Makefile.in" || die ; } + + # Set module revision number + [ ${PV} != "9999" ] && \ + { sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-redcore/" "${S}/META" || die "Could not set Redcore release"; } + + autotools-utils_src_prepare +} + +src_configure() { + filter-ldflags -Wl,* + + local myeconfargs=( + --bindir="${EPREFIX}/bin" + --sbindir="${EPREFIX}/sbin" + --with-config=user + $(use_enable debug) + ) + autotools-utils_src_configure +} -- cgit v1.2.3