unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH 0/3] misc doc updates I missed for 1.9 :x
@ 2022-08-30  9:10 Eric Wong
  2022-08-30  9:10 ` [PATCH 1/3] Makefile.PL: add lei-reindex manpage Eric Wong
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Eric Wong @ 2022-08-30  9:10 UTC (permalink / raw)
  To: meta

Eric Wong (3):
  Makefile.PL: add lei-reindex manpage
  Makefile.PL: update version for upcoming 2.x
  INSTALL: update for Perl 5.12 dependency and 2022

 INSTALL     | 6 +++---
 Makefile.PL | 5 +++--
 2 files changed, 6 insertions(+), 5 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/3] Makefile.PL: add lei-reindex manpage
  2022-08-30  9:10 [PATCH 0/3] misc doc updates I missed for 1.9 :x Eric Wong
@ 2022-08-30  9:10 ` Eric Wong
  2022-08-30  9:10 ` [PATCH 2/3] Makefile.PL: update version for upcoming 2.x Eric Wong
  2022-08-30  9:10 ` [PATCH 3/3] INSTALL: update for Perl 5.12 dependency and 2022 Eric Wong
  2 siblings, 0 replies; 4+ messages in thread
From: Eric Wong @ 2022-08-30  9:10 UTC (permalink / raw)
  To: meta

I forgot to add this when I added the new command :x
---
 Makefile.PL | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile.PL b/Makefile.PL
index 67012d3e..ff03b615 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -53,7 +53,8 @@ $v->{-m1} = [ map {
 	lei-import lei-index lei-init lei-inspect lei-lcat
 	lei-ls-external lei-ls-label lei-ls-mail-source lei-ls-mail-sync
 	lei-ls-search lei-ls-watch lei-mail-diff lei-p2q lei-q
-	lei-rediff lei-refresh-mail-sync lei-rm lei-rm-watch lei-tag
+	lei-rediff lei-refresh-mail-sync lei-reindex
+	lei-rm lei-rm-watch lei-tag
 	lei-up)];
 $v->{-m5} = [ qw(public-inbox-config public-inbox-v1-format
 		public-inbox-v2-format public-inbox-extindex-format

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] Makefile.PL: update version for upcoming 2.x
  2022-08-30  9:10 [PATCH 0/3] misc doc updates I missed for 1.9 :x Eric Wong
  2022-08-30  9:10 ` [PATCH 1/3] Makefile.PL: add lei-reindex manpage Eric Wong
@ 2022-08-30  9:10 ` Eric Wong
  2022-08-30  9:10 ` [PATCH 3/3] INSTALL: update for Perl 5.12 dependency and 2022 Eric Wong
  2 siblings, 0 replies; 4+ messages in thread
From: Eric Wong @ 2022-08-30  9:10 UTC (permalink / raw)
  To: meta

"1.10" seems awkward and may confuse ASCII-betical sorting, so I
think "2.0" is more appropriate.
---
 Makefile.PL | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.PL b/Makefile.PL
index ff03b615..9233ac9d 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -133,7 +133,7 @@ WriteMakefile(
 	NAME => 'PublicInbox', # n.b. camel-case is not our choice
 
 	# XXX drop "PENDING" in .pod before updating this!
-	VERSION => '1.9.0.PENDING',
+	VERSION => '2.0.0.PENDING',
 
 	AUTHOR => 'public-inbox hackers <meta@public-inbox.org>',
 	ABSTRACT => 'an "archives first" approach to mailing lists',

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] INSTALL: update for Perl 5.12 dependency and 2022
  2022-08-30  9:10 [PATCH 0/3] misc doc updates I missed for 1.9 :x Eric Wong
  2022-08-30  9:10 ` [PATCH 1/3] Makefile.PL: add lei-reindex manpage Eric Wong
  2022-08-30  9:10 ` [PATCH 2/3] Makefile.PL: update version for upcoming 2.x Eric Wong
@ 2022-08-30  9:10 ` Eric Wong
  2 siblings, 0 replies; 4+ messages in thread
From: Eric Wong @ 2022-08-30  9:10 UTC (permalink / raw)
  To: meta

AFAIK, there's no new distro packages this year...
---
 INSTALL | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/INSTALL b/INSTALL
index 0974028d..aa9a502d 100644
--- a/INSTALL
+++ b/INSTALL
@@ -5,7 +5,7 @@ This is for folks who want to setup their own public-inbox instance.
 Clients should use normal git-clone/git-fetch, IMAP or NNTP clients
 if they want to import mail into their personal inboxes.
 
-As of 2021, public-inbox is packaged by several OS distributions,
+As of 2022, public-inbox is packaged by several OS distributions,
 listed in alphabetical order: Debian, GNU Guix, NixOS, and Void Linux.
 
 public-inbox is developed on Debian GNU/Linux systems and will
@@ -28,7 +28,7 @@ public-inbox requires a number of other packages to access its full
 functionality.  The core tools are, of course:
 
 * Git (1.8.0+, 2.6+ for writing v2 inboxes)
-* Perl 5.10.1+
+* Perl 5.12.0+
 * DBD::SQLite (needed for IMAP, NNTP, message threading, and v2 inboxes)
 
 To accept incoming mail into a public inbox, you'll likely want:
@@ -210,5 +210,5 @@ RPM-based distros split them out into separate packages:
 Copyright
 ---------
 
-Copyright 2013-2021 all contributors <meta@public-inbox.org>
+Copyright all contributors <meta@public-inbox.org>
 License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-08-30  9:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-30  9:10 [PATCH 0/3] misc doc updates I missed for 1.9 :x Eric Wong
2022-08-30  9:10 ` [PATCH 1/3] Makefile.PL: add lei-reindex manpage Eric Wong
2022-08-30  9:10 ` [PATCH 2/3] Makefile.PL: update version for upcoming 2.x Eric Wong
2022-08-30  9:10 ` [PATCH 3/3] INSTALL: update for Perl 5.12 dependency and 2022 Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).