Hello community,

here is the log from the commit of package tig for openSUSE:Factory checked in 
at 2012-05-22 08:19:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tig (Old)
 and      /work/SRC/openSUSE:Factory/.tig.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tig", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/tig/tig.changes  2012-02-22 15:55:30.000000000 
+0100
+++ /work/SRC/openSUSE:Factory/.tig.new/tig.changes     2012-05-22 
08:19:26.000000000 +0200
@@ -1,0 +2,46 @@
+Fri May 11 20:46:32 UTC 2012 - [email protected]
+
+- add patch to remove build timestamps
+- update to 1.0:
+  * Use git-log(1)s default commit ordering. The old behavior can be
+    restored by adding `set commit-order = topo` to ~/.tigrc.
+  * Support staging of single lines. Bound to '1' default. (GH #21)
+  * Use +<lineno> to open the initial view at an arbitrary line. (GH #20)
+  * Add show-notes ~/.tigrc option. Notes are displayed by default.
+  * Support jumping to specific SHAs in the main view.
+  * Decorate replaced commits.
+  * Display line numbers in main view.
+  * Colorize binary diff stats. (GH #17)
+  * Custom colorization of lines matching a string prefix (GH #16).
+    Example configuration: color "Reported-by:" green default
+  * Use git's color settings for the main, status and diff views.
+    Put `set read-git-colors = no` in ~/.tigrc to disable.
+  * Handle editor options with multiple arguments. (GH #12)
+  * Show filename when running tig blame with copy detection. (GH #19)
+  * Use 'source <path>' command to load additional files from ~/.tigrc
+  * User-defined commands prefixed with '@' are run with no console
+    output, e.g. bind generic 3 !@rm sys$command
+  * Make display of space changes togglable in the diff and stage view.
+    Bound to 'W' by default.
+  * Use per-file encoding specified in gitattributes(5) for blobs and
+    unstaged files.
+  * Obsolete commit-encoding option and pass --encoding=UTF-8 to revision
+    commands.
+  * Main view: show uncommitted changes as staged/unstaged commits.
+    Can be disabled by putting `set show-changes = no` in ~/.tigrc.
+  * Add %(prompt) external command variable, which will prompt for the
+    argument value.
+  * Log information about git commands when the TIG_TRACE environment
+    variable is set. Example: `TIG_TRACE=/tmp/tig.log tig`
+  * Branch view: Show the title of the last commit.
+  * Increase the author auto-abbreviation threshold to 10. (GH #49)
+  * For old commits show number of years in relative dates. (GH #50)
+  * Fix navigation behavior when going from branch to main view. (GH #38)
+  * Fix segfault when sorting the tree view by author name.
+  * Fix diff stat navigation for unmodified files with stat changes.
+  * Show branches/refs which names are a substring of the current branch.
+  * Stage view: fix off-by-one error when jumping to a file in a diff
+    with only one file.
+  * Fix diff-header colorization. (GH #15)
+  
+-------------------------------------------------------------------

Old:
----
  tig-0.18.tar.bz2

New:
----
  tig-1.0.tar.gz
  tig-remove_build_timestamp.patch

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

Other differences:
------------------
++++++ tig.spec ++++++
--- /var/tmp/diff_new_pack.MYiNfX/_old  2012-05-22 08:19:27.000000000 +0200
+++ /var/tmp/diff_new_pack.MYiNfX/_new  2012-05-22 08:19:27.000000000 +0200
@@ -17,14 +17,15 @@
 
 
 Name:           tig
-Version:        0.18
+Version:        1.0
 Release:        0
 Summary:        An ncurses-based text-mode interface for git
 License:        GPL-2.0+
 Group:          Development/Tools/Version Control
 Url:            http://jonas.nitro.dk/tig/
-Source0:        tig-%{version}.tar.bz2
+Source0:        http://jonas.nitro.dk/tig/releases/tig-%{version}.tar.gz
 Patch0:         tig-fix-build.diff
+Patch1:         tig-remove_build_timestamp.patch
 BuildRequires:  ncurses-devel
 Requires:       git-core
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -42,6 +43,7 @@
 %prep
 %setup -q
 %patch0
+%patch1
 
 %build
 CC=gcc
@@ -57,7 +59,7 @@
 
 %files
 %defattr(-,root,root)
-%doc BUGS COPYING NEWS README TODO
+%doc BUGS COPYING NEWS README
 %{_bindir}/tig
 %doc %{_mandir}/man1/tig.1%{ext_man}
 %doc %{_mandir}/man5/tigrc.5%{ext_man}

++++++ tig-remove_build_timestamp.patch ++++++
--- tig.c.orig  2012-05-11 22:47:39.111556938 +0200
+++ tig.c       2012-05-11 22:47:58.362556253 +0200
@@ -3399,7 +3399,7 @@
                break;
 
        case REQ_SHOW_VERSION:
-               report("tig-%s (built %s)", TIG_VERSION, __DATE__);
+               report("tig-%s", TIG_VERSION);
                return TRUE;
 
        case REQ_SCREEN_REDRAW:
@@ -7682,7 +7682,7 @@
  */
 
 static const char usage[] =
-"tig " TIG_VERSION " (" __DATE__ ")\n"
+"tig " TIG_VERSION "\n"
 "\n"
 "Usage: tig        [options] [revs] [--] [paths]\n"
 "   or: tig show   [options] [revs] [--] [paths]\n"
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to