Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
0721b0fe6d
|
|||
|
418e4a874d
|
|||
|
8378e7a2c9
|
|||
|
6210c9f272
|
|||
|
c2038fa925
|
|||
|
d797cca1f2
|
|||
|
2a51b433c8
|
|||
|
e5ce36532b
|
|||
|
4c647388b0
|
+4
-1
@@ -309,7 +309,10 @@ func parse(
|
||||
c.SystemBus = nil
|
||||
}
|
||||
|
||||
if c.Container.Flags&hst.FShareTmpdir == 0 {
|
||||
if c.Container.Flags&hst.FShareTmpdir == 0 &&
|
||||
(c.Enablements.Unwrap()&hst.EX11 == 0 ||
|
||||
c.Container.Flags&(hst.FHostNet|hst.FHostAbstract) ==
|
||||
hst.FHostNet|hst.FHostAbstract) {
|
||||
c.Container.Filesystem = append(c.Container.Filesystem,
|
||||
hst.FilesystemConfigJSON{FilesystemConfig: &hst.FSEphemeral{
|
||||
Target: fhs.AbsTmp,
|
||||
|
||||
@@ -3,10 +3,10 @@ package curl {
|
||||
website = "https://curl.se";
|
||||
anitya = 381;
|
||||
|
||||
version# = "8.20.0";
|
||||
version# = "8.21.0";
|
||||
source = remoteTar {
|
||||
url = "https://curl.se/download/curl-"+version+".tar.bz2";
|
||||
checksum = "xyHXwrngIRGMasuzhn-I5MSCOhktwINbsWt1f_LuR-5jRVvyx_g6U1EQfDLEbr9r";
|
||||
checksum = "lJSm8bVjS0OmsarEdbvejdQdvXsb7yGarlr6oMtA9FW1EXOga8zZxa1LPtfaq_qX";
|
||||
compress = bzip2;
|
||||
};
|
||||
|
||||
|
||||
@@ -2,11 +2,11 @@ package hakurei-source {
|
||||
description = "hakurei source tree";
|
||||
exclude = true;
|
||||
|
||||
version# = "0.4.4";
|
||||
version# = "0.4.5";
|
||||
output = remoteTar {
|
||||
url = "https://git.gensokyo.uk/rosa/hakurei/archive/"+
|
||||
"v"+version+".tar.gz";
|
||||
checksum = "BCIKpRiVv2tDg8lyX1bG_VgTBBMFCByv726x6DfJ0LiRg5ma4T5fcxYUaQl8JMVB";
|
||||
checksum = "5bvbuIRcDIrtijogwqXn3y8h5f3rVS4ZSVhOig6Galfzt3g-O3Ufb-tHL1kQCQWK";
|
||||
compress = gzip;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@ package libpsl {
|
||||
website = "https://rockdaboot.github.io/libpsl";
|
||||
anitya = 7305;
|
||||
|
||||
version# = "0.21.5";
|
||||
version# = "0.22.0";
|
||||
source = remoteGitHubRelease {
|
||||
suffix = "rockdaboot/libpsl";
|
||||
tag = version;
|
||||
name = "libpsl-"+version+".tar.gz";
|
||||
checksum = "XjfxSzh7peG2Vg4vJlL8z4JZJLcXqbuP6pLWkrGCmRxlnYUFTKNBqWGHCxEOlCad";
|
||||
checksum = "sYrq75kNAJvU5gA2gv2tFYIFbFFit6PuYuW1tYSgcsJsIUzwMJTodofsaEGq3iGf";
|
||||
compress = gzip;
|
||||
};
|
||||
|
||||
@@ -21,5 +21,8 @@ test_disable 'int main(){return 0;}' tests/test-is-public-builtin.c
|
||||
|
||||
exec = make {};
|
||||
|
||||
inputs = [ python ];
|
||||
inputs = [
|
||||
pkg-config,
|
||||
python,
|
||||
];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
package noto {
|
||||
description = "a typeface for the world";
|
||||
website = "https://fonts.google.com/noto";
|
||||
anitya = 10671;
|
||||
|
||||
version# = "2026.06.01";
|
||||
source = remoteGitHub {
|
||||
suffix = "notofonts/notofonts.github.io";
|
||||
tag = "noto-monthly-release-"+version;
|
||||
checksum = "QpCYYssOY-OIFKn0_K_7JG7Ij2VDbIkccWrWTC4db1ZPPE1yZnLrf7Kja-IuB4XS";
|
||||
};
|
||||
|
||||
enterSource = true;
|
||||
exec = generic {
|
||||
inPlace = true;
|
||||
install = `
|
||||
DEST=/work/system/share/fonts/noto
|
||||
for font in $(ls -d fonts/*/); do
|
||||
if [[ -d "$font"unhinted/variable-ttf ]]; then
|
||||
install -m444 -vDt "$DEST" "$font"unhinted/variable-ttf/*.ttf
|
||||
elif [[ -d "$font"unhinted/otf ]]; then
|
||||
install -m444 -vDt "$DEST" "$font"unhinted/otf/*.otf
|
||||
else
|
||||
install -m444 -vDt "$DEST" "$font"unhinted/ttf/*.ttf
|
||||
fi
|
||||
done
|
||||
rename -v 's/\[.*\]//' $DEST/*
|
||||
`;
|
||||
};
|
||||
|
||||
inputs = [ rename ];
|
||||
}
|
||||
@@ -124,11 +124,11 @@ package python-vcs-versioning {
|
||||
website = "https://setuptools-scm.readthedocs.io/en/latest";
|
||||
anitya = 389421;
|
||||
|
||||
version# = "2.1.1";
|
||||
version# = "2.1.2";
|
||||
source = remoteGitHub {
|
||||
suffix = "pypa/setuptools-scm";
|
||||
tag = "vcs-versioning-v"+version;
|
||||
checksum = "9QRY65iBhyohRC0xPJeq4KUalL-a7p3qTPeD7Y7l6O4qMfvq0psg0X-bb4WPqdGW";
|
||||
checksum = "dpIi_triKEwcEWw5Bmc91rFooAYqu-zXHqar1894wGrS2hRHK4YR0MTwNwGvt2KS";
|
||||
};
|
||||
|
||||
env = [
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
package rename {
|
||||
description = "rename renames the filenames supplied according to the rule specified as the first argument";
|
||||
website = "https://search.cpan.org/dist/rename";
|
||||
anitya = 14302;
|
||||
|
||||
version# = "1.16.2";
|
||||
// CPAN missing files
|
||||
source = remoteGitHub {
|
||||
suffix = "pstray/rename";
|
||||
tag = "v"+version;
|
||||
checksum = "4VTeBcv1-oa_OlxpKS4h9ZxZMEq1wrk8hzaiBVZTMYCVQ0adDZ8ubPZ3VFf6qqeo";
|
||||
};
|
||||
|
||||
exec = makeMaker {};
|
||||
|
||||
runtime = [ perl ];
|
||||
}
|
||||
@@ -2,10 +2,10 @@ package toybox-source {
|
||||
description = "toybox source tree";
|
||||
exclude = true;
|
||||
|
||||
version# = "0.8.13";
|
||||
version# = "0.8.14";
|
||||
output = remoteTar {
|
||||
url = "https://landley.net/toybox/downloads/toybox-"+version+".tar.gz";
|
||||
checksum = "rZ1V1ATDte2WeQZanxLVoiRGdfPXhMlEo5-exX-e-ml8cGn9qOv0ABEUVZpX3wTI";
|
||||
checksum = "RZQp2CTsLt_y15vsZxwqUb2O1XfK7uvwn-2sTd38O4HAsFKPQpS1UP0brYJ3dRA-";
|
||||
compress = gzip;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -2,6 +2,8 @@ package vim {
|
||||
description = "a greatly improved version of the good old UNIX editor Vi";
|
||||
website = "https://www.vim.org";
|
||||
anitya = 5092;
|
||||
exclude = true;
|
||||
block = "not exposed to end users";
|
||||
|
||||
version# = "9.2.0707";
|
||||
source = remoteGitHub {
|
||||
|
||||
Reference in New Issue
Block a user