gpg-agent 2.0.23

Update to latest stable release, update patch, change single quotes to
double quotes, and use https in homepage link.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
David Christenson 2014-06-03 20:13:07 -06:00 committed by Jack Nagel
parent 64fd130a8e
commit 38681855fd

View file

@ -1,17 +1,16 @@
require 'formula'
require "formula"
class GpgAgent < Formula
homepage 'http://www.gnupg.org/'
url 'ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.0.22.tar.bz2'
sha1 '9ba9ee288e9bf813e0f1e25cbe06b58d3072d8b8'
revision 1
homepage "https://www.gnupg.org/"
url "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.0.23.tar.bz2"
sha1 "c90e47ab95a40dd070fd75faef0a05c7b679553b"
depends_on 'libgpg-error'
depends_on 'libgcrypt'
depends_on 'libksba'
depends_on 'libassuan'
depends_on 'pth'
depends_on 'pinentry'
depends_on "libgpg-error"
depends_on "libgcrypt"
depends_on "libksba"
depends_on "libassuan"
depends_on "pth"
depends_on "pinentry"
# Adjust package name to fit our scheme of packaging both
# gnupg 1.x and 2.x, and gpg-agent separately
@ -19,7 +18,7 @@ class GpgAgent < Formula
def install
# don't use Clang's internal stdint.h
ENV['gl_cv_absolute_stdint_h'] = "#{MacOS.sdk_path}/usr/include/stdint.h"
ENV["gl_cv_absolute_stdint_h"] = "#{MacOS.sdk_path}/usr/include/stdint.h"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
@ -32,7 +31,7 @@ end
__END__
diff --git a/configure b/configure
index e5479af..782299d 100755
index 5959b37..eef29d1 100755
--- a/configure
+++ b/configure
@@ -578,8 +578,8 @@ MFLAGS=
@ -43,6 +42,6 @@ index e5479af..782299d 100755
-PACKAGE_TARNAME='gnupg'
+PACKAGE_NAME='gpg-agent'
+PACKAGE_TARNAME='gpg-agent'
PACKAGE_VERSION='2.0.22'
PACKAGE_STRING='gnupg 2.0.22'
PACKAGE_VERSION='2.0.23'
PACKAGE_STRING='gnupg 2.0.23'
PACKAGE_BUGREPORT='http://bugs.gnupg.org'