unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] configure: use pkg-config for gpgme
@ 2022-11-02 16:15 Daniel Kahn Gillmor
  2022-11-02 21:02 ` David Bremner
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Kahn Gillmor @ 2022-11-02 16:15 UTC (permalink / raw)
  To: Notmuch Mail

GnuPG upstream has supported pkg-config since gpgme version 1.13 and
gpg-error 1.33, and now prefers the use of pkg-config by default,
instead of relying on gpg-error-config and gpgme-config.

As of libgpg-error 1.46, upstream deliberately does not ship
gpg-error-config by default.  As of gpgme 1.18.0, upstream does not
ship gpgme-config if gpg-error-config is also not present.

Both of these versions of upstream libraries are in debian unstable
now.  To the extent that notmuch is dependent on GnuPG, it should
follow GnuPG upstream's lead.

Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index be69b34d..c3629a73 100755
--- a/configure
+++ b/configure
@@ -541,8 +541,8 @@ version of GPGME.
 Please try to rebuild your version of GMime against a more recent
 version of GPGME (at least GPGME 1.8.0).
 EOF
-	if command -v gpgme-config >/dev/null; then
-	    printf 'Your current GPGME development version is: %s\n' "$(gpgme-config --version)"
+	if GPGME_VERS="$(pkg-config --modversion gpgme || gpgme-config --version)"; then
+	    printf 'Your current GPGME development version is: %s\n' "$GPGME_VERS"
 	else
 	    printf 'You do not have the GPGME development libraries installed.\n'
 	fi
-- 
2.35.1

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

* Re: [PATCH] configure: use pkg-config for gpgme
  2022-11-02 16:15 [PATCH] configure: use pkg-config for gpgme Daniel Kahn Gillmor
@ 2022-11-02 21:02 ` David Bremner
  2022-11-11 10:16   ` Daniel Kahn Gillmor
  0 siblings, 1 reply; 5+ messages in thread
From: David Bremner @ 2022-11-02 21:02 UTC (permalink / raw)
  To: Daniel Kahn Gillmor, Notmuch Mail

Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:

> GnuPG upstream has supported pkg-config since gpgme version 1.13 and
> gpg-error 1.33, and now prefers the use of pkg-config by default,
> instead of relying on gpg-error-config and gpgme-config.
>
> As of libgpg-error 1.46, upstream deliberately does not ship
> gpg-error-config by default.  As of gpgme 1.18.0, upstream does not
> ship gpgme-config if gpg-error-config is also not present.
>
> Both of these versions of upstream libraries are in debian unstable
> now.  To the extent that notmuch is dependent on GnuPG, it should
> follow GnuPG upstream's lead.

How is the (debian specific) story for backports?

d

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

* Re: [PATCH] configure: use pkg-config for gpgme
  2022-11-02 21:02 ` David Bremner
@ 2022-11-11 10:16   ` Daniel Kahn Gillmor
  2023-01-09 18:19     ` Daniel Kahn Gillmor
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Kahn Gillmor @ 2022-11-11 10:16 UTC (permalink / raw)
  To: David Bremner, Notmuch Mail


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

On Wed 2022-11-02 18:02:00 -0300, David Bremner wrote:
> Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:
>
>> GnuPG upstream has supported pkg-config since gpgme version 1.13 and
>> gpg-error 1.33, and now prefers the use of pkg-config by default,
>> instead of relying on gpg-error-config and gpgme-config.
>>
>> As of libgpg-error 1.46, upstream deliberately does not ship
>> gpg-error-config by default.  As of gpgme 1.18.0, upstream does not
>> ship gpgme-config if gpg-error-config is also not present.
>>
>> Both of these versions of upstream libraries are in debian unstable
>> now.  To the extent that notmuch is dependent on GnuPG, it should
>> follow GnuPG upstream's lead.
>
> How is the (debian specific) story for backports?

I believe this patch leaves notmuch still fully backportable across
all supported debian versions that were already supported.

