mirror of
https://git.proxmox.com/git/mirror_spl-debian
synced 2025-10-04 21:47:07 +00:00
Merge tag 'upstream/0.7.3'
Upstream version 0.7.3
This commit is contained in:
commit
c1b655f54d
2
META
2
META
@ -1,7 +1,7 @@
|
|||||||
Meta: 1
|
Meta: 1
|
||||||
Name: spl
|
Name: spl
|
||||||
Branch: 1.0
|
Branch: 1.0
|
||||||
Version: 0.7.2
|
Version: 0.7.3
|
||||||
Release: 1
|
Release: 1
|
||||||
Release-Tags: relext
|
Release-Tags: relext
|
||||||
License: GPL
|
License: GPL
|
||||||
|
@ -50,5 +50,6 @@ etags:
|
|||||||
tags: ctags etags
|
tags: ctags etags
|
||||||
|
|
||||||
pkg: @DEFAULT_PACKAGE@
|
pkg: @DEFAULT_PACKAGE@
|
||||||
|
pkg-dkms: @DEFAULT_PACKAGE@-dkms
|
||||||
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
||||||
pkg-utils: @DEFAULT_PACKAGE@-utils
|
pkg-utils: @DEFAULT_PACKAGE@-utils
|
||||||
|
35
Makefile.in
35
Makefile.in
@ -1004,22 +1004,30 @@ deb-local:
|
|||||||
fi)
|
fi)
|
||||||
|
|
||||||
deb-kmod: deb-local rpm-kmod
|
deb-kmod: deb-local rpm-kmod
|
||||||
@CONFIG_KERNEL_TRUE@ name=${PACKAGE}; \
|
name=${PACKAGE}; \
|
||||||
@CONFIG_KERNEL_TRUE@ version=${VERSION}-${RELEASE}; \
|
version=${VERSION}-${RELEASE}; \
|
||||||
@CONFIG_KERNEL_TRUE@ arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
||||||
@CONFIG_KERNEL_TRUE@ pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
|
pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
|
||||||
@CONFIG_KERNEL_TRUE@ fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
||||||
@CONFIG_KERNEL_TRUE@ $(RM) $$pkg1
|
$(RM) $$pkg1
|
||||||
|
|
||||||
|
deb-dkms: deb-local rpm-dkms
|
||||||
|
name=${PACKAGE}; \
|
||||||
|
version=${VERSION}-${RELEASE}; \
|
||||||
|
arch=`$(RPM) -qp $${name}-dkms-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
||||||
|
pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
|
||||||
|
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
||||||
|
$(RM) $$pkg1
|
||||||
|
|
||||||
deb-utils: deb-local rpm-utils
|
deb-utils: deb-local rpm-utils
|
||||||
@CONFIG_USER_TRUE@ name=${PACKAGE}; \
|
name=${PACKAGE}; \
|
||||||
@CONFIG_USER_TRUE@ version=${VERSION}-${RELEASE}; \
|
version=${VERSION}-${RELEASE}; \
|
||||||
@CONFIG_USER_TRUE@ arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
||||||
@CONFIG_USER_TRUE@ pkg1=$${name}-$${version}.$${arch}.rpm; \
|
pkg1=$${name}-$${version}.$${arch}.rpm; \
|
||||||
@CONFIG_USER_TRUE@ fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
||||||
@CONFIG_USER_TRUE@ $(RM) $$pkg1
|
$(RM) $$pkg1
|
||||||
|
|
||||||
deb: deb-kmod deb-utils
|
deb: deb-kmod deb-dkms deb-utils
|
||||||
|
|
||||||
tgz-local:
|
tgz-local:
|
||||||
@(if test "${HAVE_ALIEN}" = "no"; then \
|
@(if test "${HAVE_ALIEN}" = "no"; then \
|
||||||
@ -1075,6 +1083,7 @@ etags:
|
|||||||
tags: ctags etags
|
tags: ctags etags
|
||||||
|
|
||||||
pkg: @DEFAULT_PACKAGE@
|
pkg: @DEFAULT_PACKAGE@
|
||||||
|
pkg-dkms: @DEFAULT_PACKAGE@-dkms
|
||||||
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
||||||
pkg-utils: @DEFAULT_PACKAGE@-utils
|
pkg-utils: @DEFAULT_PACKAGE@-utils
|
||||||
|
|
||||||
|
@ -29,23 +29,27 @@ deb-local:
|
|||||||
fi)
|
fi)
|
||||||
|
|
||||||
deb-kmod: deb-local rpm-kmod
|
deb-kmod: deb-local rpm-kmod
|
||||||
if CONFIG_KERNEL
|
|
||||||
name=${PACKAGE}; \
|
name=${PACKAGE}; \
|
||||||
version=${VERSION}-${RELEASE}; \
|
version=${VERSION}-${RELEASE}; \
|
||||||
arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
||||||
pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
|
pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
|
||||||
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
||||||
$(RM) $$pkg1
|
$(RM) $$pkg1
|
||||||
endif
|
|
||||||
|
deb-dkms: deb-local rpm-dkms
|
||||||
|
name=${PACKAGE}; \
|
||||||
|
version=${VERSION}-${RELEASE}; \
|
||||||
|
arch=`$(RPM) -qp $${name}-dkms-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
||||||
|
pkg1=$${name}-dkms-$${version}.$${arch}.rpm; \
|
||||||
|
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
||||||
|
$(RM) $$pkg1
|
||||||
|
|
||||||
deb-utils: deb-local rpm-utils
|
deb-utils: deb-local rpm-utils
|
||||||
if CONFIG_USER
|
|
||||||
name=${PACKAGE}; \
|
name=${PACKAGE}; \
|
||||||
version=${VERSION}-${RELEASE}; \
|
version=${VERSION}-${RELEASE}; \
|
||||||
arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
||||||
pkg1=$${name}-$${version}.$${arch}.rpm; \
|
pkg1=$${name}-$${version}.$${arch}.rpm; \
|
||||||
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \
|
||||||
$(RM) $$pkg1
|
$(RM) $$pkg1
|
||||||
endif
|
|
||||||
|
|
||||||
deb: deb-kmod deb-utils
|
deb: deb-kmod deb-dkms deb-utils
|
||||||
|
20
configure
vendored
20
configure
vendored
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.63 for spl 0.7.2.
|
# Generated by GNU Autoconf 2.63 for spl 0.7.3.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||||
@ -743,8 +743,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='spl'
|
PACKAGE_NAME='spl'
|
||||||
PACKAGE_TARNAME='spl'
|
PACKAGE_TARNAME='spl'
|
||||||
PACKAGE_VERSION='0.7.2'
|
PACKAGE_VERSION='0.7.3'
|
||||||
PACKAGE_STRING='spl 0.7.2'
|
PACKAGE_STRING='spl 0.7.3'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
|
|
||||||
# Factoring default headers for most tests.
|
# Factoring default headers for most tests.
|
||||||
@ -1535,7 +1535,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# Omit some internal or obsolete options to make the list less imposing.
|
||||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures spl 0.7.2 to adapt to many kinds of systems.
|
\`configure' configures spl 0.7.3 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@ -1606,7 +1606,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of spl 0.7.2:";;
|
short | recursive ) echo "Configuration of spl 0.7.3:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@ -1720,7 +1720,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
spl configure 0.7.2
|
spl configure 0.7.3
|
||||||
generated by GNU Autoconf 2.63
|
generated by GNU Autoconf 2.63
|
||||||
|
|
||||||
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
@ -1734,7 +1734,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by spl $as_me 0.7.2, which was
|
It was created by spl $as_me 0.7.3, which was
|
||||||
generated by GNU Autoconf 2.63. Invocation command line was
|
generated by GNU Autoconf 2.63. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@ -2888,7 +2888,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='spl'
|
PACKAGE='spl'
|
||||||
VERSION='0.7.2'
|
VERSION='0.7.3'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@ -19350,7 +19350,7 @@ exec 6>&1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by spl $as_me 0.7.2, which was
|
This file was extended by spl $as_me 0.7.3, which was
|
||||||
generated by GNU Autoconf 2.63. Invocation command line was
|
generated by GNU Autoconf 2.63. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@ -19413,7 +19413,7 @@ Report bugs to <bug-autoconf@gnu.org>."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
spl config.status 0.7.2
|
spl config.status 0.7.3
|
||||||
configured by $0, generated by GNU Autoconf 2.63,
|
configured by $0, generated by GNU Autoconf 2.63,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
@ -28,8 +28,8 @@
|
|||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
|
|
||||||
/* Pages to bytes and back */
|
/* Pages to bytes and back */
|
||||||
#define ptob(pages) (pages << PAGE_SHIFT)
|
#define ptob(pages) ((pages) << PAGE_SHIFT)
|
||||||
#define btop(bytes) (bytes >> PAGE_SHIFT)
|
#define btop(bytes) ((bytes) >> PAGE_SHIFT)
|
||||||
|
|
||||||
#define MAXUID UINT32_MAX
|
#define MAXUID UINT32_MAX
|
||||||
|
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
%{?!packager: %define packager Brian Behlendorf <behlendorf1@llnl.gov>}
|
%{?!packager: %define packager Brian Behlendorf <behlendorf1@llnl.gov>}
|
||||||
|
|
||||||
|
%if ! 0%{?rhel}%{?fedora}%{?mageia}%{?suse_version}
|
||||||
|
%define not_rpm 1
|
||||||
|
%endif
|
||||||
|
|
||||||
%define module @PACKAGE@
|
%define module @PACKAGE@
|
||||||
%define mkconf scripts/dkms.mkconf
|
%define mkconf scripts/dkms.mkconf
|
||||||
|
|
||||||
@ -18,7 +22,9 @@ BuildArch: noarch
|
|||||||
|
|
||||||
Requires: dkms >= 2.2.0.2
|
Requires: dkms >= 2.2.0.2
|
||||||
Requires: gcc, make, perl
|
Requires: gcc, make, perl
|
||||||
|
%if 0%{?rhel}%{?fedora}%{?mageia}%{?suse_version}
|
||||||
Requires: kernel-devel
|
Requires: kernel-devel
|
||||||
|
%endif
|
||||||
Provides: %{module}-kmod = %{version}
|
Provides: %{module}-kmod = %{version}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -69,7 +75,7 @@ DKMS_META_ALIAS=`cat $CONFIG_H 2>/dev/null |
|
|||||||
if [ "$SPEC_META_ALIAS" = "$DKMS_META_ALIAS" ]; then
|
if [ "$SPEC_META_ALIAS" = "$DKMS_META_ALIAS" ]; then
|
||||||
echo -e
|
echo -e
|
||||||
echo -e "Uninstall of %{module} module ($SPEC_META_ALIAS) beginning:"
|
echo -e "Uninstall of %{module} module ($SPEC_META_ALIAS) beginning:"
|
||||||
dkms remove -m %{module} -v %{version} --all --rpm_safe_upgrade
|
dkms remove -m %{module} -v %{version} --all %{!?not_rpm:--rpm_safe_upgrade}
|
||||||
fi
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
@ -167,6 +167,9 @@ chmod u+x ${RPM_BUILD_ROOT}%{kmodinstdir_prefix}/*/extra/*/*/*
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 18 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.3-1
|
||||||
|
- Released 0.7.3-1, detailed release notes are available at:
|
||||||
|
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.3
|
||||||
* Fri Sep 22 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.2-1
|
* Fri Sep 22 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.2-1
|
||||||
- Released 0.7.2-1, detailed release notes are available at:
|
- Released 0.7.2-1, detailed release notes are available at:
|
||||||
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.2
|
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.2
|
||||||
|
@ -34,6 +34,9 @@ make install DESTDIR=%{?buildroot}
|
|||||||
%{_mandir}/man5/*
|
%{_mandir}/man5/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 18 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.3-1
|
||||||
|
- Released 0.7.3-1, detailed release notes are available at:
|
||||||
|
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.3
|
||||||
* Fri Sep 22 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.2-1
|
* Fri Sep 22 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.2-1
|
||||||
- Released 0.7.2-1, detailed release notes are available at:
|
- Released 0.7.2-1, detailed release notes are available at:
|
||||||
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.2
|
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.2
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
%{?!packager: %define packager Brian Behlendorf <behlendorf1@llnl.gov>}
|
%{?!packager: %define packager Brian Behlendorf <behlendorf1@llnl.gov>}
|
||||||
|
|
||||||
|
%if ! 0%{?rhel}%{?fedora}%{?mageia}%{?suse_version}
|
||||||
|
%define not_rpm 1
|
||||||
|
%endif
|
||||||
|
|
||||||
%define module @PACKAGE@
|
%define module @PACKAGE@
|
||||||
%define mkconf scripts/dkms.mkconf
|
%define mkconf scripts/dkms.mkconf
|
||||||
|
|
||||||
@ -18,7 +22,9 @@ BuildArch: noarch
|
|||||||
|
|
||||||
Requires: dkms >= 2.2.0.2
|
Requires: dkms >= 2.2.0.2
|
||||||
Requires: gcc, make, perl
|
Requires: gcc, make, perl
|
||||||
|
%if 0%{?rhel}%{?fedora}%{?mageia}%{?suse_version}
|
||||||
Requires: kernel-devel
|
Requires: kernel-devel
|
||||||
|
%endif
|
||||||
Provides: %{module}-kmod = %{version}
|
Provides: %{module}-kmod = %{version}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -69,7 +75,7 @@ DKMS_META_ALIAS=`cat $CONFIG_H 2>/dev/null |
|
|||||||
if [ "$SPEC_META_ALIAS" = "$DKMS_META_ALIAS" ]; then
|
if [ "$SPEC_META_ALIAS" = "$DKMS_META_ALIAS" ]; then
|
||||||
echo -e
|
echo -e
|
||||||
echo -e "Uninstall of %{module} module ($SPEC_META_ALIAS) beginning:"
|
echo -e "Uninstall of %{module} module ($SPEC_META_ALIAS) beginning:"
|
||||||
dkms remove -m %{module} -v %{version} --all --rpm_safe_upgrade
|
dkms remove -m %{module} -v %{version} --all %{!?not_rpm:--rpm_safe_upgrade}
|
||||||
fi
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
@ -34,6 +34,9 @@ make install DESTDIR=%{?buildroot}
|
|||||||
%{_mandir}/man5/*
|
%{_mandir}/man5/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 18 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.3-1
|
||||||
|
- Released 0.7.3-1, detailed release notes are available at:
|
||||||
|
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.3
|
||||||
* Fri Sep 22 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.2-1
|
* Fri Sep 22 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.2-1
|
||||||
- Released 0.7.2-1, detailed release notes are available at:
|
- Released 0.7.2-1, detailed release notes are available at:
|
||||||
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.2
|
- https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.2
|
||||||
|
Loading…
Reference in New Issue
Block a user