Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/crossdev/
Date: Sun, 22 Dec 2019 22:36:53
Message-Id: 1577054202.c78e1daac0af88ccf33bade04aa3b077205ea6dd.slyfox@gentoo
1 commit: c78e1daac0af88ccf33bade04aa3b077205ea6dd
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 22 22:36:23 2019 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 22 22:36:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c78e1daa
7
8 sys-devel/crossdev: bump up to 20191222
9
10 3 user-visible changes:
11 - refuse to install crossdev on all CHOST ABIs, not just default (bug #500338)
12 - drop Sony Playstation 2 aliases (ee, dvp, iop)
13 - drop mingw32 reference
14
15 Reported-by: Chris Slycord
16 Closes: https://bugs.gentoo.org/500338
17 Package-Manager: Portage-2.3.82, Repoman-2.3.20
18 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
19
20 sys-devel/crossdev/Manifest | 1 +
21 sys-devel/crossdev/crossdev-20191222.ebuild | 36 +++++++++++++++++++++++++++++
22 2 files changed, 37 insertions(+)
23
24 diff --git a/sys-devel/crossdev/Manifest b/sys-devel/crossdev/Manifest
25 index 525c96327e6..94e6905f35d 100644
26 --- a/sys-devel/crossdev/Manifest
27 +++ b/sys-devel/crossdev/Manifest
28 @@ -1 +1,2 @@
29 DIST crossdev-20191014.tar.xz 27240 BLAKE2B 06a76250490c333d03d0227e0505c4cf1125426bc51fddfe1c87700b289a150596318d60e1ba92d9a104a55e23edd9a603edd7887cdcecfe23f9e5c3a759b02a SHA512 82317f0db3f8e3ebe69e5d132d2f248795416f481161a67bf09cccbf82a95b79656a64c476c97c1e31e4dfac1bac6c89b159afae5f0516d08f320cab6cfdbbab
30 +DIST crossdev-20191222.tar.xz 27320 BLAKE2B 375e0ccb7bfd5c5c365b9c874a7dbf75207843b68dbe6d4cf9da07b36efb7b3bb1e6c84f85268fea6c71d6afc1e284f9bd1dcfeca5536d0947f8d3a3f5344ca9 SHA512 ad32f2231663f312b2b35bdea81c9ddac584d13f9affd496f36cbed072a97e6f80deb3436dcbea184621a4bd86bb25d52fb0434208226a3d743f0f664cd91fd0
31
32 diff --git a/sys-devel/crossdev/crossdev-20191222.ebuild b/sys-devel/crossdev/crossdev-20191222.ebuild
33 new file mode 100644
34 index 00000000000..ffbebc2cf82
35 --- /dev/null
36 +++ b/sys-devel/crossdev/crossdev-20191222.ebuild
37 @@ -0,0 +1,36 @@
38 +# Copyright 1999-2019 Gentoo Authors
39 +# Distributed under the terms of the GNU General Public License v2
40 +
41 +EAPI=7
42 +
43 +if [[ ${PV} == "99999999" ]] ; then
44 + inherit git-r3
45 + EGIT_REPO_URI="git://anongit.gentoo.org/proj/crossdev.git"
46 +else
47 + SRC_URI="mirror://gentoo/${P}.tar.xz
48 + https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz"
49 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86"
50 +fi
51 +
52 +DESCRIPTION="Gentoo Cross-toolchain generator"
53 +HOMEPAGE="https://www.gentoo.org/"
54 +
55 +LICENSE="GPL-2"
56 +SLOT="0"
57 +IUSE=""
58 +
59 +RDEPEND="
60 + >=sys-apps/portage-2.1
61 + >=app-portage/portage-utils-0.55
62 + app-shells/bash
63 + sys-apps/gentoo-functions
64 +"
65 +DEPEND="app-arch/xz-utils"
66 +
67 +src_install() {
68 + default
69 +
70 + if [[ "${PV}" == "99999999" ]] ; then
71 + sed -i "s:@CDEVPV@:${EGIT_VERSION}:" "${ED}"/usr/bin/crossdev || die
72 + fi
73 +}