internal/rosa/package: migrate multiple packages

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-05-20 05:01:06 +09:00
parent 1d3d621e2f
commit 1a2699b486
10 changed files with 135 additions and 180 deletions

View File

@@ -0,0 +1,31 @@
package p11-kit {
description = "provides a way to load and enumerate PKCS#11 modules";
website = "https://p11-glue.freedesktop.org/p11-kit.html";
anitya = 2582;
version* = "0.26.2";
source = remoteGit {
url = "https://github.com/p11-glue/p11-kit.git";
tag = version;
checksum = "3ei-6DUVtYzrRVe-SubtNgRlweXd6H2qHmUu-_5qVyIn6gSTvZbGS2u79Y8IFb2N";
};
exec = meson {
setup = {
"Dsystemd": "disabled";
"Dlibffi": "enabled";
};
};
inputs = [
coreutils,
diffutils,
libtasn1,
];
runtime = [
libffi,
libtasn1,
];
}

View File

@@ -0,0 +1,30 @@
package pcre2 {
description = "a set of C functions that implement regular expression pattern matching";
website = "https://pcre2project.github.io/pcre2";
anitya = 5832;
version* = "10.47";
source = remoteGitHubRelease {
suffix = "PCRE2Project/pcre2";
tag = "pcre2-"+version;
name = "pcre2-"+version+".tar.bz2";
checksum = "IbC24vVayju6nB9EhrBPSDexk22wDecdpyrjgC3nCZXkwTnUjq4CD2q5sopqu6CW";
compress = bzip2;
};
early = `
# RunGrepTest expects /bin/echo
ln -s ../system/bin/toybox /bin/echo
`;
exec = make {
configure = {
"enable-jit";
"enable-pcre2-8";
"enable-pcre2-16";
"enable-pcre2-32";
};
};
inputs = [ diffutils ];
}

View File

@@ -0,0 +1,19 @@
package pixman {
description = "a low-level software library for pixel manipulation";
website = "https://pixman.org";
anitya = 3648;
version* = "0.46.4";
source = remoteGitLab {
domain = "gitlab.freedesktop.org";
suffix = "pixman/pixman";
ref = "pixman-"+version;
checksum = "iECDxLG9SxUrvGHqeDoaBa-b3uqdT5DC4zudjtrwb8Wodq82pyacmFNEAo4SDsiE";
};
exec = meson {
setup = {
"Dtests": "enabled";
};
};
}

View File

@@ -0,0 +1,26 @@
package pkg-config {
description = "a helper tool used when compiling applications and libraries";
website = "https://pkgconfig.freedesktop.org";
anitya = 3649;
version* = "0.29.2";
source = remoteGitLab {
domain = "gitlab.freedesktop.org";
suffix = "pkg-config/pkg-config";
ref = "pkg-config-"+version;
checksum = "6UsGqEMA8EER_5b9N0b32UCqiRy39B6_RnPfvuslWhtFV1qYD4DfS10crGZN_TP2";
};
exec = make {
generate = "./autogen.sh --no-configure";
configure = {
"CFLAGS": "'-Wno-int-conversion'";
"with-internal-glib";
};
};
inputs = [
automake,
libtool,
];
}

View File

@@ -0,0 +1,29 @@
package procps {
description = "command line and full screen utilities for browsing procfs";
website = "https://gitlab.com/procps-ng/procps";
anitya = 3708;
version* = "4.0.6";
source = remoteGitLab {
domain = "gitlab.com";
suffix = "procps-ng/procps";
ref = "v"+version;
checksum = "pl_fZLvDlv6iZTkm8l_tHFpzTDVFGCiSJEs3eu0zAX6u36AV36P_En8K7JPScRWM";
};
exec = make {
generate = "./autogen.sh";
configure = {
"without-ncurses";
};
};
inputs = [
automake,
gettext,
libtool,
gzip,
pkg-config,
];
}