Package Details: nchat-git 4.50.r41.g9ebe018-1

Git Clone URL: https://aur.archlinux.org/nchat-git.git (read-only, click to copy)
Package Base: nchat-git
Description: console-based chat client with support for Telegram
Upstream URL: https://github.com/d99kris/nchat
Licenses: MIT
Conflicts: nchat
Provides: nchat
Submitter: jonnieey
Maintainer: jonnieey (xiota)
Last Packager: xiota
Votes: 6
Popularity: 0.028061
First Submitted: 2020-10-26 01:12 (UTC)
Last Updated: 2024-05-24 13:42 (UTC)

Latest Comments

1 2 Next › Last »

gesh commented on 2024-09-17 14:59 (UTC) (edited on 2024-09-17 15:00 (UTC) by gesh)

@xiota FYI, ALARM folks have told me that it is their understanding that while using the AUR to package primarily for other architectures is discouraged, it is OK for packages to mention them (so the arch=(x86_64 aarch64) line should be OK by policy):

> 17:46 <BrainDamage> arm-only packages in the aur aren't seen with good opinion because the aur is meant to be mostly about arch
> 17:47 <BrainDamage> but as long that arm is IN ADDITION, and it works with x86, it's perfectly tolerated
> 17:47 <BrainDamage> as in, I spoke with arch devs with this and that was the consensus

That said, @lu9dce -- even if this patch is rejected, do note that makepkg can be given --ignorearch to skip the architecture-compatibility check. If the package needs anything else in order to build there (I notice you force building with Clang?), you might consider forking the package and posting a copy on the ALARM forums or opening a PR at https://github.com/archlinuxarm/PKGBUILDs

xiota commented on 2024-09-17 10:52 (UTC)

That is a different distro. As already stated, I won't add other architectures unless they work without any other changes.

I also will not create a separate ARM-specific package. Not only do I not want to maintain it, but packages have been deleted from AUR for primarily targeting other architectures.

lu9dce commented on 2024-09-17 10:28 (UTC)

https://archlinuxarm.org/

xiota commented on 2024-09-17 02:16 (UTC)

@lu9dce I won't add other architectures unless they work without any other changes because Arch currently supports only x86_64.

Please edit your previous comment to move the alternate PKGBUILD text to a pastebin.

lu9dce commented on 2024-09-17 01:54 (UTC) (edited on 2024-09-17 10:32 (UTC) by lu9dce)

"With this, it will have support for ARM. The Telegram part needs to be disabled since it is too heavy for ARM. Maybe you could do something to detect if it is x86 or ARM, or create another package, nchat-git-arm. I hope this helps, tested on Raspberry Pi 3."

HaoZeke commented on 2024-04-10 19:18 (UTC)

I've been having trouble with VCS related build flags, kept getting set -buildvcs=false. Finally fixed it with:

diff --git i/PKGBUILD w/PKGBUILD
index a4fbb93..163516c 100644
--- i/PKGBUILD
+++ w/PKGBUILD
@@ -2,7 +2,7 @@

 _pkgname="nchat"
 pkgname="${_pkgname}-git"
-pkgver=4.41.r6.gf0e91a37
+pkgver=4.41.r12.g8f7b24e9
 pkgrel=1
 pkgdesc="console-based chat client with support for Telegram"
 url="https://github.com/d99kris/nchat"
@@ -49,7 +49,7 @@ build() {
   )

   cmake "${_cmake_options[@]}"
-  cmake --build build
+ GOFLAGS='-buildvcs=false' cmake --build build
 }

 package() {