git: update to v2.5.0
Update to git version v2.5.0. * Upstream commit 5455ee0573a22bb793a7083d593ae1ace909cd4c (Merge branch 'bc/object-id') changed API: for_each_ref() callback functions were taught to name the objects not with "unsigned char sha1[20]" but with "struct object_id". * Upstream commit dcf692625ac569fefbe52269061230f4fde10e47 (path.c: make get_pathname() call sites return const char *) Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
orang tua
dc41a00180
melakukan
de83de276b
2
Makefile
2
Makefile
@ -14,7 +14,7 @@ htmldir = $(docdir)
|
|||||||
pdfdir = $(docdir)
|
pdfdir = $(docdir)
|
||||||
mandir = $(prefix)/share/man
|
mandir = $(prefix)/share/man
|
||||||
SHA1_HEADER = <openssl/sha.h>
|
SHA1_HEADER = <openssl/sha.h>
|
||||||
GIT_VER = 2.4.1
|
GIT_VER = 2.5.0
|
||||||
GIT_URL = https://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.gz
|
GIT_URL = https://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.gz
|
||||||
INSTALL = install
|
INSTALL = install
|
||||||
COPYTREE = cp -r
|
COPYTREE = cp -r
|
||||||
|
2
cgit.c
2
cgit.c
@ -421,7 +421,7 @@ struct refmatch {
|
|||||||
int match;
|
int match;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int find_current_ref(const char *refname, const unsigned char *sha1,
|
static int find_current_ref(const char *refname, const struct object_id *oid,
|
||||||
int flags, void *cb_data)
|
int flags, void *cb_data)
|
||||||
{
|
{
|
||||||
struct refmatch *info;
|
struct refmatch *info;
|
||||||
|
2
cgit.h
2
cgit.h
@ -335,7 +335,7 @@ extern void strbuf_ensure_end(struct strbuf *sb, char c);
|
|||||||
|
|
||||||
extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
|
extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
|
||||||
extern void cgit_free_reflist_inner(struct reflist *list);
|
extern void cgit_free_reflist_inner(struct reflist *list);
|
||||||
extern int cgit_refs_cb(const char *refname, const unsigned char *sha1,
|
extern int cgit_refs_cb(const char *refname, const struct object_id *oid,
|
||||||
int flags, void *cb_data);
|
int flags, void *cb_data);
|
||||||
|
|
||||||
extern void *cgit_free_commitinfo(struct commitinfo *info);
|
extern void *cgit_free_commitinfo(struct commitinfo *info);
|
||||||
|
2
git
2
git
@ -1 +1 @@
|
|||||||
Subproject commit aaa7e0d7f8f003c0c8ab34f959083f6d191d44ca
|
Subproject commit a17c56c056d5fea0843b429132904c429a900229
|
8
shared.c
8
shared.c
@ -185,13 +185,13 @@ void cgit_add_ref(struct reflist *list, struct refinfo *ref)
|
|||||||
list->refs[list->count++] = ref;
|
list->refs[list->count++] = ref;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct refinfo *cgit_mk_refinfo(const char *refname, const unsigned char *sha1)
|
static struct refinfo *cgit_mk_refinfo(const char *refname, const struct object_id *oid)
|
||||||
{
|
{
|
||||||
struct refinfo *ref;
|
struct refinfo *ref;
|
||||||
|
|
||||||
ref = xmalloc(sizeof (struct refinfo));
|
ref = xmalloc(sizeof (struct refinfo));
|
||||||
ref->refname = xstrdup(refname);
|
ref->refname = xstrdup(refname);
|
||||||
ref->object = parse_object(sha1);
|
ref->object = parse_object(oid->hash);
|
||||||
switch (ref->object->type) {
|
switch (ref->object->type) {
|
||||||
case OBJ_TAG:
|
case OBJ_TAG:
|
||||||
ref->tag = cgit_parse_tag((struct tag *)ref->object);
|
ref->tag = cgit_parse_tag((struct tag *)ref->object);
|
||||||
@ -239,11 +239,11 @@ void cgit_free_reflist_inner(struct reflist *list)
|
|||||||
free(list->refs);
|
free(list->refs);
|
||||||
}
|
}
|
||||||
|
|
||||||
int cgit_refs_cb(const char *refname, const unsigned char *sha1, int flags,
|
int cgit_refs_cb(const char *refname, const struct object_id *oid, int flags,
|
||||||
void *cb_data)
|
void *cb_data)
|
||||||
{
|
{
|
||||||
struct reflist *list = (struct reflist *)cb_data;
|
struct reflist *list = (struct reflist *)cb_data;
|
||||||
struct refinfo *info = cgit_mk_refinfo(refname, sha1);
|
struct refinfo *info = cgit_mk_refinfo(refname, oid);
|
||||||
|
|
||||||
if (info)
|
if (info)
|
||||||
cgit_add_ref(list, info);
|
cgit_add_ref(list, info);
|
||||||
|
@ -12,15 +12,15 @@
|
|||||||
#include "html.h"
|
#include "html.h"
|
||||||
#include "ui-shared.h"
|
#include "ui-shared.h"
|
||||||
|
|
||||||
static int print_ref_info(const char *refname, const unsigned char *sha1,
|
static int print_ref_info(const char *refname, const struct object_id *oid,
|
||||||
int flags, void *cb_data)
|
int flags, void *cb_data)
|
||||||
{
|
{
|
||||||
struct object *obj;
|
struct object *obj;
|
||||||
|
|
||||||
if (!(obj = parse_object(sha1)))
|
if (!(obj = parse_object(oid->hash)))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
htmlf("%s\t%s\n", sha1_to_hex(sha1), refname);
|
htmlf("%s\t%s\n", oid_to_hex(oid), refname);
|
||||||
if (obj->type == OBJ_TAG) {
|
if (obj->type == OBJ_TAG) {
|
||||||
if (!(obj = deref_tag(obj, refname, 0)))
|
if (!(obj = deref_tag(obj, refname, 0)))
|
||||||
return 0;
|
return 0;
|
||||||
@ -50,7 +50,7 @@ static void print_pack_info(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void send_file(char *path)
|
static void send_file(const char *path)
|
||||||
{
|
{
|
||||||
struct stat st;
|
struct stat st;
|
||||||
|
|
||||||
|
4
ui-log.c
4
ui-log.c
@ -249,11 +249,11 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
|
|||||||
|
|
||||||
static const char *disambiguate_ref(const char *ref, int *must_free_result)
|
static const char *disambiguate_ref(const char *ref, int *must_free_result)
|
||||||
{
|
{
|
||||||
unsigned char sha1[20];
|
struct object_id oid;
|
||||||
struct strbuf longref = STRBUF_INIT;
|
struct strbuf longref = STRBUF_INIT;
|
||||||
|
|
||||||
strbuf_addf(&longref, "refs/heads/%s", ref);
|
strbuf_addf(&longref, "refs/heads/%s", ref);
|
||||||
if (get_sha1(longref.buf, sha1) == 0) {
|
if (get_sha1(longref.buf, oid.hash) == 0) {
|
||||||
*must_free_result = 1;
|
*must_free_result = 1;
|
||||||
return strbuf_detach(&longref, NULL);
|
return strbuf_detach(&longref, NULL);
|
||||||
}
|
}
|
||||||
|
@ -792,7 +792,7 @@ void cgit_add_clone_urls(void (*fn)(const char *))
|
|||||||
add_clone_urls(fn, ctx.cfg.clone_prefix, ctx.repo->url);
|
add_clone_urls(fn, ctx.cfg.clone_prefix, ctx.repo->url);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int print_branch_option(const char *refname, const unsigned char *sha1,
|
static int print_branch_option(const char *refname, const struct object_id *oid,
|
||||||
int flags, void *cb_data)
|
int flags, void *cb_data)
|
||||||
{
|
{
|
||||||
char *name = (char *)refname;
|
char *name = (char *)refname;
|
||||||
|
Memuat…
Reference in New Issue
Block a user