gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] trunk r3874: update adns to 1.5.1


From: Carl Hansen
Subject: [Gsrc-commit] trunk r3874: update adns to 1.5.1
Date: Sun, 18 Sep 2016 17:00:24 +0000 (UTC)
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 3874
revision-id: address@hidden
parent: address@hidden
committer: address@hidden
branch nick: trunk
timestamp: Sun 2016-09-18 10:00:20 -0700
message:
  update adns to 1.5.1
added:
  pkg/gnu/adns/files/adns-1.5.1-fix-install.diff 
adns1.5.1fixinstall.-20160918165950-cjce4b70fkoubj2g-1
modified:
  pkg/gnu/adns/Makefile          makefile-20160617014725-uokjfnggs70iry9h-391
  pkg/gnu/adns/sha256sums        sha256sums-20160617014725-uokjfnggs70iry9h-394
=== modified file 'pkg/gnu/adns/Makefile'
--- a/pkg/gnu/adns/Makefile     2016-06-17 19:08:15 +0000
+++ b/pkg/gnu/adns/Makefile     2016-09-18 17:00:20 +0000
@@ -17,7 +17,7 @@
 
 NAME = adns
 GARNAME = adns
-GARVERSION = 1.5.0
+GARVERSION = 1.5.1
 HOME_URL = http://www.gnu.org/software/adns/
 DESCRIPTION = Asynchronous DNS client library and utilities
 define BLURB

=== added file 'pkg/gnu/adns/files/adns-1.5.1-fix-install.diff'
--- a/pkg/gnu/adns/files/adns-1.5.1-fix-install.diff    1970-01-01 00:00:00 
+0000
+++ b/pkg/gnu/adns/files/adns-1.5.1-fix-install.diff    2016-09-18 17:00:20 
+0000
@@ -0,0 +1,74 @@
+diff -x config.log -x config.status -ru tmp/adns-1.5.0/client/Makefile.in 
work/adns-1.5.0/client/Makefile.in
+--- tmp/adns-1.5.0/client/Makefile.in  2014-10-20 00:07:01.000000000 +0100
++++ work/adns-1.5.0/client/Makefile.in 2015-02-04 20:50:46.877304533 +0000
+@@ -20,6 +20,7 @@
+ #  You should have received a copy of the GNU General Public License
+ #  along with this program; if not, write to the Free Software Foundation.
+ 
++DESTDIR=
+ srcdir=               @srcdir@
+ VPATH=                @srcdir@
+ 
+@@ -58,9 +59,9 @@
+ all:          $(TARGETS)
+ 
+ install:      $(TARG_INSTALL)
+-              mkdir -p $(bindir)
++              mkdir -p $(DESTDIR)$(bindir)
+               set -xe; for f in $(TARG_INSTALL); \
+-                      do $(INSTALL_PROGRAM) $$f $(bindir)/$$f; done
++                      do $(INSTALL_PROGRAM) $$f $(DESTDIR)$(bindir)/$$f; done
+ 
+ uninstall:
+               for f in $(TARGETS); do rm -f $(bindir)/$$f; done
+diff -x config.log -x config.status -ru tmp/adns-1.5.0/dynamic/Makefile.in 
work/adns-1.5.0/dynamic/Makefile.in
+--- tmp/adns-1.5.0/dynamic/Makefile.in 2014-10-20 00:07:01.000000000 +0100
++++ work/adns-1.5.0/dynamic/Makefile.in        2015-02-04 20:51:16.747016805 
+0000
+@@ -20,6 +20,7 @@
+ #  You should have received a copy of the GNU General Public License
+ #  along with this program; if not, write to the Free Software Foundation.
+ 
++DESTDIR=
+ srcdir=               @srcdir@
+ VPATH=                @srcdir@
+ 
+@@ -30,10 +31,10 @@
+ ALLOBJS=      $(addsuffix _p.o, $(basename $(LIBOBJS)))
+ 
+ install:
+-              mkdir -p $(libdir)
+-              $(INSTALL_PROGRAM) $(SHLIBFILE) $(libdir)/$(SHLIBFILE)
+-              ln -sf $(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
+-              ln -sf $(SHLIBSONAME) $(libdir)/$(SHLIBFORLINK)
++              mkdir -p $(DESTDIR)$(libdir)
++              $(INSTALL_PROGRAM) $(SHLIBFILE) $(DESTDIR)$(libdir)/$(SHLIBFILE)
++              ln -sf $(SHLIBFILE) $(DESTDIR)$(libdir)/$(SHLIBSONAME)
++              ln -sf $(SHLIBSONAME) $(DESTDIR)$(libdir)/$(SHLIBFORLINK)
+ 
+ uninstall:
+               rm -f $(libdir)/$(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
+diff -x config.log -x config.status -ru tmp/adns-1.5.0/src/Makefile.in 
work/adns-1.5.0/src/Makefile.in
+--- tmp/adns-1.5.0/src/Makefile.in     2014-10-20 00:07:03.000000000 +0100
++++ work/adns-1.5.0/src/Makefile.in    2015-02-04 20:49:56.931102453 +0000
+@@ -20,6 +20,7 @@
+ #  You should have received a copy of the GNU General Public License
+ #  along with this program; if not, write to the Free Software Foundation.
+ 
++DESTDIR=
+ srcdir=               @srcdir@
+ VPATH=                @srcdir@
+ 
+@@ -30,10 +31,10 @@
+ DIRCFLAGS=    -I. -I$(srcdir)
+ 
+ install:
+-              mkdir -p $(libdir) $(includedir)
++              mkdir -p $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
+               set -xe; for f in $(TARGETS); \
+-                      do $(INSTALL_DATA) $$f $(libdir)/$$f; done
+-              $(INSTALL_DATA) $(srcdir)/../src/adns.h $(includedir)/adns.h
++                      do $(INSTALL_DATA) $$f $(DESTDIR)$(libdir)/$$f; done
++              $(INSTALL_DATA) $(srcdir)/../src/adns.h 
$(DESTDIR)$(includedir)/adns.h
+ 
+ uninstall:
+               for f in $(TARGETS); do rm -f $(libdir)/$$f; done

=== modified file 'pkg/gnu/adns/sha256sums'
--- a/pkg/gnu/adns/sha256sums   2016-06-17 19:08:15 +0000
+++ b/pkg/gnu/adns/sha256sums   2016-09-18 17:00:20 +0000
@@ -1,3 +1,3 @@
-7fc5eb4d315111a3a3a3f45ff143339ad4050185fbe6bff687f21364cb4ae841  
download/adns-1.5.0.tar.gz
-7b218a8fba80131c9b8cecb6409ed87bf6bee3b957f5ebf685e733784ea2ca7f  
download/adns-1.5.0-fix-install.diff
-8cae647f67c1410a89c9395cb718f18755d4ee4d8187c8df7480cad5b0aaf269  
download/adns-1.5.0.tar.gz.sig
+5b1026f18b8274be869245ed63427bf8ddac0739c67be12c4a769ac948824eeb  
download/adns-1.5.1.tar.gz
+7b218a8fba80131c9b8cecb6409ed87bf6bee3b957f5ebf685e733784ea2ca7f  
download/adns-1.5.1-fix-install.diff
+a1a0e23125a28a459177cdcfcf5520a3fe6eb2dbfd6bb9f6cdfd7457c8f01ae3  
download/adns-1.5.1.tar.gz.sig


reply via email to

[Prev in Thread] Current Thread [Next in Thread]