Bug 252244 - devel/git: Update to 2.30.0
Summary: devel/git: Update to 2.30.0
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Renato Botelho
URL: https://raw.githubusercontent.com/git...
Keywords:
Depends on:
Blocks:
 
Reported: 2020-12-29 01:54 UTC by Yasuhiro Kimura
Modified: 2020-12-31 17:53 UTC (History)
1 user (show)

See Also:
bugzilla: maintainer-feedback? (garga)


Attachments
Patch file (3.83 KB, patch)
2020-12-29 01:54 UTC, Yasuhiro Kimura
no flags Details | Diff
unbreak git-cinnabar (5.16 KB, patch)
2020-12-29 09:19 UTC, Jan Beich
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Yasuhiro Kimura freebsd_committer freebsd_triage 2020-12-29 01:54:03 UTC
Created attachment 221065 [details]
Patch file

Update to 2.30.0.

Release Note: https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.30.0.txt
Comment 1 Jan Beich freebsd_committer freebsd_triage 2020-12-29 09:19:55 UTC
Created attachment 221083 [details]
unbreak git-cinnabar

Like usual devel/git-cinnabar needs to adjust to the new internal API but upstream already has a fix. Attaching here as I can't test inside poudriere atm.
Comment 2 commit-hook freebsd_committer freebsd_triage 2020-12-31 17:07:30 UTC
A commit references this bug:

Author: garga
Date: Thu Dec 31 17:06:56 UTC 2020
New revision: 559755
URL: https://svnweb.freebsd.org/changeset/ports/559755

Log:
  devel/git: Update to 2.30.0

  PR:		252244
  Submitted by:	Yasuhiro Kimura <yasu@utahime.org>
  Sponsored by:	Rubicon Communications, LLC (Netgate)

Changes:
  head/devel/git/Makefile
  head/devel/git/distinfo
  head/devel/git/pkg-plist
Comment 3 commit-hook freebsd_committer freebsd_triage 2020-12-31 17:53:36 UTC
A commit references this bug:

Author: jbeich
Date: Thu Dec 31 17:53:09 UTC 2020
New revision: 559758
URL: https://svnweb.freebsd.org/changeset/ports/559758

Log:
  devel/git-cinnabar: unbreak after r559755

  helper/cinnabar-helper.c:1981:3: warning: implicit declaration of function 'hashmap_free_entries' is invalid in C99 [-Wimplicit-function-declaration]
                  hashmap_free_entries(&track.commit_cache, struct oid_map_entry, ent);
                  ^
  helper/cinnabar-helper.c:1981:45: error: expected expression
                  hashmap_free_entries(&track.commit_cache, struct oid_map_entry, ent);
                                                            ^
  helper/cinnabar-helper.c:1981:67: error: use of undeclared identifier 'ent'
                  hashmap_free_entries(&track.commit_cache, struct oid_map_entry, ent);
                                                                                  ^
  helper/cinnabar-helper.c:1982:43: error: expected expression
                  hashmap_free_entries(&track.tree_cache, struct oid_map_entry, ent);
                                                          ^
  helper/cinnabar-helper.c:1982:65: error: use of undeclared identifier 'ent'
                  hashmap_free_entries(&track.tree_cache, struct oid_map_entry, ent);
                                                                                ^
  helper/cinnabar-helper.c:2374:2: warning: implicit declaration of function 'hashmap_free_entries' is invalid in C99 [-Wimplicit-function-declaration]
          hashmap_free_entries(&git_tree_cache, struct oid_map_entry, ent);
          ^
  helper/cinnabar-helper.c:2374:40: error: expected expression
          hashmap_free_entries(&git_tree_cache, struct oid_map_entry, ent);
                                                ^
  helper/cinnabar-helper.c:2374:62: error: use of undeclared identifier 'ent'
          hashmap_free_entries(&git_tree_cache, struct oid_map_entry, ent);
                                                                      ^
  helper/cinnabar-helper.c:2577:2: warning: implicit declaration of function 'hashmap_free_entries' is invalid in C99 [-Wimplicit-function-declaration]
          hashmap_free_entries(&git_tree_cache, struct oid_map_entry, ent);
          ^
  helper/cinnabar-helper.c:2577:40: error: expected expression
          hashmap_free_entries(&git_tree_cache, struct oid_map_entry, ent);
                                                ^
  helper/cinnabar-helper.c:2577:62: error: use of undeclared identifier 'ent'
          hashmap_free_entries(&git_tree_cache, struct oid_map_entry, ent);
                                                                      ^

  PR:		252244

Changes:
  head/devel/git-cinnabar/Makefile
  head/devel/git-cinnabar/files/patch-git-2.30