summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-02-02 11:37:54 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-02-02 11:37:54 -0700
commitbc687302753c78c8acdffbf89aa4b3a0ba3fb466 (patch)
tree6782835c4b48810ef0d73e16ed16aeb927bd7bfb /lib
parent38e0c240f4eeba591131b59298c82dc16158e7ac (diff)
downloaddotfiles-bc687302753c78c8acdffbf89aa4b3a0ba3fb466.tar.gz
stop stowing git hooks into $HOME
No use for those symlinks.
Diffstat (limited to 'lib')
l---------lib/hooks/git/dgit/pre-push1
-rwxr-xr-xlib/hooks/git/dotfiles/post-checkout23
-rwxr-xr-xlib/hooks/git/dotfiles/pre-push26
l---------lib/hooks/git/git-remote-gcrypt/pre-push1
l---------lib/hooks/git/mailscripts/pre-push1
l---------lib/hooks/git/org-d20/pre-push1
l---------lib/hooks/git/pandoc-citeproc-preamble/pre-push1
-rwxr-xr-xlib/hooks/git/pre-push_signed-off-by57
-rwxr-xr-xlib/hooks/git/propellor/post-checkout29
9 files changed, 0 insertions, 140 deletions
diff --git a/lib/hooks/git/dgit/pre-push b/lib/hooks/git/dgit/pre-push
deleted file mode 120000
index 9ba9f82a..00000000
--- a/lib/hooks/git/dgit/pre-push
+++ /dev/null
@@ -1 +0,0 @@
-../pre-push_signed-off-by \ No newline at end of file
diff --git a/lib/hooks/git/dotfiles/post-checkout b/lib/hooks/git/dotfiles/post-checkout
deleted file mode 100755
index 21b007cc..00000000
--- a/lib/hooks/git/dotfiles/post-checkout
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-branch="$(git symbolic-ref --quiet --short HEAD)"
-if ! [ $? = 0 ]; then # detached HEAD
- git config commit.gpgsign false
- exit 0
-fi
-
-# Check that signing is likely to succeed before setting
-# commit.gpgsign, by looking for presence of a secret key with the
-# signing capability.
-#
-# The reason this is needed is that this post-checkout hook will get
-# called during a rebase onto master, and I want to do that on hosts
-# which don't have access to my secret key. If commit.gpgsign gets
-# set to true on those hosts, the rebase will be interrupted
-if [ "$branch" = "master" ] \
- && gpg --list-secret-keys $(git config user.signingKey) 2>/dev/null \
- | grep -Eq '^(ssb|sec)[^#].*\[[A-Z]*S[A-Z]*\]$'; then
- git config commit.gpgsign true
-else
- git config commit.gpgsign false
-fi
diff --git a/lib/hooks/git/dotfiles/pre-push b/lib/hooks/git/dotfiles/pre-push
deleted file mode 100755
index a3f048dc..00000000
--- a/lib/hooks/git/dotfiles/pre-push
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-remote="$1"
-url="$2"
-
-z40=0000000000000000000000000000000000000000
-
-while read local_ref local_sha remote_ref remote_sha; do
- if [ "$local_sha" = $z40 ]; then
- # Permit deletion of branches
- :
- else
- if [ "$remote_ref" = "refs/heads/master" ]; then
- if git verify-commit-by-fp \
- 8DC2487E51ABDD90B5C4753F0F56D0553B6D411B "$local_sha"
- then
- echo "Proposed new master has been signed by Sean"
- else
- echo >&2 "Proposed new master has not been PGP-signed by Sean"
- exit 1
- fi
- fi
- fi
-done
-
-exit 0
diff --git a/lib/hooks/git/git-remote-gcrypt/pre-push b/lib/hooks/git/git-remote-gcrypt/pre-push
deleted file mode 120000
index 9ba9f82a..00000000
--- a/lib/hooks/git/git-remote-gcrypt/pre-push
+++ /dev/null
@@ -1 +0,0 @@
-../pre-push_signed-off-by \ No newline at end of file
diff --git a/lib/hooks/git/mailscripts/pre-push b/lib/hooks/git/mailscripts/pre-push
deleted file mode 120000
index 9ba9f82a..00000000
--- a/lib/hooks/git/mailscripts/pre-push
+++ /dev/null
@@ -1 +0,0 @@
-../pre-push_signed-off-by \ No newline at end of file
diff --git a/lib/hooks/git/org-d20/pre-push b/lib/hooks/git/org-d20/pre-push
deleted file mode 120000
index 9ba9f82a..00000000
--- a/lib/hooks/git/org-d20/pre-push
+++ /dev/null
@@ -1 +0,0 @@
-../pre-push_signed-off-by \ No newline at end of file
diff --git a/lib/hooks/git/pandoc-citeproc-preamble/pre-push b/lib/hooks/git/pandoc-citeproc-preamble/pre-push
deleted file mode 120000
index 9ba9f82a..00000000
--- a/lib/hooks/git/pandoc-citeproc-preamble/pre-push
+++ /dev/null
@@ -1 +0,0 @@
-../pre-push_signed-off-by \ No newline at end of file
diff --git a/lib/hooks/git/pre-push_signed-off-by b/lib/hooks/git/pre-push_signed-off-by
deleted file mode 100755
index 775f505c..00000000
--- a/lib/hooks/git/pre-push_signed-off-by
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/bash
-
-# some of this is from
-# https://lubomir.github.io/en/2016-05-04-signoff-hooks.html
-
-remote="$1"
-url="$2"
-
-z40=0000000000000000000000000000000000000000
-
-while read local_ref local_sha remote_ref remote_sha; do
- if [ "$local_sha" = $z40 ]; then
- # Permit deletion of branches
- :
- elif echo "$remote_ref" | grep -Eq "^refs/heads/(wip|tmp)/"; then
- # wip/ branches may contain commits which are not signed off
- :
- else
- if [ "$remote_sha" = $z40 ]
- then
- # New branch, examine all commits
- range="$local_sha"
- else
- # Update to existing branch, examine new commits
- range="$remote_sha..$local_sha"
- fi
-
- # Check for WIP commit
- commit=$(git rev-list -n 1 --grep '^WIP' "$range")
- if [ -n "$commit" ]
- then
- echo >&2 "Found WIP commit in $local_ref, not pushing"
- exit 1
- fi
-
- # Check for commits without sign-off
- if [ "$remote_sha" = $z40 ]; then
- # New branch is pushed, we only want to check commits that are not
- # on master.
- range="$(git merge-base master "$local_sha")..$local_sha"
- fi
- while read ref; do
- msg=$(git log -n 1 --format=%B "$ref")
- if ! grep -q '^Signed-off-by: ' <<<"$msg"; then
- # allow merge commits through
- if [ -z "$(git rev-list -1 --merges $ref~1..$ref)" ]; then
- echo >&2 "Unsigned-off non-merge commit $ref"
- exit 1
- fi
- fi
- done < <(git rev-list "$range")
- # The process substitution above is a hack to make sure loop runs in
- # the same shell and can actually exit the whole script.
- fi
-done
-
-exit 0
diff --git a/lib/hooks/git/propellor/post-checkout b/lib/hooks/git/propellor/post-checkout
deleted file mode 100755
index 5118e81a..00000000
--- a/lib/hooks/git/propellor/post-checkout
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Path::Class;
-use autodie;
-
-(undef, my $head, my $flag) = @ARGV;
-my $branch = `git name-rev --name-only $head`;
-chomp $branch;
-
-if ( $flag && "$branch" ne "debian" ) {
- # We create a cabal sandbox so that Emacs' haskell-mode ignores
- # stack.yaml. We don't need to use stack because Propellor's deps
- # are always installed as system packages
- unless ( -d ".cabal-sandbox" ) {
- system "cabal sandbox init";
- }
- open my $fh, ">", ".dir-locals.el";
- print $fh <<'END';
-((nil . ((indent-tabs-mode . t)
- (tab-width . 8)
- (fill-column . 80)))
- ;; Warn about spaces used for indentation:
- (haskell-mode . ((eval . (highlight-regexp "^ +")))))
-END
- close $fh;
-}