Re: Hi all
[notmuch-archives.git] / 56 / b6d9efed689cdae2b88b4eb9665ea755483c19
1 Return-Path: <alip@exherbo.org>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 13880431FC1\r
6         for <notmuch@notmuchmail.org>; Sun,  6 Jun 2010 08:28:49 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.49\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.49 tagged_above=-999 required=5\r
12         tests=[BAYES_05=-0.5, T_MIME_NO_TEXT=0.01] autolearn=unavailable\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id pgBmP6b2Og9O for <notmuch@notmuchmail.org>;\r
16         Sun,  6 Jun 2010 08:28:35 -0700 (PDT)\r
17 Received: from bach.exherbo.org (bach.exherbo.org [78.47.197.147])\r
18         by olra.theworths.org (Postfix) with ESMTP id 5D4324196F0\r
19         for <notmuch@notmuchmail.org>; Sun,  6 Jun 2010 08:28:35 -0700 (PDT)\r
20 Received: from localhost ([127.0.0.1] helo=harikalardiyari.ev ident=alip)\r
21         by bach.exherbo.org with esmtp (Exim 4.69)\r
22         (envelope-from <alip@exherbo.org>)\r
23         id 1OLHm5-0000yo-Mw; Sun, 06 Jun 2010 15:28:33 +0000\r
24 From: Ali Polatel <alip@exherbo.org>\r
25 To: Carl Worth <cworth@cworth.org>\r
26 Subject: [GIT PULL] Ruby bindings\r
27 User-Agent: Notmuch/0.3.1-56-g2ead072 (http://notmuchmail.org) Emacs/23.2.1\r
28         (amd64-portbld-freebsd8.1)\r
29 Date: Sun, 06 Jun 2010 18:28:24 +0300\r
30 Message-ID: <86fx10p4dj.fsf@harikalardiyari.ev>\r
31 MIME-Version: 1.0\r
32 Content-Type: multipart/signed; boundary="=-=-=";\r
33         micalg=pgp-sha1; protocol="application/pgp-signature"\r
34 Cc: notmuch@notmuchmail.org\r
35 X-BeenThere: notmuch@notmuchmail.org\r
36 X-Mailman-Version: 2.1.13\r
37 Precedence: list\r
38 List-Id: "Use and development of the notmuch mail system."\r
39         <notmuch.notmuchmail.org>\r
40 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
42 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
43 List-Post: <mailto:notmuch@notmuchmail.org>\r
44 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
45 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
47 X-List-Received-Date: Sun, 06 Jun 2010 15:28:49 -0000\r
48 \r
49 --=-=-=\r
50 Content-Transfer-Encoding: quoted-printable\r
51 \r
52 \r
53 Hey Carl,\r
54 \r
55 Here's a pull request for ruby bindings as you requested on #notmuch.\r
56 I've only tested them briefly and I hope more people will test it and\r
57 contribute to it if it's merged with master. So here goes:\r
58 \r
59 The following changes since commit 2ead072e85315387c0cc3c2236cdedb59503881e:\r
60 =20\r
61   Fix minor style issues in show_part_content function. (2010-06-05 08:47:1=\r
62 3 -0700)\r
63 \r
64 are available in the git repository at:\r
65   git://github.com/alip/notmuch.git ruby\r
66 \r
67 Ali Polatel (6):\r
68       Initial ruby bindings\r
69       ruby: fix documentation of DB.upgrade!\r
70       ruby: First attempt at fixing gc for ruby-1.9\r
71       ruby: Kill garbage collection related cruft.\r
72       ruby: Use rb_scan_args()\r
73       ruby: Don't barf if an object is destroyed more than once\r
74 \r
75  bindings/ruby/database.c  |  321 +++++++++++++++++++++++++++++++++++++++++=\r
76 +++\r
77  bindings/ruby/defs.h      |  306 ++++++++++++++++++++++++++++++++++++++++++\r
78  bindings/ruby/directory.c |  115 ++++++++++++++++\r
79  bindings/ruby/extconf.rb  |   15 ++\r
80  bindings/ruby/filenames.c |   58 ++++++++\r
81  bindings/ruby/init.c      |  282 +++++++++++++++++++++++++++++++++++++++\r
82  bindings/ruby/message.c   |  322 +++++++++++++++++++++++++++++++++++++++++=\r
83 ++++\r
84  bindings/ruby/messages.c  |   80 +++++++++++\r
85  bindings/ruby/query.c     |   99 ++++++++++++++\r
86  bindings/ruby/rdoc.sh     |   10 ++\r
87  bindings/ruby/status.c    |   49 +++++++\r
88  bindings/ruby/tags.c      |   61 +++++++++\r
89  bindings/ruby/thread.c    |  193 +++++++++++++++++++++++++++\r
90  bindings/ruby/threads.c   |   60 +++++++++\r
91  14 files changed, 1971 insertions(+), 0 deletions(-)\r
92  create mode 100644 bindings/ruby/database.c\r
93  create mode 100644 bindings/ruby/defs.h\r
94  create mode 100644 bindings/ruby/directory.c\r
95  create mode 100644 bindings/ruby/extconf.rb\r
96  create mode 100644 bindings/ruby/filenames.c\r
97  create mode 100644 bindings/ruby/init.c\r
98  create mode 100644 bindings/ruby/message.c\r
99  create mode 100644 bindings/ruby/messages.c\r
100  create mode 100644 bindings/ruby/query.c\r
101  create mode 100755 bindings/ruby/rdoc.sh\r
102  create mode 100644 bindings/ruby/status.c\r
103  create mode 100644 bindings/ruby/tags.c\r
104  create mode 100644 bindings/ruby/thread.c\r
105  create mode 100644 bindings/ruby/threads.c\r
106 \r
107 =2D-=20\r
108 Regards,\r
109 Ali Polatel\r
110 \r
111 --=-=-=\r
112 Content-Type: application/pgp-signature\r
113 \r
114 -----BEGIN PGP SIGNATURE-----\r
115 Version: GnuPG v2.0.14 (FreeBSD)\r
116 \r
117 iEYEARECAAYFAkwLvpwACgkQQU4yORhF8iB5ugCeOM4nWbP1rlSASPHnSxVqZ1SD\r
118 96gAoIN9NUqs0ZIc9n8ASkfKMEpcsjvB\r
119 =edME\r
120 -----END PGP SIGNATURE-----\r
121 --=-=-=--\r