From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 459E273906 for ; Fri, 18 Jun 2021 15:45:03 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 3A2868A98 for ; Fri, 18 Jun 2021 15:45:03 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 445E18B76 for ; Fri, 18 Jun 2021 15:45:02 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 13CBA44225 for ; Fri, 18 Jun 2021 15:45:02 +0200 (CEST) Date: Fri, 18 Jun 2021 15:44:55 +0200 From: Fabian =?iso-8859-1?q?Gr=FCnbichler?= To: Proxmox VE development discussion References: <20210617135223.23472-1-s.ivanov@proxmox.com> In-Reply-To: <20210617135223.23472-1-s.ivanov@proxmox.com> MIME-Version: 1.0 User-Agent: astroid/0.15.0 (https://github.com/astroidmail/astroid) Message-Id: <1624023811.ief68m73km.astroid@nora.none> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 0 AWL 0.705 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [proxmox.com] Subject: [pve-devel] applied: [PATCH zfsonlinux 00/16] sync buildsys with debian-upstream X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jun 2021 13:45:03 -0000 except for the last three patches - as discussed off-list: - symbols file should probably be bumped to 2.0.4 (discuss with Debian=20 people? also how to handle libs without stability guarantees going=20 forward) - rules override_dh_installsystemd could benefit from a reworked commit=20 message and comment in rules file ;) On June 17, 2021 3:52 pm, Stoiko Ivanov wrote: > This patchset started out as what is now the last commit: > trying not to uselessly restart the zfs-services (like > zfs-volume-wait.service) upon upgrading, since it lead to quite a few > scary looking (but harmless) journal entries. >=20 > since this was already fixed in upstream debian's packaging I tried > to pull in most recent changes which have not yet made it into > our packaging. This should reduce the number of differences between > debian and our packages (those can lead to unpleasant surprises), and als= o > simply keeping in sync in the future. >=20 > changing to dh compat level 12 led to the patch for separate debug packag= es > (deb-helper bug, which probably very few, if any, people will notice, sin= ce > the version in bullseye and buster-backports is not affected) >=20 > some commits can probably be squashed (12+13 copying the linitian-overrid= es > and dropping unused ones, 14+15 adding symbols files and updateing to 2.0= .4) >=20 > While I did check the commits, selectively compared the results with > diffoscope, and run a few rough tests (ztest on a VM of mine) a quick > sanity-check by someone else would be highly appreciated (e.g. it's my fi= rst > run-in with symbols files) >=20 >=20 > Stoiko Ivanov (16): > buildsys: unify '{' and '(' in Makefile > buildsys: add all packages to make variable and sort > Reflect libssl requirement of libzfs > Elaborate the functionality of ZED in long description. (Closes: > #979414) > buildsys: switch to automatic debug packages > Bump debhelper compat level to 12. > compat 12 automatically adds initramfs trigger > Bump Standards-Version to 4.5.1 (no changes) > Adjust zed.d symlink-preservation > Remove /etc/zfs/zed.d on purge > sync scrub and trim cronjobs with debian upstream > update lintian-overrides > drop unused lintian overrides > add symbol files for library packages > update libzpool symbols > do not restart zfs-volume-wait.service >=20 > Makefile | 40 +- > debian/compat | 1 - > debian/control | 31 +- > debian/libnvpair3linux.symbols | 236 ++ > debian/libuutil3linux.symbols | 261 ++ > debian/libzfs4linux.symbols | 688 ++++ > debian/libzfsbootenv1linux.lintian-overrides | 4 +- > debian/libzfsbootenv1linux.symbols | 10 + > debian/libzpool4linux.symbols | 3310 +++++++++++++++++ > debian/rules | 6 +- > .../zfsutils-linux/usr/lib/zfs-linux/scrub | 43 +- > .../zfsutils-linux/usr/lib/zfs-linux/trim | 60 + > debian/zfs-initramfs.triggers | 1 - > debian/zfs-test.lintian-overrides | 14 +- > debian/zfs-zed.lintian-overrides | 4 + > debian/zfs-zed.postinst | 2 +- > debian/zfs-zed.postrm | 17 + > debian/zfs-zed.prerm | 4 +- > debian/zfsutils-linux.cron.d | 5 +- > debian/zfsutils-linux.lintian-overrides | 13 + > 20 files changed, 4698 insertions(+), 52 deletions(-) > delete mode 100644 debian/compat > create mode 100644 debian/libnvpair3linux.symbols > create mode 100644 debian/libuutil3linux.symbols > create mode 100644 debian/libzfs4linux.symbols > create mode 100644 debian/libzfsbootenv1linux.symbols > create mode 100644 debian/libzpool4linux.symbols > create mode 100755 debian/tree/zfsutils-linux/usr/lib/zfs-linux/trim > delete mode 100644 debian/zfs-initramfs.triggers > create mode 100644 debian/zfs-zed.lintian-overrides > create mode 100644 debian/zfs-zed.postrm >=20 > --=20 > 2.20.1 >=20 >=20 >=20 > _______________________________________________ > pve-devel mailing list > pve-devel@lists.proxmox.com > https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel >=20 >=20 >=20