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 CE91F139694 for ; Tue, 14 Feb 2017 20:58:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C09821C121; Tue, 14 Feb 2017 20:58:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0042F21C121 for ; Tue, 14 Feb 2017 20:58:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D2EA341130 for ; Tue, 14 Feb 2017 20:58:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA89F47EE for ; Tue, 14 Feb 2017 20:58:03 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1487105853.454a0ccb7e737018595a660537d05a5361f18be8.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/portage/portage-2.3.1.ebuild sys-apps/portage/portage-2.3.2.ebuild sys-apps/portage/portage-2.3.3.ebuild X-VCS-Directories: sys-apps/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 454a0ccb7e737018595a660537d05a5361f18be8 X-VCS-Branch: master Date: Tue, 14 Feb 2017 20:58:03 +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-Archives-Salt: 49b8983e-1fec-4dd9-9e09-de80267a771f X-Archives-Hash: 326205587afc4db40288f2a8f0fcee4c commit: 454a0ccb7e737018595a660537d05a5361f18be8 Author: Zac Medico gentoo org> AuthorDate: Tue Feb 14 20:56:41 2017 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Feb 14 20:57:33 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=454a0ccb sys-apps/portage: sync prefix repos.conf sed Reported-by: Arfrever Frehtes Taifersar Arahesis gmail.com> Package-Manager: Portage-2.3.3, Repoman-2.3.1 sys-apps/portage/portage-2.3.1.ebuild | 5 ++++- sys-apps/portage/portage-2.3.2.ebuild | 5 ++++- sys-apps/portage/portage-2.3.3.ebuild | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/sys-apps/portage/portage-2.3.1.ebuild b/sys-apps/portage/portage-2.3.1.ebuild index 5d43c5f9fe..d54241fc42 100644 --- a/sys-apps/portage/portage-2.3.1.ebuild +++ b/sys-apps/portage/portage-2.3.1.ebuild @@ -129,7 +129,10 @@ python_prepare_all() { -i cnf/make.globals || die "sed failed" einfo "Adjusting repos.conf ..." - sed -e "s|^\(location = \)\(/usr/portage\)|\\1${EPREFIX}\\2|" \ + sed -e "s|^\(main-repo = \).*|\\1gentoo_prefix|" \ + -e "s|^\\[gentoo\\]|[gentoo_prefix]|" \ + -e "s|^\(location = \)\(/usr/portage\)|\\1${EPREFIX}\\2|" \ + -e "s|^\(sync-uri = \).*|\\1rsync://rsync.prefix.bitzolder.nl/gentoo-portage-prefix|" \ -i cnf/repos.conf || die "sed failed" einfo "Adding FEATURES=force-prefix to make.globals ..." diff --git a/sys-apps/portage/portage-2.3.2.ebuild b/sys-apps/portage/portage-2.3.2.ebuild index 799dbfacf1..2d14017e7c 100644 --- a/sys-apps/portage/portage-2.3.2.ebuild +++ b/sys-apps/portage/portage-2.3.2.ebuild @@ -125,7 +125,10 @@ python_prepare_all() { -i cnf/make.globals || die "sed failed" einfo "Adjusting repos.conf ..." - sed -e "s|^\(location = \)\(/usr/portage\)|\\1${EPREFIX}\\2|" \ + sed -e "s|^\(main-repo = \).*|\\1gentoo_prefix|" \ + -e "s|^\\[gentoo\\]|[gentoo_prefix]|" \ + -e "s|^\(location = \)\(/usr/portage\)|\\1${EPREFIX}\\2|" \ + -e "s|^\(sync-uri = \).*|\\1rsync://rsync.prefix.bitzolder.nl/gentoo-portage-prefix|" \ -i cnf/repos.conf || die "sed failed" einfo "Adding FEATURES=force-prefix to make.globals ..." diff --git a/sys-apps/portage/portage-2.3.3.ebuild b/sys-apps/portage/portage-2.3.3.ebuild index caa08ee3ce..75ee0b48cb 100644 --- a/sys-apps/portage/portage-2.3.3.ebuild +++ b/sys-apps/portage/portage-2.3.3.ebuild @@ -130,7 +130,10 @@ python_prepare_all() { -i cnf/make.globals || die "sed failed" einfo "Adjusting repos.conf ..." - sed -e "s|^\(location = \)\(/usr/portage\)|\\1${EPREFIX}\\2|" \ + sed -e "s|^\(main-repo = \).*|\\1gentoo_prefix|" \ + -e "s|^\\[gentoo\\]|[gentoo_prefix]|" \ + -e "s|^\(location = \)\(/usr/portage\)|\\1${EPREFIX}\\2|" \ + -e "s|^\(sync-uri = \).*|\\1rsync://rsync.prefix.bitzolder.nl/gentoo-portage-prefix|" \ -i cnf/repos.conf || die "sed failed" einfo "Adding FEATURES=force-prefix to make.globals ..."