Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 15181431FAF for ; Fri, 19 Jul 2013 13:50:24 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id V-Y-+G0ygVlP for ; Fri, 19 Jul 2013 13:50:16 -0700 (PDT) Received: from che.mayfirst.org (che.mayfirst.org [209.234.253.108]) by olra.theworths.org (Postfix) with ESMTP id B0A8A431FAE for ; Fri, 19 Jul 2013 13:50:16 -0700 (PDT) Received: from fifthhorseman.net (adsl-76-193-69-124.dsl.wlfrct.sbcglobal.net [76.193.69.124]) by che.mayfirst.org (Postfix) with ESMTPSA id 2FDA0F984; Fri, 19 Jul 2013 16:50:14 -0400 (EDT) Received: by fifthhorseman.net (Postfix, from userid 1000) id 822E220073; Fri, 19 Jul 2013 16:50:15 -0400 (EDT) From: Daniel Kahn Gillmor To: Notmuch Mail Subject: [PATCH] Add package for debugging symbols (Closes: #717339) Date: Fri, 19 Jul 2013 16:50:09 -0400 Message-Id: <1374267009-5457-1-git-send-email-dkg@fifthhorseman.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <20130719143625.5622.42387.reportbug@alice.fifthhorseman.net> References: <20130719143625.5622.42387.reportbug@alice.fifthhorseman.net> Cc: Daniel Kahn Gillmor X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jul 2013 20:50:24 -0000 --- debian/control | 15 +++++++++++++++ debian/rules | 3 +++ 2 files changed, 18 insertions(+) diff --git a/debian/control b/debian/control index cc16960..37f3d1f 100644 --- a/debian/control +++ b/debian/control @@ -139,3 +139,18 @@ Description: thread-based email index, search and tagging (Mutt interface) a fresh Maildir containing its search results only. The second one is the ability to reconstruct threads on the fly starting from the current highlighted mail. + +Package: notmuch-dbg +Architecture: any +Section: debug +Priority: extra +Depends: ${shlibs:Depends}, ${misc:Depends}, libnotmuch3 (= ${binary:Version}) +Description: thread-based email index, search and tagging - debugging symbols + Notmuch is a system for indexing, searching, reading, and tagging + large collections of email messages in maildir or mh format. It uses + the Xapian library to provide fast, full-text search with a very + convenient search syntax. + . + This package contains the debugging symbols for libnotmuch and the + notmuch binary. Most people will not need this package. + diff --git a/debian/rules b/debian/rules index 4257c5a..8c958e2 100755 --- a/debian/rules +++ b/debian/rules @@ -27,3 +27,6 @@ override_dh_auto_install: dh_auto_install --sourcedirectory bindings/python cd bindings/python && $(python3_all) setup.py install --install-layout=deb --root=$(CURDIR)/debian/tmp dh_auto_install --sourcedirectory bindings/ruby + +override_dh_strip: + dh_strip --pkg notmuch-dbg -- 1.7.10.4