Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
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,
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user