-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge_driver_ekeyword: Add test for merging commits that touch the sa…
…me keyword Unsure what the behavior should be. Currently the result depends on the order of the commits being merged. maybe this is reasonable? Seems a bit scary.
- Loading branch information
Showing
5 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
pym/gentoolkit/merge_driver_ekeyword/tests/same-keyword-conflict/A.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
XORG_TARBALL_SUFFIX="xz" | ||
inherit xorg-3 | ||
|
||
DESCRIPTION="monitor system console messages with X" | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm -arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" | ||
|
||
RDEPEND=" | ||
x11-libs/libXaw | ||
x11-libs/libXmu | ||
x11-libs/libXt | ||
x11-libs/libX11" | ||
DEPEND="${RDEPEND} | ||
x11-base/xorg-proto" |
19 changes: 19 additions & 0 deletions
19
pym/gentoolkit/merge_driver_ekeyword/tests/same-keyword-conflict/B.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
XORG_TARBALL_SUFFIX="xz" | ||
inherit xorg-3 | ||
|
||
DESCRIPTION="monitor system console messages with X" | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" | ||
|
||
RDEPEND=" | ||
x11-libs/libXaw | ||
x11-libs/libXmu | ||
x11-libs/libXt | ||
x11-libs/libX11" | ||
DEPEND="${RDEPEND} | ||
x11-base/xorg-proto" |
19 changes: 19 additions & 0 deletions
19
pym/gentoolkit/merge_driver_ekeyword/tests/same-keyword-conflict/common-ancestor.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
XORG_TARBALL_SUFFIX="xz" | ||
inherit xorg-3 | ||
|
||
DESCRIPTION="monitor system console messages with X" | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" | ||
|
||
RDEPEND=" | ||
x11-libs/libXaw | ||
x11-libs/libXmu | ||
x11-libs/libXt | ||
x11-libs/libX11" | ||
DEPEND="${RDEPEND} | ||
x11-base/xorg-proto" |
19 changes: 19 additions & 0 deletions
19
pym/gentoolkit/merge_driver_ekeyword/tests/same-keyword-conflict/expected.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
XORG_TARBALL_SUFFIX="xz" | ||
inherit xorg-3 | ||
|
||
DESCRIPTION="monitor system console messages with X" | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm -arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" | ||
|
||
RDEPEND=" | ||
x11-libs/libXaw | ||
x11-libs/libXmu | ||
x11-libs/libXt | ||
x11-libs/libX11" | ||
DEPEND="${RDEPEND} | ||
x11-base/xorg-proto" |