unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] doc: update name of gmime package to install
@ 2020-06-26 11:11 David Bremner
  2020-07-01 19:31 ` Tomi Ollila
  2020-07-03 11:36 ` David Bremner
  0 siblings, 2 replies; 5+ messages in thread
From: David Bremner @ 2020-06-26 11:11 UTC (permalink / raw)
  To: notmuch

Fedora still has an old gmime-devel which is 2.6.x. This is no longer
supported by notmuch.
---
 INSTALL   | 2 +-
 configure | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/INSTALL b/INSTALL
index f1236e71..3f11c2b7 100644
--- a/INSTALL
+++ b/INSTALL
@@ -95,7 +95,7 @@ dependencies with a single simple command line. For example:
 
   For Fedora and similar:
 
-	sudo yum install xapian-core-devel gmime-devel libtalloc-devel zlib-devel python3-sphinx texinfo info
+	sudo yum install xapian-core-devel gmime30-devel libtalloc-devel zlib-devel python3-sphinx texinfo info
 
 On other systems, a similar command can be used, but the details of
 the package names may be different.
diff --git a/configure b/configure
index 05ade05b..680e0e6e 100755
--- a/configure
+++ b/configure
@@ -956,7 +956,7 @@ On Debian and similar systems:
 
 Or on Fedora and similar systems:
 
-	sudo yum install xapian-core-devel gmime-devel libtalloc-devel zlib-devel
+	sudo yum install xapian-core-devel gmime30-devel libtalloc-devel zlib-devel
 
 On other systems, similar commands can be used, but the details of the
 package names may be different.
-- 
2.27.0

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

* Re: [PATCH] doc: update name of gmime package to install
  2020-06-26 11:11 [PATCH] doc: update name of gmime package to install David Bremner
@ 2020-07-01 19:31 ` Tomi Ollila
  2020-07-02 13:01   ` David Bremner
  2020-07-03 11:36 ` David Bremner
  1 sibling, 1 reply; 5+ messages in thread
From: Tomi Ollila @ 2020-07-01 19:31 UTC (permalink / raw)
  To: David Bremner, notmuch

On Fri, Jun 26 2020, David Bremner wrote:

> Fedora still has an old gmime-devel which is 2.6.x. This is no longer
> supported by notmuch.
> ---
>  INSTALL   | 2 +-
>  configure | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/INSTALL b/INSTALL
> index f1236e71..3f11c2b7 100644
> --- a/INSTALL
> +++ b/INSTALL
> @@ -95,7 +95,7 @@ dependencies with a single simple command line. For example:
>  
>    For Fedora and similar:
>  
> -	sudo yum install xapian-core-devel gmime-devel libtalloc-devel zlib-devel python3-sphinx texinfo info
> +	sudo yum install xapian-core-devel gmime30-devel libtalloc-devel zlib-devel python3-sphinx texinfo info

Since 'Fedora', change 'yum' to 'dnf' (no yum nomore on no fedora system)

(also:
 $ podman pull centos:8
 $ podman run --rm -it centos:8 command -v dnf
 /usr/bin/dnf
)

>  
>  On other systems, a similar command can be used, but the details of
>  the package names may be different.
> diff --git a/configure b/configure
> index 05ade05b..680e0e6e 100755
> --- a/configure
> +++ b/configure
> @@ -956,7 +956,7 @@ On Debian and similar systems:
>  
>  Or on Fedora and similar systems:
>  
> -	sudo yum install xapian-core-devel gmime-devel libtalloc-devel zlib-devel
> +	sudo yum install xapian-core-devel gmime30-devel libtalloc-devel zlib-devel

Ditto.

Tomi

>  
>  On other systems, similar commands can be used, but the details of the
>  package names may be different.
> -- 
> 2.27.0
>
> _______________________________________________
> notmuch mailing list
> notmuch@notmuchmail.org
> https://notmuchmail.org/mailman/listinfo/notmuch

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

* Re: [PATCH] doc: update name of gmime package to install
  2020-07-01 19:31 ` Tomi Ollila
@ 2020-07-02 13:01   ` David Bremner
  2020-07-02 18:54     ` Daniel Kahn Gillmor
  0 siblings, 1 reply; 5+ messages in thread
From: David Bremner @ 2020-07-02 13:01 UTC (permalink / raw)
  To: Tomi Ollila, notmuch

