From owner-svn-ports-all@FreeBSD.ORG Sun Jun 22 07:07:43 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DD878A1; Sun, 22 Jun 2014 07:07:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E4292BA2; Sun, 22 Jun 2014 07:07:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5M77hbK072082; Sun, 22 Jun 2014 07:07:43 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5M77geW072078; Sun, 22 Jun 2014 07:07:42 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201406220707.s5M77geW072078@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 22 Jun 2014 07:07:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358767 - in head: . security/gpgme X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jun 2014 07:07:43 -0000 Author: jhale Date: Sun Jun 22 07:07:42 2014 New Revision: 358767 URL: http://svnweb.freebsd.org/changeset/ports/358767 QAT: https://qat.redports.org/buildarchive/r358767/ Log: - Update to 1.5.0 - Simplify MASTER_SITES - Drop signature download and verify target - Strip libraries - Add UPDATING entry documenting behavior change since gpgme now autodetects the gpg binary Modified: head/UPDATING head/security/gpgme/Makefile head/security/gpgme/distinfo head/security/gpgme/pkg-plist Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Jun 22 05:06:22 2014 (r358766) +++ head/UPDATING Sun Jun 22 07:07:42 2014 (r358767) @@ -5,6 +5,20 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20140622: + AFFECTS: users of security/gpgme + AUTHOR: jhale@FreeBSD.org + + If you have both security/gnupg AND security/gnupg1 installed, gpgme will + now automatically detect and use security/gnupg. Specifically, it will + search for gpgconf(1) first and use the paths for the binaries provided + by it. Failing that, it will search for a binary named "gpg". + + It is no longer possible to specify the location of the gpg binary at + buildtime to differentiate between version 1.x and version 2.x. The port + options GNUPG1 and GNUPG2 now merely add their respective versions of gnupg + as build and runtime dependencies. + 20140618: AFFECTS: users of devel/m17n-* textproc/*m17n* AUTHOR: Nikola Lecic Modified: head/security/gpgme/Makefile ============================================================================== --- head/security/gpgme/Makefile Sun Jun 22 05:06:22 2014 (r358766) +++ head/security/gpgme/Makefile Sun Jun 22 07:07:42 2014 (r358767) @@ -2,13 +2,9 @@ # $FreeBSD$ PORTNAME= gpgme -PORTVERSION= 1.4.3 -PORTREVISION= 1 +PORTVERSION= 1.5.0 CATEGORIES= security -MASTER_SITES= ${MASTER_SITE_GNUPG} -MASTER_SITE_SUBDIR= gpgme -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +MASTER_SITES= GNUPG/gpgme MAINTAINER= jhale@FreeBSD.org COMMENT= Library to make access to GnuPG easier @@ -22,8 +18,7 @@ GNU_CONFIGURE= yes USES= gmake libtool:keepla tar:bzip2 USE_LDCONFIG= yes -CONFIGURE_ARGS= --includedir=${PREFIX}/include/gpgme \ - --with-g13=no +CONFIGURE_ARGS= --includedir=${PREFIX}/include/gpgme INFO= gpgme PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README THANKS TODO @@ -36,32 +31,14 @@ OPTIONS_DEFAULT= GNUPG2 UISERVER GNUPG1_DESC= Build gpgme library for GnuPG 1.x GNUPG1_BUILD_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1 GNUPG1_RUN_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1 -GNUPG1_CONFIGURE_ON= --with-gpg=${LOCALBASE}/bin/gpg \ - --with-gpgconf=no \ - --with-gpgsm=no GNUPG2_DESC= Build gpgme library for GnuPG 2.x GNUPG2_BUILD_DEPENDS= gpg2:${PORTSDIR}/security/gnupg GNUPG2_RUN_DEPENDS= gpg2:${PORTSDIR}/security/gnupg -GNUPG2_CONFIGURE_ON= --with-gpg=${LOCALBASE}/bin/gpg2 \ - --with-gpgconf=${LOCALBASE}/bin/gpgconf UISERVER_DESC= GnuPG UI server support UISERVER_CONFIGURE_ENABLE= fd-passing -.include - -.if ${PORT_OPTIONS:MGNUPG2} -.if exists(${LOCALBASE}/bin/gpgsm) -CONFIGURE_ARGS+=--with-gpgsm=${LOCALBASE}/bin/gpgsm -.else -CONFIGURE_ARGS+=--with-gpgsm=no -.endif -.endif - -verify: checksum - gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig - post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} \ @@ -74,5 +51,6 @@ post-patch: post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgpgme*.so.* .include Modified: head/security/gpgme/distinfo ============================================================================== --- head/security/gpgme/distinfo Sun Jun 22 05:06:22 2014 (r358766) +++ head/security/gpgme/distinfo Sun Jun 22 07:07:42 2014 (r358767) @@ -1,4 +1,2 @@ -SHA256 (gpgme-1.4.3.tar.bz2) = 2d1cc12411753752d9c5b9037e6fd3fd363517af720154768cc7b46b60120496 -SIZE (gpgme-1.4.3.tar.bz2) = 972497 -SHA256 (gpgme-1.4.3.tar.bz2.sig) = 5b8269678c1ec6a73ad56475f731c1247359167a921b1dc0ae3b1e8d38a9273c -SIZE (gpgme-1.4.3.tar.bz2.sig) = 287 +SHA256 (gpgme-1.5.0.tar.bz2) = d1127ed730976468255e692d91f1c25b49fe2a97aad1379fc443f2c83c683c83 +SIZE (gpgme-1.5.0.tar.bz2) = 964134 Modified: head/security/gpgme/pkg-plist ============================================================================== --- head/security/gpgme/pkg-plist Sun Jun 22 05:06:22 2014 (r358766) +++ head/security/gpgme/pkg-plist Sun Jun 22 07:07:42 2014 (r358767) @@ -6,11 +6,11 @@ lib/common-lisp/gpgme/gpgme.lisp lib/libgpgme-pthread.la lib/libgpgme-pthread.so lib/libgpgme-pthread.so.11 -lib/libgpgme-pthread.so.11.11.0 +lib/libgpgme-pthread.so.11.12.0 lib/libgpgme.la lib/libgpgme.so lib/libgpgme.so.11 -lib/libgpgme.so.11.11.0 +lib/libgpgme.so.11.12.0 share/aclocal/gpgme.m4 @dirrm lib/common-lisp/gpgme @dirrmtry lib/common-lisp