pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
(1) Add 4 files to PLIST, upstream update (2) Rename patch patches/ patch-wl{- -> _}wl-summary_el
Module Name: pkgsrc-wip
Committed By: Makoto Fujiwara <makoto%ki.nu@localhost>
Pushed By: mef
Date: Sun Dec 27 17:37:55 2015 +0900
Changeset: 6df8e9f120ae07e64e8a5ea962684b957d4a4661
Modified Files:
wl-current/PLIST
wl-current/distinfo
Added Files:
wl-current/patches/patch-wl_wl-summary_el
Removed Files:
wl-current/patches/patch-wl-wl-summary_el
Log Message:
(1) Add 4 files to PLIST, upstream update (2) Rename patch patches/patch-wl{- -> _}wl-summary_el
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=6df8e9f120ae07e64e8a5ea962684b957d4a4661
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
wl-current/PLIST | 4 +++
wl-current/distinfo | 2 +-
wl-current/patches/patch-wl-wl-summary_el | 48 -------------------------------
wl-current/patches/patch-wl_wl-summary_el | 48 +++++++++++++++++++++++++++++++
4 files changed, 53 insertions(+), 49 deletions(-)
diffs:
diff --git a/wl-current/PLIST b/wl-current/PLIST
index 03f05ff..3bb173a 100644
--- a/wl-current/PLIST
+++ b/wl-current/PLIST
@@ -55,6 +55,8 @@ share/emacs/site-lisp/wl/elmo-pipe.el
share/emacs/site-lisp/wl/elmo-pipe.elc
share/emacs/site-lisp/wl/elmo-pop3.el
share/emacs/site-lisp/wl/elmo-pop3.elc
+share/emacs/site-lisp/wl/elmo-rss.el
+share/emacs/site-lisp/wl/elmo-rss.elc
share/emacs/site-lisp/wl/elmo-search.el
share/emacs/site-lisp/wl/elmo-search.elc
share/emacs/site-lisp/wl/elmo-sendlog.el
@@ -138,6 +140,8 @@ share/emacs/site-lisp/wl/wl-message.elc
share/emacs/site-lisp/wl/wl-mime.el
share/emacs/site-lisp/wl/wl-mime.elc
share/emacs/site-lisp/wl/wl-news.el
+share/emacs/site-lisp/wl/wl-qs.el
+share/emacs/site-lisp/wl/wl-qs.elc
share/emacs/site-lisp/wl/wl-refile.el
share/emacs/site-lisp/wl/wl-refile.elc
share/emacs/site-lisp/wl/wl-score.el
diff --git a/wl-current/distinfo b/wl-current/distinfo
index 4a097d4..cd53d3c 100644
--- a/wl-current/distinfo
+++ b/wl-current/distinfo
@@ -2,4 +2,4 @@ $NetBSD: distinfo,v 1.10 2015/01/29 07:15:12 jgoamakf Exp $
SHA1 (patch-aa) = 5c27e70a747e4ace03991e7d361c83aa844d4d13
SHA1 (patch-ab) = adf07a670174aabc289712dfbce354e7ef86043e
-SHA1 (patch-wl-wl-summary_el) = 1b5003dc2cfccafeca01258e824f50bdacc7acd8
+SHA1 (patch-wl_wl-summary_el) = 1b5003dc2cfccafeca01258e824f50bdacc7acd8
diff --git a/wl-current/patches/patch-wl-wl-summary_el b/wl-current/patches/patch-wl-wl-summary_el
deleted file mode 100644
index c4b0053..0000000
--- a/wl-current/patches/patch-wl-wl-summary_el
+++ /dev/null
@@ -1,48 +0,0 @@
-$NetBSD: patch-wl-wl-summary_el,v 1.1 2013/05/07 12:02:01 makoto Exp $
-
-To: wl-en at ml gentei org
-X-Mail-Count: 05454
-
-Add other indidators depending on types of multipart.
-mef@ proposed to upstream.
-You will need following lines to utilize this change in
-your setup, for example, in ~/.wl.
-
-(setq elmo-msgdb-extra-fields
- (cons "content-type" elmo-msgdb-extra-fields))
-; '((\"^%\" . \"%n%T%P %M/%D(%W)%h:%m %t%[%14(%c %f%) %](%S) %s\")
-;(setq wl-summary-line-format "%n%T%P%@%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %#%~%s")
- (setq wl-summary-line-format "%n%T%P%@%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %~%s")
-
---- wl/wl-summary.el.orig 2013-01-25 11:39:09.000000000 +0900
-+++ wl/wl-summary.el 2013-01-25 12:26:38.000000000 +0900
-@@ -38,6 +38,7 @@
- (require 'elmo)
- (require 'elmo-multi)
- (eval-when-compile (require 'elmo-filter))
-+(eval-when-compile (require 'wl-folder))
- (require 'wl-message)
- (require 'wl-vars)
- (require 'wl-highlight)
-@@ -3541,11 +3542,15 @@ Return non-nil if the mark is updated"
- (let ((content-type (elmo-message-entity-field
- wl-message-entity 'content-type))
- (case-fold-search t))
-- (if (and content-type
-- (string-match "multipart/mixed" content-type))
-- "@"
-- "")))
--
-+ (if (stringp content-type)
-+ (cond
-+ ((string-match "multipart/mixed" content-type) "@")
-+ ((string-match "multipart/signed" content-type) "s")
-+ ((string-match "multipart/encrypted" content-type) "e")
-+ ; else returns blank
-+ (t " " ) )
-+ " ")))
-+
- ;;; For future use.
- ;;;(defun wl-summary-line-cached ()
- ;;; (if (elmo-message-cached-p wl-summary-buffer-elmo-folder
-
diff --git a/wl-current/patches/patch-wl_wl-summary_el b/wl-current/patches/patch-wl_wl-summary_el
new file mode 100644
index 0000000..c4b0053
--- /dev/null
+++ b/wl-current/patches/patch-wl_wl-summary_el
@@ -0,0 +1,48 @@
+$NetBSD: patch-wl-wl-summary_el,v 1.1 2013/05/07 12:02:01 makoto Exp $
+
+To: wl-en at ml gentei org
+X-Mail-Count: 05454
+
+Add other indidators depending on types of multipart.
+mef@ proposed to upstream.
+You will need following lines to utilize this change in
+your setup, for example, in ~/.wl.
+
+(setq elmo-msgdb-extra-fields
+ (cons "content-type" elmo-msgdb-extra-fields))
+; '((\"^%\" . \"%n%T%P %M/%D(%W)%h:%m %t%[%14(%c %f%) %](%S) %s\")
+;(setq wl-summary-line-format "%n%T%P%@%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %#%~%s")
+ (setq wl-summary-line-format "%n%T%P%@%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %~%s")
+
+--- wl/wl-summary.el.orig 2013-01-25 11:39:09.000000000 +0900
++++ wl/wl-summary.el 2013-01-25 12:26:38.000000000 +0900
+@@ -38,6 +38,7 @@
+ (require 'elmo)
+ (require 'elmo-multi)
+ (eval-when-compile (require 'elmo-filter))
++(eval-when-compile (require 'wl-folder))
+ (require 'wl-message)
+ (require 'wl-vars)
+ (require 'wl-highlight)
+@@ -3541,11 +3542,15 @@ Return non-nil if the mark is updated"
+ (let ((content-type (elmo-message-entity-field
+ wl-message-entity 'content-type))
+ (case-fold-search t))
+- (if (and content-type
+- (string-match "multipart/mixed" content-type))
+- "@"
+- "")))
+-
++ (if (stringp content-type)
++ (cond
++ ((string-match "multipart/mixed" content-type) "@")
++ ((string-match "multipart/signed" content-type) "s")
++ ((string-match "multipart/encrypted" content-type) "e")
++ ; else returns blank
++ (t " " ) )
++ " ")))
++
+ ;;; For future use.
+ ;;;(defun wl-summary-line-cached ()
+ ;;; (if (elmo-message-cached-p wl-summary-buffer-elmo-folder
+
Home |
Main Index |
Thread Index |
Old Index