From e1096db47d332f2e4bfb4f38d262bb94e69d9ad5 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Mon, 13 Dec 2021 17:23:42 -0500 Subject: set exec and stuff --- bin/mutt-fetchbug | 161 ------------------------------------------------------ 1 file changed, 161 deletions(-) delete mode 100755 bin/mutt-fetchbug (limited to 'bin/mutt-fetchbug') diff --git a/bin/mutt-fetchbug b/bin/mutt-fetchbug deleted file mode 100755 index 93ffc58..0000000 --- a/bin/mutt-fetchbug +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/perl -w -# -# mutt-fetchbug, extensively based off of -# mutt-notmuch - notmuch (of a) helper for Mutt -# -# Copyright: © 2011 Stefano Zacchiroli -# License: GNU General Public License (GPL), version 3 or above -# -# Differences between mutt-notmuch and mutt-fetchbug are -# Copyright: © 2012 Ryan Kavanagh -# License: GNU General Public License (GPL), version 3 or above -# -# See the bottom of this file for more documentation. -# A manpage can be obtained by running "pod2man mutt-fetchbug > mutt-fetchbug.1" - -use strict; -use warnings; - -use File::Path; -use Getopt::Long; -use Pod::Usage; - -# search($btsmbox, $query) -# Fetch bugs matching $query with bts; store results in $btsmbox -sub search($$) { - my ($btsmbox, $query) = @_; - - system("bts --cache-mode=mbox cache $query" - . " && ln -fs ~/.cache/devscripts/bts/$query.mbox $btsmbox"); -} - -sub search_action($$@) { - my ($interactive, $btsmbox, @params) = @_; - - if (! $interactive) { - fetch($btsmbox, join(' ', @params)); - } else { - my $query = ""; - my $done = 0; - while (! $done) { - print "bug number ('?' for man): "; - chomp($query = ); - if ($query eq "?") { - system("man bts"); - } elsif ($query eq "") { - $done = 1; # quit doing nothing - } else { - search($btsmbox, $query); - $done = 1; - } - } - } -} - -sub die_usage() { - my %podflags = ( "verbose" => 1, - "exitval" => 2 ); - pod2usage(%podflags); -} - -sub main() { - my $btsmbox = "$ENV{HOME}/.cache/mutt_btsresults"; - my $interactive = 0; - my $help_needed = 0; - - my $getopt = GetOptions( - "h|help" => \$help_needed, - "o|output-mbox=s" => \$btsmbox, - "p|prompt" => \$interactive); - if (! $getopt || $#ARGV < 0) { die_usage() }; - my ($action, @params) = ($ARGV[0], @ARGV[1..$#ARGV]); - - if ($help_needed) { - die_usage(); - } elsif ($action eq "search" && $#ARGV == 0 && ! $interactive) { - print STDERR "Error: no search term provided\n\n"; - die_usage(); - } elsif ($action eq "search") { - search_action($interactive, $btsmbox, @params); - } else { - die_usage(); - } -} - -main(); - -__END__ - -=head1 NAME - -mutt-fetchbug - 'bts show' frontend for Mutt - -=head1 SYNOPSIS - -=over - -=item B [I