[arch-commits] Commit in libnatpmp/trunk (PKGBUILD fix_header_issue.diff)

Anatol Pomozov anatolik at nymeria.archlinux.org
Sat Apr 12 23:45:30 UTC 2014


    Date: Sunday, April 13, 2014 @ 01:45:29
  Author: anatolik
Revision: 109300

upgpkg: libnatpmp 20140401-2

Added:
  libnatpmp/trunk/fix_header_issue.diff
Modified:
  libnatpmp/trunk/PKGBUILD

-----------------------+
 PKGBUILD              |   13 +++++++---
 fix_header_issue.diff |   59 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2014-04-12 23:43:23 UTC (rev 109299)
+++ PKGBUILD	2014-04-12 23:45:29 UTC (rev 109300)
@@ -6,17 +6,22 @@
 
 pkgname=libnatpmp
 pkgver=20140401
-pkgrel=1
+pkgrel=2
 pkgdesc='A portable and fully compliant implementation of the NAT-PMP protocol'
 arch=(i686 x86_64)
 url='http://miniupnp.free.fr/libnatpmp.html'
 license=(BSD)
 depends=(glibc)
-source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz)
-sha1sums=('e9511edecb9a75dbe8c9ed39c0469a18dc7e950b')
+source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz
+        fix_header_issue.diff)
+sha1sums=('e9511edecb9a75dbe8c9ed39c0469a18dc7e950b'
+          '58baa3fe61edfc117ae92452fbc8176d095bd7d2')
 
 prepare() {
-  sed -e 's/CFLAGS = /CFLAGS += /' -i $pkgname-$pkgver/Makefile
+  cd $pkgname-$pkgver
+  sed -e 's/CFLAGS = /CFLAGS += /' -i Makefile
+  # The patch comes from upstream https://github.com/miniupnp/libnatpmp/commit/f376ab72bc4de0b45f4e10c9b287b7ffe2a1fcd1
+  patch -p1 < "$srcdir"/fix_header_issue.diff 
 }
 
 build() {

Added: fix_header_issue.diff
===================================================================
--- fix_header_issue.diff	                        (rev 0)
+++ fix_header_issue.diff	2014-04-12 23:45:29 UTC (rev 109300)
@@ -0,0 +1,59 @@
+commit f376ab72bc4de0b45f4e10c9b287b7ffe2a1fcd1
+Author: Thomas Bernard <miniupnp at free.fr>
+Date:   Thu Apr 10 23:09:44 2014 +0200
+
+    remove declspec.h problems. still has to be fixed definitely
+
+diff --git a/getgateway.h b/getgateway.h
+index d868f80..b3e17c6 100644
+--- a/getgateway.h
++++ b/getgateway.h
+@@ -1,6 +1,6 @@
+ /* $Id: getgateway.h,v 1.7 2013/09/10 20:09:04 nanard Exp $ */
+ /* libnatpmp
+-Copyright (c) 2007-2013, Thomas BERNARD
++Copyright (c) 2007-2014, Thomas BERNARD
+ All rights reserved.
+ 
+ Redistribution and use in source and binary forms, with or without
+@@ -38,12 +38,12 @@ typedef unsigned short uint16_t;
+ #endif
+ #define in_addr_t uint32_t
+ #endif
+-#include "declspec.h"
++/* #include "declspec.h" */
+ 
+ /* getdefaultgateway() :
+  * return value :
+  *    0 : success
+  *   -1 : failure    */
+-LIBSPEC int getdefaultgateway(in_addr_t * addr);
++/* LIBSPEC */int getdefaultgateway(in_addr_t * addr);
+ 
+ #endif
+diff --git a/natpmp.h b/natpmp.h
+index 62d113f..2399afb 100644
+--- a/natpmp.h
++++ b/natpmp.h
+@@ -1,6 +1,6 @@
+ /* $Id: natpmp.h,v 1.19 2014/04/01 09:39:29 nanard Exp $ */
+ /* libnatpmp
+-Copyright (c) 2007-2013, Thomas BERNARD
++Copyright (c) 2007-2014, Thomas BERNARD
+ All rights reserved.
+ 
+ Redistribution and use in source and binary forms, with or without
+@@ -48,10 +48,12 @@ typedef unsigned short uint16_t;
+ #define in_addr_t uint32_t
+ #include "declspec.h"
+ #else	/* WIN32 */
++#define LIBSPEC
+ #include <netinet/in.h>
+ #endif	/* WIN32 */
+ 
+-#include "declspec.h"
++/* causes problem when installing. Maybe should it be inlined ? */
++/* #include "declspec.h" */
+ 
+ typedef struct {
+ 	int s;	/* socket */




More information about the arch-commits mailing list