Github messages for voidlinux
 help / color / mirror / Atom feed
From: Piraty <Piraty@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] [WIP] ccache: update to 4.8.3.
Date: Fri, 27 Oct 2023 14:43:57 +0200	[thread overview]
Message-ID: <20231027124357.14-uVf0kVDadCUObkkGtD3NMv6N365jLH1Z_Y8JQqK8@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-46927@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1321 bytes --]

There is an updated pull request by Piraty against master on the void-packages repository

https://github.com/Piraty/void-packages ccache-4.8.3
https://github.com/void-linux/void-packages/pull/46927

[WIP] ccache: update to 4.8.3.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### TODO
- [ ] winegcc ?
- [ ] afl-gcc ?
- [ ] msp430-gcc ?

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46927.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ccache-4.8.3-46927.patch --]
[-- Type: text/x-diff, Size: 2889 bytes --]

From 130ff0864ec2a85da56e61fac89281b50ff05876 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Fri, 27 Oct 2023 13:08:47 +0200
Subject: [PATCH] ccache: update to 4.8.3, add more compiler symlinks

---
 srcpkgs/ccache/template | 49 ++++++++++++++++++++++++++++++++---------
 1 file changed, 38 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/ccache/template b/srcpkgs/ccache/template
index dd8d1e704ab6e..b18c60e3ae667 100644
--- a/srcpkgs/ccache/template
+++ b/srcpkgs/ccache/template
@@ -1,6 +1,6 @@
 # Template file for 'ccache'
 pkgname=ccache
-version=4.8.2
+version=4.8.3
 revision=1
 build_style=cmake
 configure_args="-DENABLE_TESTING=OFF -DREDIS_STORAGE_BACKEND=OFF
@@ -13,8 +13,8 @@ homepage="https://ccache.dev"
 changelog="https://ccache.dev/releasenotes.html"
 distfiles="https://github.com/ccache/ccache/releases/download/v${version}/ccache-${version}.tar.xz
  https://github.com/ccache/ccache/releases/download/v${version}/ccache-${version}-linux-x86_64.tar.xz"
-checksum="3d3fb3f888a5b16c4fa7ee5214cca76348afd6130e8443de5f6f2424f2076a49
- 0b33f39766fe9db67f40418aed6a5b3d7b2f4f7fab025a8213264b77a2d0e1b1"
+checksum="e47374c810b248cfca3665ee1d86c7c763ffd68d9944bc422d9c1872611f2b11
+ 1021f6dc9641447524cc7bceb72f807f2d6502df118d69dc3f0f86cacf048e79"
 
 if [ -n "$XBPS_CHECK_PKGS" ]; then
 	configure_args+=" -DENABLE_TESTING=ON"
@@ -33,14 +33,41 @@ post_install() {
 	# gcc
 	for f in gcc cc c++ g++; do
 		ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${f}
-		for x in arm-linux-gnueabi arm-linux-gnueabihf armv7l-linux-gnueabihf \
-			arm-linux-musleabihf armv7l-linux-musleabihf aarch64-linux-gnu \
-			i686-pc-linux-gnu aarch64-linux-musl i686-linux-musl \
-			mips-linux-musl mips-linux-muslhf mipsel-linux-musl mipsel-linux-muslhf \
-			powerpc-linux-gnu powerpc-linux-musl \
-			powerpcle-linux-gnu powerpcle-linux-musl \
-			powerpc64-linux-gnu powerpc64-linux-musl \
-			powerpc64le-linux-musl powerpc64le-linux-gnu; do
+		# cross compilers
+		for x in \
+			aarch64-linux-gnu \
+			aarch64-linux-musl \
+			arm-linux-gnueabi \
+			arm-linux-gnueabihf \
+			arm-linux-musleabi \
+			arm-linux-musleabihf \
+			arm-none-eabi \
+			armv7l-linux-gnueabihf \
+			armv7l-linux-musleabihf \
+			avr \
+			i686-linux-musl \
+			i686-pc-linux-gnu \
+			i686-w64-mingw32 \
+			mips-linux-musl \
+			mips-linux-muslhf \
+			mipsel-linux-musl \
+			mipsel-linux-muslhf \
+			musl-gcc \
+			or1k-none-elf \
+			powerpc-linux-gnu \
+			powerpc-linux-musl \
+			powerpc64-linux-gnu \
+			powerpc64-linux-musl \
+			powerpc64le-linux-gnu \
+			powerpc64le-linux-musl \
+			powerpcle-linux-gnu \
+			powerpcle-linux-musl \
+			riscv64-linux-gnu \
+			riscv64-linux-musl \
+			x86_64-linux-gnu \
+			x86_64-linux-musl \
+			x86_64-w64-mingw32 \
+			; do
 			ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${x}-${f}
 		done
 	done

  reply	other threads:[~2023-10-27 12:43 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-27 12:15 [PR PATCH] " Piraty
2023-10-27 12:43 ` Piraty [this message]
2023-12-07 23:38 ` [PR PATCH] [Updated] ccache: update to 4.8.3, add more compiler symlinks Piraty
2023-12-07 23:40 ` Piraty
2023-12-08 17:07 ` [PR PATCH] [Merged]: " Piraty

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231027124357.14-uVf0kVDadCUObkkGtD3NMv6N365jLH1Z_Y8JQqK8@z \
    --to=piraty@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).