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: Wed, 16 Jan 2019 23:01:09
Message-Id: 1547679654.6e8a54c3d2bdcd6aeb7d21d187e2b246a990af06.slyfox@gentoo
1 commit: 6e8a54c3d2bdcd6aeb7d21d187e2b246a990af06
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 16 23:00:54 2019 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 16 23:00:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e8a54c3
7
8 sys-devel/crossdev: bump up to 20181202
9
10 Single change: uclibc tuples now default to uclibc-ng, not uclibc library.
11
12 Package-Manager: Portage-2.3.56, Repoman-2.3.12
13 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
14
15 sys-devel/crossdev/Manifest | 1 +
16 sys-devel/crossdev/crossdev-20181202.ebuild | 39 +++++++++++++++++++++++++++++
17 2 files changed, 40 insertions(+)
18
19 diff --git a/sys-devel/crossdev/Manifest b/sys-devel/crossdev/Manifest
20 index 5ab79de1d6e..af17f5afdda 100644
21 --- a/sys-devel/crossdev/Manifest
22 +++ b/sys-devel/crossdev/Manifest
23 @@ -1,2 +1,3 @@
24 DIST crossdev-20171230.tar.xz 23016 BLAKE2B 4661b3f9fac314b7346f0de7227d12ae2d6851e448f6d065471499df8ada5d699ef91c6b6bca285b2aefcbf67ab351fefbe9344c0884a7c0d33ff27215c8ed9c SHA512 bf8761a3018790501adb4bb173e3281d1d7628de8f65a1aa5df0b328a4af8088be466dbe8c185e7ed44aca31b078320a4f62c56351f4b7cbf832349184d9709f
25 DIST crossdev-20181020.tar.xz 27172 BLAKE2B 8a388d5201ab419b865b96a4314190a693a7e00f3b5ecc2db2efdf36efca102206b5c4c5633e5e4ee508f5433ff4e086460501462bacc86c2adb10cab33a0244 SHA512 dd7fa9522ce6f58684b54ddc57e088f19a8ad5392ff45ed5b2b1f95f4be7dbc753442adc1c2591a785d94070979200936ca713913e547e84ae02b05c83bf8cde
26 +DIST crossdev-20181202.tar.xz 27184 BLAKE2B d1770f5148d666b22a20576b638e71bf6325e8a61776b8b47ecaf2e5437150554f6973c5306d233a836e4ffe3ff0480167c9b877c5f9e733681fd502016a19d4 SHA512 896bf050c81f3f34b2be187a851832494c039aa93177c806b689a75d16567f178e4ca33c21282fc320506b76e09b0cde8a45976b6309bf9bc5be8290db3dd8af
27
28 diff --git a/sys-devel/crossdev/crossdev-20181202.ebuild b/sys-devel/crossdev/crossdev-20181202.ebuild
29 new file mode 100644
30 index 00000000000..aba306ab049
31 --- /dev/null
32 +++ b/sys-devel/crossdev/crossdev-20181202.ebuild
33 @@ -0,0 +1,39 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +if [[ ${PV} == "99999999" ]] ; then
40 + inherit git-r3
41 + EGIT_REPO_URI="git://anongit.gentoo.org/proj/crossdev.git"
42 +else
43 + SRC_URI="mirror://gentoo/${P}.tar.xz
44 + https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz"
45 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
46 +fi
47 +
48 +DESCRIPTION="Gentoo Cross-toolchain generator"
49 +HOMEPAGE="https://www.gentoo.org/"
50 +
51 +LICENSE="GPL-2"
52 +SLOT="0"
53 +IUSE=""
54 +
55 +RDEPEND="
56 + || (
57 + >=sys-apps/portage-2.1
58 + sys-apps/portage-mgorny
59 + )
60 + >=app-portage/portage-utils-0.55
61 + app-shells/bash
62 + sys-apps/gentoo-functions
63 + !sys-devel/crossdev-wrappers"
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 +}