Gentoo Archives: gentoo-commits

From: Michael Haubenwallner <haubi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/mico/
Date: Mon, 03 Jun 2019 16:11:19
Message-Id: 1559578260.0b0e330d499f11649c0332bc7c41b6396e938486.haubi@gentoo
1 commit: 0b0e330d499f11649c0332bc7c41b6396e938486
2 Author: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 3 15:31:28 2019 +0000
4 Commit: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 3 16:11:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b0e330d
7
8 net-misc/mico: from github fetch gentoo live patch in src_unpack
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.11
11 Signed-off-by: Michael Haubenwallner <haubi <AT> gentoo.org>
12
13 net-misc/mico/Manifest | 1 -
14 net-misc/mico/mico-9999.ebuild | 7 ++++---
15 2 files changed, 4 insertions(+), 4 deletions(-)
16
17 diff --git a/net-misc/mico/Manifest b/net-misc/mico/Manifest
18 index 99d1e54c460..8214f2d9dbd 100644
19 --- a/net-misc/mico/Manifest
20 +++ b/net-misc/mico/Manifest
21 @@ -1,3 +1,2 @@
22 DIST mico-2.3.13-gentoo-patches-20170529.tar.xz 15196 BLAKE2B a25371cc1b7d0ee912aaa694943e9faa87f9c3df1c85186af1ab0d328bfa3138ce82381e1c91c732ae4b4d9d9b394058a1666af3b8547da675948aa556176a26 SHA512 ea7cbf00b33ed5eaacc5418539562645cecefc6f2ee7929d58517f7775fa62ac07a26967cd84570410281930b7a4570302f4edc9a9cc76661a99a5f28bce37cf
23 DIST mico-2.3.13.tar.gz 3269814 BLAKE2B cddf6a3d3192625af492b1fa3cf91d4d19d3c8b410de9889cc2e68b6a0db28aef228c1c4e11dc04d4de629d58181dc9e9fd93ddd74537e3362ad5bcd4881750b SHA512 b4c09b5a41e480b8211529776b83e84669e1e91ccba7a0d2d940834f217bc7f3d9ef74101dadc43778c6813b733ccfdae2b00eab2f0993b58193bb9f270e3895
24 -DIST mico-9999-gentoo.patch 66675 BLAKE2B c403d2e6fe3b3e9a77f7a4d73b6152b73ff3eea76e35e16f705ce8da5935fdc4a0fd4b1136437cac5a0fb0b81f00f0461cba0d45e9cbf0d88f3ffc5faf1e7967 SHA512 2d709b90cc8c8873eca8df94acbb24cf484305dbadc8d913dc58912349677ded633e92faac4944076547cb064329d7a3dfc79a43ce9ff15b238d989f2bdd4a6d
25
26 diff --git a/net-misc/mico/mico-9999.ebuild b/net-misc/mico/mico-9999.ebuild
27 index ba56c4b4614..45fcd9ba749 100644
28 --- a/net-misc/mico/mico-9999.ebuild
29 +++ b/net-misc/mico/mico-9999.ebuild
30 @@ -8,16 +8,15 @@ inherit flag-o-matic toolchain-funcs autotools
31 if [[ ${PV} == 9999 ]]; then
32 EDARCS_REPOSITORY="http://www.mico.org/mico-darcs-repository"
33 inherit darcs
34 - SRC_URI="https://github.com/haubi/mico/compare/gentoo.patch -> ${P}-gentoo.patch"
35 - PATCHES="${DISTDIR}/${P}-gentoo.patch"
36 + SRC_URI=""
37 else
38 PATCH_VER=20170529
39 SRC_URI="
40 http://www.mico.org/${P}.tar.gz
41 https://dev.gentoo.org/~haubi/distfiles/${P}-gentoo-patches-${PATCH_VER}.tar.xz
42 "
43 - PATCHES="${WORKDIR}/patches"
44 fi
45 +PATCHES="${WORKDIR}/patches"
46
47 DESCRIPTION="A freely available and fully compliant implementation of the CORBA standard"
48 HOMEPAGE="http://www.mico.org/"
49 @@ -45,6 +44,8 @@ BDEPEND="
50
51 if [[ ${PV} == 9999 ]]; then
52 src_unpack() {
53 + mkdir patches || die
54 + wget -O patches/gentoo.patch "https://github.com/haubi/mico/compare/gentoo.patch" || die
55 darcs_src_unpack
56 default
57 }