[DRE-commits] [sup-mail] branch master updated (57e3e25 -> f8d82ab)

Per Andersson avtobiff at moszumanska.debian.org
Wed Oct 7 21:42:34 UTC 2015


This is an automated email from the git hooks/post-receive script.

avtobiff pushed a change to branch master
in repository sup-mail.

      from  57e3e25   Add script to regenerate man pages from upstream
      adds  86c0df4   Imported Upstream version 0.22.1
       new  7f127d4   Merge tag 'upstream/0.22.1'
       new  1cb0d8c   New upstream release
       new  314bf51   Remove obsolete patch commenting out rubygems imports
       new  f8d82ab   Update man pages from wiki

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   3 +
 .travis.yml                                        |  13 +
 CONTRIBUTORS                                       |  32 +-
 History.txt                                        |  28 ++
 Rakefile                                           |   1 -
 ReleaseNotes                                       |   7 +
 bin/sup                                            |  35 +-
 bin/sup-add                                        |   3 +-
 bin/sup-config                                     |   1 -
 bin/sup-dump                                       |   1 -
 bin/sup-import-dump                                |   3 +-
 bin/sup-sync                                       |   1 -
 bin/sup-sync-back-maildir                          |   3 +-
 bin/sup-tweak-labels                               |   3 +-
 contrib/colorpicker.rb                             |   2 -
 contrib/completion/_sup.bash                       | 102 ++++++
 debian/changelog                                   |   6 +-
 debian/man/sup-mail.1                              |  19 +
 debian/man/sup-sync.1                              |   7 +-
 .../0001-Patch-out-all-requires-of-rubygems.patch  | 114 ------
 debian/patches/series                              |   1 -
 devel/profile.rb                                   |   1 -
 lib/sup.rb                                         |  15 +-
 lib/sup/colormap.rb                                |   7 +-
 lib/sup/contact.rb                                 |   6 +-
 lib/sup/crypto.rb                                  |  49 ++-
 lib/sup/draft.rb                                   |  16 +-
 lib/sup/hook.rb                                    |   2 +-
 lib/sup/index.rb                                   |   4 +-
 lib/sup/label.rb                                   |   2 +-
 lib/sup/maildir.rb                                 |   4 +-
 lib/sup/mbox.rb                                    |   4 +-
 lib/sup/message.rb                                 |   6 +
 lib/sup/message_chunks.rb                          |   6 +-
 lib/sup/mode.rb                                    |  61 ++--
 lib/sup/modes/edit_message_mode.rb                 |   2 +-
 lib/sup/modes/forward_mode.rb                      |  25 +-
 lib/sup/modes/line_cursor_mode.rb                  |   2 +-
 lib/sup/modes/text_mode.rb                         |   7 +-
 lib/sup/modes/thread_index_mode.rb                 |   6 +-
 lib/sup/modes/thread_view_mode.rb                  |  60 +++-
 lib/sup/person.rb                                  | 129 +++----
 lib/sup/search.rb                                  |   2 +-
 lib/sup/sent.rb                                    |   2 +-
 lib/sup/util.rb                                    |  76 +---
 lib/sup/util/locale_fiddler.rb                     |  24 ++
 lib/sup/version.rb                                 |   2 +-
 sup.gemspec                                        |   9 +-
 .../bad-content-transfer-encoding-1.eml            |   0
 .../binary-content-transfer-encoding-2.eml         |   0
 test/fixtures/blank-header-fields.eml              |  71 ++++
 test/fixtures/contacts.txt                         |   1 +
 test/fixtures/malicious-attachment-names.eml       |  55 +++
 test/fixtures/missing-from-to.eml                  |  18 +
 test/{messages => fixtures}/missing-line.eml       |   0
 test/fixtures/multi-part-2.eml                     |  72 ++++
 test/fixtures/multi-part.eml                       |  61 ++++
 test/fixtures/no-body.eml                          |  18 +
 test/fixtures/simple-message.eml                   |  29 ++
 test/gnupg_test_home/.gpg-v21-migrated             |   0
 test/gnupg_test_home/{key1.gen => key_ecc.gen}     |  12 +-
 .../719C7455A7169C6EE8819C6E91002E4F9DD00A65.key   |   1 +
 .../8A130806A754AA29D59487D76BD355040D9F26C0.key   | Bin 0 -> 493 bytes
 .../B7AA46B22BD8A6AD1B4F266C19A3B124A32DDD71.key   | Bin 0 -> 346 bytes
 .../FA64ACD7CC871371BDF57285A6CDF0E618827783.key   | Bin 0 -> 1158 bytes
 test/gnupg_test_home/pubring.gpg                   | Bin 1892 -> 2991 bytes
 test/gnupg_test_home/regen_keys.sh                 |   3 +
 test/integration/test_maildir.rb                   |   2 +-
 test/integration/test_mbox.rb                      |   2 +-
 test/test_crypto.rb                                |  14 +-
 test/test_header_parsing.rb                        |   2 +-
 test/test_helper.rb                                |   9 +-
 test/test_message.rb                               | 384 +++------------------
 test/test_messages_dir.rb                          |  32 +-
 test/test_yaml_regressions.rb                      |   2 +-
 test/unit/test_contact.rb                          |  33 ++
 test/unit/test_locale_fiddler.rb                   |  15 +
 test/unit/test_person.rb                           |  37 ++
 78 files changed, 1003 insertions(+), 784 deletions(-)
 create mode 100644 .travis.yml
 create mode 100644 contrib/completion/_sup.bash
 delete mode 100644 debian/patches/0001-Patch-out-all-requires-of-rubygems.patch
 delete mode 100644 debian/patches/series
 create mode 100644 lib/sup/util/locale_fiddler.rb
 rename test/{messages => fixtures}/bad-content-transfer-encoding-1.eml (100%)
 rename test/{messages => fixtures}/binary-content-transfer-encoding-2.eml (100%)
 create mode 100644 test/fixtures/blank-header-fields.eml
 create mode 100644 test/fixtures/contacts.txt
 create mode 100644 test/fixtures/malicious-attachment-names.eml
 create mode 100644 test/fixtures/missing-from-to.eml
 rename test/{messages => fixtures}/missing-line.eml (100%)
 create mode 100644 test/fixtures/multi-part-2.eml
 create mode 100644 test/fixtures/multi-part.eml
 create mode 100644 test/fixtures/no-body.eml
 create mode 100644 test/fixtures/simple-message.eml
 create mode 100644 test/gnupg_test_home/.gpg-v21-migrated
 copy test/gnupg_test_home/{key1.gen => key_ecc.gen} (52%)
 create mode 100644 test/gnupg_test_home/private-keys-v1.d/719C7455A7169C6EE8819C6E91002E4F9DD00A65.key
 create mode 100644 test/gnupg_test_home/private-keys-v1.d/8A130806A754AA29D59487D76BD355040D9F26C0.key
 create mode 100644 test/gnupg_test_home/private-keys-v1.d/B7AA46B22BD8A6AD1B4F266C19A3B124A32DDD71.key
 create mode 100644 test/gnupg_test_home/private-keys-v1.d/FA64ACD7CC871371BDF57285A6CDF0E618827783.key
 create mode 100644 test/unit/test_contact.rb
 create mode 100644 test/unit/test_locale_fiddler.rb
 create mode 100644 test/unit/test_person.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/sup-mail.git



More information about the Pkg-ruby-extras-commits mailing list