unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
From: "W. Trevor King" <wking@tremily.us>
To: notmuch@notmuchmail.org
Cc: David Bremner <david@tethera.net>,
	Tomi Ollila <tomi.ollila@iki.fi>, Jani Nikula <jani@nikula.org>,
	Carl Worth <cworth@cworth.org>,
	"W. Trevor King" <wking@tremily.us>
Subject: [PATCH 3/5] notmuch-report.json: Rename from status-config.json
Date: Fri,  1 Jan 2016 22:08:03 -0800	[thread overview]
Message-ID: <f57a8ddca2d92bc65e5ad3d3b2e677d04a0d8865.1451714099.git.wking@tremily.us> (raw)
In-Reply-To: <cover.1451714099.git.wking@tremily.us>
In-Reply-To: <cover.1451714099.git.wking@tremily.us>

status-config.json wasn't obviously associated with the old
nmubg-status, now notmuch-report.  The new name is
${CONFIGURED_SCRIPT}.json, so the association should be clear.
---
 devel/nmbug/notmuch-report      |  2 +-
 devel/nmbug/notmuch-report.json | 70 +++++++++++++++++++++++++++++++++++++++++
 devel/nmbug/status-config.json  | 70 -----------------------------------------
 3 files changed, 71 insertions(+), 71 deletions(-)
 create mode 100644 devel/nmbug/notmuch-report.json
 delete mode 100644 devel/nmbug/status-config.json

diff --git a/devel/nmbug/notmuch-report b/devel/nmbug/notmuch-report
index 22e3b5b..5425e06 100755
--- a/devel/nmbug/notmuch-report
+++ b/devel/nmbug/notmuch-report
@@ -88,7 +88,7 @@ def read_config(path=None, encoding=None):
     else:
         nmbhome = os.getenv('NMBGIT', os.path.expanduser('~/.nmbug'))
         branch = 'config'
