mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 14:21:02 +02:00
powershell-bin: 6.1.3 bump
This commit is contained in:
parent
2604dbf2cc
commit
94c2197a35
2 changed files with 31 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST powershell-6.1.1-1.rhel.7.x86_64.rpm 57714726 BLAKE2B 828f976232b789edf84c0bc2638cba379d2e6ec667122866192401876f360332d3f37922df6c18f6f06959d23a09af31ea8c56a8fd8583b7b67ecb6d5d725a7b SHA512 1bc88bb56311d053f6a69d50e3309f2add9cd4a186348c9aaea844eb54853ecbeaa7128dda2cfccf926a42afa8f359d63aae24039399170f3f6360d92a0d25e7
|
||||
DIST powershell-6.1.3-1.rhel.7.x86_64.rpm 57514559 BLAKE2B 355a237d5c393daf523a6ece2ee018c77457aa3093105ddf56c7d4d075e48aced322e05465140225d2a9394b8fd0f6e802658b0a51d767ee0f8a0b2c9365b6e6 SHA512 973248b56de67309d44569ae5e42b4ae9e4dd44385ce278d9c7206138477006810e9818dc9bc0d52b172b0436f041f7edf1d763821229487d07e77755a061a09
|
||||
|
|
|
|||
30
dev-lang/powershell-bin/powershell-bin-6.1.3.ebuild
Normal file
30
dev-lang/powershell-bin/powershell-bin-6.1.3.ebuild
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit rpm
|
||||
|
||||
DESCRIPTION="A cross-platform automation and configuration tool/framework"
|
||||
HOMEPAGE="https://github.com/Powershell/Powershell"
|
||||
SRC_URI="
|
||||
amd64? ( https://github.com/PowerShell/PowerShell/releases/download/v${PV}/powershell-${PV}-1.rhel.7.x86_64.rpm )
|
||||
"
|
||||
|
||||
LICENSE=""
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}
|
||||
dev-libs/icu
|
||||
sys-libs/libunwind
|
||||
|| ( =dev-libs/openssl-1.0* dev-libs/openssl:1.0.0 )"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_install() {
|
||||
# Using doins -r would strip executable bits from all binaries
|
||||
cp -pPR "${S}"/{opt,usr/bin} "${D}"/ || die "Failed to copy files"
|
||||
}
|
||||
Loading…
Reference in a new issue