Package Details: powershell-bin 7.6.1-1

Git Clone URL: https://aur.archlinux.org/powershell-bin.git (read-only, click to copy)
Package Base: powershell-bin
Description: A cross-platform automation and configuration tool/framework (binary package)
Upstream URL: https://github.com/Powershell/Powershell
Licenses: MIT
Conflicts: powershell
Provides: powershell
Submitter: thamerla
Maintainer: kylesferrazza (carsme, dylanhall)
Last Packager: dylanhall
Votes: 81
Popularity: 3.13
First Submitted: 2017-05-07 11:30 (UTC)
Last Updated: 2026-04-23 01:37 (UTC)

Dependencies (3)

Required by (10)

Sources (3)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

rubin55 commented on 2024-03-02 23:08 (UTC)

The dependency on lttng-ust2.12 can be optional (like in dotnet-runtime):

diff --git a/PKGBUILD b/PKGBUILD
index 1225808..84d0ed5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
 pkgname=powershell-bin
 _name=${pkgname%-bin}
 pkgver=7.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A cross-platform automation and configuration tool/framework (binary package)"
 arch=(x86_64 armv7h aarch64)
 url="https://github.com/Powershell/Powershell"
@@ -13,9 +13,9 @@ license=(MIT)
 depends=(
   gcc-libs
   glibc
-  lttng-ust2.12
   zlib
 )
+optdepends=('lttng-ust2.12: CoreCLR tracing')
 provides=(powershell)
 conflicts=(powershell)
 install=powershell.install

jonstelly commented on 2023-08-02 15:21 (UTC) (edited on 2023-08-02 15:21 (UTC) by jonstelly)

Patch for 7.3.6, checked on x86-64 only

diff --git a/PKGBUILD b/PKGBUILD
index f199751..b1d6cf7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 # Contributor: Tomasz Hamerla <tomasz.hamerla@outlook.com>

 pkgname=powershell-bin
-pkgver=7.3.5
+pkgver=7.3.6
 pkgrel=1
 pkgdesc='A cross-platform automation and configuration tool/framework (binary package)'
 arch=('x86_64' 'armv7h' 'aarch64')
@@ -21,9 +21,9 @@ source_aarch64=("${_artifact}::${url}/releases/download/v${pkgver}/powershell-${
 source_x86_64=("${_artifact}::${url}/releases/download/v${pkgver}/powershell-${pkgver}-linux-x64.tar.gz")
 noextract=("$_artifact")

-sha256sums_x86_64=('7ce08ee7bed1a882e875738198d7f8eb06861f52ebbd9f8823ff08da40e7bd21')
-sha256sums_armv7h=('c4a893b8f25da7578d71cc5ac78e90f6317f95f8fc2a17112f1a462844d817f2')
-sha256sums_aarch64=('96fbeaf8bc57c9bf57b7fd79fad0ce4475be0969e785a6657a11c9a1774dc5e1')
+sha256sums_x86_64=('38BFBA9AA4C914ADF9F9A64B7F5832F8533305B696B5F03D0C3D56F9A2D8A5DC')
+sha256sums_armv7h=('0BD7759895546AC04ED81368C7818036FC8B2D9826E476F0F249DAB51A30797B')
+sha256sums_aarch64=('02702C1373012CE9BD0F6A291D8D2763186CF6A9244CE4D22650BF4A4BD722C3')

 prepare() {
   mkdir -p ${pkgname}-${pkgver}-${pkgrel}

VictorLalle commented on 2023-05-16 12:18 (UTC)

The way to execute the bin is pwsh

crystal_pepsi commented on 2022-11-28 15:52 (UTC)

@kylesferrazza Thanks, package working as expected!

kylesferrazza commented on 2022-11-28 13:35 (UTC)

@crystal_pepsi the binary is called pwsh

crystal_pepsi commented on 2022-11-28 13:29 (UTC)

I installed this package but I cannot run the application.

Pacman -Q shows that powershell-bin 7.3.0-1 is installed. However, I cannot find the application in dmenu, nor can I launch the binary from the terminal.

leonardder commented on 2022-05-27 14:21 (UTC)

Works like a charm here on an rpi with an aarch64 installation.

carsme commented on 2022-05-27 12:25 (UTC)

@leonardder I've published a new pkgver that should work for both aarch64 and armv7h. Can you ensure it works for you?

One downside to this is that we lose the manpages. In my mind this is a fair trade, if anyone disagrees, let me know.

leonardder commented on 2022-05-27 05:48 (UTC)

Could you please consider using the .tar.gz sources for this package and add support for the aarch64 architecture in the process?