From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 441FE1582EF for ; Mon, 10 Feb 2025 09:42:25 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1FB503430FB for ; Mon, 10 Feb 2025 09:42:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5BFE5110476; Mon, 10 Feb 2025 09:42:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 50F96110476 for ; Mon, 10 Feb 2025 09:42:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE88E3430F7 for ; Mon, 10 Feb 2025 09:42:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27BA02776 for ; Mon, 10 Feb 2025 09:42:08 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1739122859.e39750a3bb6ffeb16ff7ef57cb80a5948c6f753f.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/ollama/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/ollama/ollama-0.5.7-r1.ebuild X-VCS-Directories: app-misc/ollama/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: e39750a3bb6ffeb16ff7ef57cb80a5948c6f753f X-VCS-Branch: master Date: Mon, 10 Feb 2025 09:42:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2a6597b-df25-4364-9ce1-1a62844e7c3a X-Archives-Hash: 78b90c709663c4e45892dfd22f9aa56f commit: e39750a3bb6ffeb16ff7ef57cb80a5948c6f753f Author: Paul Zander gmail com> AuthorDate: Sun Feb 9 17:40:51 2025 +0000 Commit: David Roman gmail com> CommitDate: Sun Feb 9 17:40:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e39750a3 app-misc/ollama: mark executables as exacutable The build system has exectuables in /usr/lib/ollama/runners/rocm/ ... Bug: https://bugs.gentoo.org/946268#c17 Signed-off-by: Paul Zander gmail.com> app-misc/ollama/ollama-0.5.7-r1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-misc/ollama/ollama-0.5.7-r1.ebuild b/app-misc/ollama/ollama-0.5.7-r1.ebuild index e95741936..120a9b5ff 100644 --- a/app-misc/ollama/ollama-0.5.7-r1.ebuild +++ b/app-misc/ollama/ollama-0.5.7-r1.ebuild @@ -160,6 +160,10 @@ src_install() { doins -r "dist/linux-${ARCH}/lib/ollama" fi + if use rocm; then + fperms +x /usr/lib/ollama/runners/rocm/ollama_llama_server + fi + doinitd "${FILESDIR}"/ollama.init }