[Pkg-voip-commits] r1180 - in destar/tags: . 0.1.0-2/debian

Santiago José Ruano Rincón santiago-guest at costa.debian.org
Wed Jan 18 01:56:51 UTC 2006


Author: santiago-guest
Date: 2006-01-18 01:56:50 +0000 (Wed, 18 Jan 2006)
New Revision: 1180

Added:
   destar/tags/0.1.0-2/
   destar/tags/0.1.0-2/debian/changelog
   destar/tags/0.1.0-2/debian/postinst
   destar/tags/0.1.0-2/debian/rules
Removed:
   destar/tags/0.1.0-2/debian/changelog
   destar/tags/0.1.0-2/debian/postinst
   destar/tags/0.1.0-2/debian/rules
Log:
* version 0.1.0-2 tagged



Copied: destar/tags/0.1.0-2 (from rev 1178, destar/trunk)

Deleted: destar/tags/0.1.0-2/debian/changelog
===================================================================
--- destar/trunk/debian/changelog	2006-01-14 18:13:52 UTC (rev 1178)
+++ destar/tags/0.1.0-2/debian/changelog	2006-01-18 01:56:50 UTC (rev 1180)
@@ -1,82 +0,0 @@
-destar (0.1.0-1) unstable; urgency=low
-
-  * The first upstream official release 
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Tue, 15 Nov 2005 23:12:53 -0500
-
-destar (0.1-pre1-1) unstable; urgency=low
-
-  * 0.1-pre1 Upstream release 
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Sat,  5 Nov 2005 22:48:26 -0500
-
-destar (0.0.218-1) unstable; urgency=low
-
-  * New svn revision 
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Sat, 29 Oct 2005 01:30:27 -0500
-
-destar (0.0.217-1) unstable; urgency=low
-
-  * New svn revision 
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Fri, 28 Oct 2005 20:29:19 -0500
-
-destar (0.0.216-1) unstable; urgency=low
-
-  * New svn revision 
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Fri, 28 Oct 2005 19:09:07 -0500
-
-destar (0.0.214-1) unstable; urgency=low
-
-  * New svn revision 
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Wed, 26 Oct 2005 00:05:02 -0500
-
-destar (0.0.199-1) unstable; urgency=low
-
-  * New svn revision 
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Mon, 26 Sep 2005 22:03:49 -0500
-
-destar (0.0.198-1) unstable; urgency=low
-
-  * New svn revision 
-  * Medusa removed, now used the debian package
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Sat, 24 Sep 2005 00:58:21 -0500
-
-destar (0.0.184-2) unstable; urgency=low
-
-  * Now deppends on quixote1 (Closes: #324089)
-  * destar recommends python-pysqlite which cannot be satisfied (Closes:
-    #325167)
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Tue, 20 Sep 2005 12:14:33 -0500
-
-destar (0.0.184-1) unstable; urgency=low
-
-  * New svn revision
-  * Closes: #323943: traceback on "Logger options" and other problems
-  * Closes: #323810: init script fails to restart when destar isn't
-    running
-  * Closes: #324110: init script too verbose
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Mon, 22 Aug 2005 23:56:24 -0500
-
-destar (0.0.169-1) unstable; urgency=low
-
-  * Added quixote as a dependency. Closes: #321908
-  * destar_cfg.py copied to /etc/asterisk. Closes: #321911
-  * Destar depends on asterisk, no only recommends it. Closes: #321742
-    invalid user
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Mon,  8 Aug 2005 14:32:22 -0500
-
-destar (0.0.167-1) unstable; urgency=low
-
-  * Initial debian release, based on the Tzafrir Cohen's package, 
-    Closes: #296707
-
- -- Santiago Ruano Rincon <santiago at unicauca.edu.co>  Thu, 28 Jul 2005 22:56:26 -0500

Copied: destar/tags/0.1.0-2/debian/changelog (from rev 1179, destar/trunk/debian/changelog)

Deleted: destar/tags/0.1.0-2/debian/postinst
===================================================================
--- destar/trunk/debian/postinst	2006-01-14 18:13:52 UTC (rev 1178)
+++ destar/tags/0.1.0-2/debian/postinst	2006-01-18 01:56:50 UTC (rev 1180)
@@ -1,44 +0,0 @@
-#! /bin/sh
-# postinst script for destar
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-#
-
-case "$1" in
-    configure)
-        # here we should create the destar user and chown 
-        # /var/{log,run}/destar to it.
-        chown asterisk /var/run/destar/
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-

Copied: destar/tags/0.1.0-2/debian/postinst (from rev 1179, destar/trunk/debian/postinst)

Deleted: destar/tags/0.1.0-2/debian/rules
===================================================================
--- destar/trunk/debian/rules	2006-01-14 18:13:52 UTC (rev 1178)
+++ destar/tags/0.1.0-2/debian/rules	2006-01-18 01:56:50 UTC (rev 1180)
@@ -1,64 +0,0 @@
-#!/usr/bin/make -f
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-include /usr/share/dpatch/dpatch.make
-
-ASTERISK_CFG_DIR=/etc/asterisk
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-else
-	CFLAGS += -O2
-endif
-
-build: build-stamp
-
-build-stamp: patch-stamp
-	dh_testdir
-
-	touch build-stamp
-
-clean: clean-patched unpatch
-clean-patched:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp 
-
-	-$(MAKE) clean
-
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
-	$(MAKE) install DESTDIR=$(CURDIR)/debian/destar
-	install -m 644 -o asterisk -g asterisk destar_cfg.py $(CURDIR)/debian/destar/$(ASTERISK_CFG_DIR)/
-
-binary-indep: build install
-
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs CHANGELOG.txt
-	dh_installdocs
-	dh_installexamples
-	dh_installinit
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_python
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep 
-.PHONY: build clean binary-indep binary install configure patch unpatch

Copied: destar/tags/0.1.0-2/debian/rules (from rev 1179, destar/trunk/debian/rules)




More information about the Pkg-voip-commits mailing list