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: Sat, 25 Jan 2020 21:46:05
Message-Id: 1579988748.385f248b765e327e6eccaf423c55e0f2f82a3e4b.slyfox@gentoo
1 commit: 385f248b765e327e6eccaf423c55e0f2f82a3e4b
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 25 21:45:35 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 25 21:45:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385f248b
7
8 sys-devel/crossdev: bump up to 20200125
9
10 Two new changes:
11 - disable default ssp support on x86 and ppc on musl, bug #706210
12 - migrate from package.keywords to package.accept_keywords, bug #706212
13
14 Bug: https://bugs.gentoo.org/706210
15 Closes: https://bugs.gentoo.org/706212
16 Package-Manager: Portage-2.3.85, Repoman-2.3.20
17 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
18
19 sys-devel/crossdev/Manifest | 1 +
20 sys-devel/crossdev/crossdev-20200125.ebuild | 36 +++++++++++++++++++++++++++++
21 2 files changed, 37 insertions(+)
22
23 diff --git a/sys-devel/crossdev/Manifest b/sys-devel/crossdev/Manifest
24 index b09530fb3fb..5f295ac037e 100644
25 --- a/sys-devel/crossdev/Manifest
26 +++ b/sys-devel/crossdev/Manifest
27 @@ -1 +1,2 @@
28 DIST crossdev-20191222.tar.xz 27320 BLAKE2B 375e0ccb7bfd5c5c365b9c874a7dbf75207843b68dbe6d4cf9da07b36efb7b3bb1e6c84f85268fea6c71d6afc1e284f9bd1dcfeca5536d0947f8d3a3f5344ca9 SHA512 ad32f2231663f312b2b35bdea81c9ddac584d13f9affd496f36cbed072a97e6f80deb3436dcbea184621a4bd86bb25d52fb0434208226a3d743f0f664cd91fd0
29 +DIST crossdev-20200125.tar.xz 27380 BLAKE2B 4871b3ba1130c8d2e4df263aea155f95352417e65dabe64968cf9cc2628f9a1ae32a7e569cdea73a04d32d05396b0a83720bbd712a5f5b703606692e6b61516b SHA512 a4db1d09179b23f032af59c4857c3ab58d7944633b0c612a1f8aa0ecc38201f960cc1da761f34288568bb7f3434fe4da5094b4d4445be047da8838a096f6c606
30
31 diff --git a/sys-devel/crossdev/crossdev-20200125.ebuild b/sys-devel/crossdev/crossdev-20200125.ebuild
32 new file mode 100644
33 index 00000000000..e37579ff62f
34 --- /dev/null
35 +++ b/sys-devel/crossdev/crossdev-20200125.ebuild
36 @@ -0,0 +1,36 @@
37 +# Copyright 1999-2020 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=7
41 +
42 +if [[ ${PV} == "99999999" ]] ; then
43 + inherit git-r3
44 + EGIT_REPO_URI="git://anongit.gentoo.org/proj/crossdev.git"
45 +else
46 + SRC_URI="mirror://gentoo/${P}.tar.xz
47 + https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz"
48 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86"
49 +fi
50 +
51 +DESCRIPTION="Gentoo Cross-toolchain generator"
52 +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Crossdev"
53 +
54 +LICENSE="GPL-2"
55 +SLOT="0"
56 +IUSE=""
57 +
58 +RDEPEND="
59 + >=sys-apps/portage-2.1
60 + >=app-portage/portage-utils-0.55
61 + app-shells/bash
62 + sys-apps/gentoo-functions
63 +"
64 +DEPEND="app-arch/xz-utils"
65 +
66 +src_install() {
67 + default
68 +
69 + if [[ "${PV}" == "99999999" ]] ; then
70 + sed -i "s:@CDEVPV@:${EGIT_VERSION}:" "${ED}"/usr/bin/crossdev || die
71 + fi
72 +}