commit tup for openSUSE:Factory
Hello community, here is the log from the commit of package tup for openSUSE:Factory checked in at 2020-11-02 09:41:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tup (Old) and /work/SRC/openSUSE:Factory/.tup.new.3463 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "tup" Mon Nov 2 09:41:52 2020 rev:6 rq:845084 version:0.7.10 Changes: -------- --- /work/SRC/openSUSE:Factory/tup/tup.changes 2020-06-14 18:35:45.446627655 +0200 +++ /work/SRC/openSUSE:Factory/.tup.new.3463/tup.changes 2020-11-02 09:42:17.781719488 +0100 @@ -1,0 +2,16 @@ +Fri Oct 30 14:41:40 UTC 2020 - Luigi Baldoni <aloisio@gmx.com> + +- Update to version 0.7.10 + * Fixed several 'tup version' issues with bootstrapped or + non-git tup + * Fixed an error in setting PGID for subprocesses + * Fixed a few issues with generated files that become normal + (user-created) files + * Improvements to 'tup generate' build scripts + * Now uses fuse3 by default, though fuse2 should still work. + (Setting CONFIG_TUP_SERVER=fuse in tup.config will use + fuse2 when building tup) +- Refreshed tup-add_archs.patch +- Added tup-32bit.patch + +------------------------------------------------------------------- Old: ---- tup-0.7.9.tar.gz New: ---- tup-0.7.10.tar.gz tup-32bit.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tup.spec ++++++ --- /var/tmp/diff_new_pack.FtqmwY/_old 2020-11-02 09:42:18.913720572 +0100 +++ /var/tmp/diff_new_pack.FtqmwY/_new 2020-11-02 09:42:18.917720576 +0100 @@ -17,7 +17,7 @@ Name: tup -Version: 0.7.9 +Version: 0.7.10 Release: 0 Summary: File-based build system License: GPL-2.0-only @@ -25,10 +25,12 @@ Source0: https://github.com/gittup/tup/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Source99: %{name}.rpmlintrc Patch0: tup-add_archs.patch +# PATCH-FIX-UPSTREAM tup-32bit.patch +Patch1: tup-32bit.patch BuildRequires: awk BuildRequires: pkgconfig BuildRequires: vim -BuildRequires: pkgconfig(fuse) +BuildRequires: pkgconfig(fuse3) BuildRequires: pkgconfig(libpcre) Requires: vim ++++++ tup-0.7.9.tar.gz -> tup-0.7.10.tar.gz ++++++ ++++ 5158 lines of diff (skipped) ++++++ tup-32bit.patch ++++++ diff --git a/Tuprules.tup b/Tuprules.tup index 153fac75..6a9e4253 100644 --- a/Tuprules.tup +++ b/Tuprules.tup @@ -95,6 +95,7 @@ ifeq ($(TUP_SERVER),fuse3) export PKG_CONFIG_PATH CFLAGS += `pkg-config fuse3 --cflags` CFLAGS += -DFUSE3 +CFLAGS += -D_FILE_OFFSET_BITS=64 endif ifeq ($(TUP_SERVER),ldpreload) diff --git a/build.sh b/build.sh index e165f9da..32ce1daf 100755 --- a/build.sh +++ b/build.sh @@ -18,7 +18,7 @@ if [ "$server" = "fuse" ]; then plat_ldflags="`pkg-config fuse --libs`" plat_files="$plat_files ../src/tup/server/fuse*.c ../src/tup/server/master_fork.c" elif [ "$server" = "fuse3" ]; then - plat_cflags="`pkg-config fuse3 --cflags` -DFUSE3" + plat_cflags="`pkg-config fuse3 --cflags` -DFUSE3 -D_FILE_OFFSET_BITS=64" plat_ldflags="`pkg-config fuse3 --libs`" plat_files="$plat_files ../src/tup/server/fuse*.c ../src/tup/server/master_fork.c" elif [ "$server" = "ldpreload" ]; then ++++++ tup-add_archs.patch ++++++ --- /var/tmp/diff_new_pack.FtqmwY/_old 2020-11-02 09:42:19.489721125 +0100 +++ /var/tmp/diff_new_pack.FtqmwY/_new 2020-11-02 09:42:19.493721129 +0100 @@ -1,8 +1,8 @@ -Index: tup-0.7.6/src/tup/platform.c +Index: tup-0.7.10/src/tup/platform.c =================================================================== ---- tup-0.7.6.orig/src/tup/platform.c -+++ tup-0.7.6/src/tup/platform.c -@@ -56,6 +56,8 @@ const char *tup_arch = "sparc"; +--- tup-0.7.10.orig/src/tup/platform.c ++++ tup-0.7.10/src/tup/platform.c +@@ -58,6 +58,8 @@ const char *tup_arch = "sparc"; const char *tup_arch = "arm"; #elif __aarch64__ const char *tup_arch = "arm64"; @@ -11,12 +11,12 @@ #else #error Unsupported cpu architecture. Please add support in tup/platform.c #endif -Index: tup-0.7.6/tup.1 +Index: tup-0.7.10/tup.1 =================================================================== ---- tup-0.7.6.orig/tup.1 -+++ tup-0.7.6/tup.1 -@@ -753,7 +753,7 @@ In this case, the @-variable "FOO" is ex - TUP_PLATFORM is a special @-variable. If CONFIG_TUP_PLATFORM is not set in the tup.config file, it has a default value according to the platform that tup itself was compiled in. Currently the default value is one of "linux", "solaris", "macosx", "win32", or "freebsd". +--- tup-0.7.10.orig/tup.1 ++++ tup-0.7.10/tup.1 +@@ -755,7 +755,7 @@ In this case, the @-variable "FOO" is ex + TUP_PLATFORM is a special @-variable. If CONFIG_TUP_PLATFORM is not set in the tup.config file, it has a default value according to the platform that tup itself was compiled in. Currently the default value is one of "linux", "solaris", "macosx", "win32", "freebsd" or "netbsd". .TP .B @(TUP_ARCH) -TUP_ARCH is another special @-variable. If CONFIG_TUP_ARCH is not set in the tup.config file, it has a default value according to the processor architecture that tup itself was compiled in. Currently the default value is one of "i386", "x86_64", "powerpc", "powerpc64", "ia64", "alpha", "sparc", "arm64", or "arm".
participants (1)
-
root