Tomi Ollila <tomi.ollila@iki.fi> writes:

> On Fri, Jun 26 2020, David Bremner wrote:
>
>> Fedora still has an old gmime-devel which is 2.6.x. This is no longer
>> supported by notmuch.
>> ---
>>  INSTALL   | 2 +-
>>  configure | 2 +-
>>  2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/INSTALL b/INSTALL
>> index f1236e71..3f11c2b7 100644
>> --- a/INSTALL
>> +++ b/INSTALL
>> @@ -95,7 +95,7 @@ dependencies with a single simple command line. For example:
>>  
>>    For Fedora and similar:
>>  
>> -	sudo yum install xapian-core-devel gmime-devel libtalloc-devel zlib-devel python3-sphinx texinfo info
>> +	sudo yum install xapian-core-devel gmime30-devel libtalloc-devel zlib-devel python3-sphinx texinfo info
>
> Since 'Fedora', change 'yum' to 'dnf' (no yum nomore on no fedora system)

Do you mean dnf is better or newer than yum? FWIW I still have yum in my
fedora32 (cloud) image.

Yours ignorantly,

David
_______________________________________________
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-leave@notmuchmail.org

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

* Re: [PATCH] doc: update name of gmime package to install
  2020-07-02 13:01   ` David Bremner
@ 2020-07-02 18:54     ` Daniel Kahn Gillmor
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Kahn Gillmor @ 2020-07-02 18:54 UTC (permalink / raw)
  To: David Bremner, Tomi Ollila, notmuch


[-- Attachment #1.1: Type: text/plain, Size: 1331 bytes --]

On Thu 2020-07-02 10:01:07 -0300, David Bremner wrote:
> Tomi Ollila <tomi.ollila@iki.fi> writes:
>
>> On Fri, Jun 26 2020, David Bremner wrote:
>>
>>> Fedora still has an old gmime-devel which is 2.6.x. This is no longer
>>> supported by notmuch.
>>> ---
>>>  INSTALL   | 2 +-
>>>  configure | 2 +-
>>>  2 files changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/INSTALL b/INSTALL
>>> index f1236e71..3f11c2b7 100644
>>> --- a/INSTALL
>>> +++ b/INSTALL
>>> @@ -95,7 +95,7 @@ dependencies with a single simple command line. For example:
>>>  
>>>    For Fedora and similar:
>>>  
>>> -	sudo yum install xapian-core-devel gmime-devel libtalloc-devel zlib-devel python3-sphinx texinfo info
>>> +	sudo yum install xapian-core-devel gmime30-devel libtalloc-devel zlib-devel python3-sphinx texinfo info
>>
>> Since 'Fedora', change 'yum' to 'dnf' (no yum nomore on no fedora system)
>
> Do you mean dnf is better or newer than yum? FWIW I still have yum in my
> fedora32 (cloud) image.

I've been using dnf on fedora 32.  I concur that we need gmime30-devel,
not gmime-devel.

My understanding is that dnf is the future:

   https://www.2daygeek.com/comparison-difference-between-dnf-vs-yum/

Might as well s/yum/dnf/ while you're s/gmime-devel/gmime30-devel/ too.

LGTM,

      --dkg

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

[-- Attachment #2: Type: text/plain, Size: 158 bytes --]

_______________________________________________
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-leave@notmuchmail.org

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

* Re: [PATCH] doc: update name of gmime package to install
  2020-06-26 11:11 [PATCH] doc: update name of gmime package to install David Bremner
  2020-07-01 19:31 ` Tomi Ollila
@ 2020-07-03 11:36 ` David Bremner
  1 sibling, 0 replies; 5+ messages in thread
From: David Bremner @ 2020-07-03 11:36 UTC (permalink / raw)
  To: notmuch

David Bremner <david@tethera.net> writes:

> Fedora still has an old gmime-devel which is 2.6.x. This is no longer
> supported by notmuch.

Applied, with s/yum/dnf/ in 0.30~rc3

d
_______________________________________________
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-leave@notmuchmail.org

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

end of thread, other threads:[~2020-07-03 11:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-26 11:11 [PATCH] doc: update name of gmime package to install David Bremner
2020-07-01 19:31 ` Tomi Ollila
2020-07-02 13:01   ` David Bremner
2020-07-02 18:54     ` Daniel Kahn Gillmor
2020-07-03 11:36 ` David Bremner

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