diff options
author | Fabian Groffen <grobian@gentoo.org> | 2020-08-17 17:05:29 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2020-08-17 17:05:29 +0200 |
commit | aa66d89f08797cc9d4f48e670fc277a57d1873bf (patch) | |
tree | d23d7d0aac181c8c4cf20a74a239cb85ad25bb43 /app-portage | |
parent | dev-libs/redland-bindings: sparc stable wrt bug #735296 (diff) | |
download | gentoo-aa66d89f08797cc9d4f48e670fc277a57d1873bf.tar.gz gentoo-aa66d89f08797cc9d4f48e670fc277a57d1873bf.tar.bz2 gentoo-aa66d89f08797cc9d4f48e670fc277a57d1873bf.zip |
app-portage/portage-utils-0.89: version bump
Closes: https://bugs.gentoo.org/711896
Closes: https://bugs.gentoo.org/698462
Closes: https://bugs.gentoo.org/723422
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/portage-utils/Manifest | 2 | ||||
-rw-r--r-- | app-portage/portage-utils/portage-utils-0.89.ebuild (renamed from app-portage/portage-utils/portage-utils-0.80.ebuild) | 18 |
2 files changed, 2 insertions, 18 deletions
diff --git a/app-portage/portage-utils/Manifest b/app-portage/portage-utils/Manifest index febf97a95729..26e9608deff3 100644 --- a/app-portage/portage-utils/Manifest +++ b/app-portage/portage-utils/Manifest @@ -1,3 +1,3 @@ -DIST portage-utils-0.80.tar.xz 1762692 BLAKE2B 32e4502d517ec088eadf17a4a348b9b9bc33348380b65f93ac7c043150732ba3ff0d18ee96f8877c697a91000fdc036de392d6e6711d62248bb7c57e25d4433f SHA512 cca86877e87e5bd2e9423822db4b7afa15e8f291717c808ef0455b121db0778b2364552e9f1d5e1a8bad3f1f8880ae2b5dbd586bf1dd74d7c4f4e72fa990c78c DIST portage-utils-0.87.tar.xz 1772956 BLAKE2B b1487d89303b524ffa9e6030feba181fcad73a6f38febf29f63b1f7bcd7a5080ddb1f907ca217040d064427f2060bb3885a61c30663594428be475a5bf7253f0 SHA512 a29f2d1fc85aea1c2b4c8b16fca0e9b559a980951f79cb10d7fd836d99ec65a904f2cbc54a949150ce490ba5d705b0aa5aa39f56365968b3dd591cb3d7c5eb21 DIST portage-utils-0.88.tar.xz 1776100 BLAKE2B 5165c99f163a39e2d8e9d503a43982999e70ff647af16acaae84279d17c327e78c2722fa9f332c570e8bfed7647ebb7f96281c3ed2c42948234fb23192e73ca5 SHA512 f5bddd170b66753bf3abd870add6f893e31ae971cc15f3b34366fbbd6d69848aa8aa301bbf3e4185f152ce110e890178828f867e64d8ede74c17e819c2961562 +DIST portage-utils-0.89.tar.xz 1775088 BLAKE2B 6218cd3a5a435622366550857753529b38a8c2c9dbc2c9d72d3ce8517679fb782caded843807cebd606294a5ecb6dd110311e8da95d54626126b091ee902ab1d SHA512 c285901f1200f0ee81a4cd12840f5b4938fa525ce3611458287d6f5439c78b9ecf5ec0dc40d759fe5e6a848d4fd13b6d9ac38222ebf2c4453a60f9fdb842a55c diff --git a/app-portage/portage-utils/portage-utils-0.80.ebuild b/app-portage/portage-utils/portage-utils-0.89.ebuild index dfef3cd8c858..aa5f157c1b9d 100644 --- a/app-portage/portage-utils/portage-utils-0.80.ebuild +++ b/app-portage/portage-utils/portage-utils-0.89.ebuild @@ -15,12 +15,10 @@ if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage-utils.git" else SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi RDEPEND=" - static? ( dev-libs/iniparser:0[static-libs] ) - !static? ( dev-libs/iniparser:0 ) qmanifest? ( openmp? ( || ( @@ -71,17 +69,3 @@ src_configure() { $(use_enable openmp) \ $(use_enable static) } - -pkg_postinst() { - local pvr - local doshow= - for pvr in ${REPLACING_VERSIONS} ; do - [[ ${pvr} != "0.8"[01]* ]] && doshow=true - done - - if [[ ${doshow} == true ]] ; then - elog "This version of Portage utils has undergone significant changes." - elog "Please read the elog manpages for applets like qlop(1) and" - elog "qfile(1) where argument options have changed." - fi -} |