From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1108116-garchives=archives.gentoo.org@lists.gentoo.org> 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 06C1A138335 for <garchives@archives.gentoo.org>; Thu, 29 Aug 2019 10:06:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3FC5E0814; Thu, 29 Aug 2019 10:06:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 9EF86E0814 for <gentoo-commits@lists.gentoo.org>; Thu, 29 Aug 2019 10:06:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BDEE334A5F5 for <gentoo-commits@lists.gentoo.org>; Thu, 29 Aug 2019 10:05:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E9346FE for <gentoo-commits@lists.gentoo.org>; Thu, 29 Aug 2019 10:05:56 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1567073139.25c8c27813158136deb89d7e291b20d86a6f86bc.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/dovecot/dovecot-2.2.36.4.ebuild net-mail/dovecot/dovecot-2.3.6.ebuild net-mail/dovecot/dovecot-2.3.7.1.ebuild net-mail/dovecot/dovecot-2.3.7.2.ebuild X-VCS-Directories: net-mail/dovecot/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 25c8c27813158136deb89d7e291b20d86a6f86bc X-VCS-Branch: master Date: Thu, 29 Aug 2019 10:05:56 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b26c2c77-c0f4-4ea3-90bb-cf251318a760 X-Archives-Hash: adcb967f4c67055ca77736700276049b commit: 25c8c27813158136deb89d7e291b20d86a6f86bc Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Aug 29 05:25:14 2019 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Aug 29 10:05:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c8c278 net-mail/dovecot: Fix DoublePrefixInPath Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> net-mail/dovecot/dovecot-2.2.36.4.ebuild | 6 +++--- net-mail/dovecot/dovecot-2.3.6.ebuild | 6 +++--- net-mail/dovecot/dovecot-2.3.7.1.ebuild | 6 +++--- net-mail/dovecot/dovecot-2.3.7.2.ebuild | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/net-mail/dovecot/dovecot-2.2.36.4.ebuild b/net-mail/dovecot/dovecot-2.2.36.4.ebuild index b55489b6a01..ddcf00b21ae 100644 --- a/net-mail/dovecot/dovecot-2.2.36.4.ebuild +++ b/net-mail/dovecot/dovecot-2.2.36.4.ebuild @@ -160,8 +160,8 @@ src_install () { # better: if use suid;then einfo "Changing perms to allow deliver to be suided" - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" + fowners root:mail "/usr/libexec/dovecot/dovecot-lda" + fperms 4750 "/usr/libexec/dovecot/dovecot-lda" fi newinitd "${FILESDIR}"/dovecot.init-r6 dovecot @@ -187,7 +187,7 @@ src_install () { doins doc/example-config/*.{conf,ext} insinto /etc/dovecot/conf.d doins doc/example-config/conf.d/*.{conf,ext} - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext rm -f "${confd}/../README" # .maildir is the Gentoo default diff --git a/net-mail/dovecot/dovecot-2.3.6.ebuild b/net-mail/dovecot/dovecot-2.3.6.ebuild index a37dbd5f911..7abeccbbadd 100644 --- a/net-mail/dovecot/dovecot-2.3.6.ebuild +++ b/net-mail/dovecot/dovecot-2.3.6.ebuild @@ -167,8 +167,8 @@ src_install () { # better: if use suid;then einfo "Changing perms to allow deliver to be suided" - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" + fowners root:mail "/usr/libexec/dovecot/dovecot-lda" + fperms 4750 "/usr/libexec/dovecot/dovecot-lda" fi newinitd "${FILESDIR}"/dovecot.init-r6 dovecot @@ -194,7 +194,7 @@ src_install () { doins doc/example-config/*.{conf,ext} insinto /etc/dovecot/conf.d doins doc/example-config/conf.d/*.{conf,ext} - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext rm -f "${confd}/../README" # .maildir is the Gentoo default diff --git a/net-mail/dovecot/dovecot-2.3.7.1.ebuild b/net-mail/dovecot/dovecot-2.3.7.1.ebuild index 9ca01af7c7f..89f0139e20b 100644 --- a/net-mail/dovecot/dovecot-2.3.7.1.ebuild +++ b/net-mail/dovecot/dovecot-2.3.7.1.ebuild @@ -164,8 +164,8 @@ src_install () { # better: if use suid;then einfo "Changing perms to allow deliver to be suided" - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" + fowners root:mail "/usr/libexec/dovecot/dovecot-lda" + fperms 4750 "/usr/libexec/dovecot/dovecot-lda" fi newinitd "${FILESDIR}"/dovecot.init-r6 dovecot @@ -191,7 +191,7 @@ src_install () { doins doc/example-config/*.{conf,ext} insinto /etc/dovecot/conf.d doins doc/example-config/conf.d/*.{conf,ext} - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext rm -f "${confd}/../README" # .maildir is the Gentoo default diff --git a/net-mail/dovecot/dovecot-2.3.7.2.ebuild b/net-mail/dovecot/dovecot-2.3.7.2.ebuild index 38e14dd4818..f94d4cf9aac 100644 --- a/net-mail/dovecot/dovecot-2.3.7.2.ebuild +++ b/net-mail/dovecot/dovecot-2.3.7.2.ebuild @@ -164,8 +164,8 @@ src_install () { # better: if use suid;then einfo "Changing perms to allow deliver to be suided" - fowners root:mail "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" - fperms 4750 "${EPREFIX}/usr/libexec/dovecot/dovecot-lda" + fowners root:mail "/usr/libexec/dovecot/dovecot-lda" + fperms 4750 "/usr/libexec/dovecot/dovecot-lda" fi newinitd "${FILESDIR}"/dovecot.init-r6 dovecot @@ -191,7 +191,7 @@ src_install () { doins doc/example-config/*.{conf,ext} insinto /etc/dovecot/conf.d doins doc/example-config/conf.d/*.{conf,ext} - fperms 0600 "${EPREFIX}"/etc/dovecot/dovecot-{ldap,sql}.conf.ext + fperms 0600 /etc/dovecot/dovecot-{ldap,sql}.conf.ext rm -f "${confd}/../README" # .maildir is the Gentoo default