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 38D0313933E for ; Thu, 1 Jul 2021 08:54:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F5F5E0863; Thu, 1 Jul 2021 08:54:47 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0EE68E0863 for ; Thu, 1 Jul 2021 08:54:47 +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 0FB79335DA3 for ; Thu, 1 Jul 2021 08:54:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DE427BF for ; Thu, 1 Jul 2021 08:54:44 +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: <1625129626.af04e14d48d0ae36f0f4e2936723fa222f4d5295.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/hydrus/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/hydrus/hydrus-443.ebuild media-gfx/hydrus/hydrus-444.ebuild media-gfx/hydrus/hydrus-445.ebuild media-gfx/hydrus/hydrus-9999.ebuild X-VCS-Directories: media-gfx/hydrus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: af04e14d48d0ae36f0f4e2936723fa222f4d5295 X-VCS-Branch: master Date: Thu, 1 Jul 2021 08:54:44 +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: 0a47366a-27f0-4df7-8520-5ebc10f036da X-Archives-Hash: e225f3ac00abbe475af24d2ce908aece commit: af04e14d48d0ae36f0f4e2936723fa222f4d5295 Author: Ekaterina Vaartis kotobank ch> AuthorDate: Thu Jul 1 08:18:27 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 1 08:53:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af04e14d media-gfx/hydrus: Use [[ instead of [ Signed-off-by: Ekaterina Vaartis kotobank.ch> Signed-off-by: Sam James gentoo.org> media-gfx/hydrus/hydrus-443.ebuild | 2 +- media-gfx/hydrus/hydrus-444.ebuild | 2 +- media-gfx/hydrus/hydrus-445.ebuild | 2 +- media-gfx/hydrus/hydrus-9999.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media-gfx/hydrus/hydrus-443.ebuild b/media-gfx/hydrus/hydrus-443.ebuild index d51d23e32a5..3ea6657aaea 100644 --- a/media-gfx/hydrus/hydrus-443.ebuild +++ b/media-gfx/hydrus/hydrus-443.ebuild @@ -11,7 +11,7 @@ inherit python-single-r1 desktop optfeature DESCRIPTION="A booru-like media organizer for the desktop" HOMEPAGE="https://hydrusnetwork.github.io/hydrus/ https://github.com/hydrusnetwork/hydrus" -if [ "${PV}" == "9999" ]; then +if [[ "${PV}" == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/hydrusnetwork/hydrus.git" diff --git a/media-gfx/hydrus/hydrus-444.ebuild b/media-gfx/hydrus/hydrus-444.ebuild index d51d23e32a5..3ea6657aaea 100644 --- a/media-gfx/hydrus/hydrus-444.ebuild +++ b/media-gfx/hydrus/hydrus-444.ebuild @@ -11,7 +11,7 @@ inherit python-single-r1 desktop optfeature DESCRIPTION="A booru-like media organizer for the desktop" HOMEPAGE="https://hydrusnetwork.github.io/hydrus/ https://github.com/hydrusnetwork/hydrus" -if [ "${PV}" == "9999" ]; then +if [[ "${PV}" == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/hydrusnetwork/hydrus.git" diff --git a/media-gfx/hydrus/hydrus-445.ebuild b/media-gfx/hydrus/hydrus-445.ebuild index 7fa30dda42b..2c52c2dc47e 100644 --- a/media-gfx/hydrus/hydrus-445.ebuild +++ b/media-gfx/hydrus/hydrus-445.ebuild @@ -11,7 +11,7 @@ inherit python-single-r1 desktop optfeature DESCRIPTION="A booru-like media organizer for the desktop" HOMEPAGE="https://hydrusnetwork.github.io/hydrus/ https://github.com/hydrusnetwork/hydrus" -if [ "${PV}" == "9999" ]; then +if [[ "${PV}" == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/hydrusnetwork/hydrus.git" diff --git a/media-gfx/hydrus/hydrus-9999.ebuild b/media-gfx/hydrus/hydrus-9999.ebuild index d51d23e32a5..3ea6657aaea 100644 --- a/media-gfx/hydrus/hydrus-9999.ebuild +++ b/media-gfx/hydrus/hydrus-9999.ebuild @@ -11,7 +11,7 @@ inherit python-single-r1 desktop optfeature DESCRIPTION="A booru-like media organizer for the desktop" HOMEPAGE="https://hydrusnetwork.github.io/hydrus/ https://github.com/hydrusnetwork/hydrus" -if [ "${PV}" == "9999" ]; then +if [[ "${PV}" == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/hydrusnetwork/hydrus.git"