[csw-devel] SF.net SVN: gar:[15732] csw/mgar/pkg

idogan23 at users.sourceforge.net idogan23 at users.sourceforge.net
Sun Sep 25 00:23:21 CEST 2011


Revision: 15732
          http://gar.svn.sourceforge.net/gar/?rev=15732&view=rev
Author:   idogan23
Date:     2011-09-24 22:23:21 +0000 (Sat, 24 Sep 2011)
Log Message:
-----------
prosody: initial commit

Added Paths:
-----------
    csw/mgar/pkg/prosody/
    csw/mgar/pkg/prosody/Makefile
    csw/mgar/pkg/prosody/branches/
    csw/mgar/pkg/prosody/tags/
    csw/mgar/pkg/prosody/trunk/
    csw/mgar/pkg/prosody/trunk/Makefile
    csw/mgar/pkg/prosody/trunk/checksums
    csw/mgar/pkg/prosody/trunk/files/
    csw/mgar/pkg/prosody/trunk/files/0001-Makefile-test.patch
    csw/mgar/pkg/prosody/trunk/files/0001-configure-shell.patch

Copied: csw/mgar/pkg/prosody/Makefile (from rev 15728, csw/mgar/pkg/template/Makefile)
===================================================================
--- csw/mgar/pkg/prosody/Makefile	                        (rev 0)
+++ csw/mgar/pkg/prosody/Makefile	2011-09-24 22:23:21 UTC (rev 15732)
@@ -0,0 +1,15 @@
+# vim: ft=make ts=4 sw=4 noet
+
+default:
+	@echo "You are in the pkg/ directory."
+
+%:
+	$(MAKE) -C trunk $* 
+
+paranoid-%:
+	$(MAKE) -C trunk $* || exit 2 
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+	$(MAKE) -C trunk $* || echo "	*** make $* in $$i failed ***" >> $(BUILDLOG) 


Property changes on: csw/mgar/pkg/prosody/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/prosody/trunk/Makefile
===================================================================
--- csw/mgar/pkg/prosody/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/prosody/trunk/Makefile	2011-09-24 22:23:21 UTC (rev 15732)
@@ -0,0 +1,44 @@
+NAME = prosody
+VERSION = 0.8.2
+GARTYPE = v2
+CATEGORIES = server
+
+DESCRIPTION = A simple extensible XMPP server written in Lua
+define BLURB
+  Prosody is a flexible communications server for Jabber/XMPP written in Lua. It
+  aims to be easy to use, and light on resources. For developers it aims to be
+  easy to extend and give a flexible system on which to rapidly develop added
+  functionality, or prototype new protocols.
+endef
+
+VENDOR_URL = http://prosody.im
+MASTER_SITES = http://prosody.im/downloads/source/
+DISTFILES  = $(DISTNAME).tar.gz
+
+# File name regex to get notifications about upstream software releases
+# NOTE: Use this only if the automatic regex creation
+#       does not work for your package
+# UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz
+
+# If the url used to check for software update is different of MASTER_SITES, then 
+# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES
+# UPSTREAM_MASTER_SITES = 
+
+PATCHFILES += 0001-configure-shell.patch
+PATCHFILES += 0001-Makefile-test.patch
+
+#CONFIGURE_ARGS = $(DIRPATHS)
+CONFIGURE_ARGS  = --prefix=/opt/csw
+CONFIGURE_ARGS += --datadir=/var/opt/csw/$(NAME)
+CONFIGURE_ARGS += --sysconfdir=/etc/opt/csw/$(NAME)
+
+SKIPTEST = 1
+
+RUNTIME_DEP_PKGS_CSWprosody += CSWlibgcc-s1
+RUNTIME_DEP_PKGS_CSWprosody += CSWosslrt
+RUNTIME_DEP_PKGS_CSWprosody += CSWlibidn11
+RUNTIME_DEP_PKGS_CSWprosody += CSWlua
+
+include gar/category.mk
+
+PATH := /opt/csw/gnu:$(PATH)


Property changes on: csw/mgar/pkg/prosody/trunk/Makefile
___________________________________________________________________
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/prosody/trunk/checksums
===================================================================
--- csw/mgar/pkg/prosody/trunk/checksums	                        (rev 0)
+++ csw/mgar/pkg/prosody/trunk/checksums	2011-09-24 22:23:21 UTC (rev 15732)
@@ -0,0 +1 @@
+6e907bf0d0acf24f1011083020ba6ffb  prosody-0.8.2.tar.gz

Added: csw/mgar/pkg/prosody/trunk/files/0001-Makefile-test.patch
===================================================================
--- csw/mgar/pkg/prosody/trunk/files/0001-Makefile-test.patch	                        (rev 0)
+++ csw/mgar/pkg/prosody/trunk/files/0001-Makefile-test.patch	2011-09-24 22:23:21 UTC (rev 15732)
@@ -0,0 +1,27 @@
+From 8fabf83ef68aa31d94dd922f9d26991a046ca1df Mon Sep 17 00:00:00 2001
+From: Ihsan Dogan <ihsan at opencsw.org>
+Date: Sat, 24 Sep 2011 12:36:49 +0200
+Subject: [PATCH] Makefile test
+
+---
+ Makefile |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 51e376f..6fddf6a 100644
+--- a/Makefile
++++ b/Makefile
+@@ -37,8 +37,8 @@ install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodin
+ 	install -d $(MODULES)/adhoc
+ 	install -m644 plugins/adhoc/*.lua $(MODULES)/adhoc
+ 	install -m644 man/prosodyctl.man $(MAN)/man1/prosodyctl.1
+-	test -e $(CONFIG)/prosody.cfg.lua || install -m644 prosody.cfg.lua.install $(CONFIG)/prosody.cfg.lua
+-	test -e prosody.version && install prosody.version $(SOURCE)/prosody.version || true
++	test -r $(CONFIG)/prosody.cfg.lua || install -m644 prosody.cfg.lua.install $(CONFIG)/prosody.cfg.lua
++	test -r prosody.version && install prosody.version $(SOURCE)/prosody.version || true
+ 	$(MAKE) install -C util-src
+ 
+ clean:
+-- 
+1.7.6.1
+

Added: csw/mgar/pkg/prosody/trunk/files/0001-configure-shell.patch
===================================================================
--- csw/mgar/pkg/prosody/trunk/files/0001-configure-shell.patch	                        (rev 0)
+++ csw/mgar/pkg/prosody/trunk/files/0001-configure-shell.patch	2011-09-24 22:23:21 UTC (rev 15732)
@@ -0,0 +1,22 @@
+From a255805b824f10d47047b65c1b599e59eb5e5e2e Mon Sep 17 00:00:00 2001
+From: Ihsan Dogan <ihsan at opencsw.org>
+Date: Sat, 24 Sep 2011 11:57:42 +0200
+Subject: [PATCH] configure shell
+
+---
+ configure |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/configure b/configure
+index af04622..1463342 100755
+--- a/configure
++++ b/configure
+@@ -1,4 +1,4 @@
+-#!/bin/sh
++#!/bin/bash
+ 
+ # Defaults
+ 
+-- 
+1.7.6.1
+

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