unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* Debian packaging changes
@ 2011-06-21 13:26 David Bremner
  2011-06-21 17:31 ` [PATCH 1/4] debian: break up uploaders on separate lines Jameson Graef Rollins
  2011-06-23 22:25 ` Debian packaging changes Carl Worth
  0 siblings, 2 replies; 9+ messages in thread
From: David Bremner @ 2011-06-21 13:26 UTC (permalink / raw)
  To: notmuch

[-- Attachment #1: Type: text/plain, Size: 368 bytes --]


As of the latest snapshot for debian experimental, I create seperate
binary packages for python bindings and for the emacs-interface. Since
the plan is to merge these changes back to master fairly soon, I'd
appreciate any feedback on these or any other patches in the series.

        git://pivot.cs.unb.ca/notmuch.git 
        branch: experimental






[-- Attachment #2: Type: application/pgp-signature, Size: 315 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 1/4] debian: break up uploaders on separate lines
  2011-06-21 13:26 Debian packaging changes David Bremner
@ 2011-06-21 17:31 ` Jameson Graef Rollins
  2011-06-21 17:31   ` [PATCH 2/4] debian: break up Build-Depends " Jameson Graef Rollins
  2011-06-23 22:25 ` Debian packaging changes Carl Worth
  1 sibling, 1 reply; 9+ messages in thread
From: Jameson Graef Rollins @ 2011-06-21 17:31 UTC (permalink / raw)
  To: Notmuch Mail

---
 debian/control |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index 4b60af0..51353de 100644
--- a/debian/control
+++ b/debian/control
@@ -2,9 +2,10 @@ Source: notmuch
 Section: mail
 Priority: extra
 Maintainer: Carl Worth <cworth@debian.org>
-Uploaders: martin f. krafft <madduck@debian.org>, 
-	   Jameson Graef Rollins <jrollins@finestructure.net>,
-	   David Bremner <bremner@debian.org>
+Uploaders:
+ martin f. krafft <madduck@debian.org>, 
+ Jameson Graef Rollins <jrollins@finestructure.net>,
+ David Bremner <bremner@debian.org>,
 Build-Depends: debhelper (>= 7.0.50~), pkg-config, libxapian-dev, 
  libgmime-2.4-dev, libtalloc-dev, libz-dev, emacs23-nox,
  python-all (>= 2.6.6-3~)
-- 
1.7.5.3

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 2/4] debian: break up Build-Depends on separate lines
  2011-06-21 17:31 ` [PATCH 1/4] debian: break up uploaders on separate lines Jameson Graef Rollins
@ 2011-06-21 17:31   ` Jameson Graef Rollins
  2011-06-21 17:31     ` [PATCH 3/4] debian: build depend on emacs23 or emacs23-nox Jameson Graef Rollins
  2011-06-21 17:36     ` Jameson Graef Rollins
  0 siblings, 2 replies; 9+ messages in thread
From: Jameson Graef Rollins @ 2011-06-21 17:31 UTC (permalink / raw)
  To: Notmuch Mail

---
 debian/control |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index 51353de..0c998df 100644
--- a/debian/control
+++ b/debian/control
@@ -3,12 +3,18 @@ Section: mail
 Priority: extra
 Maintainer: Carl Worth <cworth@debian.org>
 Uploaders:
- martin f. krafft <madduck@debian.org>, 
+ martin f. krafft <madduck@debian.org>,
  Jameson Graef Rollins <jrollins@finestructure.net>,
  David Bremner <bremner@debian.org>,
-Build-Depends: debhelper (>= 7.0.50~), pkg-config, libxapian-dev, 
- libgmime-2.4-dev, libtalloc-dev, libz-dev, emacs23-nox,
- python-all (>= 2.6.6-3~)
+Build-Depends:
+ debhelper (>= 7.0.50~),
+ pkg-config,
+ libxapian-dev, 
+ libgmime-2.4-dev,
+ libtalloc-dev,
+ libz-dev,
+ emacs23-nox,
+ python-all (>= 2.6.6-3~),
 Standards-Version: 3.9.1.0
 Homepage: http://notmuchmail.org/
 Vcs-Git: git://notmuchmail.org/git/notmuch
-- 
1.7.5.3

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 3/4] debian: build depend on emacs23 or emacs23-nox
  2011-06-21 17:31   ` [PATCH 2/4] debian: break up Build-Depends " Jameson Graef Rollins
@ 2011-06-21 17:31     ` Jameson Graef Rollins
  2011-06-21 17:31       ` [PATCH 4/4] debian: bump standards version to 3.9.2 Jameson Graef Rollins
  2011-06-21 17:36     ` Jameson Graef Rollins
  1 sibling, 1 reply; 9+ messages in thread
From: Jameson Graef Rollins @ 2011-06-21 17:31 UTC (permalink / raw)
  To: Notmuch Mail

---
 debian/control |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index 0c998df..49f6961 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Build-Depends:
  libgmime-2.4-dev,
  libtalloc-dev,
  libz-dev,
- emacs23-nox,
+ emacs23 | emacs23-nox,
  python-all (>= 2.6.6-3~),
 Standards-Version: 3.9.1.0
 Homepage: http://notmuchmail.org/
-- 
1.7.5.3

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 4/4] debian: bump standards version to 3.9.2
  2011-06-21 17:31     ` [PATCH 3/4] debian: build depend on emacs23 or emacs23-nox Jameson Graef Rollins
@ 2011-06-21 17:31       ` Jameson Graef Rollins
  0 siblings, 0 replies; 9+ messages in thread
From: Jameson Graef Rollins @ 2011-06-21 17:31 UTC (permalink / raw)
  To: Notmuch Mail

---
 debian/control |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index 49f6961..52c2e5a 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends:
  libz-dev,
  emacs23 | emacs23-nox,
  python-all (>= 2.6.6-3~),
-Standards-Version: 3.9.1.0
+Standards-Version: 3.9.2
 Homepage: http://notmuchmail.org/
 Vcs-Git: git://notmuchmail.org/git/notmuch
 Vcs-Browser: http://git.notmuchmail.org/git/notmuch
-- 
1.7.5.3

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* (no subject)
  2011-06-21 17:31   ` [PATCH 2/4] debian: break up Build-Depends " Jameson Graef Rollins
  2011-06-21 17:31     ` [PATCH 3/4] debian: build depend on emacs23 or emacs23-nox Jameson Graef Rollins
@ 2011-06-21 17:36     ` Jameson Graef Rollins
  2011-06-21 17:36       ` [PATCH 1/2] debian: break up uploaders on separate lines Jameson Graef Rollins
  1 sibling, 1 reply; 9+ messages in thread
From: Jameson Graef Rollins @ 2011-06-21 17:36 UTC (permalink / raw)
  To: Notmuch Mail

hrm, sorry.  Looks like those last two patches got a little messed up.
These two patches replace the previous two.

jamie.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 1/2] debian: break up uploaders on separate lines
  2011-06-21 17:36     ` Jameson Graef Rollins
@ 2011-06-21 17:36       ` Jameson Graef Rollins
  2011-06-21 17:36         ` [PATCH 2/2] debian: break up Build-Depends " Jameson Graef Rollins
  0 siblings, 1 reply; 9+ messages in thread
From: Jameson Graef Rollins @ 2011-06-21 17:36 UTC (permalink / raw)
  To: Notmuch Mail

---
 debian/control |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index 4b60af0..90bd0ee 100644
--- a/debian/control
+++ b/debian/control
@@ -2,9 +2,10 @@ Source: notmuch
 Section: mail
 Priority: extra
 Maintainer: Carl Worth <cworth@debian.org>
-Uploaders: martin f. krafft <madduck@debian.org>, 
-	   Jameson Graef Rollins <jrollins@finestructure.net>,
-	   David Bremner <bremner@debian.org>
+Uploaders:
+ martin f. krafft <madduck@debian.org>,
+ Jameson Graef Rollins <jrollins@finestructure.net>,
+ David Bremner <bremner@debian.org>,
 Build-Depends: debhelper (>= 7.0.50~), pkg-config, libxapian-dev, 
  libgmime-2.4-dev, libtalloc-dev, libz-dev, emacs23-nox,
  python-all (>= 2.6.6-3~)
-- 
1.7.5.3

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 2/2] debian: break up Build-Depends on separate lines
  2011-06-21 17:36       ` [PATCH 1/2] debian: break up uploaders on separate lines Jameson Graef Rollins
@ 2011-06-21 17:36         ` Jameson Graef Rollins
  0 siblings, 0 replies; 9+ messages in thread
From: Jameson Graef Rollins @ 2011-06-21 17:36 UTC (permalink / raw)
  To: Notmuch Mail

---
 debian/control |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index 90bd0ee..3289282 100644
--- a/debian/control
+++ b/debian/control
@@ -6,9 +6,15 @@ Uploaders:
  martin f. krafft <madduck@debian.org>,
  Jameson Graef Rollins <jrollins@finestructure.net>,
  David Bremner <bremner@debian.org>,
-Build-Depends: debhelper (>= 7.0.50~), pkg-config, libxapian-dev, 
- libgmime-2.4-dev, libtalloc-dev, libz-dev, emacs23-nox,
- python-all (>= 2.6.6-3~)
+Build-Depends:
+ debhelper (>= 7.0.50~),
+ pkg-config,
+ libxapian-dev,
+ libgmime-2.4-dev,
+ libtalloc-dev,
+ libz-dev,
+ emacs23-nox,
+ python-all (>= 2.6.6-3~),
 Standards-Version: 3.9.1.0
 Homepage: http://notmuchmail.org/
 Vcs-Git: git://notmuchmail.org/git/notmuch
-- 
1.7.5.3

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: Debian packaging changes
  2011-06-21 13:26 Debian packaging changes David Bremner
  2011-06-21 17:31 ` [PATCH 1/4] debian: break up uploaders on separate lines Jameson Graef Rollins
@ 2011-06-23 22:25 ` Carl Worth
  1 sibling, 0 replies; 9+ messages in thread
From: Carl Worth @ 2011-06-23 22:25 UTC (permalink / raw)
  To: David Bremner, notmuch

[-- Attachment #1: Type: text/plain, Size: 457 bytes --]

On Tue, 21 Jun 2011 10:26:43 -0300, David Bremner <bremner@debian.org> wrote:
> As of the latest snapshot for debian experimental, I create seperate
> binary packages for python bindings and for the emacs-interface. Since
> the plan is to merge these changes back to master fairly soon, I'd
> appreciate any feedback on these or any other patches in the series.

All look fine to me. Thanks for pushing these.

-Carl

-- 
carl.d.worth@intel.com

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-06-23 22:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-21 13:26 Debian packaging changes David Bremner
2011-06-21 17:31 ` [PATCH 1/4] debian: break up uploaders on separate lines Jameson Graef Rollins
2011-06-21 17:31   ` [PATCH 2/4] debian: break up Build-Depends " Jameson Graef Rollins
2011-06-21 17:31     ` [PATCH 3/4] debian: build depend on emacs23 or emacs23-nox Jameson Graef Rollins
2011-06-21 17:31       ` [PATCH 4/4] debian: bump standards version to 3.9.2 Jameson Graef Rollins
2011-06-21 17:36     ` Jameson Graef Rollins
2011-06-21 17:36       ` [PATCH 1/2] debian: break up uploaders on separate lines Jameson Graef Rollins
2011-06-21 17:36         ` [PATCH 2/2] debian: break up Build-Depends " Jameson Graef Rollins
2011-06-23 22:25 ` Debian packaging changes Carl Worth

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