0 dkg@alice:~$ rmadison gpgme1.0
gpgme1.0   | 1.5.1-6         | oldoldoldstable         | source
gpgme1.0   | 1.8.0-3         | oldoldstable            | source
gpgme1.0   | 1.12.0-6~bpo9+1 | stretch-backports       | source
gpgme1.0   | 1.12.0-6~bpo9+1 | stretch-backports-debug | source
gpgme1.0   | 1.12.0-6        | oldstable               | source
gpgme1.0   | 1.14.0-1        | stable                  | source
gpgme1.0   | 1.18.0-1        | testing                 | source
gpgme1.0   | 1.18.0-2        | unstable                | source
gpgme1.0   | 1.18.0-2        | unstable-debug          | source
0 dkg@alice:~$

backporting to stable should use pkg-config, since the version there is
after 1.13.  for older than stable, the functionality will still fall
back to using legacy gpgme-config.

     --dkg

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

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



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

* Re: [PATCH] configure: use pkg-config for gpgme
  2022-11-11 10:16   ` Daniel Kahn Gillmor
@ 2023-01-09 18:19     ` Daniel Kahn Gillmor
  2023-01-10 12:45       ` David Bremner
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Kahn Gillmor @ 2023-01-09 18:19 UTC (permalink / raw)
  To: Notmuch Mail


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

Just a nudge on this patch:

any chance we can have it applied in the notmuch tree?

    --dkg

On Fri 2022-11-11 05:16:31 -0500, Daniel Kahn Gillmor wrote:
> On Wed 2022-11-02 18:02:00 -0300, David Bremner wrote:
>> Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:
>>
>>> GnuPG upstream has supported pkg-config since gpgme version 1.13 and
>>> gpg-error 1.33, and now prefers the use of pkg-config by default,
>>> instead of relying on gpg-error-config and gpgme-config.
>>>
>>> As of libgpg-error 1.46, upstream deliberately does not ship
>>> gpg-error-config by default.  As of gpgme 1.18.0, upstream does not
>>> ship gpgme-config if gpg-error-config is also not present.
>>>
>>> Both of these versions of upstream libraries are in debian unstable
>>> now.  To the extent that notmuch is dependent on GnuPG, it should
>>> follow GnuPG upstream's lead.
>>
>> How is the (debian specific) story for backports?
>
> I believe this patch leaves notmuch still fully backportable across
> all supported debian versions that were already supported.
>
> 0 dkg@alice:~$ rmadison gpgme1.0
> gpgme1.0   | 1.5.1-6         | oldoldoldstable         | source
> gpgme1.0   | 1.8.0-3         | oldoldstable            | source
> gpgme1.0   | 1.12.0-6~bpo9+1 | stretch-backports       | source
> gpgme1.0   | 1.12.0-6~bpo9+1 | stretch-backports-debug | source
> gpgme1.0   | 1.12.0-6        | oldstable               | source
> gpgme1.0   | 1.14.0-1        | stable                  | source
> gpgme1.0   | 1.18.0-1        | testing                 | source
> gpgme1.0   | 1.18.0-2        | unstable                | source
> gpgme1.0   | 1.18.0-2        | unstable-debug          | source
> 0 dkg@alice:~$
>
> backporting to stable should use pkg-config, since the version there is
> after 1.13.  for older than stable, the functionality will still fall
> back to using legacy gpgme-config.
>
>      --dkg
> _______________________________________________
> notmuch mailing list -- notmuch@notmuchmail.org
> To unsubscribe send an email to notmuch-leave@notmuchmail.org

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

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



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

* Re: [PATCH] configure: use pkg-config for gpgme
  2023-01-09 18:19     ` Daniel Kahn Gillmor
@ 2023-01-10 12:45       ` David Bremner
  0 siblings, 0 replies; 5+ messages in thread
From: David Bremner @ 2023-01-10 12:45 UTC (permalink / raw)
  To: Daniel Kahn Gillmor, Notmuch Mail

Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:

> Just a nudge on this patch:
>
> any chance we can have it applied in the notmuch tree?
>
>     --dkg
>

Applied to master.

d

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

end of thread, other threads:[~2023-01-10 12:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-02 16:15 [PATCH] configure: use pkg-config for gpgme Daniel Kahn Gillmor
2022-11-02 21:02 ` David Bremner
2022-11-11 10:16   ` Daniel Kahn Gillmor
2023-01-09 18:19     ` Daniel Kahn Gillmor
2023-01-10 12:45       ` 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).