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,47 +1,49 @@
package curl {
description = "command line tool and library for transferring data with URLs";
website = "https://curl.se";
anitya = 381;
//az:schema mbf
version* = "8.20.0";
package curl {
description = "command line tool and library for transferring data with URLs"
website = "https://curl.se"
anitya = 381
version := "8.20.0"
source = remoteTar {
url = "https://curl.se/download/curl-"+version+".tar.bz2";
checksum = "xyHXwrngIRGMasuzhn-I5MSCOhktwINbsWt1f_LuR-5jRVvyx_g6U1EQfDLEbr9r";
compress = bzip2;
};
url = "https://curl.se/download/curl-${version}.tar.bz2"
checksum = "xyHXwrngIRGMasuzhn-I5MSCOhktwINbsWt1f_LuR-5jRVvyx_g6U1EQfDLEbr9r"
compress = bzip2
}
// remove broken test
writable = true;
early = "\nchmod +w tests/data && rm -f tests/data/test459\n";
writable
early = "chmod +w tests/data && rm -f tests/data/test459"
exec = make {
configure = {
"with-openssl";
"with-ca-bundle": "/system/etc/ssl/certs/ca-bundle.crt";
configure = [
"with-openssl"
"with-ca-bundle": "/system/etc/ssl/certs/ca-bundle.crt"
"disable-smb";
};
"disable-smb"
]
check = [
"TFLAGS=" + jobsLFlagE,
"test-nonflaky",
];
};
"TFLAGS=${jobsLFlagE}"
"test-nonflaky"
]
}
inputs = [
perl,
python,
pkg-config,
diffutils,
perl
python
pkg-config
diffutils
libpsl,
openssl,
];
libpsl
openssl
]
runtime = [
zlib,
zstd,
libpsl,
openssl,
];
zlib
zstd
libpsl
openssl
]
}