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, 29 Nov 2020 22:38:14
Message-Id: 1606689488.b9d9ecb23fce8499407370eace81ca9544970345.slyfox@gentoo
1 commit: b9d9ecb23fce8499407370eace81ca9544970345
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 22:37:58 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 22:38:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9d9ecb2
7
8 sys-devel/crossdev: bump up to 20201129
9
10 Single new change:
11 - explicitly avoid USE=hardened for gcc on mingw targets
12
13 Package-Manager: Portage-3.0.11, Repoman-3.0.2
14 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
15
16 sys-devel/crossdev/Manifest | 1 +
17 sys-devel/crossdev/crossdev-20201129.ebuild | 36 +++++++++++++++++++++++++++++
18 2 files changed, 37 insertions(+)
19
20 diff --git a/sys-devel/crossdev/Manifest b/sys-devel/crossdev/Manifest
21 index 201750c3fbf..ac7022918db 100644
22 --- a/sys-devel/crossdev/Manifest
23 +++ b/sys-devel/crossdev/Manifest
24 @@ -1,2 +1,3 @@
25 DIST crossdev-20200801.tar.xz 28268 BLAKE2B 36f22a2d1422d5f9e27a5559a8c141462853c4dc011ec98c66d235ef262ea9408fd5054b578963fd17ef630ea63e72c068d216f6ffbea7d191d1374a6ecc4033 SHA512 331af1525cdfc66380621b764bfc63178ce962b9071408d1ee08480caad9c0e4782a8fa5e5f3500fd2ea03ccd322895cc95d80106ad9e5b97a0e09ef5d88c94b
26 DIST crossdev-20201122.tar.xz 28308 BLAKE2B 66da19024dd03e98ff0f388cdb9bf76a968ef4ac920249e9a782d46c1d32a4cb3047a0aa2d9619a054b9894ef30624ce99bb45f9c45b937fbb280a8a298aede8 SHA512 bbd7ab6a8ea0d2cb13f822277d9b8c19478368b2f365aaa60bd2548b47f9e7a582805593b683631ebb20bfb6d2f496f2d3a5eb6d144207fab58607565a8d1a41
27 +DIST crossdev-20201129.tar.xz 28372 BLAKE2B b59d94a69b83f8db9193bd54ff6059b20617b6dd60c0f9a0ec5acdf4b93adf747886598b9af7d69d2fd9705fab709041a96c149286e623b6557ea709bf2f840a SHA512 7b49795ea266d90e45c48b092bffa485a7207c66550d797297cb7e0756f7c497d045b3cb9b90f50b80a3ada4916a3ba273b2c19b9d02c834fb47d906efe3a8ba
28
29 diff --git a/sys-devel/crossdev/crossdev-20201129.ebuild b/sys-devel/crossdev/crossdev-20201129.ebuild
30 new file mode 100644
31 index 00000000000..80947886394
32 --- /dev/null
33 +++ b/sys-devel/crossdev/crossdev-20201129.ebuild
34 @@ -0,0 +1,36 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +if [[ ${PV} == "99999999" ]] ; then
41 + inherit git-r3
42 + EGIT_REPO_URI="git://anongit.gentoo.org/proj/crossdev.git"
43 +else
44 + SRC_URI="mirror://gentoo/${P}.tar.xz
45 + https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz"
46 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
47 +fi
48 +
49 +DESCRIPTION="Gentoo Cross-toolchain generator"
50 +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Crossdev"
51 +
52 +LICENSE="GPL-2"
53 +SLOT="0"
54 +IUSE=""
55 +
56 +RDEPEND="
57 + >=sys-apps/portage-2.1
58 + >=app-portage/portage-utils-0.55
59 + app-shells/bash
60 + sys-apps/gentoo-functions
61 +"
62 +DEPEND="app-arch/xz-utils"
63 +
64 +src_install() {
65 + default
66 +
67 + if [[ "${PV}" == "99999999" ]] ; then
68 + sed -i "s:@CDEVPV@:${EGIT_VERSION}:" "${ED}"/usr/bin/crossdev || die
69 + fi
70 +}