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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D5B015864F for ; Fri, 24 Mar 2023 14:30:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 673F8E09FE; Fri, 24 Mar 2023 14:30:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BDFCE09FE for ; Fri, 24 Mar 2023 14:30:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68A6033BE3B for ; Fri, 24 Mar 2023 14:30:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B269D8E5 for ; Fri, 24 Mar 2023 14:30:48 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1679668246.04ca5c83b6cce6fb4152fd2f54cd03141505aaaf.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/flycheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/flycheck/flycheck-32_p20220328-r1.ebuild app-emacs/flycheck/flycheck-32_p20230305-r1.ebuild app-emacs/flycheck/flycheck-32_p20230305.ebuild X-VCS-Directories: app-emacs/flycheck/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 04ca5c83b6cce6fb4152fd2f54cd03141505aaaf X-VCS-Branch: master Date: Fri, 24 Mar 2023 14:30:48 +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: fed48df9-20bf-457e-84db-bde21b45b8ae X-Archives-Hash: 62b4f7b2da65ba59956ded5930b99540 commit: 04ca5c83b6cce6fb4152fd2f54cd03141505aaaf Author: Maciej Barć gentoo org> AuthorDate: Fri Mar 24 14:27:23 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Mar 24 14:30:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04ca5c83 app-emacs/flycheck: guard COMMIT; add support for live Signed-off-by: Maciej Barć gentoo.org> app-emacs/flycheck/flycheck-32_p20220328-r1.ebuild | 23 +++++++++++++++++----- app-emacs/flycheck/flycheck-32_p20230305-r1.ebuild | 23 +++++++++++++++++----- app-emacs/flycheck/flycheck-32_p20230305.ebuild | 23 +++++++++++++++++----- 3 files changed, 54 insertions(+), 15 deletions(-) diff --git a/app-emacs/flycheck/flycheck-32_p20220328-r1.ebuild b/app-emacs/flycheck/flycheck-32_p20220328-r1.ebuild index 68d7c5475c23..38acdbd6ab11 100644 --- a/app-emacs/flycheck/flycheck-32_p20220328-r1.ebuild +++ b/app-emacs/flycheck/flycheck-32_p20220328-r1.ebuild @@ -8,14 +8,27 @@ NEED_EMACS="24.3" inherit elisp DESCRIPTION="Modern on-the-fly syntax checking extension for GNU Emacs" -HOMEPAGE="https://www.flycheck.org/" -COMMIT="3b5b4248074f016922c2674789d4a242528cf4c7" -SRC_URI="https://github.com/flycheck/flycheck/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" +HOMEPAGE="https://www.flycheck.org/ + https://github.com/flycheck/flycheck/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" +else + if [[ ${PV} == *_p20220328 ]] ; then + COMMIT=3b5b4248074f016922c2674789d4a242528cf4c7 + SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-${COMMIT} + else + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + fi + KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv ~x64-macos" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv ~x64-macos" RESTRICT="test" # test requires cask and ert-runner which are not packaged yet RDEPEND=">=app-emacs/dash-2.12.1 diff --git a/app-emacs/flycheck/flycheck-32_p20230305-r1.ebuild b/app-emacs/flycheck/flycheck-32_p20230305-r1.ebuild index f1f18ee87b30..144233694866 100644 --- a/app-emacs/flycheck/flycheck-32_p20230305-r1.ebuild +++ b/app-emacs/flycheck/flycheck-32_p20230305-r1.ebuild @@ -7,15 +7,28 @@ NEED_EMACS="24.3" inherit edo elisp -COMMIT="5f2ef177cb21ae8b73714575802beef04abd0f5e" DESCRIPTION="Modern on-the-fly syntax checking extension for GNU Emacs" -HOMEPAGE="https://www.flycheck.org/" -SRC_URI="https://github.com/flycheck/flycheck/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" +HOMEPAGE="https://www.flycheck.org/ + https://github.com/flycheck/flycheck/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" +else + if [[ ${PV} == *_p20230305 ]] ; then + COMMIT=5f2ef177cb21ae8b73714575802beef04abd0f5e + SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-${COMMIT} + else + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + fi + KEYWORDS="~amd64 ~arm ~ppc64" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc64" IUSE="test" # Tests fail for now, need more investigation RESTRICT="!test? ( test ) test" diff --git a/app-emacs/flycheck/flycheck-32_p20230305.ebuild b/app-emacs/flycheck/flycheck-32_p20230305.ebuild index 1ad096748312..2fae67dd6044 100644 --- a/app-emacs/flycheck/flycheck-32_p20230305.ebuild +++ b/app-emacs/flycheck/flycheck-32_p20230305.ebuild @@ -8,14 +8,27 @@ NEED_EMACS="24.3" inherit elisp DESCRIPTION="Modern on-the-fly syntax checking extension for GNU Emacs" -HOMEPAGE="https://www.flycheck.org/" -COMMIT="5f2ef177cb21ae8b73714575802beef04abd0f5e" -SRC_URI="https://github.com/flycheck/flycheck/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" +HOMEPAGE="https://www.flycheck.org/ + https://github.com/flycheck/flycheck/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" +else + if [[ ${PV} == *_p20230305 ]] ; then + COMMIT=5f2ef177cb21ae8b73714575802beef04abd0f5e + SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-${COMMIT} + else + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + fi + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos" RESTRICT="test" # TODO: wire up now that cask and ert-runner are packaged RDEPEND=">=app-emacs/dash-2.12.1