Logoj0ke.net Open Build Service > Projects > devel > git > git.changes
Sign Up | Log In

File git.changes of Package git

 
1
-------------------------------------------------------------------
2
Thu Sep 30 08:21:27 CEST 2010 - tiwai@suse.de
3
4
- updated to git 1.7.3:
5
  major version update; new options and behavior for git-rebase,
6
  git-clean, git-checkout, git-gui.
7
  See release note:
8
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.3.txt
9
- updated to git 1.7.3.1:
10
  fix git-stash breakages
11
- Set NO_CROSS_DIRECTORY_HARDLINKS=1 to satisfy BS
12
13
-------------------------------------------------------------------
14
Fri Aug 20 09:54:04 CEST 2010 - tiwai@suse.de
15
16
- updated to git 1.7.2.2:
17
  This is primarily for fixing a hanging bug in the smart http
18
  transport, but also comes with a lot of documentation udpates.
19
  See release note:
20
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.2.2.txt
21
22
-------------------------------------------------------------------
23
Thu Jul 29 13:43:28 CEST 2010 - tiwai@suse.de
24
25
- updated to git 1.7.2.1: minor fixes for git-instaweb, git-web,
26
  git-config.  See release note:
27
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.2.1.txt
28
29
-------------------------------------------------------------------
30
Thu Jul 22 12:19:02 CEST 2010 - tiwai@suse.de
31
32
- updated to git 1.7.2: mostly bug fixes and small enhancements;
33
  see the release note:
