diff options
| author | Sebastian Pipping <sping@gentoo.org> | 2022-11-29 00:03:20 +0100 |
|---|---|---|
| committer | Sebastian Pipping <sping@gentoo.org> | 2022-11-29 01:42:36 +0100 |
| commit | db1963af574ff86be4e00f9122fcfc8979c85dea (patch) | |
| tree | 2c84ee005cbe04852329e9a13221be30de18dee2 /dev-vcs | |
| parent | a7084c8fc2b7e0925d2f4ef4d7481d50dc051574 (diff) | |
| download | gentoo-db1963af574ff86be4e00f9122fcfc8979c85dea.tar.gz gentoo-db1963af574ff86be4e00f9122fcfc8979c85dea.tar.bz2 gentoo-db1963af574ff86be4e00f9122fcfc8979c85dea.zip | |
dev-vcs/svn2git: EAPI 8 + UnusedInherits
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Diffstat (limited to 'dev-vcs')
| -rw-r--r-- | dev-vcs/svn2git/svn2git-1.0.18-r1.ebuild | 47 | ||||
| -rw-r--r-- | dev-vcs/svn2git/svn2git-9999.ebuild | 6 |
2 files changed, 50 insertions, 3 deletions
diff --git a/dev-vcs/svn2git/svn2git-1.0.18-r1.ebuild b/dev-vcs/svn2git/svn2git-1.0.18-r1.ebuild new file mode 100644 index 000000000000..23d663c4c084 --- /dev/null +++ b/dev-vcs/svn2git/svn2git-1.0.18-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils +[[ "${PV}" == "9999" ]] && inherit git-r3 + +DESCRIPTION="Tool for one-time conversion from svn to git" +HOMEPAGE="https://github.com/svn-all-fast-export/svn2git" +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/svn-all-fast-export/svn2git.git" +else + SRC_URI="https://github.com/svn-all-fast-export/svn2git/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="" +# KEYWORDS way up + +DEPEND=" + dev-qt/qtcore:5 + dev-vcs/subversion" +RDEPEND="${DEPEND} + dev-vcs/git" + +DOCS=( README.md ) + +src_configure() { + local qmake_args=( + APR_INCLUDE=/usr/include/apr-1 + PREFIX=/usr + SVN_INCLUDE=/usr/include/subversion-1 + VERSION=${PV} + ) + eqmake5 "${qmake_args[@]}" fast-export2.pro +} + +src_install() { + einstalldocs + insinto /usr/share/${PN}/samples + doins samples/*.rules + dobin svn-all-fast-export + dosym svn-all-fast-export /usr/bin/svn2git +} diff --git a/dev-vcs/svn2git/svn2git-9999.ebuild b/dev-vcs/svn2git/svn2git-9999.ebuild index 71f0f843766f..7db66f10e468 100644 --- a/dev-vcs/svn2git/svn2git-9999.ebuild +++ b/dev-vcs/svn2git/svn2git-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit desktop qmake-utils +inherit qmake-utils [[ "${PV}" == "9999" ]] && inherit git-r3 DESCRIPTION="Tool for one-time conversion from svn to git" |
