Package Details: apple-fonts 6-2

Git Clone URL: https://aur.archlinux.org/apple-fonts.git (read-only, click to copy)
Package Base: apple-fonts
Description: Fonts for Apple platforms, including San Francisco and New York typefaces
Upstream URL: https://developer.apple.com/fonts/
Licenses: custom
Provides: ttf-font
Submitter: ilbuonmarcio
Maintainer: ilbuonmarcio (Bubbu0129)
Last Packager: ilbuonmarcio
Votes: 37
Popularity: 0.87
First Submitted: 2021-03-13 19:14 (UTC)
Last Updated: 2024-10-01 22:15 (UTC)

Latest Comments

1 2 3 4 Next › Last »

azea commented on 2024-10-20 20:38 (UTC)

Yep, that did the trick!

kryczkal commented on 2024-10-03 11:56 (UTC) (edited on 2024-10-03 11:57 (UTC) by kryczkal)

@azea What resolved the issue for me was clearing the cache of my AUR helper. (I had the issue even with p7zip and I never once used 7-zip-full).

In the case of paru, the command to do that was:

paru -Sccd

alexsteffen commented on 2024-10-03 01:44 (UTC) (edited on 2024-10-03 01:45 (UTC) by alexsteffen)

Still having the issue with the validity check. I used the tip from ArcanusNEO and installed p7zip and it worked. There must be an issue with 7-zip-full with respect to extracting dmg and pkg files.

ilbuonmarcio commented on 2024-10-01 22:15 (UTC)

@azea fixed!

azea commented on 2024-09-30 16:23 (UTC)

Getting an issue now with some of the files not passing the validity check.

==> Validating source files with sha256sums... SF-Pro.dmg ... FAILED SF-Compact.dmg ... FAILED SF-Mono.dmg ... FAILED NY.dmg ... FAILED ==> ERROR: One or more files did not pass the validity check!

ArcanusNEO commented on 2024-06-15 11:24 (UTC)

I found that it was actually the difference in decompression behavior between 7-zip-full and original p7zip that caused the build to fail. Using p7zip works just fine. Maybe I can figure out a way to make both work at the same time.

Bubbu0129 commented on 2024-06-15 09:28 (UTC)

Yeah, bumping up pkgrel makes more sense.

jvybihal commented on 2024-06-15 07:43 (UTC)

@Bubbu0129 yeah, I also think that bumping version to 6 makes sense. Also when updating the package (eg. checksums), the pkgrel should bump up so we can easily detect update. The extract from .dmg works fine, no need for ArcanusNEO's patch.

Bubbu0129 commented on 2024-06-15 07:32 (UTC)

@ArcanusNEO I'm not having any issues building the package. *.pkg is a file, not a directory. I got an error message when running your patch.

Command Line Error:
Cannot find archive

ArcanusNEO commented on 2024-06-15 04:53 (UTC)

The file structure changes caused the build to fail. This patch can fix it:

diff --git a/PKGBUILD b/PKGBUILD
index 75dfd74..31ba1ad 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -35,6 +35,7 @@ prepare() {
         7z e "$archive" -y -osrc/
         cd src/
         7z x *.pkg -y
+        7z x *.pkg/Payload
         7z x 'Payload~'
         mv Library/Fonts/* "$srcdir/fonts/"
         cd "$srcdir"