mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-11 14:20:07 +02:00
Install the perl modules into the vendor_perl directory. This should avoid the perl dependency of the main git package, simplifying perl upgrades.
246 lines
6.6 KiB
Plaintext
246 lines
6.6 KiB
Plaintext
From 75e283ac24397b1559d3866f773480b934ed0003 Mon Sep 17 00:00:00 2001
|
|
From: Ingo Weinhold <ingo_weinhold@gmx.de>
|
|
Date: Tue, 13 Aug 2013 08:07:25 +0200
|
|
Subject: git-web--browse.sh: use "open" on Haiku
|
|
|
|
|
|
diff --git a/git-web--browse.sh b/git-web--browse.sh
|
|
index ae15253..b074d1a 100755
|
|
--- a/git-web--browse.sh
|
|
+++ b/git-web--browse.sh
|
|
@@ -133,6 +133,11 @@ if test -z "$browser" ; then
|
|
browser_candidates="cygstart $browser_candidates"
|
|
fi
|
|
|
|
+ # /boot/system/haiku_loader indicates Haiku
|
|
+ if test -f /boot/system/haiku_loader; then
|
|
+ browser_candidates="open $browser_candidates"
|
|
+ fi
|
|
+
|
|
for i in $browser_candidates; do
|
|
init_browser_path $i
|
|
if type "$browser_path" > /dev/null 2>&1; then
|
|
--
|
|
2.43.2
|
|
|
|
|
|
From af0ee01688986d7c8461d1f8f50c8d037f8d8449 Mon Sep 17 00:00:00 2001
|
|
From: Ingo Weinhold <ingo_weinhold@gmx.de>
|
|
Date: Mon, 19 Jan 2015 15:37:16 -0500
|
|
Subject: On Haiku use the user settings directory instead of HOME
|
|
|
|
|
|
diff --git a/path.c b/path.c
|
|
index d838d4b..d6827aa 100644
|
|
--- a/path.c
|
|
+++ b/path.c
|
|
@@ -19,6 +19,11 @@
|
|
#include "lockfile.h"
|
|
#include "exec-cmd.h"
|
|
|
|
+#ifdef __HAIKU__
|
|
+#include <FindDirectory.h>
|
|
+#include <StorageDefs.h>
|
|
+#endif
|
|
+
|
|
static int get_st_mode_bits(const char *path, int *mode)
|
|
{
|
|
struct stat st;
|
|
@@ -1535,11 +1540,19 @@ char *xdg_config_home_for(const char *subdir, const char *filename)
|
|
{
|
|
const char *home, *config_home;
|
|
|
|
+#ifdef __HAIKU__
|
|
+ char settingsPath[B_PATH_NAME_LENGTH];
|
|
+ assert(filename);
|
|
+ if (find_directory(B_USER_SETTINGS_DIRECTORY, -1, true, settingsPath,
|
|
+ sizeof(settingsPath)) == B_OK)
|
|
+ return mkpathdup("%s/git/%s", settingsPath, filename);
|
|
+#else
|
|
assert(subdir);
|
|
assert(filename);
|
|
config_home = getenv("XDG_CONFIG_HOME");
|
|
if (config_home && *config_home)
|
|
return mkpathdup("%s/%s/%s", config_home, subdir, filename);
|
|
+#endif
|
|
|
|
home = getenv("HOME");
|
|
if (home)
|
|
--
|
|
2.43.2
|
|
|
|
|
|
From 87074365dcc427a60d666bc4ce677824b6634724 Mon Sep 17 00:00:00 2001
|
|
From: Oliver Tappe <zooey@hirschkaefer.de>
|
|
Date: Mon, 19 Jan 2015 15:50:09 -0500
|
|
Subject: Ensure config-directory exists before using it.
|
|
|
|
|
|
diff --git a/config.c b/config.c
|
|
index 77a0fd2..9625246 100644
|
|
--- a/config.c
|
|
+++ b/config.c
|
|
@@ -3300,6 +3300,14 @@ int git_config_set_multivar_in_file_gently(const char *config_filename,
|
|
if (!config_filename)
|
|
config_filename = filename_buf = git_pathdup("config");
|
|
|
|
+ if (find_last_dir_sep(config_filename) != NULL) {
|
|
+ char *config_dir = xstrdup(config_filename);
|
|
+ * find_last_dir_sep(config_dir) = '\0';
|
|
+ if (access(config_dir, F_OK) != 0)
|
|
+ mkdir(config_dir, 0755);
|
|
+ free(config_dir);
|
|
+ }
|
|
+
|
|
/*
|
|
* The lock serves a purpose in addition to locking: the new
|
|
* contents of .git/config will be written into it.
|
|
--
|
|
2.43.2
|
|
|
|
|
|
From caef08d8eb899a5fb3e5b7388e627864637c63a6 Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
|
|
Date: Sun, 14 Feb 2016 10:32:12 +0100
|
|
Subject: Move credential cache to the config directory.
|
|
|
|
Do not clutter the home dir.
|
|
|
|
diff --git a/builtin/credential-cache.c b/builtin/credential-cache.c
|
|
index bef120b..9112f51 100644
|
|
--- a/builtin/credential-cache.c
|
|
+++ b/builtin/credential-cache.c
|
|
@@ -118,7 +118,7 @@ static char *get_socket_path(void)
|
|
{
|
|
struct stat sb;
|
|
char *old_dir, *socket;
|
|
- old_dir = interpolate_path("~/.git-credential-cache", 0);
|
|
+ old_dir = xdg_config_home("credential-cache");
|
|
if (old_dir && !stat(old_dir, &sb) && S_ISDIR(sb.st_mode))
|
|
socket = xstrfmt("%s/socket", old_dir);
|
|
else
|
|
--
|
|
2.43.2
|
|
|
|
|
|
From 9f4d2c847f0a70aac64e72af7510798a65301d73 Mon Sep 17 00:00:00 2001
|
|
From: Oscar Lesta <oscar.lesta@gmail.com>
|
|
Date: Fri, 24 May 2024 15:15:25 -0300
|
|
Subject: config: use "xdg_config" even if "user_config" does not exist
|
|
|
|
Based on the previous patch by: sfanxiang <sfanxiang@gmail.com>
|
|
|
|
diff --git a/config.c b/config.c
|
|
index 9625246..3c0b3d7 100644
|
|
--- a/config.c
|
|
+++ b/config.c
|
|
@@ -2013,18 +2013,12 @@ char *git_global_config(void)
|
|
char *user_config, *xdg_config;
|
|
|
|
git_global_config_paths(&user_config, &xdg_config);
|
|
- if (!user_config) {
|
|
- free(xdg_config);
|
|
- return NULL;
|
|
- }
|
|
-
|
|
- if (access_or_warn(user_config, R_OK, 0) && xdg_config &&
|
|
- !access_or_warn(xdg_config, R_OK, 0)) {
|
|
- free(user_config);
|
|
- return xdg_config;
|
|
- } else {
|
|
- free(xdg_config);
|
|
+ if (!xdg_config)
|
|
return user_config;
|
|
+ else {
|
|
+ if (user_config)
|
|
+ free(user_config);
|
|
+ return xdg_config;
|
|
}
|
|
}
|
|
|
|
--
|
|
2.43.2
|
|
|
|
|
|
From 2fcd662ed91d8d19257b05b4f29eacbd96251eaa Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
|
|
Date: Sun, 18 Nov 2018 11:56:26 +0100
|
|
Subject: Fix detection of Haiku for git web browse
|
|
|
|
The bootloader was renamed, so it is not a reliable thing to use. Detect
|
|
the BEINCLUDES environment variable instead.
|
|
|
|
diff --git a/git-web--browse.sh b/git-web--browse.sh
|
|
index b074d1a..0f95000 100755
|
|
--- a/git-web--browse.sh
|
|
+++ b/git-web--browse.sh
|
|
@@ -133,8 +133,8 @@ if test -z "$browser" ; then
|
|
browser_candidates="cygstart $browser_candidates"
|
|
fi
|
|
|
|
- # /boot/system/haiku_loader indicates Haiku
|
|
- if test -f /boot/system/haiku_loader; then
|
|
+ # BEINCLUDES indicates Haiku
|
|
+ if test -n "$BEINCLUDES"; then
|
|
browser_candidates="open $browser_candidates"
|
|
fi
|
|
|
|
--
|
|
2.43.2
|
|
|
|
|
|
From 0a0191c9582c02f39eed96778d154d1afb86929d Mon Sep 17 00:00:00 2001
|
|
From: Jerome Duval <jerome.duval@gmail.com>
|
|
Date: Fri, 29 Nov 2019 21:46:54 +0100
|
|
Subject: ignore test failures.
|
|
|
|
|
|
diff --git a/t/Makefile b/t/Makefile
|
|
index 2d95046..4cc0249 100644
|
|
--- a/t/Makefile
|
|
+++ b/t/Makefile
|
|
@@ -71,7 +71,7 @@ prove: pre-clean check-chainlint $(TEST_LINT)
|
|
$(MAKE) clean-except-prove-cache
|
|
|
|
$(T):
|
|
- @echo "*** $@ ***"; '$(TEST_SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
|
|
+ - @echo "*** $@ ***"; '$(TEST_SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
|
|
|
|
$(UNIT_TESTS):
|
|
@echo "*** $@ ***"; $@
|
|
--
|
|
2.43.2
|
|
|
|
|
|
From a0f34cd84e222421e4c85c25965996b67b73d8ef Mon Sep 17 00:00:00 2001
|
|
From: Augustin Cavalier <waddlesplash@gmail.com>
|
|
Date: Wed, 17 Nov 2021 18:11:17 -0500
|
|
Subject: git-gui: Use symbolic links.
|
|
|
|
|
|
diff --git a/git-gui/Makefile b/git-gui/Makefile
|
|
index 667c39e..d05a4fd 100644
|
|
--- a/git-gui/Makefile
|
|
+++ b/git-gui/Makefile
|
|
@@ -59,7 +59,7 @@ INSTALL_X1 =
|
|
INSTALL_A0 = find # space is required here
|
|
INSTALL_A1 = | cpio -pud
|
|
INSTALL_L0 = rm -f # space is required here
|
|
-INSTALL_L1 = && ln # space is required here
|
|
+INSTALL_L1 = && ln -s # space is required here
|
|
INSTALL_L2 =
|
|
INSTALL_L3 =
|
|
|
|
@@ -89,7 +89,7 @@ ifndef V
|
|
INSTALL_L0 = dst=
|
|
INSTALL_L1 = && src=
|
|
INSTALL_L2 = && dst=
|
|
- INSTALL_L3 = && echo ' ' 'LINK ' `basename "$$dst"` '->' `basename "$$src"` && rm -f "$$dst" && ln "$$src" "$$dst"
|
|
+ INSTALL_L3 = && echo ' ' 'LINK ' `basename "$$dst"` '->' `basename "$$src"` && rm -f "$$dst" && ln -s "$$src" "$$dst"
|
|
|
|
CLEAN_DST = echo ' ' UNINSTALL
|
|
REMOVE_D0 = dir=
|
|
--
|
|
2.43.2
|
|
|