internal/rosa/package: azalea proposal

This commit is contained in:
mae
2026-05-23 20:50:35 -05:00
parent 689f972976
commit 0307f781a2
75 changed files with 2854 additions and 2879 deletions

View File

@@ -1,38 +1,38 @@
//az:schema mbf
package strace {
description = "a diagnostic, debugging and instructional userspace utility";
website = "https://strace.io";
anitya = 4897;
description = "a diagnostic, debugging and instructional userspace utility"
website = "https://strace.io"
anitya = 4897
version* = "6.19";
version := "6.19"
source = remoteFile {
url = "https://strace.io/files/"+version+"/strace-"+version+".tar.xz";
checksum = "XJFJJ9XLh_1rHS3m_QNjLKzkkBAooE-QT9p9lJNNWowAmd54IJop_fI4-IFtjeeL";
};
url = "https://strace.io/files/${version}/strace-${version}.tar.xz"
checksum = "XJFJJ9XLh_1rHS3m_QNjLKzkkBAooE-QT9p9lJNNWowAmd54IJop_fI4-IFtjeeL"
}
early = `
sed -i 's/off64_t/off_t/g' \
tests/readahead.c \
tests/sync_file_range.c \
tests/sync_file_range2.c
sed -i 's/unsigned int msg_len;$/uint32_t msg_len;/g' \
tests/nlattr.c
`;
early = `sed -i 's/off64_t/off_t/g' \
tests/readahead.c \
tests/sync_file_range.c \
tests/sync_file_range2.c
sed -i 's/unsigned int msg_len;$/uint32_t msg_len;/g' \
tests/nlattr.c`
exec = make {
configure = {
configure = [
// tests broken on clang
"disable-gcc-Werror";
"disable-gcc-Werror"
"enable-mpers": "no";
};
"enable-mpers": "no"
]
// does not compile on musl
skipCheck = true;
};
skipCheck
}
inputs = [
xz,
xz
kernel-headers,
];
kernel-headers
]
}