Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bees for openSUSE:Factory checked in at 2021-10-06 19:50:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bees (Old) and /work/SRC/openSUSE:Factory/.bees.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bees" Wed Oct 6 19:50:04 2021 rev:2 rq:923550 version:0.7 Changes: -------- --- /work/SRC/openSUSE:Factory/bees/bees.changes 2021-06-04 22:43:22.947117298 +0200 +++ /work/SRC/openSUSE:Factory/.bees.new.2443/bees.changes 2021-10-06 19:50:19.852070317 +0200 @@ -1,0 +2,20 @@ +Wed Oct 6 00:00:00 CEST 2021 - dste...@suse.cz + +- Update to 0.7 + - Highlights: + * Remove 8-CPU thread limit + * Add kernel bugs reference table to docs + * Workarounds for btrfs send and balance issues + * Reduce the number of temporary inodes created + * Use posix_fadvise to optimize page cache usage + * Use private namespace for mounts under systemd + * Assorted bug fixes and small performance improvements + * SIGTERM handler to save crawl state, hash table, and exit + * Higher ref limits per extent on kernels with LOGICAL_INO_V2 + - Build dependency changes: + * Convert docs to Github Flavored Markdown + * Updates for new compilers including clang + * Remove dependencies on libbtrfs-dev and uuid-dev + * Remove unversioned `libcrucible.so` shared library + +------------------------------------------------------------------- Old: ---- bees-0.6.5.tar.gz New: ---- bees-0.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bees.spec ++++++ --- /var/tmp/diff_new_pack.HqjEOO/_old 2021-10-06 19:50:20.432070855 +0200 +++ /var/tmp/diff_new_pack.HqjEOO/_new 2021-10-06 19:50:20.432070855 +0200 @@ -17,7 +17,7 @@ Name: bees -Version: 0.6.5 +Version: 0.7 Release: 0 Summary: Best-Effort Extent-Same, a btrfs deduplication agent License: GPL-3.0-only @@ -71,7 +71,6 @@ %doc README.md %{_bindir}/bees %{_sbindir}/beesd -%{_libdir}/libcrucible.so %{_unitdir}/beesd@.service %dir %{_sysconfdir}/bees %{_sysconfdir}/bees/beesd.conf.sample ++++++ bees-0.6.5.tar.gz -> bees-0.7.tar.gz ++++++ ++++ 10262 lines of diff (skipped) ++++++ fix-Makefile-version.diff ++++++ --- /var/tmp/diff_new_pack.HqjEOO/_old 2021-10-06 19:50:20.536070951 +0200 +++ /var/tmp/diff_new_pack.HqjEOO/_new 2021-10-06 19:50:20.536070951 +0200 @@ -1,25 +1,15 @@ Hardcode version to avoid using git. Also don't do 'git clean'. -Index: bees-0.6.3/Makefile +Index: bees-0.7/Makefile =================================================================== ---- bees-0.6.3.orig/Makefile -+++ bees-0.6.3/Makefile -@@ -9,7 +9,7 @@ SYSTEMD_SYSTEM_UNIT_DIR ?= $(shell pkg-c +--- bees-0.7.orig/Makefile ++++ bees-0.7/Makefile +@@ -7,7 +7,7 @@ LIBEXEC_PREFIX ?= $(LIB_PREFIX)/bees - MARKDOWN := $(firstword $(shell type -P markdown markdown2 markdown_py 2>/dev/null || echo markdown)) + SYSTEMD_SYSTEM_UNIT_DIR ?= $(shell pkg-config systemd --variable=systemdsystemunitdir) -BEES_VERSION ?= $(shell git describe --always --dirty || echo UNKNOWN) -+BEES_VERSION = 0.6.5 ++BEES_VERSION = 0.7 # allow local configuration to override above variables -include localconf -@@ -28,9 +28,6 @@ all: lib src scripts - docs: README.html - reallyall: all docs test - --clean: ## Cleanup -- git clean -dfx -e localconf -- - .PHONY: lib src test - - lib: ## Build libs