From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5DC9B139348 for ; Sun, 25 Jul 2021 01:29:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BA47E0C8A; Sun, 25 Jul 2021 01:29:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65726E0C8A for ; Sun, 25 Jul 2021 01:29:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9915F342D94 for ; Sun, 25 Jul 2021 01:29:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB869845 for ; Sun, 25 Jul 2021 01:29:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1627176442.547ee6961b773fc74f8f353dd06b65e81608a0a1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/mico/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/mico/mico-2.3.13-r13.ebuild net-misc/mico/mico-2.3.13-r14.ebuild X-VCS-Directories: net-misc/mico/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 547ee6961b773fc74f8f353dd06b65e81608a0a1 X-VCS-Branch: master Date: Sun, 25 Jul 2021 01:29:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 620be30c-d630-4d24-9485-f27553499c38 X-Archives-Hash: 6a33776af2f7b5156721e2e3413493a8 commit: 547ee6961b773fc74f8f353dd06b65e81608a0a1 Author: Sam James gentoo org> AuthorDate: Sun Jul 25 01:27:22 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 25 01:27:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547ee696 net-misc/mico: drop obsolete references to darcs.eclass Signed-off-by: Sam James gentoo.org> net-misc/mico/mico-2.3.13-r13.ebuild | 35 +++++++++++------------------------ net-misc/mico/mico-2.3.13-r14.ebuild | 35 +++++++++++------------------------ 2 files changed, 22 insertions(+), 48 deletions(-) diff --git a/net-misc/mico/mico-2.3.13-r13.ebuild b/net-misc/mico/mico-2.3.13-r13.ebuild index 52c03727f64..324ead110f2 100644 --- a/net-misc/mico/mico-2.3.13-r13.ebuild +++ b/net-misc/mico/mico-2.3.13-r13.ebuild @@ -5,24 +5,17 @@ EAPI="7" inherit flag-o-matic toolchain-funcs autotools -if [[ ${PV} == 9999 ]]; then - EDARCS_REPOSITORY="http://www.mico.org/mico-darcs-repository" - inherit darcs - SRC_URI="" - PATCHES="${WORKDIR}/${P}-gentoo.patch" -else - SRC_URI=" - http://www.mico.org/${P}.tar.gz - https://github.com/ssi-schaefer/mico/compare/${PV}-raw...${PV}-gentoo-${PR}.patch -> ${P}-gentoo-${PR}.patch - " - PATCHES="${DISTDIR}/${P}-gentoo-${PR}.patch" - KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt" -fi - DESCRIPTION="A freely available and fully compliant implementation of the CORBA standard" HOMEPAGE="http://www.mico.org/" +SRC_URI=" + http://www.mico.org/${P}.tar.gz + https://github.com/ssi-schaefer/mico/compare/${PV}-raw...${PV}-gentoo-${PR}.patch -> ${P}-gentoo-${PR}.patch +" +S="${WORKDIR}"/${PN} + LICENSE="GPL-2 LGPL-2" SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt" IUSE="gtk postgres ssl tcl threads X" RESTRICT="test" #298101 @@ -42,15 +35,9 @@ BDEPEND=" >=sys-devel/bison-1.22 " -if [[ ${PV} == 9999 ]]; then - src_unpack() { - wget -O ${P}-gentoo.patch "https://github.com/ssi-schaefer/mico/compare/gentoo.patch" || die - darcs_src_unpack - default - } -else - S=${WORKDIR}/${PN} -fi +PATCHES=( + "${DISTDIR}"/${P}-gentoo-${PR}.patch +) src_prepare() { default @@ -132,7 +119,7 @@ src_install() { mv "${ED}"/usr/doc "${ED}"/usr/share/doc/${PF} || die dodoc BUGS CHANGES* CONVERT README* ROADMAP TODO VERSION WTODO - [[ ${PV} == 9999 ]] || dodoc FAQ + dodoc FAQ } pkg_postinst() { diff --git a/net-misc/mico/mico-2.3.13-r14.ebuild b/net-misc/mico/mico-2.3.13-r14.ebuild index 52c03727f64..324ead110f2 100644 --- a/net-misc/mico/mico-2.3.13-r14.ebuild +++ b/net-misc/mico/mico-2.3.13-r14.ebuild @@ -5,24 +5,17 @@ EAPI="7" inherit flag-o-matic toolchain-funcs autotools -if [[ ${PV} == 9999 ]]; then - EDARCS_REPOSITORY="http://www.mico.org/mico-darcs-repository" - inherit darcs - SRC_URI="" - PATCHES="${WORKDIR}/${P}-gentoo.patch" -else - SRC_URI=" - http://www.mico.org/${P}.tar.gz - https://github.com/ssi-schaefer/mico/compare/${PV}-raw...${PV}-gentoo-${PR}.patch -> ${P}-gentoo-${PR}.patch - " - PATCHES="${DISTDIR}/${P}-gentoo-${PR}.patch" - KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt" -fi - DESCRIPTION="A freely available and fully compliant implementation of the CORBA standard" HOMEPAGE="http://www.mico.org/" +SRC_URI=" + http://www.mico.org/${P}.tar.gz + https://github.com/ssi-schaefer/mico/compare/${PV}-raw...${PV}-gentoo-${PR}.patch -> ${P}-gentoo-${PR}.patch +" +S="${WORKDIR}"/${PN} + LICENSE="GPL-2 LGPL-2" SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt" IUSE="gtk postgres ssl tcl threads X" RESTRICT="test" #298101 @@ -42,15 +35,9 @@ BDEPEND=" >=sys-devel/bison-1.22 " -if [[ ${PV} == 9999 ]]; then - src_unpack() { - wget -O ${P}-gentoo.patch "https://github.com/ssi-schaefer/mico/compare/gentoo.patch" || die - darcs_src_unpack - default - } -else - S=${WORKDIR}/${PN} -fi +PATCHES=( + "${DISTDIR}"/${P}-gentoo-${PR}.patch +) src_prepare() { default @@ -132,7 +119,7 @@ src_install() { mv "${ED}"/usr/doc "${ED}"/usr/share/doc/${PF} || die dodoc BUGS CHANGES* CONVERT README* ROADMAP TODO VERSION WTODO - [[ ${PV} == 9999 ]] || dodoc FAQ + dodoc FAQ } pkg_postinst() {