sys-apps/ibm-powerpc-utils: Version bump
authorLuca Barbato <lu_zero@gentoo.org>
Sun, 12 Aug 2018 17:03:45 +0000 (17:03 +0000)
committerLuca Barbato <lu_zero@gentoo.org>
Sun, 12 Aug 2018 17:09:49 +0000 (17:09 +0000)
Use the latest release from upstream.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

sys-apps/ibm-powerpc-utils/Manifest
sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.5.ebuild [new file with mode: 0644]

index aaf215ea4eacc3429843ec1dfc443b38255ac122..e22a1ef65be49d708d9918cbc28e6c7839f065e0 100644 (file)
@@ -1,3 +1,4 @@
+DIST ibm-powerpc-utils-1.3.5.tar.gz 318046 BLAKE2B cb154dd6203aea2f95c8cce96e3ea5f40c0c4d9f8c649c988d0d66adfc475bb15764554160faeeebddd5569de39502c149bf93f08fa433e8e309498fff59cae1 SHA512 a01f8fc45abd91d0629f8f48e3c2877a863aa1f244907bb65fcc457c2c933e7043181666c237956723f956b7c3d7ce7a0cedc36eaf26ce3cf777aa8f0525244d
 DIST powerpc-utils-1.1.0.tar.gz 49368 BLAKE2B 89ca27c8db0a91fd8129208bef5cb25908dd30480c5925907827db8de1f65b7d223c7cc4ced67542f900b6b58747a367b2284ee6ff29aca5f021356e1068b5fe SHA512 16a757d66315b5ec50d2ae42223ab7b5147df1dc91cd56343c3cea19b8ab1fbd67674666f394cd519fa4dc2a0ec4b3ee5cdeb34cc6c17e9f4ef5fa0fc4e90402
 DIST powerpc-utils-1.2.12.tar.gz 347762 BLAKE2B 3bda5a275dfa4bd6e86b565acfb01bab502584666f8c78bbbe201d4d23f319eb58336067f304619961c756af3e1375f1f204a212cee4be805534ad92a3508a73 SHA512 a28150c753e65c7595a7ad7a5361560b162c639bc6d385763c57d0c02f2b6e15db7e091be167d3c68aa1378f816a75971c5d60c1997dfa96be4a73f072863649
 DIST powerpc-utils-1.2.2.tar.gz 345299 BLAKE2B de43a79b62302a2994bb6dbb84a1ffe34f33b0bed150e3fc4faff0f3499988f329fc1309bdbb1bc78089b690ce53666b1757b36bbc63e3643d9590a7ed6c45d3 SHA512 e33b5294aff5d66a61740e4817ff274004f9798073e21a3eff896858d43dfa2dcf43669ece58f0fdcb503d42109d9bf574d2f35a0c06da3cd9139b34a249b929
diff --git a/sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.5.ebuild b/sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.5.ebuild
new file mode 100644 (file)
index 0000000..1bc1771
--- /dev/null
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils
+
+DESCRIPTION="Utilities for the maintainance of the IBM and Apple PowerPC platforms"
+HOMEPAGE="https://github.com/ibm-power-utilities/powerpc-utils"
+SRC_URI="https://github.com/ibm-power-utilities/${PN//ibm-}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE="+rtas"
+
+S="${WORKDIR}/${P//ibm-}"
+
+SLOT="0"
+LICENSE="IBM"
+KEYWORDS="~ppc ~ppc64"
+
+DEPEND="
+       sys-devel/bc
+"
+RDEPEND="
+       rtas? ( >=sys-libs/librtas-1.3.5 )
+       ${DEPEND}
+"
+
+src_prepare() {
+       eapply_user
+
+       eautoreconf
+}
+
+src_configure() {
+       econf $(use_with rtas librtas)
+}