~ubuntu-branches/ubuntu/raring/php-net-sieve/raring

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Federico Gimenez Nieto
  • Date: 2011-10-22 12:42:04 UTC
  • mfrom: (1.1.5) (3.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20111022124204-7noca9tnpnsciznr
Tags: 1.3.2-1
* New upstream release (closes: #645529)
* debian/control:
  - Bumped Standards-Version 3.9.2 (no changes needed)
  - Added Vcs fields
* debian/copyright: updated copyright notice year
* debian/rules: disabled test execution on build time due to phpunit breakage
  (bug #607372)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
DEB_COMPRESS_EXCLUDE=package.xml
4
4
 
 
5
test_stamp = debian/test-stamp
 
6
 
5
7
include /usr/share/cdbs/1/rules/debhelper.mk
6
8
include /usr/share/cdbs/1/class/pear.mk
7
9
 
9
11
        #remove empty directories
10
12
        find debian/php-net-sieve -type d -empty -delete
11
13
 
 
14
#
 
15
# Disabled test execution due to 607372, which makes phpunit unusable for this
 
16
#
 
17
#make build depend on the result of the tests execution
 
18
#ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 
19
#common-build-arch common-build-indep:: $(test_stamp)
 
20
#$(test_stamp):
 
21
#       cd $(PEAR_SOURCE_DIR) && phpunit tests
 
22
#       touch $@
 
23
#
 
24
#clean::
 
25
#       $(RM) $(test_stamp)
 
26
#endif