34
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.2.txt
35
- gitweb stuff is moved to /usr/share/gitweb
36
37
-------------------------------------------------------------------
38
Tue Jun  1 02:56:35 CEST 2010 - pbaudis@suse.cz
39
40
- Fix the git.xinetd to be disabled by default and the --base-path setting
41
  [bnc#495060, bnc#461726]
42
- Fix missing dependencies of git send-email [bnc#561690]
43
- Fix spurious perl-Error provides [bnc#578273]
44
- Drop global $COMP_WORDBREAKS change from bash-completion [bnc#446506]
45
46
-------------------------------------------------------------------
47
Tue May 18 20:14:19 UTC 2010 - chris@computersalat.de
48
49
- install missing gitweb.js
50
51
-------------------------------------------------------------------
52
Mon Apr 26 08:26:42 CEST 2010 - tiwai@suse.de
53
54
- updated to git 1.7.1:
55
  including fixes in previous 1.7.0.x releases, a few new behavior
56
  changes; see the release note:
57
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.1.txt
58
59
-------------------------------------------------------------------
60
Thu Apr  8 23:21:51 CEST 2010 - dmueller@suse.de
61
62
- require the correct perl-base version
63
64
-------------------------------------------------------------------
65
Thu Apr  1 13:35:17 CEST 2010 - tiwai@suse.de
66
67
- updated to git 1.7.0.4: minor fixes
68
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.4.txt
69
70
-------------------------------------------------------------------
71
Mon Mar 22 17:30:46 CET 2010 - tiwai@suse.de
72
73
- updated to git 1.7.0.3: just minor fixes
74
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.3.txt
75
76
-------------------------------------------------------------------
77
Mon Mar  8 08:40:02 CET 2010 - tiwai@suse.de
78
79
- updated to git 1.7.0.2:
80
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.2.txt
81
82
-------------------------------------------------------------------
83
Mon Mar  1 12:47:24 CET 2010 - tiwai@suse.de
84
85
- updated to git 1.7.0.1; just a minor update
86
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.1.txt
87
88
-------------------------------------------------------------------
89
Thu Feb 25 17:42:15 CET 2010 - tiwai@suse.de
90
91
- don't use %py_requires macro, otherwise it add an implicit
92
  dependency to git.rpm
93
94
-------------------------------------------------------------------
95
Sat Feb 20 19:16:04 UTC 2010 - jengelh@medozas.de
96
97
- use %_smp_mflags, use %_libexecdir for gitexecdir
98
99
-------------------------------------------------------------------
100
Wed Feb 17 10:00:42 CET 2010 - tiwai@suse.de
101
102
- fix installation of python stuff
103
104
-------------------------------------------------------------------
105
Mon Feb 15 09:31:29 CET 2010 - tiwai@suse.de
106
107
- updated to version 1.7.0: Major update
108
  See details in
109
      http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.0.txt
110
111
  Notes on behaviour change:
112
  * "git push" into a branch that is currently checked out (i.e. pointed at by
113
   HEAD in a repository that is not bare) is refused by default.
114
 * "git send-email" does not make deep threads by default when sending a
115
   patch series with more than two messages.  All messages will be sent
116
   as a reply to the first message, i.e. cover letter.
117
 * "git status" is not "git commit --dry-run" anymore.  This change does
118
   not affect you if you run the command without argument.
119
 * "git diff" traditionally treated various "ignore whitespace" options
120
   only as a way to filter the patch output.  "git diff --exit-code -b"
121
   exited with non-zero status even if all changes were about changing the
122
   amount of whitespace and nothing else;  and "git diff -b" showed the
123
   "diff --git" header line for such a change without patch text.
124
 * External diff and textconv helpers are now executed using the shell.
125
   This makes them consistent with other programs executed by git, and
126
   allows you to pass command-line parameters to the helpers. Any helper
127
   paths containing spaces or other metacharacters now need to be
128
   shell-quoted.  The affected helpers are GIT_EXTERNAL_DIFF in the
129
   environment, and diff.*.command and diff.*.textconv in the config
130
   file.
131
 * The --max-pack-size argument to 'git repack', 'git pack-objects', and
132
   'git fast-import' was assuming the provided size to be expressed in MiB,
133
   unlike the corresponding config variable and other similar options accepting
134
   a size value.  It is now expecting a size expressed in bytes, with a possible
135
   unit suffix of 'k', 'm', or 'g'.
136
137
- added git-remote-helpers sub-package for python helpers
138
139
-------------------------------------------------------------------
140
Thu Jan 21 08:24:01 CET 2010 - tiwai@suse.de
141
142
- updated to version 1.6.6:
143
  * "git fsck" defaults to "git fsck --full" and will take longer
144
  * check "Preparing yourselves for compatibility issues in 1.7.0"
145
    section below for the future update
146
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.6.txt
147
- updated to version 1.6.6.1; minor bug fixes
148
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.6.1.txt
149
150
-------------------------------------------------------------------
151
Fri Dec 18 17:30:02 CET 2009 - tiwai@suse.de
152
153
- updated to version 1.6.5.7; minor bug fixes
154
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.6.txt
155
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.7.txt
156
157
-------------------------------------------------------------------
158
Tue Dec  8 15:08:16 CET 2009 - tiwai@suse.de
159
160
- updated to version 1.6.5.5; only bug fixes; see release notes
161
  below;
162
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.4.txt
163
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.5.txt
164
165
-------------------------------------------------------------------
166
Tue Nov 17 12:24:57 CET 2009 - tiwai@suse.de
167
168
- updated to version 1.6.5.3; see release notes:
169
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.txt
170
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.1.txt
171
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.2.txt
172
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.5.3.txt
173
174
-------------------------------------------------------------------
175
Fri Oct 23 10:40:40 UTC 2009 - opensuse@sukimashita.com
176
177
- fix build of git-http-push enabling webdav push (bnc#504569)
178
179
-------------------------------------------------------------------
180
Fri Oct  2 13:02:40 UTC 2009 - lnussel@suse.de
181
182
- fix apparmor profile for gitweb
183
184
-------------------------------------------------------------------
185
Tue Sep 29 16:38:39 CEST 2009 - tiwai@suse.de
186
187
- remove git-arch from Recommends of git package; it's totally
188
  optional now
189
- remove tla from Requires of git-arch to avoid dependency errors
190
191
-------------------------------------------------------------------
192
Mon Aug 31 14:32:04 CEST 2009 - tiwai@suse.de
193
194
- updated to version 1.6.4.2:
195
 * rounding fix for --date=relative output between 1 and 5 years
196
 * regression fix of "git add -p" to handleexec bits  changes
197
 * fix "git apply" to honor GNU diff's convention to mark the
198
   creation/deletion event with UNIX epoch timestamp
199
 * fix "git checkout" to removed files correctly with symlinks
200
 * make "git clean -d -f" safer for separate git repos
201
 * fix bugs in "git fetch/push" over http transports
202
 * fix "git format-patch --cover-letter" with non-ASCII strings
203
 * See details in
204
   http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.4.2.txt
205
206
-------------------------------------------------------------------
207
Mon Aug 24 14:34:08 CEST 2009 - tiwai@suse.de
208
209
- updated to version 1.6.4:
210
  git push into the currently checked-out branch will be refused
211
  by default.
212
  See details in 
213
    http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.4.txt
214
- updated to version 1.6.4.1:
215
  Bug fix release.  See details in 
216
    http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.4.1.txt
217
  
218
-------------------------------------------------------------------
219
Mon Jun 22 13:08:41 CEST 2009 - tiwai@suse.de
220
221
- updated to 1.6.3.3:
222
 * fix "git daemon" to correctly parse the initial line
223
 * fix "git diff --textconv" memory leak
224
 * improved the built-in regular expressions
225
 * fix import-tars script (in contrib) to import symbolic links
226
 * fix http.c to use correct CURLOPT_SSLKEY
227
 * fix low-level filelevel merge driver 
228
 * fix "git rebase -i" left stray closing parenthesis in reflog
229
 * fix "git remote show" to show all the URLs associated with named
230
   remotes
231
 * fix "whitespace" attribute handling
232
233
-------------------------------------------------------------------
234
Fri Jun  5 10:10:25 CEST 2009 - tiwai@suse.de
235
236
- updated to 1.6.3.1:
237
 * fix regression of "git checkout -b new-branch"
238
- updated to 1.6.3.2:
239
 * fixes for gcc4.4 builds and others.  See below for details
240
   http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.3.2.txt
241
242
-------------------------------------------------------------------
243
Fri May  8 11:37:26 CEST 2009 - tiwai@suse.de
244
245
- updated to 1.6.3:
246
  * major version update: git push behavior change, 
247
    With the next major release, "git push" into a branch that is
248
    currently checked out will be refused by default.  You can
249
    choose what should happen upon such a push by setting the
250
    configuration
251
  * Detailed changelog found at
252
    http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.3.txt
253
254
-------------------------------------------------------------------
255
Mon Apr 20 12:44:42 CEST 2009 - tiwai@suse.de
256
257
- updated to 1.6.2.4:
258
  * The configuration parser had a buffer overflow while parsing
259
    an overlong value.
260
  * pruning reflog entries that are unreachable from the tip of
261
    the ref during "git reflog prune" (hence "git gc") was very
262
    inefficient.
263
  * "git-add -p" lacked a way to say "q"uit to refuse staging any
264
    hunks for the remaining paths.  You had to say "d" and then ^C.
265
  * "git-checkout <tree-ish> <submodule>" did not update the index
266
    entry at the named path; it now does.
267
  * "git-fast-export" choked when seeing a tag that does not point
268
    at commit.  
269
  * "git init" segfaulted when given an overlong template location
270
    via the --template= option.
271
  * "git-ls-tree" and "git-diff-tree" used a pathspec correctly
272
    when deciding to descend into a subdirectory but they did not
273
    match the individual paths correctly.  This caused pathspecs
274
    "abc/d ab" to match "abc/0" ("abc/d" made them decide to
275
    descend into the directory "abc/", and then "ab" incorrectly
276
    matched "abc/0" when it shouldn't).
277
  * "git-merge-recursive" was broken when a submodule entry was
278
    involved in a criss-cross merge situation.
279
280
-------------------------------------------------------------------
281
Thu Apr 16 11:02:04 CEST 2009 - tiwai@suse.de
282
283
- updated to 1.6.2.2:
284
  * A longstanding confusing description of what --pickaxe option
285
    of git-diff does has been clarified in the documentation.
286
  * "git-blame -S" did not quite work near the commits that were
287
    given on the command line correctly.
288
  * "git diff --pickaxe-regexp" did not count overlapping matches
289
    correctly.
290
  * "git diff" did not feed files in work-tree representation to
291
    external diff and textconv.
292
  * "git-fetch" in a repository that was not cloned from anywhere
293
    said it cannot find 'origin', which was hard to understand for
294
    new people.
295
  * "git-format-patch --numbered-files --stdout" did not have to
296
    die of incompatible options; it now simply ignores
297
    --numbered-files as no files are produced anyway.
298
  * "git-ls-files --deleted" did not work well with GIT_DIR&GIT_WORK_TREE.
299
  * "git-read-tree A B C..." without -m option has been broken for
300
    a long time.
301
  * git-send-email ignored --in-reply-to when --no-thread was given.
302
  * 'git-submodule add' did not tolerate extra slashes and ./ in
303
    the path it accepted from the command line; it now is more lenient.
304
  * git-svn misbehaved when the project contained a path that began
305
    with two dashes.
306
  * import-zips script (in contrib) did not compute the common
307
    directory prefix correctly.
308
  * miscompilation of negated enum constants by old gcc (2.9)
309
    affected the codepaths to spawn subprocesses.
310
- updated to 1.6.2.3:
311
  * Setting an octal mode value to core.sharedrepository
312
    configuration to restrict access to the repository to group
313
    members did not work as advertised.
314
  * A fairly large and trivial memory leak while rev-list shows
315
    list of reachable objects has been identified and plugged.
316
  * "git-commit --interactive" did not abort when underlying
317
    "git-add -i" signaled a failure.
318
  * git-repack (invoked from git-gc) did not work as nicely as it
319
    should in a repository that borrows objects from neighbours
320
    via alternates mechanism especially when some packs are marked
321
    with the ".keep" flag to prevent them from being repacked.
322
- fix the start-check in git-daemon script (bnc#494824)
323
324
-------------------------------------------------------------------
325
Mon Mar 16 09:50:24 CET 2009 - tiwai@suse.de
326
327
- updated to 1.6.2.1:
328
  * .gitignore learned to handle backslash as a quoting mechanism
329
    for comment introduction character "#".
330
  * timestamp output in --date=relative mode used to display
331
    timestamps that are long time ago in the default mode
332
  * git-add -i/-p now works with non-ASCII pathnames.
333
  * "git hash-object -w" did not read from the configuration file
334
    from the correct .git directory.
335
  * git-send-email learned to correctly handle multiple Cc:
336
    addresses.
337
338
-------------------------------------------------------------------
339
Thu Mar  5 12:24:45 CET 2009 - tiwai@suse.de
340
341
- updated to 1.6.2:
342
  * @{-1} is a way to refer to the last branch you were on.
343
  * The location of .mailmap file can be configured
344
  * Improvements on "git add -p"
345
  * Improvements on "git am" behavior and options
346
  * "git blame" aligns author names better
347
  * "git clone" now makes its best effort when cloning from an
348
    empty repository
349
  * "git checkout -" is a shorthand for "git checkout @{-1}".
350
  * "git cherry" defaults to whatever the current branch is
351
    tracking (if exists) when the <upstream> argument is not given.
352
  * "git cvsserver" fixes / improvements
353
  * New options for "git diff"
354
  * New options for "git filter-branch"
355
  * "git fsck" now checks loose objects in alternate object
356
    stores
357
  * "git gc --prune" was resurrected to allow "git gc --no-prune"
358
  * New option for "git mergetool"
359
  * "git rebase -i" can transplant a history down to root
360
  * "git reset --merge" option
361
  * "git submodule update" learned --no-fetch option.
362
  * "git tag" learned --contains
363
 For more details, see
364
    http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.2.txt
365
366
-------------------------------------------------------------------
367
Mon Feb  9 08:27:53 CET 2009 - tiwai@suse.de
368
369
- updated to 1.6.1.3:
370
  * "git diff --binary | git apply" pipeline did not work well
371
   when a binary blob is changed to a symbolic link.
372
  * some combinations of -b/-w/--ignore-space-at-eol to "git diff"
373
   did not work as expected.
374
  * "git grep" did not pass the -I (ignore binary) option when
375
   calling out an external grep program.
376
  * "git log" and friends include HEAD to the set of starting
377
   points when --all is given.  This makes a difference when you
378
   are not on any branch.
379
  * "git mv" to move an untracked file to overwrite a tracked
380
   contents misbehaved.
381
  * "git merge -s octopus" with many potential merge bases did not
382
   work correctly.
383
  * RPM binary package installed the html manpages in a wrong
384
   place.
385
  Also includes minor documentation fixes and updates.
386
387
-------------------------------------------------------------------
388
Thu Jan 29 13:24:33 CET 2009 - schwab@suse.de
389
390
- Formatting fix for manual pages.
391
392
-------------------------------------------------------------------
393
Thu Jan 29 11:53:19 CET 2009 - tiwai@suse.de
394
395
- updated to 1.6.1.2:
396
  * The logic for rename detectin in internal diff used by commands
397
    like "git diff" and "git blame" have been optimized to avoid
398
    loading the same blob repeatedly.
399
  * We did not allow writing out a blob that is larger than 2GB
400
    for no good reason.
401
  * "git format-patch -o $dir", when $dir is a relative directory,
402
    used it as relative to the root of the work tree, not relative
403
    to the current directory.
404
  * v1.6.1 introduced an optimization for "git push" into a
405
    repository (A) that borrows its objects from another
406
    repository (B) to avoid sending objects that are available in
407
    repository B, when they are not yet used by repository A.
408
    However the code on the "git push" sender side was buggy and
409
    did not work when repository B had new objects that are not
410
    known by the sender.  This caused pushing into a "forked"
411
    repository served by v1.6.1 software using "git push" from
412
    v1.6.1 sometimes did not work.  The bug was purely on the
413
    "git push" sender side, and has been corrected.
414
  * "git status -v" did not paint its diff output in colour even
415
    when color.ui configuration was set.
416
  * "git ls-tree" learned --full-tree option to help Porcelain
417
    scripts that want to always see the full path regardless of the
418
    current working directory.
419
  * "git grep" incorrectly searched in work tree paths even when
420
    they are marked as assume-unchanged.  It now searches in the
421
    index entries.
422
  * "git gc" with no grace period needlessly ejected packed but
423
    unreachable objects in their loose form, only to delete them
424
    right away.
425
426
-------------------------------------------------------------------
427
Mon Jan 26 12:21:15 CET 2009 - tiwai@suse.de
428
429
- updated to 1.6.1.1:
430
  * "git add frotz/nitfol" when "frotz" is a submodule should have
431
    errored out, but it didn't.
432
  * "git apply" took file modes from the patch text and updated
433
    the mode bits of the target tree even when the patch was not
434
    about mode changes.
435
  * "git bisect view" on Cygwin did not launch gitk
436
  * "git checkout $tree" did not trigger an error.
437
  * "git commit" tried to remove COMMIT_EDITMSG from the work tree
438
    by mistake.
439
  * "git describe --all" complained when a commit is described
440
    with a tag, which was nonsense.
441
  * "git diff --no-index --" did not trigger no-index (aka "use
442
    git-diff as a replacement of diff on untracked files") behaviour.
443
  * "git format-patch -1 HEAD" on a root commit failed to produce
444
    patch text.
445
  * "git fsck branch" did not work as advertised; instead it
446
    behaved the same way as "git fsck".
447
  * "git log --pretty=format:%s" did not handle a multi-line
448
    subject the same way as built-in log listers (i.e. shortlog,
449
    --pretty=oneline, etc.)
450
  * "git daemon", and "git merge-file" are more careful when freopen
451
    fails and barf, instead of going on and writing to unopened
452
    filehandle.
453
  * "git http-push" did not like some RFC 4918 compliant DAV server
454
    responses.
455
  * "git merge -s recursive" mistakenly overwritten an untracked
456
    file in the work tree upon delete/modify conflict.
457
  * "git merge -s recursive" didn't leave the index unmerged for
458
    entries with rename/delete conflictd.
459
  * "git merge -s recursive" clobbered untracked files in the work
460
    tree.
461
  * "git mv -k" with more than one errorneous paths misbehaved.
462
  * "git read-tree -m -u" hence branch switching incorrectly lost
463
    a subdirectory in rare cases.
464
  * "git rebase -i" issued an unnecessary error message upon a user
465
    error of marking the first commit to be "squash"ed.
466
  * "git shortlog" did not format a commit message with multi-line
467
    subject correctly.
468
469
-------------------------------------------------------------------
470
Thu Jan  8 15:55:42 CET 2009 - tiwai@suse.de
471
472
- updated to 1.6.1:
473
  * handle properly the exit code when pager is used
474
  * various git-gui updates including translations
475
  * gitweb updates
476
  * many other improvements / fixes.  See release notes
477
    http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.1.txt
478
479
-------------------------------------------------------------------
480
Fri Dec 19 14:04:40 CET 2008 - lnussel@suse.de
481
482
- add apparmor profile for git-web
483
- don't use %jobs for generating docu
484
- change gitexecdir to /usr/lib instead of %_libdir
485
486
-------------------------------------------------------------------
487
Wed Dec 17 09:35:17 CET 2008 - tiwai@suse.de
488
489
- Fix VUL-0 Possible gitweb vulnerability: calling "git diff"
490
  [bnc#459664]
491
492
-------------------------------------------------------------------
493
Thu Dec 11 01:57:33 CET 2008 - pbaudis@suse.cz
494
495
- Fix the git.xinetd daemon call [bnc#450508]
496
497
-------------------------------------------------------------------
498
Wed Nov 19 08:54:41 CET 2008 - tiwai@suse.de
499
500
- install git-shell and git-cvsserver as in the upstream
501
  (bnc#446049)
502
503
-------------------------------------------------------------------
504
Tue Nov  4 08:45:59 CET 2008 - olh@suse.de
505
506
- use fdupes only if the distribution provides it
507
- use libopenssl-devel only if the distribution provides it
508
509
-------------------------------------------------------------------
510
Fri Oct 24 15:03:52 CEST 2008 - tiwai@suse.de
511
512
- fix git.xinetd not to run the old git-daemon (bnc#438715)
513
514
-------------------------------------------------------------------
515
Mon Oct  6 15:53:47 CEST 2008 - tiwai@suse.de
516
517
- fix git-daemon init script to start (bnc#432610)
518
519
-------------------------------------------------------------------
520
Fri Sep 26 17:17:12 CEST 2008 - schwab@suse.de
521
522
- Fix manual pages.
523
524
-------------------------------------------------------------------
525
Thu Sep 25 16:08:40 CEST 2008 - tiwai@suse.de
526
527
- updated to 1.6.0.2:
528
  Mostly small bug fixes, see details in
529
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.2.txt
530
531
-------------------------------------------------------------------
532
Thu Sep 25 16:04:22 CEST 2008 - tiwai@suse.de
533
534
- fix file selections of git-core package
535
- use symlinks for git sub-commands instead of hardlinks to make
536
  build system happy
537
538
-------------------------------------------------------------------
539
Tue Sep  9 12:18:09 CEST 2008 - tiwai@suse.de
540
541
- updated to 1.6.0:
542
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.txt 
543
- updated to 1.6.0.1:
544
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.1.txt 
545
- install git subcommands now to libdir/git
546
  users have to set up properly if they want to keep the old style
547
  (refer git --execpath)
548
549
-------------------------------------------------------------------
550
Tue Sep  9 11:38:39 CEST 2008 - lnussel@suse.de
551
552
- split off gui and web subpackages
553
554
-------------------------------------------------------------------
555
Mon Aug 18 11:42:39 CEST 2008 - schwab@suse.de
556
557
- Fix name of completions file.
558
559
-------------------------------------------------------------------
560
Tue Aug 12 13:59:54 CEST 2008 - tiwai@suse.de
561
562
- updated to 1.5.6.5:
563
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.6.5.txt
564
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.6.4.txt
565
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.6.3.txt
566
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.6.2.txt
567
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.6.1.txt
568
569
-------------------------------------------------------------------
570
Wed Aug  6 11:50:51 CEST 2008 - anosek@suse.cz
571
572
- fixed Add git xinetd.d file for ability to use yast2 (bnc#398361)
573
  - created file git.xinetd to run git under xinetd daemon
574
575
-------------------------------------------------------------------
576
Wed Jun 25 00:03:23 CEST 2008 - dmueller@suse.de
577
578
- update to 1.5.6:
579
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.6.txt
580
581
-------------------------------------------------------------------
582
Mon Jun 16 16:43:50 CEST 2008 - lnussel@suse.de
583
584
- use separate package for git-daemon (bnc#382710)
585
- add user and install init script for git-daemon
586
587
-------------------------------------------------------------------
588
Tue May 20 15:18:40 CEST 2008 - lnussel@suse.de
589
590
- install gitweb icons, style sheet and README (bnc#359882)
591
- build using V=1 so use of cflags can be verified by brp scripts
592
- fix build using --without docs
593
594
-------------------------------------------------------------------
595
Mon Apr  7 16:40:38 CEST 2008 - dmueller@suse.de
596
597
- update to 1.5.4.5:
598
  * http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.4.5.txt 
599
600
-------------------------------------------------------------------
601
Tue Mar 18 14:42:06 CET 2008 - dmueller@suse.de
602
603
- update to 1.5.4.4:
604
  * git svnimport was removed in favor of git svn
605
  * git runstatus has been removed
606
  * changes are available under
607
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.4.txt
608
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.4.1.txt
609
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.4.2.txt
610
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.4.3.txt
611
  http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.5.4.4.txt
612
613
-------------------------------------------------------------------
614
Mon Jan 28 14:21:27 CET 2008 - mmarek@suse.de
615
616
- added libopenssl-devel to BuildRequires to fix build
617
618
-------------------------------------------------------------------
619
Wed Jan  9 00:42:47 CET 2008 - schwab@suse.de
620
621
- Update to version 1.5.3.8.
622
  * Some documentation used "email.com" as an example domain.
623
  * git-svn fix to handle funky branch and project names going over
624
    http/https correctly.
625
  * git-svn fix to tone down a needlessly alarming warning message.
626
  * git-clone did not correctly report errors while fetching over http.
627
  * git-send-email added redundant Message-Id: header to the outgoing
628
    e-mail when the patch text already had one.
629
  * a read-beyond-end-of-buffer bug in configuration file updater was fixed.
630
  * git-grep used to show the same hit repeatedly for unmerged paths.
631
  * After amending the patch title in "git-am -i", the command did not
632
    report the patch it applied with the updated title.
633
634
-------------------------------------------------------------------
635
Tue Jan  8 10:12:16 CET 2008 - crrodriguez@suse.de
636
637
- git-cvsserver was unusable, it produced a perl failed-compilation error
638
   due to missing dependency on perl-DBD-Sqlite.
639
- update to version 1.5.3.7
640
 * git-send-email added 8-bit contents to the payload without
641
   marking it as 8-bit in a CTE header.
642
 * "git-bundle create a.bndl HEAD" dereferenced the symref and
643
   did not record the ref as 'HEAD'; this prevented a bundle
644
   from being used as a normal source of git-clone.
645
 * The code to reject nonsense command line of the form
646
   "git-commit -a paths..." and "git-commit --interactive
647
   paths..." were broken.
648
 * Adding a signature that is not ASCII-only to an original
649
   commit that is ASCII-only would make the result non-ASCII.
650
   "git-format-patch -s" did not mark such a message correctly
651
   with MIME encoding header.
652
 * git-add sometimes did not mark the resulting index entry
653
   stat-clean.  This affected only cases when adding the
654
   contents with the same length as the previously staged
655
   contents, and the previous staging made the index entry
656
   "racily clean".
657
 * git-commit did not honor GIT_INDEX_FILE the user had in the
658
   environment.
659
 * When checking out a revision, git-checkout did not report where the
660
   updated HEAD is if you happened to have a file called HEAD in the
661
   work tree.
662
 * "git-rev-list --objects" mishandled a tree that points at a
663
   submodule.
664
 * "git cvsimport" was not ready for packed refs that "git gc" can
665
   produce and gave incorrect results.
666
 * Many scripted Porcelains were confused when you happened to have a
667
   file called "HEAD" in your work tree.
668
 
669
670
-------------------------------------------------------------------
671
Wed Nov 28 09:12:23 CET 2007 - dmueller@suse.de
672
673
- update to 1.5.3.6:
674
   * various smaller bugfixes 
675
- remove requires on release (#305826)
676
- install bash completion (#336848)
677
678
-------------------------------------------------------------------
679
Tue Oct  9 18:50:30 CEST 2007 - dmueller@suse.de
680
681
- update to 1.5.3.4:
682
   * submodule support
683
   * many new features and bugfixes 
684
685
-------------------------------------------------------------------
686
Mon Aug  6 23:00:14 CEST 2007 - dmueller@suse.de
687
688
- update to 1.5.2.4:
689
   * "git checkout" failed to switch back and forth between
690
     branches, one of which has "frotz -> xyzzy" symlink and
691
     file "xyzzy/filfre", while the other one has a file
692
     "frotz/filfre".
693
   * "git prune" used to segfault upon seeing a commit that is
694
     referred to by a tree object (aka "subproject").
695
   * "git diff --name-status --no-index" mishandled an added file.
696
   * "git apply --reverse --whitespace=warn" still complained
697
     about whitespaces that a forward application would have
698
     introduced.
699
700
-------------------------------------------------------------------
701
Thu Jul  5 02:35:22 CEST 2007 - dmueller@suse.de
702
703
- Update to 1.5.2.3:
704
  * fix many segfaults with the SVN gateway
705
  * various bugfixes
706
707
-------------------------------------------------------------------
708
Fri May 18 00:34:20 CEST 2007 - dmueller@suse.de
709
710
- Update to 1.5.1.4:
711
  * GIT <-> SVN gateway
712
  * New porcelain, much improved index handling
713
  * git-config
714
  * Bare repositories refuse commands that need a working tree
715
  * packed ref support
716
  * 3-way merges can be done without rcs
717
  * python dependency dropped
718
719
-------------------------------------------------------------------
720
Sat Nov 18 04:46:49 CET 2006 - pbaudis@suse.cz
721
722
- Fix build failure from previous change (trivial omission)
723
724
-------------------------------------------------------------------
725
Fri Nov 17 20:56:22 CET 2006 - pbaudis@suse.cz
726
727
- Fix git-arch package containing git-archive and git-upload-archive
728
  [#222074]
729
730
-------------------------------------------------------------------
731
Fri Nov 17 05:24:23 CET 2006 - pbaudis@suse.cz
732
733
- Upgrade to git-1.4.3.4 - only few bugfixes, most importantly
734
  git-apply wouldn't apply creation/deletion patches
735
736
-------------------------------------------------------------------
737
Tue Nov  7 01:04:24 CET 2006 - ro@suse.de
738
739
- fix permissions for manpages 
740
741
-------------------------------------------------------------------
742
Sat Oct 28 22:15:26 CEST 2006 - meissner@suse.de
743
744
- use RPM_OPT_FLAGS also in %install make
745
746
-------------------------------------------------------------------
747
Thu Oct 26 14:56:47 CEST 2006 - pbaudis@suse.cz
748
749
- Upgrade to git-1.4.3.3 - bugfixes release
750
751
-------------------------------------------------------------------
752
Thu Oct 19 02:14:05 CEST 2006 - pbaudis@suse.cz
753
754
- Update to git-1.4.3 - UI improvements, speedups, random new
755
  features (e.g. git-daemon name-based virtual hosting support),
756
  basic Git.pm
757
- Fixes build failures due to asciidoc incompatibilities
758
759
-------------------------------------------------------------------
760
Tue Jul 25 08:43:27 CEST 2006 - pbaudis@suse.cz
761
762
- Update to git-1.4.1.1 - includes gitweb, many bugfixes, some
763
  commands are converted from shell to C, aliasing support,
764
  documentation improvements and so on.
765
- Junio's patch got applied upstream.
766
- Pre-create /srv/git for bare Git repositories hosting.
767
- Install gitweb to /srv/www/cgi-bin pre-configured to look
768
  for packages at /srv/git.
769
770
-------------------------------------------------------------------
771
Mon May 15 01:04:34 CEST 2006 - pbaudis@suse.cz
772
773
- Update to git-core-1.3.1 - git-cvsserver pserver interface,
774
  .git/refs/remotes branches support, blame/annotate tools,
775
  builtin diff, faster and better rename detection and number
776
  of other stuff.
777
- Add Junio's patch for saner handling of symlink refs. This is
778
  an important bugfix since without this, it is impossible to
779
  bisect behind kernel linux-v2.6.15-g117a93d.
780
- Olaf Hering's cutnpaste patch got applied upstream.
781
782
-------------------------------------------------------------------
783
Mon Mar 13 02:28:07 CET 2006 - ro@suse.de
784
785
- change requires from "openssh-clients" to "openssh"
786
  (former does not exist) 
787
788
-------------------------------------------------------------------
789
Fri Mar 10 01:54:28 CET 2006 - pbaudis@suse.cz
790
791
- Add Olaf Hering's patch for easier cut'n'pasting.
792
793
-------------------------------------------------------------------
794
Tue Mar  7 23:08:46 CET 2006 - pbaudis@suse.cz
795
796
- Update to git-core 1.2.4.
797
- This is a security fix: there was a buffer overflow when checking
798
  out a tree with an insanely long symlink. (No Bugzilla id.)
799
800
-------------------------------------------------------------------
801
Wed Jan 25 21:36:11 CET 2006 - mls@suse.de
802
803
- converted neededforbuild to BuildRequires
804
805
-------------------------------------------------------------------
806
Tue Jan 17 21:50:49 CET 2006 - pbaudis@suse.cz
807
808
- Fix the specfile build (no expat and asciidoc, xmlto problems)
809
810
-------------------------------------------------------------------
811
Mon Jan 16 23:14:38 CET 2006 - pbaudis@suse.cz
812
813
- Update to git-core 1.1.3.
814
- Modify the specfile so that it looks more like the stock one.
815
- Split bits to subpackages
816
817
-------------------------------------------------------------------
818
Sun Dec  4 14:28:09 CET 2005 - schwab@suse.de
819
820
- Fix embedded paths.
821
822
-------------------------------------------------------------------
823
Wed Oct  5 23:35:21 CEST 2005 - schwab@suse.de
824
825
- Don't build documentation in parallel.
826
827
-------------------------------------------------------------------
828
Mon Sep 19 11:11:41 CEST 2005 - schwab@suse.de
829
830
- Update to git-core 0.99.7.
831
- Install manpages.
832
833
-------------------------------------------------------------------
834
Fri Aug  5 11:24:34 CEST 2005 - kasievers@suse.de
835
836
- New version 0.99.3git20050905 
837
  rename git to git-core, to match the upstream package name
838
839
-------------------------------------------------------------------
840
Sun Jul  3 03:21:00 CEST 2005 - kasievers@suse.de
841
842
- New version 0.7git20050703
843
844
-------------------------------------------------------------------
845
Thu Jun 30 22:16:53 CEST 2005 - kasievers@suse.de
846
847
- New version 20050630 
848
849
-------------------------------------------------------------------
850
Fri Jun 24 13:54:01 CEST 2005 - kasievers@suse.de
851
852
- New version 20050624 
853
854
-------------------------------------------------------------------
855
Sun Jun 12 03:50:05 CEST 2005 - kay.sievers@suse.de
856
857
- New version 20050612 
858
859
-------------------------------------------------------------------
860
Thu Jun  2 11:31:29 CEST 2005 - kay.sievers@suse.de
861
862
- Split git/Cogito into separate packages
863
- Update git to version 20050602
864
865
-------------------------------------------------------------------
866
Fri May 20 14:27:50 CEST 2005 - schwab@suse.de
867
868
- Use RPM_OPT_FLAGS.
869
- Specfile cleanup.
870
871
-------------------------------------------------------------------
872
Fri May 20 14:15:46 CEST 2005 - mmj@suse.de
873
874
- %_libdir -> FHS libexec
875
876
-------------------------------------------------------------------
877
Fri May 20 13:02:10 CEST 2005 - skh@suse.de
878
879
- initial package
880
881