[arch-commits] Commit in fdm/trunk (PKGBUILD openssl-1.1.0.patch)

2019-02-13 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, February 13, 2019 @ 17:44:07
  Author: bisson
Revision: 432083

upstream update

Modified:
  fdm/trunk/PKGBUILD
Deleted:
  fdm/trunk/openssl-1.1.0.patch

-+
 PKGBUILD|   16 
 openssl-1.1.0.patch |   31 ---
 2 files changed, 4 insertions(+), 43 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-13 17:38:18 UTC (rev 432082)
+++ PKGBUILD2019-02-13 17:44:07 UTC (rev 432083)
@@ -4,26 +4,18 @@
 # Contributor: Grigorios Bouzakis 
 
 pkgname=fdm
-pkgver=1.9
-pkgrel=4
+pkgver=2.0
+pkgrel=1
 pkgdesc='Program to fetch and deliver mail'
 url='https://github.com/nicm/fdm'
 license=('BSD')
 arch=('x86_64')
 depends=('openssl' 'tdb' 'zlib')
-source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz;
-'openssl-1.1.0.patch')
-sha256sums=('16416c38a9a7e32d187220cc5ae61a51463d5e4e47419c5c513f422523d39914'
-'334122758841e7d03d691267a634d5b3fda3ab7dbd9852a810349c4ea618b0cb')
+source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz;)
+sha256sums=('06b28cb6b792570bc61d7e29b13d2af46b92fea77e058b2b17e11e8f7ed0cea4')
 
 options=('!makeflags')
 
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../openssl-1.1.0.patch
-   autoreconf -fi
-}
-
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr

Deleted: openssl-1.1.0.patch
===
--- openssl-1.1.0.patch 2019-02-13 17:38:18 UTC (rev 432082)
+++ openssl-1.1.0.patch 2019-02-13 17:44:07 UTC (rev 432083)
@@ -1,31 +0,0 @@
-From 070cee8d1efba1ca260777a204fba7cdfe676ca5 Mon Sep 17 00:00:00 2001
-From: Nicholas Marriott 
-Date: Tue, 17 Jan 2017 23:14:03 +
-Subject: [PATCH] Look for OPENSSL_init_ssl, from Tomasz Miasko.
-

- configure.ac | 7 ++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 5793c2d..161040c 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -93,11 +93,16 @@ if test "x$found_libcrypto" = xno; then
-   AC_MSG_ERROR("libcrypto not found")
- fi
- AC_SEARCH_LIBS(
--  SSL_library_init,
-+  OPENSSL_init_ssl,
-   [ssl],
-   found_libssl=yes,
-   found_libssl=no
- )
-+AC_SEARCH_LIBS(
-+  SSL_library_init,
-+  [ssl],
-+  found_libssl=yes
-+)
- if test "x$found_libssl" = xno; then
-   AC_MSG_ERROR("libssl not found")
- fi


[arch-commits] Commit in fdm/trunk (PKGBUILD openssl-1.1.0.patch)

2017-03-13 Thread Bartłomiej Piotrowski
Date: Monday, March 13, 2017 @ 18:53:46
  Author: bpiotrowski
Revision: 216121

Fix build against Openssl 1.1.0

Added:
  fdm/trunk/openssl-1.1.0.patch
Modified:
  fdm/trunk/PKGBUILD

-+
 PKGBUILD|   12 ++--
 openssl-1.1.0.patch |   31 +++
 2 files changed, 41 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 18:50:36 UTC (rev 216120)
+++ PKGBUILD2017-03-13 18:53:46 UTC (rev 216121)
@@ -12,11 +12,19 @@
 license=('BSD')
 arch=('i686' 'x86_64')
 depends=('openssl' 'tdb' 'zlib')
-source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz;)
-sha256sums=('16416c38a9a7e32d187220cc5ae61a51463d5e4e47419c5c513f422523d39914')
+source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz;
+'openssl-1.1.0.patch')
+sha256sums=('16416c38a9a7e32d187220cc5ae61a51463d5e4e47419c5c513f422523d39914'
+'334122758841e7d03d691267a634d5b3fda3ab7dbd9852a810349c4ea618b0cb')
 
 options=('!makeflags')
 
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../openssl-1.1.0.patch
+   autoreconf -fi
+}
+
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr

Added: openssl-1.1.0.patch
===
--- openssl-1.1.0.patch (rev 0)
+++ openssl-1.1.0.patch 2017-03-13 18:53:46 UTC (rev 216121)
@@ -0,0 +1,31 @@
+From 070cee8d1efba1ca260777a204fba7cdfe676ca5 Mon Sep 17 00:00:00 2001
+From: Nicholas Marriott 
+Date: Tue, 17 Jan 2017 23:14:03 +
+Subject: [PATCH] Look for OPENSSL_init_ssl, from Tomasz Miasko.
+
+---
+ configure.ac | 7 ++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 5793c2d..161040c 100644
+--- a/configure.ac
 b/configure.ac
+@@ -93,11 +93,16 @@ if test "x$found_libcrypto" = xno; then
+   AC_MSG_ERROR("libcrypto not found")
+ fi
+ AC_SEARCH_LIBS(
+-  SSL_library_init,
++  OPENSSL_init_ssl,
+   [ssl],
+   found_libssl=yes,
+   found_libssl=no
+ )
++AC_SEARCH_LIBS(
++  SSL_library_init,
++  [ssl],
++  found_libssl=yes
++)
+ if test "x$found_libssl" = xno; then
+   AC_MSG_ERROR("libssl not found")
+ fi