diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-20 05:01:06 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-20 05:01:06 +0900 |
| commit | 1a2699b4867b7a736eedd973d69659ef468a994a (patch) | |
| tree | 81c6868c424a59d9c4203f9799c836455b74ec79 /internal/rosa/package | |
| parent | 1d3d621e2fffb82fa512e485ad47298183d13880 (diff) | |
internal/rosa/package: migrate multiple packages
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package')
| -rw-r--r-- | internal/rosa/package/p11-kit.az | 31 | ||||
| -rw-r--r-- | internal/rosa/package/pcre2.az | 30 | ||||
| -rw-r--r-- | internal/rosa/package/pixman.az | 19 | ||||
| -rw-r--r-- | internal/rosa/package/pkg-config.az | 26 | ||||
| -rw-r--r-- | internal/rosa/package/procps.az | 29 |
5 files changed, 135 insertions, 0 deletions
diff --git a/internal/rosa/package/p11-kit.az b/internal/rosa/package/p11-kit.az new file mode 100644 index 00000000..9082dcc9 --- /dev/null +++ b/internal/rosa/package/p11-kit.az @@ -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, + ]; +} diff --git a/internal/rosa/package/pcre2.az b/internal/rosa/package/pcre2.az new file mode 100644 index 00000000..c7fc505c --- /dev/null +++ b/internal/rosa/package/pcre2.az @@ -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 ]; +} diff --git a/internal/rosa/package/pixman.az b/internal/rosa/package/pixman.az new file mode 100644 index 00000000..96ef4a80 --- /dev/null +++ b/internal/rosa/package/pixman.az @@ -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"; + }; + }; +} diff --git a/internal/rosa/package/pkg-config.az b/internal/rosa/package/pkg-config.az new file mode 100644 index 00000000..b8830cf5 --- /dev/null +++ b/internal/rosa/package/pkg-config.az @@ -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, + ]; +} diff --git a/internal/rosa/package/procps.az b/internal/rosa/package/procps.az new file mode 100644 index 00000000..3c351a87 --- /dev/null +++ b/internal/rosa/package/procps.az @@ -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, + ]; +} |
