Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package btfs for openSUSE:Factory checked in 
at 2021-02-15 23:19:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/btfs (Old)
 and      /work/SRC/openSUSE:Factory/.btfs.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "btfs"

Mon Feb 15 23:19:23 2021 rev:10 rq:872150 version:2.24

Changes:
--------
--- /work/SRC/openSUSE:Factory/btfs/btfs.changes        2020-11-23 
18:38:31.600624583 +0100
+++ /work/SRC/openSUSE:Factory/.btfs.new.28504/btfs.changes     2021-02-15 
23:21:26.879857114 +0100
@@ -1,0 +2,6 @@
+Sun Feb 14 12:28:34 UTC 2021 - Mia Herkt <m...@0x0.st>
+
+- 2.24
+  * use XDG_DATA_HOME if defined
+
+-------------------------------------------------------------------

Old:
----
  btfs-2.23.tar.gz

New:
----
  btfs-2.24.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ btfs.spec ++++++
--- /var/tmp/diff_new_pack.QhHxCN/_old  2021-02-15 23:21:27.415857915 +0100
+++ /var/tmp/diff_new_pack.QhHxCN/_new  2021-02-15 23:21:27.419857921 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package btfs
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           btfs
-Version:        2.23
+Version:        2.24
 Release:        0
 Summary:        A BitTorrent file system based on FUSE
 License:        GPL-3.0-or-later

++++++ btfs-2.23.tar.gz -> btfs-2.24.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/btfs-2.23/.travis.yml new/btfs-2.24/.travis.yml
--- old/btfs-2.23/.travis.yml   2020-11-15 19:00:02.000000000 +0100
+++ new/btfs-2.24/.travis.yml   2021-02-13 20:44:24.000000000 +0100
@@ -1,20 +1,18 @@
 language: cpp
-matrix:
-  include:
-    - os: linux
-      dist: focal
-      env: LIBTORRENT_BRANCH=RC_2_0
-    - os: linux
-      dist: focal
-      env: LIBTORRENT_BRANCH=RC_1_2
-    - os: linux
-      dist: focal
-      env: LIBTORRENT_BRANCH=RC_1_1
+os: linux
+dist: focal
+arch:
+    - AMD64
+    - ppc64le
 env:
   global:
     - MAKEFLAGS=-j2
     - PKG_CONFIG_PATH=/tmp/lib/pkgconfig
     - LD_LIBRARY_PATH=/tmp/lib
+  jobs:
+    - LIBTORRENT_BRANCH=RC_1_1
+    - LIBTORRENT_BRANCH=RC_1_2
+    - LIBTORRENT_BRANCH=RC_2_0
 addons:
   apt:
     packages:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/btfs-2.23/configure.ac new/btfs-2.24/configure.ac
--- old/btfs-2.23/configure.ac  2020-11-15 19:00:02.000000000 +0100
+++ new/btfs-2.24/configure.ac  2021-02-13 20:44:24.000000000 +0100
@@ -1,5 +1,5 @@
 AC_PREREQ([2.69])
-AC_INIT(btfs, 2.23, johan.gunnars...@gmail.com, btfs, 
https://github.com/johang/btfs)
+AC_INIT(btfs, 2.24, johan.gunnars...@gmail.com, btfs, 
https://github.com/johang/btfs)
 AC_CONFIG_SRCDIR([src/btfs.cc])
 
 AM_INIT_AUTOMAKE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/btfs-2.23/man/btfs.1 new/btfs-2.24/man/btfs.1
--- old/btfs-2.23/man/btfs.1    2020-11-15 19:00:02.000000000 +0100
+++ new/btfs-2.24/man/btfs.1    2021-02-13 20:44:24.000000000 +0100
@@ -29,7 +29,7 @@
 do not use TCP
 .TP
 \fB\-\-data-directory=\fIDIRECTORY\fR
-directory in which to put btfs download data. default is $HOME/btfs, or 
/tmp/btfs if unavailable
+directory in which to put btfs download data. will by default use 
$XDG_DATA_HOME if defined else use $HOME/btfs, or /tmp/btfs if the latter is 
unavailable
 .TP
 \fB\-\-min-port=\fIPORT\fR
 start of listen port range
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/btfs-2.23/src/btfs.cc new/btfs-2.24/src/btfs.cc
--- old/btfs-2.23/src/btfs.cc   2020-11-15 19:00:02.000000000 +0100
+++ new/btfs-2.24/src/btfs.cc   2021-02-13 20:44:24.000000000 +0100
@@ -772,6 +772,9 @@
 
        if (arg) {
                templ += arg;
+       } else if (getenv("XDG_DATA_HOME")) {
+               templ += getenv("XDG_DATA_HOME");
+               templ += "/btfs";
        } else if (getenv("HOME")) {
                templ += getenv("HOME");
                templ += "/btfs";

Reply via email to