diff options
author | John Helmert III <ajak@gentoo.org> | 2023-01-17 10:21:08 -0600 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2023-01-17 11:03:38 -0600 |
commit | 861854ad2e1385419dbb873711a1ace3d964c43c (patch) | |
tree | ea1b9e107e0fa4e57a53d6a72064e022ee5dd229 /app-admin/gopass/files | |
parent | sys-boot/grub: set GRUB_DISABLE_LINUX_PARTUUID=false by default (diff) | |
download | gentoo-861854ad2e1385419dbb873711a1ace3d964c43c.tar.gz gentoo-861854ad2e1385419dbb873711a1ace3d964c43c.tar.bz2 gentoo-861854ad2e1385419dbb873711a1ace3d964c43c.zip |
app-admin/gopass: add 1.15.3, take maintainership
Closes: https://bugs.gentoo.org/844265
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'app-admin/gopass/files')
-rw-r--r-- | app-admin/gopass/files/gopass-1.15.3-skip-tests.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/app-admin/gopass/files/gopass-1.15.3-skip-tests.patch b/app-admin/gopass/files/gopass-1.15.3-skip-tests.patch new file mode 100644 index 000000000000..b62e013eeb96 --- /dev/null +++ b/app-admin/gopass/files/gopass-1.15.3-skip-tests.patch @@ -0,0 +1,45 @@ +commit 51d636df06aac4cae32ada625f0f1bb6dda4821d +Author: John Helmert III <ajak@gentoo.org> +Date: Tue Jan 17 09:39:32 2023 -0600 + + output_test: skip test broken on dates other than 2023-01-07 + + Confusingly, doesn't seem reproducible from a local checkout. + + Signed-off-by: John Helmert III <ajak@gentoo.org> + +diff --git a/internal/audit/output_test.go b/internal/audit/output_test.go +index 027aa3a5..34ef5387 100644 +--- a/internal/audit/output_test.go ++++ b/internal/audit/output_test.go +@@ -10,6 +10,8 @@ import ( + ) + + func TestHTML(t *testing.T) { ++ t.Skip("Broken on dates other than 2023-01-07") ++ + r := newReport() + + r.AddPassword("foo", "bar") + +commit 452fac08c13a7792fdad2eae404f27bd668b2fb1 +Author: John Helmert III <ajak@gentoo.org> +Date: Tue Jan 17 09:39:13 2023 -0600 + + clone_test: skip test which tries to run gpg-agent + + Signed-off-by: John Helmert III <ajak@gentoo.org> + +diff --git a/internal/action/clone_test.go b/internal/action/clone_test.go +index c2757207..a5c4a21b 100644 +--- a/internal/action/clone_test.go ++++ b/internal/action/clone_test.go +@@ -141,6 +141,8 @@ func TestCloneGetGitConfig(t *testing.T) { + } + + func TestCloneCheckDecryptionKeys(t *testing.T) { ++ t.Skip("TODO: Trying to use gpg-agent fails in Portage tests") ++ + u := gptest.NewUnitTester(t) + + buf := &bytes.Buffer{} |