summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-02-28 23:26:15 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-02-28 23:26:48 +0100
commitf8a2ab3e9c5d11afbda52516167b7e8772a3dcd8 (patch)
tree4d862dcb97b3d955bebdacd3df47a0a13db018d0 /dev-vcs/git-cola/files
parentapp-emulation/lxc: stable 2.0.9 for ppc64, bug #612216 (diff)
downloadgentoo-f8a2ab3e9c5d11afbda52516167b7e8772a3dcd8.tar.gz
gentoo-f8a2ab3e9c5d11afbda52516167b7e8772a3dcd8.tar.bz2
gentoo-f8a2ab3e9c5d11afbda52516167b7e8772a3dcd8.zip
dev-vcs/git-cola: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-vcs/git-cola/files')
-rw-r--r--dev-vcs/git-cola/files/git-cola-2.2.1-disable-live-tests.patch22
-rw-r--r--dev-vcs/git-cola/files/git-cola-2.2.1-update-git-config-in-tests.patch13
2 files changed, 0 insertions, 35 deletions
diff --git a/dev-vcs/git-cola/files/git-cola-2.2.1-disable-live-tests.patch b/dev-vcs/git-cola/files/git-cola-2.2.1-disable-live-tests.patch
deleted file mode 100644
index 2ebdc9880d1e..000000000000
--- a/dev-vcs/git-cola/files/git-cola-2.2.1-disable-live-tests.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/test/git_test.py b/test/git_test.py
-index 9f812b2..ff7da24 100644
---- a/test/git_test.py
-+++ b/test/git_test.py
-@@ -53,17 +53,6 @@ class GitCommandTest(unittest.TestCase):
- version = self.git.version()[STDOUT]
- self.failUnless(version.startswith('git version'))
-
-- def test_tag(self):
-- """Test running 'git tag'"""
-- tags = self.git.tag()[STDOUT].splitlines()
-- self.failUnless( 'v1.0.0' in tags )
--
-- def test_show(self):
-- """Test running 'git show'"""
-- sha = '1b9742bda5d26a4f250fa64657f66ed20624a084'
-- contents = self.git.show(sha)[STDOUT].splitlines()
-- self.failUnless(contents[0] == '/build')
--
- def test_stdout(self):
- """Test overflowing the stdout buffer"""
- # Write to stdout only
diff --git a/dev-vcs/git-cola/files/git-cola-2.2.1-update-git-config-in-tests.patch b/dev-vcs/git-cola/files/git-cola-2.2.1-update-git-config-in-tests.patch
deleted file mode 100644
index 96271d05548c..000000000000
--- a/dev-vcs/git-cola/files/git-cola-2.2.1-update-git-config-in-tests.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/test/helper.py b/test/helper.py
-index 006a5b1..64d0dfc 100644
---- a/test/helper.py
-+++ b/test/helper.py
-@@ -87,6 +87,8 @@ class GitRepositoryTestCase(TmpPathTestCase):
-
- def initialize_repo(self):
- self.git('init')
-+ self.git('config', '--local', 'user.name', 'Your Name')
-+ self.git('config', '--local', 'user.email', 'you@example.com')
- self.touch('A', 'B')
- self.git('add', 'A', 'B')
-