debian/0000755000000000000000000000000011756656041007201 5ustar debian/tests_run0000755000000000000000000000033111756656041011152 0ustar #!/bin/sh set -e pear_pkg=`ls | grep Event_Dispatcher` cd ${pear_pkg} PKG_ROOT=`pwd` cd tests for i in *.phpt ; do echo Testing with ${i} phpunit -d include_path=".:/usr/share/php:${PKG_ROOT}" AllTests.php done debian/control0000644000000000000000000000216711756656041010612 0ustar Source: php-event-dispatcher Section: php Priority: optional Maintainer: PKG-PHP-PEAR team Uploaders: Thomas Goirand Build-Depends: debhelper (>= 8), pkg-php-tools, phpunit (>= 3.6) Build-Depends-Indep: php-pear Standards-Version: 3.9.3 Vcs-Browser: http://git.debian.org/?p=pkg-php/event-dispatcher.git Vcs-Git: http://git.debian.org/git/pkg-php/event-dispatcher.git Homepage: http://pear.php.net/package/Event_Dispatcher Package: php-event-dispatcher Architecture: all Depends: ${misc:Depends}, php-pear Description: Dispatch notifications using PHP callbacks The Event_Dispatcher acts as a notification dispatch table. It is used to notify other objects of interesting things. This information is encapsulated in Event_Notification objects. Client objects register themselves with the Event_Dispatcher as observers of specific notifications posted by other objects. When an event occurs, an object posts an appropriate notification to the Event_Dispatcher. The Event_Dispatcher dispatches a message to each registered observer, passing the notification as the sole argument. debian/changelog0000644000000000000000000000315711756656041011061 0ustar php-event-dispatcher (1.1.0-3) unstable; urgency=low * Now running unit tests (and depends on phpunit >= 3.6). * Standards-Version: is now 3.9.3 (no changes). -- Thomas Goirand Tue, 22 May 2012 09:26:24 +0000 php-event-dispatcher (1.1.0-2) unstable; urgency=low * Now using the PKG PHP PEAR team as maintainer (me as uploader). * Section is now PHP. * Fixed the Vcs-Git / Vcs-Browser fields (Closes: #638506). * Added a debian/gbp.conf * Standards-Version: is now 3.9.2. * Switching to dh 8 sequencer and pkg-php-tools. * Switching to DEP5 format. * Switching to source format 3.0 (quilt) -- Thomas Goirand Sat, 28 Jan 2012 16:13:39 +0800 php-event-dispatcher (1.1.0-1) unstable; urgency=low * New upstream release. * Bumped Standard-Version. * Cleaned debian/rules of arch-specific targets. * Moved php-pear from Build-Depends: to Build-Depends-Indep:. * Added a ${misc:Depends} dependency. * Reindented long desc. * Added Homepage and Vcs-Browser field. * Reworked debian/copyright. * Now using zigo@debian.org for the maintainer field. -- Thomas Goirand Mon, 05 Jul 2010 12:01:20 +0800 php-event-dispatcher (1.0.0-2) unstable; urgency=low * Not a CDBS package anymore: rewrote the debian/rules * Now packaging the pear .reg file so pear install continues to work * The watch file now works. -- Thomas Goirand Sun, 5 Aug 2007 16:10:48 +0800 php-event-dispatcher (1.0.0-1) unstable; urgency=low * Initial release (Closes: #404654) -- Thomas Goirand Fri, 15 Dec 2006 01:34:04 +0100 debian/watch0000644000000000000000000000017711756656041010237 0ustar version=3 http://pear.php.net/package/Event_Dispatcher/download http://download.pear.php.net/package/Event_Dispatcher-(.*).tgz debian/compat0000644000000000000000000000000211756656041010377 0ustar 8 debian/gbp.conf0000644000000000000000000000016411756656041010621 0ustar [DEFAULT] upstream-branch = upstream-sid debian-branch = debian-sid [git-buildpackage] export-dir = ../build-area/ debian/source/0000755000000000000000000000000011756656041010501 5ustar debian/source/format0000644000000000000000000000001411756656041011707 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000341011756656041011132 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=240 Upstream-Name: Event_Dispatcher Upstream-Contact: Bertrand Mansion Source: http://pear.php.net/package/Event_Dispatcher/download Files: debian/* Copyright: (c) 2006-2012, Thomas Goirand License: BSD Files: * Copyright: (c) 2005-2009, Bertrand Mansion (c) Stephan Schmidt License: BSD License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/rules0000755000000000000000000000035611756656041010265 0ustar #!/usr/bin/make -f %: dh $@ --buildsystem=phppear --with phppear override_dh_link: dh_link -O--buildsystem=phppear ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) chmod +x ./debian/tests_run ./debian/tests_run $(pear_pkg) endif