mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
app-shells/pwsh-bin: drop old 7.6.1
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
@@ -1,6 +1,3 @@
|
||||
DIST powershell-7.6.1-linux-arm32.tar.gz 74859588 BLAKE2B 8bea078e0a29ef94a69c625cbe20124dc3cca4da58bbf89c1427cf12365adf1cd870db4844d263e49dab8a656136ea0a67f760c9637174306a5129d70c36d0d4 SHA512 664de3fdfd70694d253b408d60d1319136d550e67497085d6c7806bc198f85eac5efcdf3d7480dc7a244525fdc3232f407981243cd67adef24188ccd0549624e
|
||||
DIST powershell-7.6.1-linux-arm64.tar.gz 73692902 BLAKE2B 148141fbca0c84252de7b3f3e547194bd07b9e9de7a4a61e2b0969b34b061a147938a8b85ee9ca258d7d67821608e922f7b927754d0a1e5510be07dbfe67f695 SHA512 f165e34db2fe6799583a6847871f30c1096404b3637306a2ec8a1e646569810f5f78eff2bddc37eff36e85755a86cff4b00a147b975a5eb020fb6f8b240223f3
|
||||
DIST powershell-7.6.1-linux-x64.tar.gz 77667171 BLAKE2B 5fb5e1b39dbb65c74f2f21b5446e55e88f83b3ddd98aa54b2724a939be713eb88b9c967af43893829af413c55a301c4ce1ed6cd7ef2e03d6504d2ac8b310fe49 SHA512 2a0670a70d02dd1cb0481483a45cebde818afd93970b2a787efd2adbc94c8a54496dc20ab4b2bdb52110eedb4266cf3e44a2b868b132ffc6b98232175a0bec52
|
||||
DIST powershell-7.6.2-linux-arm32.tar.gz 74805874 BLAKE2B 311cfb67e0d83ead5bb06c0324698eb46dddc7c08210b597df64d2ac61b2739b555176375a665fd86ed20270fc2e56efeade2574fa7131775c0c89ba7fbc7bf3 SHA512 1ccfdd50f14ebb6948bed85ffca55bba99d91830031ded0a49e2181f0405a91f33731d2955167620f020ba8372bddb01361663d55ed1c152bb9a236ee0518eb8
|
||||
DIST powershell-7.6.2-linux-arm64.tar.gz 73644007 BLAKE2B 684438a2c76868535f4a52b31928c774b3a43b492949fc699e9fac750616044e02449bc5d540a82f867839c7f0f9d51594e7ad9beb041d87851a710fe7a05778 SHA512 97b6e78208e1dd428b7d0786cc90a647b0f4d4cf939be2454a33f6c710fe5954fd0643befd4cecb69adba78eaf8ad453595d7413a58415e510c4136bb6856210
|
||||
DIST powershell-7.6.2-linux-x64.tar.gz 77648422 BLAKE2B 9016fc6430c747db7a9b8050ed4a229cc289ea6cd6aaf599f6ca8c475134ef17abbff3c8d992dfed52ccfc41e47df36ea49dff083bce58d406e4aaee7bed9924 SHA512 effb505a891664d7c885129be67dc829218a074569c36dc00dcb3706435c72075c63ed67a1c533c044944993eefe460500c447163cab9f5b43233cd4d9d51b95
|
||||
|
||||
@@ -1,72 +0,0 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit wrapper
|
||||
|
||||
DESCRIPTION="Cross-platform automation and configuration tool (binary package)"
|
||||
HOMEPAGE="https://microsoft.com/powershell/
|
||||
https://github.com/PowerShell/PowerShell/"
|
||||
|
||||
BASE_URI="https://github.com/PowerShell/PowerShell/releases/download/"
|
||||
SRC_URI="
|
||||
amd64? ( ${BASE_URI}/v${PV}/powershell-${PV}-linux-x64.tar.gz )
|
||||
arm64? ( ${BASE_URI}/v${PV}/powershell-${PV}-linux-arm64.tar.gz )
|
||||
arm? ( ${BASE_URI}/v${PV}/powershell-${PV}-linux-arm32.tar.gz )
|
||||
"
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="$(ver_cut 1-2)"
|
||||
KEYWORDS="~amd64 ~arm ~arm64"
|
||||
REQUIRED_USE="elibc_glibc"
|
||||
RESTRICT="splitdebug"
|
||||
|
||||
RDEPEND="
|
||||
app-crypt/mit-krb5:0/0
|
||||
dev-libs/icu
|
||||
dev-libs/openssl-compat:1.0.0
|
||||
sys-libs/pam:0/0
|
||||
virtual/zlib:0/1
|
||||
|| (
|
||||
dev-util/lttng-ust-compat:0/2.12
|
||||
dev-util/lttng-ust:0/2.12
|
||||
)
|
||||
"
|
||||
IDEPEND="
|
||||
app-eselect/eselect-pwsh
|
||||
"
|
||||
|
||||
QA_PREBUILT="*"
|
||||
|
||||
src_install() {
|
||||
local -a broken_symlinks
|
||||
broken_symlinks=( libcrypto.so.1.0.0 libssl.so.1.0.0 )
|
||||
|
||||
local symlink
|
||||
for symlink in "${broken_symlinks[@]}" ; do
|
||||
if [[ -L "${symlink}" ]] ; then
|
||||
rm "${symlink}" || die "failed to remove ${symlink}"
|
||||
fi
|
||||
done
|
||||
|
||||
local dest="opt/${PN}-${SLOT}"
|
||||
local dest_root="/${dest}"
|
||||
|
||||
insinto "${dest_root}"
|
||||
doins -r .
|
||||
|
||||
fperms 0755 "${dest_root}/pwsh"
|
||||
|
||||
local gentoo_path='PSModulePath="${PSModulePath}:${EPREFIX}/usr/share/GentooPowerShell/Modules:"'
|
||||
make_wrapper "${PN}-${SLOT}" "env ${gentoo_path} ${dest_root}/pwsh"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
eselect pwsh update ifunset
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
eselect pwsh update ifunset
|
||||
}
|
||||
Reference in New Issue
Block a user