diff options
author | Yixun Lan <dlan@gentoo.org> | 2023-12-13 07:49:45 +0000 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2023-12-13 11:03:28 +0000 |
commit | 747d4cb8e959a87bbddff886147ba493f14035af (patch) | |
tree | fe8083ad488f794c1fb1290c666e5ffc94aa631c /dev-vcs | |
parent | dev-vcs/stgit: add 2.4.1 (diff) | |
download | gentoo-747d4cb8e959a87bbddff886147ba493f14035af.tar.gz gentoo-747d4cb8e959a87bbddff886147ba493f14035af.tar.bz2 gentoo-747d4cb8e959a87bbddff886147ba493f14035af.zip |
dev-vcs/stgit: fix QA warning
drop empty variable, fix SRC_URI
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/stgit/stgit-2.4.0.ebuild | 3 | ||||
-rw-r--r-- | dev-vcs/stgit/stgit-2.4.1.ebuild | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/dev-vcs/stgit/stgit-2.4.0.ebuild b/dev-vcs/stgit/stgit-2.4.0.ebuild index 51a06d640ab6..9a085c434152 100644 --- a/dev-vcs/stgit/stgit-2.4.0.ebuild +++ b/dev-vcs/stgit/stgit-2.4.0.ebuild @@ -160,7 +160,7 @@ inherit cargo flag-o-matic DESCRIPTION="Stack-based patch management for Git" HOMEPAGE="https://stacked-git.github.io/" -SRC_URI="$(cargo_crate_uris)" +SRC_URI="${CARGO_CRATE_URIS}" SRC_URI+=" https://github.com/stacked-git/stgit/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-2" @@ -171,7 +171,6 @@ KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86" IUSE="doc" DEPEND="doc? ( app-text/asciidoc )" -RDEPEND="" # rust does not use *FLAGS from make.conf, silence portage warning # update with proper path to binaries this crate installs, omit leading / diff --git a/dev-vcs/stgit/stgit-2.4.1.ebuild b/dev-vcs/stgit/stgit-2.4.1.ebuild index 70be80f7d441..ca2de45fc412 100644 --- a/dev-vcs/stgit/stgit-2.4.1.ebuild +++ b/dev-vcs/stgit/stgit-2.4.1.ebuild @@ -170,7 +170,7 @@ inherit cargo flag-o-matic DESCRIPTION="Stack-based patch management for Git" HOMEPAGE="https://stacked-git.github.io/" -SRC_URI="$(cargo_crate_uris)" +SRC_URI="${CARGO_CRATE_URIS}" SRC_URI+=" https://github.com/stacked-git/stgit/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-2" @@ -181,7 +181,6 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="doc" DEPEND="doc? ( app-text/asciidoc )" -RDEPEND="" # rust does not use *FLAGS from make.conf, silence portage warning # update with proper path to binaries this crate installs, omit leading / |