-        filename = 'status-config.json'
+        filename = 'notmuch-report.json'
 
         # read only the first line from the pipe
         sha1_bytes = subprocess.Popen(
diff --git a/devel/nmbug/notmuch-report.json b/devel/nmbug/notmuch-report.json
new file mode 100644
index 0000000..b926946
--- /dev/null
+++ b/devel/nmbug/notmuch-report.json
@@ -0,0 +1,70 @@
+{
+    "meta": {
+        "title": "Notmuch Patches",
+        "blurb": "For more information see <a href=\"http://notmuchmail.org/nmbug\">nmbug</a>"
+    },
+
+    "views": [
+	{
+	    "comment": "Unresolved bugs (or just need tag updating).",
+	    "query": [
+		"tag:notmuch::bug",
+		"not tag:notmuch::fixed",
+		"not tag:notmuch::wontfix"
+	    ],
+	    "title": "Bugs"
+	},
+	{
+	    "comment": "These patches are under consideration for pushing.",
+	    "query": [
+		"tag:notmuch::patch and not tag:notmuch::pushed",
+		"not tag:notmuch::obsolete and not tag:notmuch::wip",
+		"not tag:notmuch::stale and not tag:notmuch::contrib",
+		"not tag:notmuch::moreinfo",
+		"not tag:notmuch::python",
+		"not tag:notmuch::vim",
+		"not tag:notmuch::wontfix",
+		"not tag:notmuch::needs-review"
+	    ],
+	    "title": "Maybe Ready (Core and Emacs)"
+	},
+	{
+	    "comment": "These python related patches might be ready to push, or they might just need updated tags.",
+	    "query": [
+		"tag:notmuch::patch and not tag:notmuch::pushed",
+		"not tag:notmuch::obsolete and not tag:notmuch::wip",
+		"not tag:notmuch::stale and not tag:notmuch::contrib",
+		"not tag:notmuch::moreinfo",
+		"not tag:notmuch::wontfix",
+		" tag:notmuch::python",
+		"not tag:notmuch::needs-review"
+	    ],
+	    "title": "Maybe Ready (Python)"
+	},
+	{
+	    "comment": "These vim related patches might be ready to push, or they might just need updated tags.",
+	    "query": [
+		"tag:notmuch::patch and not tag:notmuch::pushed",
+		"not tag:notmuch::obsolete and not tag:notmuch::wip",
+		"not tag:notmuch::stale and not tag:notmuch::contrib",
+		"not tag:notmuch::moreinfo",
+		"not tag:notmuch::wontfix",
+		"tag:notmuch::vim",
+		"not tag:notmuch::needs-review"
+	    ],
+	    "title": "Maybe Ready (vim)"
+	},
+	{
+	    "comment": "These patches are under review, or waiting for feedback.",
+	    "query": [
+		"tag:notmuch::patch",
+		"not tag:notmuch::pushed",
+		"not tag:notmuch::obsolete",
+		"not tag:notmuch::stale",
+		"not tag:notmuch::wontfix",
+		"(tag:notmuch::moreinfo or tag:notmuch::needs-review)"
+	    ],
+	    "title": "Review"
+	}
+    ]
+}
diff --git a/devel/nmbug/status-config.json b/devel/nmbug/status-config.json
deleted file mode 100644
index b926946..0000000
--- a/devel/nmbug/status-config.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
-    "meta": {
-        "title": "Notmuch Patches",
-        "blurb": "For more information see <a href=\"http://notmuchmail.org/nmbug\">nmbug</a>"
-    },
-
-    "views": [
-	{
-	    "comment": "Unresolved bugs (or just need tag updating).",
-	    "query": [
-		"tag:notmuch::bug",
-		"not tag:notmuch::fixed",
-		"not tag:notmuch::wontfix"
-	    ],
-	    "title": "Bugs"
-	},
-	{
-	    "comment": "These patches are under consideration for pushing.",
-	    "query": [
-		"tag:notmuch::patch and not tag:notmuch::pushed",
-		"not tag:notmuch::obsolete and not tag:notmuch::wip",
-		"not tag:notmuch::stale and not tag:notmuch::contrib",
-		"not tag:notmuch::moreinfo",
-		"not tag:notmuch::python",
-		"not tag:notmuch::vim",
-		"not tag:notmuch::wontfix",
-		"not tag:notmuch::needs-review"
-	    ],
-	    "title": "Maybe Ready (Core and Emacs)"
-	},
-	{
-	    "comment": "These python related patches might be ready to push, or they might just need updated tags.",
-	    "query": [
-		"tag:notmuch::patch and not tag:notmuch::pushed",
-		"not tag:notmuch::obsolete and not tag:notmuch::wip",
-		"not tag:notmuch::stale and not tag:notmuch::contrib",
-		"not tag:notmuch::moreinfo",
-		"not tag:notmuch::wontfix",
-		" tag:notmuch::python",
-		"not tag:notmuch::needs-review"
-	    ],
-	    "title": "Maybe Ready (Python)"
-	},
-	{
-	    "comment": "These vim related patches might be ready to push, or they might just need updated tags.",
-	    "query": [
-		"tag:notmuch::patch and not tag:notmuch::pushed",
-		"not tag:notmuch::obsolete and not tag:notmuch::wip",
-		"not tag:notmuch::stale and not tag:notmuch::contrib",
-		"not tag:notmuch::moreinfo",
-		"not tag:notmuch::wontfix",
-		"tag:notmuch::vim",
-		"not tag:notmuch::needs-review"
-	    ],
-	    "title": "Maybe Ready (vim)"
-	},
-	{
-	    "comment": "These patches are under review, or waiting for feedback.",
-	    "query": [
-		"tag:notmuch::patch",
-		"not tag:notmuch::pushed",
-		"not tag:notmuch::obsolete",
-		"not tag:notmuch::stale",
-		"not tag:notmuch::wontfix",
-		"(tag:notmuch::moreinfo or tag:notmuch::needs-review)"
-	    ],
-	    "title": "Review"
-	}
-    ]
-}
-- 
2.1.0.60.g85f0837

  parent reply	other threads:[~2016-01-02  6:10 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-02  6:08 [PATCH 0/5] notmuch-report: Rename from nmbug-status and add man pages W. Trevor King
2016-01-02  6:08 ` [PATCH 1/5] nmbug-status: Avoid hard-coded filename in error message W. Trevor King
2016-01-07 13:27   ` David Bremner
2016-01-02  6:08 ` [PATCH 2/5] notmuch-report: Rename from nmbug-status W. Trevor King
2016-01-03 16:19   ` Jani Nikula
2016-01-02  6:08 ` W. Trevor King [this message]
2016-01-02  6:08 ` [PATCH 4/5] notmuch-report: Add notmuch-report(1) and notmuch-report.json(5) man pages W. Trevor King
2016-01-02  6:08 ` [PATCH 5/5] NEWS: Document the notmuch-report branch W. Trevor King
2016-03-24 10:52   ` David Bremner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://notmuchmail.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f57a8ddca2d92bc65e5ad3d3b2e677d04a0d8865.1451714099.git.wking@tremily.us \
    --to=wking@tremily.us \
    --cc=cworth@cworth.org \
    --cc=david@tethera.net \
    --cc=jani@nikula.org \
    --cc=notmuch@notmuchmail.org \
    --cc=tomi.ollila@iki.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

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).