Hello community,

here is the log from the commit of package fossil for openSUSE:Factory checked 
in at 2016-07-01 09:58:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fossil (Old)
 and      /work/SRC/openSUSE:Factory/.fossil.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fossil"

Changes:
--------
--- /work/SRC/openSUSE:Factory/fossil/fossil.changes    2015-11-11 
10:36:21.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.fossil.new/fossil.changes       2016-07-01 
09:58:56.000000000 +0200
@@ -1,0 +2,37 @@
+Mon Jun 27 11:48:35 UTC 2016 - astie...@suse.com
+
+- fossil 1.35:
+  * Enable symlinks by default on all non-Windows platforms.
+  * Enhance the Markdown formatting so that hyperlinks that begin
+    with "/" are relative to the root of the Fossil repository.
+  * Rework the /setup_list page (the User List page) to display all
+    users in a click-to-sort table.
+  * Fix backslash-octal escape on filenames while importing from git
+  * When markdown documents begin with <h1> HTML elements, use that
+     header at the document title.
+  * Added the /bigbloblist page.
+  * Enhance the /finfo page so that when it is showing the ancestors
+    of a particular file version, it only shows direct ancestors and
+    omits changes on branches, thus making it show the same set of
+    ancestors that are used for /blame.
+  * Added the --page option to the fossil ui command
+  * Added the fossil bisect ui command
+  * Enhanced the fossil diff command so that it accepts directory
+    names as arguments and computes diffs on all files contained
+    within those directories.
+  * Fix the fossil add command so that it shows "SKIP" for files
+    added that were already under management.
+  * TH1 enhancements:
+        Add [array exists] command.
+        Add minimal [array names] command.
+        Add tcl_platform(engine) and tcl_platform(platform) array elements.
+  * Added the fossil reparent command
+  * Added --include and --exclude options to fossil tarball and
+    fossil zip and the in= and ex= query parameters to the
+    /tarball and /zip web pages.
+  * Add support for encrypted Fossil repositories.
+  * If the FOSSIL_PWREADER environment variable is set, then use
+    the program it names in place of getpass() to read passwords
+    and passphrases
+
+-------------------------------------------------------------------

Old:
----
  fossil-src-1.34.tar.gz
  fossil.asc

New:
----
  fossil-src-1.35.tar.gz

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

Other differences:
------------------
++++++ fossil.spec ++++++
--- /var/tmp/diff_new_pack.Fc02Uk/_old  2016-07-01 09:58:57.000000000 +0200
+++ /var/tmp/diff_new_pack.Fc02Uk/_new  2016-07-01 09:58:57.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fossil
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,19 +18,19 @@
 
 %define with_system_sqlite 0%{?suse_version} > 1320
 Name:           fossil
-Version:        1.34
+Version:        1.35
 Release:        0
 Summary:        Simple, high-reliability, distributed software configuration 
management
 License:        BSD-2-Clause
 Group:          Development/Tools/Version Control
-Url:            http://www.fossil-scm.org/
-Source:         
http://www.fossil-scm.org/download/%{name}-src-%{version}.tar.gz
-Source2:        
http://www.hwaci.com/fossil_download_checksums.html#/%{name}.asc
+Url:            https://www.fossil-scm.org/
+Source:         
https://www.fossil-scm.org/download/%{name}-src-%{version}.tar.gz
 Patch1:         fossil-1.30-remove_date_time.patch
 BuildRequires:  fuse-devel
 BuildRequires:  gcc
 BuildRequires:  tcl
 BuildRequires:  zlib-devel
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if 0%{with_system_sqlite}
 BuildRequires:  sqlite3-devel >= 3.8.7
 %endif
@@ -39,7 +39,6 @@
 %else
 BuildRequires:  openssl-devel
 %endif
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
 There are plenty of open-source version control systems available on
@@ -87,15 +86,14 @@
 ever been lost after having been committed to a Fossil repository.
 
 %prep
-## check tarball hashes
-echo "`grep %{name}-src-%{version}.tar.gz %{SOURCE2} | cut -d' ' -f1`  
%{SOURCE0}" | sha1sum -c
-%setup -q -n %{name}-src-%{version}
+%setup -q
 # test package version and source version match
 grep -qFx %{version} VERSION
 %patch1 -p1
 
 %build
 export CFLAGS="%{optflags}"
+# FIXME: you should use the %%configure macro
 ./configure \
         --prefix=%{_prefix} \
         --with-openssl \
@@ -106,7 +104,7 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 
 %files
 %defattr(-,root,root)

++++++ fossil-1.30-remove_date_time.patch ++++++
--- /var/tmp/diff_new_pack.Fc02Uk/_old  2016-07-01 09:58:57.000000000 +0200
+++ /var/tmp/diff_new_pack.Fc02Uk/_new  2016-07-01 09:58:57.000000000 +0200
@@ -12,18 +12,18 @@
  src/main.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
-Index: fossil-src-20150119112900/src/main.c
+Index: fossil-1.35/src/main.c
 ===================================================================
---- fossil-src-20150119112900.orig/src/main.c
-+++ fossil-src-20150119112900/src/main.c
-@@ -970,8 +970,8 @@ void version_cmd(void){
-     int rc;
-     const char *zRc;
- #endif
--    fossil_print("Compiled on %s %s using %s (%d-bit)\n",
--                 __DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
-+    fossil_print("Compiled using %s (%d-bit)\n",
-+                 COMPILER_NAME, sizeof(void*)*8);
-     fossil_print("SQLite %s %.30s\n", sqlite3_libversion(), 
sqlite3_sourceid());
-     fossil_print("Schema version %s\n", AUX_SCHEMA_MAX);
- #if defined(FOSSIL_ENABLE_MINIZ)
+--- fossil-1.35.orig/src/main.c        2016-06-27 13:46:41.846056514 +0200
++++ fossil-1.35/src/main.c     2016-06-27 13:47:37.418587959 +0200
+@@ -1028,8 +1028,8 @@ static void get_version_blob(
+   blob_zero(pOut);
+   blob_appendf(pOut, "This is fossil version %s\n", get_version());
+   if( !bVerbose ) return;
+-  blob_appendf(pOut, "Compiled on %s %s using %s (%d-bit)\n",
+-               __DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
++  blob_appendf(pOut, "Compiled using %s (%d-bit)\n",
++               COMPILER_NAME, sizeof(void*)*8);
+   blob_appendf(pOut, "SQLite %s %.30s\n", sqlite3_libversion(),
+                sqlite3_sourceid());
+   blob_appendf(pOut, "Schema version %s\n", AUX_SCHEMA_MAX);

++++++ fossil-src-1.34.tar.gz -> fossil-src-1.35.tar.gz ++++++
++++ 100627 lines of diff (skipped)


Reply via email to