mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 23:00:06 -07:00
meta: swap to samurai and drop ninja
This commit is contained in:
parent
f61c1617bd
commit
e27b638dda
@ -1,2 +1,2 @@
|
||||
ninja
|
||||
python
|
||||
samurai
|
||||
|
@ -1 +1 @@
|
||||
0.52.0 1
|
||||
0.52.0 2
|
||||
|
@ -1,8 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
patch -p1 < fix-musl.patch
|
||||
|
||||
python configure.py \
|
||||
--bootstrap
|
||||
|
||||
install -m755 -D ninja "$1/usr/bin/ninja"
|
@ -1,2 +0,0 @@
|
||||
5d7ec75828f8d3fd1a0c2f31b5b0cea780cdfe1031359228c428c1a48bfcd5b9 v1.9.0.tar.gz
|
||||
322b1bed1fba2e7a26f030f01d0c2ef570bf01424296b0116cc45d59ea40ea50 fix-musl.patch
|
@ -1 +0,0 @@
|
||||
python make
|
@ -1,39 +0,0 @@
|
||||
2ff54ad7478a90bd75c91e434236a Mon Sep 17 00:00:00 2001
|
||||
From: makepost <makepost@firemail.cc>
|
||||
Date: Mon, 24 Dec 2018 03:13:16 +0200
|
||||
Subject: [PATCH] Use st_mtim if st_mtime is macro, fix #1510
|
||||
|
||||
In POSIX.1-2008, sys_stat has a st_mtim member and a st_mtime backward
|
||||
compatibility macro. Should help avoid hardcoding platform detection.
|
||||
---
|
||||
src/disk_interface.cc | 14 ++++----------
|
||||
1 file changed, 4 insertions(+), 10 deletions(-)
|
||||
|
||||
diff --git a/src/disk_interface.cc b/src/disk_interface.cc
|
||||
index d4c2fb087..dc297c449 100644
|
||||
--- src/disk_interface.cc
|
||||
+++ /src/disk_interface.cc
|
||||
@@ -202,19 +202,13 @@ TimeStamp RealDiskInterface::Stat(const string& path, string* err) const {
|
||||
// that it doesn't exist.
|
||||
if (st.st_mtime == 0)
|
||||
return 1;
|
||||
-#if defined(__APPLE__) && !defined(_POSIX_C_SOURCE)
|
||||
+#if defined(_AIX)
|
||||
+ return (int64_t)st.st_mtime * 1000000000LL + st.st_mtime_n;
|
||||
+#elif defined(__APPLE__)
|
||||
return ((int64_t)st.st_mtimespec.tv_sec * 1000000000LL +
|
||||
st.st_mtimespec.tv_nsec);
|
||||
-#elif (_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700 || defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || \
|
||||
- defined(__BIONIC__) || (defined (__SVR4) && defined (__sun)) || defined(__FreeBSD__))
|
||||
- // For glibc, see "Timestamp files" in the Notes of http://www.kernel.org/doc/man-pages/online/pages/man2/stat.2.html
|
||||
- // newlib, uClibc and musl follow the kernel (or Cygwin) headers and define the right macro values above.
|
||||
- // For bsd, see https://github.com/freebsd/freebsd/blob/master/sys/sys/stat.h and similar
|
||||
- // For bionic, C and POSIX API is always enabled.
|
||||
- // For solaris, see https://docs.oracle.com/cd/E88353_01/html/E37841/stat-2.html.
|
||||
+#elif defined(st_mtime) // A macro, so we're likely on modern POSIX.
|
||||
return (int64_t)st.st_mtim.tv_sec * 1000000000LL + st.st_mtim.tv_nsec;
|
||||
-#elif defined(_AIX)
|
||||
- return (int64_t)st.st_mtime * 1000000000LL + st.st_mtime_n;
|
||||
#else
|
||||
return (int64_t)st.st_mtime * 1000000000LL + st.st_mtimensec;
|
||||
#endif
|
@ -1,2 +0,0 @@
|
||||
https://github.com/martine/ninja/archive/v1.9.0.tar.gz
|
||||
patches/fix-musl.patch
|
@ -1 +0,0 @@
|
||||
1.9.0 1
|
6
extra/samurai/build
Executable file
6
extra/samurai/build
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
make PREFIX=/usr
|
||||
make PREFIX=/usr DESTDIR="$1" install
|
||||
|
||||
ln -s samu "$1/usr/bin/ninja"
|
1
extra/samurai/checksums
Normal file
1
extra/samurai/checksums
Normal file
@ -0,0 +1 @@
|
||||
e079e8de3b07ba0f1fffe2dff31c1fcb3be357c523abc6937108635a081a11f0 samurai-0.7.tar.gz
|
1
extra/samurai/sources
Normal file
1
extra/samurai/sources
Normal file
@ -0,0 +1 @@
|
||||
https://github.com/michaelforney/samurai/releases/download/0.7/samurai-0.7.tar.gz
|
1
extra/samurai/version
Normal file
1
extra/samurai/version
Normal file
@ -0,0 +1 @@
|
||||
0.7 1
|
@ -1,3 +1,2 @@
|
||||
mesa make
|
||||
meson make
|
||||
ninja make
|
||||
|
@ -13,7 +13,6 @@ libxcb
|
||||
libxshmfence
|
||||
llvm
|
||||
meson make
|
||||
ninja make
|
||||
python make
|
||||
python-mako make
|
||||
xorgproto
|
||||
|
Loading…
Reference in New Issue
Block a user