[csw-devel] SF.net SVN: gar:[7976] csw/mgar/pkg/httping/trunk

skayser at users.sourceforge.net skayser at users.sourceforge.net
Tue Jan 12 01:52:05 CET 2010


Revision: 7976
          http://gar.svn.sourceforge.net/gar/?rev=7976&view=rev
Author:   skayser
Date:     2010-01-12 00:52:04 +0000 (Tue, 12 Jan 2010)

Log Message:
-----------
httping: update to 1.4.1

Modified Paths:
--------------
    csw/mgar/pkg/httping/trunk/Makefile
    csw/mgar/pkg/httping/trunk/checksums
    csw/mgar/pkg/httping/trunk/files/changelog.CSW

Added Paths:
-----------
    csw/mgar/pkg/httping/trunk/files/0001-Makefile-make-options-and-tools-configurable.patch

Modified: csw/mgar/pkg/httping/trunk/Makefile
===================================================================
--- csw/mgar/pkg/httping/trunk/Makefile	2010-01-11 23:27:56 UTC (rev 7975)
+++ csw/mgar/pkg/httping/trunk/Makefile	2010-01-12 00:52:04 UTC (rev 7976)
@@ -1,5 +1,8 @@
+# TODO (release-critical prefixed with !, non release-critical with *)
+# * Submit 0001-* patch upstream
+# * -6 not documented in man page (any others?), feedback to upstream
 GARNAME = httping
-GARVERSION = 1.3.0
+GARVERSION = 1.4.1
 CATEGORIES = net
 
 DESCRIPTION = Httping is like 'ping' but for http-requests.
@@ -11,25 +14,34 @@
 endef
 
 MASTER_SITES = http://www.vanheusden.com/httping/
-DISTFILES  = $(GARNAME)-$(GARVERSION).tgz
+DISTFILES    = $(GARNAME)-$(GARVERSION).tgz
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tgz
 
 REQUIRED_PKGS = CSWosslrt
 
-# We define upstream file regex so we can be notifed of new upstream software release
-UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tgz
+# Makefile comes pre-set with gcc defaults and hardcoded tools
+PATCHFILES = 0001-Makefile-make-options-and-tools-configurable.patch
 
-PATCHFILES = gar-base.diff
-
 CONFIGURE_SCRIPTS =
 TEST_SCRIPTS =
 
-CONFIGURE_ARGS = $(DIRPATHS)
+# Build options (see $(WORKSRC)/Makefile)
+EXTRA_LD_FLAGS = -lsocket -lnsl
+EXTRA_BUILD_EXPORTS = WFLAGS OFLAGS
+WFLAGS =
+OFLAGS =
 
+# Install options (see $(WORKSRC)/Makefile)
+INSTALL_EXPORTS = PREFIX INSTALL STRIP
+PREFIX  = $(prefix)
+INSTALL = ginstall
+STRIP   = /usr/ccs/bin/strip
+
 LICENSE = license.txt
 
 include gar/category.mk
 
 post-install-modulated:
-	@ginstall -d $(DESTDIR)$(docdir)/$(GARNAME)
-	@cp $(FILEDIR)/changelog.CSW $(DESTDIR)$(docdir)/$(GARNAME)
+	ginstall -d $(DESTDIR)$(docdir)/$(GARNAME)
+	cp $(FILEDIR)/changelog.CSW $(DESTDIR)$(docdir)/$(GARNAME)
 	@$(MAKECOOKIE)

Modified: csw/mgar/pkg/httping/trunk/checksums
===================================================================
--- csw/mgar/pkg/httping/trunk/checksums	2010-01-11 23:27:56 UTC (rev 7975)
+++ csw/mgar/pkg/httping/trunk/checksums	2010-01-12 00:52:04 UTC (rev 7976)
@@ -1,2 +1,2 @@
-9f75ad45daa91e67c6677c9959165f89  download/gar-base.diff
-41c912a9ecc904e51d7260053fc2195c  download/httping-1.3.0.tgz
+828d966da2d49e3300a0914e8d6f7b16  0001-Makefile-make-options-and-tools-configurable.patch
+bde1ff3c01343d2371d8f34fbf8a1d9a  httping-1.4.1.tgz

Added: csw/mgar/pkg/httping/trunk/files/0001-Makefile-make-options-and-tools-configurable.patch
===================================================================
--- csw/mgar/pkg/httping/trunk/files/0001-Makefile-make-options-and-tools-configurable.patch	                        (rev 0)
+++ csw/mgar/pkg/httping/trunk/files/0001-Makefile-make-options-and-tools-configurable.patch	2010-01-12 00:52:04 UTC (rev 7976)
@@ -0,0 +1,52 @@
+From f252b0a2a7f87d34dbcdf8bcccde9e6069ac9729 Mon Sep 17 00:00:00 2001
+From: Sebastian Kayser <skayser at opencsw.org>
+Date: Tue, 12 Jan 2010 01:10:31 +0100
+Subject: [PATCH] Makefile: make options and tools configurable
+
+---
+ Makefile |   18 +++++++++---------
+ 1 files changed, 9 insertions(+), 9 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 873c57e..0133741 100644
+--- a/Makefile
++++ b/Makefile
+@@ -16,26 +16,26 @@ include version
+ 
+ TARGET=httping
+ 
+-WFLAGS=-Wall -W
+-OFLAGS=-O2
++WFLAGS?=-Wall -W
++OFLAGS?=-O2
+ CFLAGS+=$(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\"
+ 
+ PACKAGE=$(TARGET)-$(VERSION)
+-PREFIX=/usr
++PREFIX?=/usr
+ BINDIR=$(PREFIX)/bin
+ MANDIR=$(PREFIX)/share/man
+ DOCDIR=$(PREFIX)/share/doc/$(TARGET)
+ 
+-INSTALL=install
++INSTALL?=install
+ INSTALLDIR=$(INSTALL) -m 0755 -d
+ INSTALLBIN=$(INSTALL) -m 0755
+ INSTALLMAN=$(INSTALL) -m 0644
+ INSTALLDOC=$(INSTALL) -m 0644
+-STRIP=/usr/bin/strip
+-RMDIR=/bin/rm -rf
+-MKDIR=/bin/mkdir
+-ARCHIVE=/bin/tar cf -
+-COMPRESS=/bin/gzip -9
++STRIP?=/usr/bin/strip
++RMDIR?=/bin/rm -rf
++MKDIR?=/bin/mkdir
++ARCHIVE?=/bin/tar cf -
++COMPRESS?=/bin/gzip -9
+ 
+ OBJS=mem.o http.o io.o str.o error.o utils.o main.o tcp.o res.o
+ 
+-- 
+1.6.5.1
+

Modified: csw/mgar/pkg/httping/trunk/files/changelog.CSW
===================================================================
--- csw/mgar/pkg/httping/trunk/files/changelog.CSW	2010-01-11 23:27:56 UTC (rev 7975)
+++ csw/mgar/pkg/httping/trunk/files/changelog.CSW	2010-01-12 00:52:04 UTC (rev 7976)
@@ -1,3 +1,9 @@
+httping (1.4.1,REV=2010.01.12)
+
+  * Updated to 1.4.1
+
+ -- Sebastian Kayser <skayser at opencsw.org>  Tue, 12 Jan 2010 02:08:40 +0100
+
 httping (1.3.0,REV=2009.05.31)
 
   * Adopted and updated to 1.3.0 (Closes: #3458, #2391).


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the devel mailing list