diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
| commit | 8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch) | |
| tree | efdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-extended/pigz | |
| parent | d412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff) | |
| download | poky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz | |
The poky repository master branch is no longer being updated.
You can either:
a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs
b) use the new bitbake-setup
You can find information about either approach in our documentation:
https://docs.yoctoproject.org/
Note that "poky" the distro setting is still available in meta-yocto as
before and we continue to use and maintain that.
Long live Poky!
Some further information on the background of this change can be found
in: https://lists.openembedded.org/g/openembedded-architecture/message/2179
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/pigz')
| -rw-r--r-- | meta/recipes-extended/pigz/pigz_2.8.bb | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/meta/recipes-extended/pigz/pigz_2.8.bb b/meta/recipes-extended/pigz/pigz_2.8.bb deleted file mode 100644 index fcf0c93e41..0000000000 --- a/meta/recipes-extended/pigz/pigz_2.8.bb +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | SUMMARY = "A parallel implementation of gzip" | ||
| 2 | DESCRIPTION = "pigz, which stands for parallel implementation of gzip, is a \ | ||
| 3 | fully functional replacement for gzip that exploits multiple processors and \ | ||
| 4 | multiple cores to the hilt when compressing data. pigz was written by Mark \ | ||
| 5 | Adler, and uses the zlib and pthread libraries." | ||
| 6 | HOMEPAGE = "http://zlib.net/pigz/" | ||
| 7 | SECTION = "console/utils" | ||
| 8 | LICENSE = "Zlib & Apache-2.0" | ||
| 9 | LIC_FILES_CHKSUM = "file://pigz.c;md5=9ae6dee8ceba9610596ed0ada493d142;beginline=7;endline=21" | ||
| 10 | |||
| 11 | SRC_URI = "http://zlib.net/${BPN}/fossils/${BP}.tar.gz" | ||
| 12 | SRC_URI[sha256sum] = "eb872b4f0e1f0ebe59c9f7bd8c506c4204893ba6a8492de31df416f0d5170fd0" | ||
| 13 | PROVIDES:class-native += "gzip-native" | ||
| 14 | |||
| 15 | # Point this at the homepage in case /fossils/ isn't updated | ||
| 16 | UPSTREAM_CHECK_URI = "http://zlib.net/${BPN}/" | ||
| 17 | UPSTREAM_CHECK_REGEX = "pigz-(?P<pver>.*)\.tar" | ||
| 18 | |||
| 19 | DEPENDS = "zlib" | ||
| 20 | |||
| 21 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
| 22 | |||
| 23 | inherit update-alternatives | ||
| 24 | |||
| 25 | do_install() { | ||
| 26 | # Install files into /bin (FHS), which is typical place for gzip | ||
| 27 | install -d ${D}${base_bindir} | ||
| 28 | install ${B}/pigz ${D}${base_bindir}/pigz | ||
| 29 | ln -nsf pigz ${D}${base_bindir}/unpigz | ||
| 30 | ln -nsf pigz ${D}${base_bindir}/pigzcat | ||
| 31 | } | ||
| 32 | |||
| 33 | do_install:append:class-native() { | ||
| 34 | install -d ${D}${bindir} | ||
| 35 | install ${B}/pigz ${D}${bindir}/gzip | ||
| 36 | ln -nsf gzip ${D}${bindir}/gunzip | ||
| 37 | ln -nsf gzip ${D}${bindir}/zcat | ||
| 38 | } | ||
| 39 | |||
| 40 | ALTERNATIVE_PRIORITY = "110" | ||
| 41 | ALTERNATIVE:${PN} = "gunzip gzip zcat" | ||
| 42 | ALTERNATIVE:${PN}:class-nativesdk = "" | ||
| 43 | ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" | ||
| 44 | ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" | ||
| 45 | ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" | ||
| 46 | ALTERNATIVE_TARGET = "${base_bindir}/pigz" | ||
| 47 | |||
| 48 | BBCLASSEXTEND = "native nativesdk" | ||
