From 58c1260531857b2c50f5bc6654792eb54127783b Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 20 Apr 2024 19:47:09 -0400 Subject: [PATCH 1/3] mailshears.gemspec: bump version to 0.1.0 (Since I changed the config file location.) --- mailshears.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailshears.gemspec b/mailshears.gemspec index 72d9cd4..a22b2cf 100644 --- a/mailshears.gemspec +++ b/mailshears.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'mailshears' - s.version = '0.0.6' + s.version = '0.1.0' s.platform = Gem::Platform::RUBY s.authors = ['Michael Orlitzky'] s.email = ['michael@orlitzky.com'] -- 2.43.2 From 18f963327c4a318c0e2a84d476a9a3107bb20fb9 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 6 May 2024 14:40:34 -0400 Subject: [PATCH 2/3] */*: tweak the package summary (mangle -> prune) --- bin/mailshears | 2 +- doc/man1/mailshears.1 | 2 +- mailshears.gemspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/mailshears b/bin/mailshears index 1793112..6161d57 100755 --- a/bin/mailshears +++ b/bin/mailshears @@ -1,6 +1,6 @@ #!/usr/bin/ruby -wU # -# mailshears, to mangle your mail garden +# mailshears, to prune your mail garden # # Load all of our lib/ code. diff --git a/doc/man1/mailshears.1 b/doc/man1/mailshears.1 index ee9bbd5..9f032c3 100644 --- a/doc/man1/mailshears.1 +++ b/doc/man1/mailshears.1 @@ -1,7 +1,7 @@ .TH mailshears 1 .SH NAME -mailshears \- mangle your mail garden +mailshears \- prune your mail garden .SH SYNOPSIS \fBmailshears\fR [--help] [ [\fBprune\fR] | [\fBrm\fR <\fItargets\fR>] | [\fBmv\fR <\fIsrc\fR> <\fIdst\fR>] ] diff --git a/mailshears.gemspec b/mailshears.gemspec index a22b2cf..58d6525 100644 --- a/mailshears.gemspec +++ b/mailshears.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.authors = ['Michael Orlitzky'] s.email = ['michael@orlitzky.com'] s.homepage = 'https://michael.orlitzky.com/code/mailshears.xhtml' - s.summary = 'Prune unused mail directories.' + s.summary = 'Prune your mail garden' s.description = <<-EOF Managing a mail system with virtual users is annoying. The authoritative database of users is stored in one table, but every -- 2.43.2 From 1a74e3dea654759ab23eaddc7a5ff5951be9a3f4 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 6 May 2024 14:41:12 -0400 Subject: [PATCH 3/3] doc/COPYING: add one to state the "or later" bit --- doc/COPYING | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 doc/COPYING diff --git a/doc/COPYING b/doc/COPYING new file mode 100644 index 0000000..73433a7 --- /dev/null +++ b/doc/COPYING @@ -0,0 +1,15 @@ +mailshears: prune your mail garden +Copyright (C) 2024 Michael Orlitzky + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . -- 2.43.2