summaryrefslogtreecommitdiff
path: root/dev-vcs/git-machete
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-vcs/git-machete
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-vcs/git-machete')
-rw-r--r--dev-vcs/git-machete/Manifest2
-rw-r--r--dev-vcs/git-machete/files/git-machete-3.24.2_no-strays-in-site-packages.patch11
-rw-r--r--dev-vcs/git-machete/files/git-machete-3.35.1_no-strays-in-site-packages.patch11
-rw-r--r--dev-vcs/git-machete/git-machete-3.25.2.ebuild51
-rw-r--r--dev-vcs/git-machete/git-machete-3.35.1.ebuild49
-rw-r--r--dev-vcs/git-machete/metadata.xml21
6 files changed, 0 insertions, 145 deletions
diff --git a/dev-vcs/git-machete/Manifest b/dev-vcs/git-machete/Manifest
deleted file mode 100644
index c2e67e31592e..000000000000
--- a/dev-vcs/git-machete/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST git-machete-3.25.2.gh.tar.gz 1892239 BLAKE2B 18fe483983ff5acb8139152ba1d1eb4c3a11e5092be827ab922c12841f8b40aef4429b560a3ac29b94f1800fea966dff1b923bc1ce71850cca4998234da016b6 SHA512 0d928823d2440a46105eb8d4caa84ef828f4a01e793530151c484958b34f4209da3efa9d874dfb48a32de424cd2defc4ae3634b68e0dec7bcaf9fe82b15e68c8
-DIST git-machete-3.35.1.gh.tar.gz 1920132 BLAKE2B 0d8d199e236c8b47e8b41f9a90b8960f245e886de3875fccdb26f9a6452a652089d46792f4fe3ddd24ae411fb2e29cc6f799df8e992ce770867b73ecda592f42 SHA512 8e3b2d3e1fed78961eb4274e40bfd59d51a18f23e7e3b69577eddab25d7d0545c3cb00db837645cef382763359ce55ca656cf90e1037d43312bc732e17ae10b0
diff --git a/dev-vcs/git-machete/files/git-machete-3.24.2_no-strays-in-site-packages.patch b/dev-vcs/git-machete/files/git-machete-3.24.2_no-strays-in-site-packages.patch
deleted file mode 100644
index 912644e6ab78..000000000000
--- a/dev-vcs/git-machete/files/git-machete-3.24.2_no-strays-in-site-packages.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/setup.py
-+++ b/setup.py
-@@ -25,7 +25,7 @@
- keywords='git',
- # Non-python directories are only included in `packages` for the sake of bdist_wheel;
- # they have apparently no effect on sdists (only MANIFEST.in matters).
-- packages=['git_machete', 'completion', 'docs/man'],
-+ packages=['git_machete'],
- entry_points={
- 'console_scripts': [
- 'git-machete = git_machete.bin:main'
diff --git a/dev-vcs/git-machete/files/git-machete-3.35.1_no-strays-in-site-packages.patch b/dev-vcs/git-machete/files/git-machete-3.35.1_no-strays-in-site-packages.patch
deleted file mode 100644
index eb329777c5f9..000000000000
--- a/dev-vcs/git-machete/files/git-machete-3.35.1_no-strays-in-site-packages.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/setup.py
-+++ b/setup.py
-@@ -25,7 +25,7 @@
- keywords='git',
- # Non-python directories are only included in `packages` for the sake of bdist_wheel;
- # they have apparently no effect on sdists (only MANIFEST.in matters).
-- packages=['git_machete', 'git_machete/client', 'completion', 'docs/man'],
-+ packages=['git_machete', 'git_machete/client'],
- entry_points={
- 'console_scripts': [
- 'git-machete = git_machete.bin:main'
diff --git a/dev-vcs/git-machete/git-machete-3.25.2.ebuild b/dev-vcs/git-machete/git-machete-3.25.2.ebuild
deleted file mode 100644
index 763fd74d7334..000000000000
--- a/dev-vcs/git-machete/git-machete-3.25.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="Probably the sharpest git repo organizer & rebase/merge workflow automation tool"
-HOMEPAGE="https://github.com/VirtusLab/git-machete https://pypi.org/project/git-machete/"
-# No tests in PyPI tarballs
-SRC_URI="https://github.com/VirtusLab/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~riscv"
-
-RDEPEND="dev-vcs/git"
-BDEPEND="test? (
- >=dev-python/pytest-mock-3.10.0[${PYTHON_USEDEP}]
- >=dev-python/pytest-xdist-3.2.1[${PYTHON_USEDEP}]
-)"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-3.24.2_no-strays-in-site-packages.patch
-)
-
-DOCS=( CONTRIBUTING.md README.md )
-
-distutils_enable_tests pytest
-
-# Several of the fish- and zsh-completion tests appear to be broken
-EPYTEST_DESELECT=(
- tests/completion_e2e/test_completion_e2e.py::TestCompletionEndToEnd::test_completion
-)
-
-src_install() {
- distutils-r1_src_install
-
- doman docs/man/${PN}.1
-
- newbashcomp completion/${PN}.completion.bash ${PN}
-
- insinto /usr/share/fish/vendor_completions.d
- doins completion/${PN}.fish
-
- insinto /usr/share/zsh/site-functions
- newins completion/${PN}.completion.zsh _${PN}
-}
diff --git a/dev-vcs/git-machete/git-machete-3.35.1.ebuild b/dev-vcs/git-machete/git-machete-3.35.1.ebuild
deleted file mode 100644
index 94d7f8b5c6c2..000000000000
--- a/dev-vcs/git-machete/git-machete-3.35.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_USE_PEP517=setuptools
-EPYTEST_XDIST=1
-
-inherit distutils-r1 shell-completion
-
-DESCRIPTION="Probably the sharpest git repo organizer & rebase/merge workflow automation tool"
-HOMEPAGE="https://github.com/VirtusLab/git-machete https://pypi.org/project/git-machete/"
-# No tests in PyPI tarballs
-SRC_URI="https://github.com/VirtusLab/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~riscv"
-
-RDEPEND="dev-vcs/git"
-BDEPEND="
- test? (
- >=dev-python/pytest-mock-3.10.0[${PYTHON_USEDEP}]
- )
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-3.35.1_no-strays-in-site-packages.patch
-)
-
-DOCS=( CONTRIBUTING.md README.md )
-
-distutils_enable_tests pytest
-
-# Several of the fish- and zsh-completion tests appear to be broken
-EPYTEST_DESELECT=(
- tests/completion_e2e/test_completion_e2e.py::TestCompletionEndToEnd::test_completion
-)
-
-src_install() {
- distutils-r1_src_install
-
- doman docs/man/${PN}.1
-
- newbashcomp completion/${PN}.completion.bash ${PN}
- dofishcomp completion/${PN}.fish
- newzshcomp completion/${PN}.completion.zsh _${PN}
-}
diff --git a/dev-vcs/git-machete/metadata.xml b/dev-vcs/git-machete/metadata.xml
deleted file mode 100644
index aa60738d78e8..000000000000
--- a/dev-vcs/git-machete/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
- git-machete is a robust tool that simplifies your git workflows.
-
- The bird's eye view provided by git-machete makes merges/rebases/push/pulls
- hassle-free even when multiple branches are present in the repository
- (master/develop, your topic branches, teammate's branches checked out
- for review, etc.).
-
- Using this tool, you can maintain small, focused, easy-to-review pull
- requests with little effort.
- </longdescription>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">VirtusLab/git-machete</remote-id>
- <remote-id type="pypi">git-machete</remote-id>
- </upstream>
-</pkgmetadata>