r42223 - in /desktop/unstable/gjs/debian: changelog control control.in rules

ah at users.alioth.debian.org ah at users.alioth.debian.org
Sun Aug 24 02:40:34 UTC 2014


Author: ah
Date: Sun Aug 24 02:40:34 2014
New Revision: 42223

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=42223
Log:
* Add installed-tests as autopkgtests
  + debian/control.in:
    - set XS-Testsuite for autopkgtests
    - add -tests package for installed tests
  + debian/tests: Add autopkgtests
  + debian/rules:
    - configure with --enable-installed-tests
    - Make tests fatal except for powerpc

Modified:
    desktop/unstable/gjs/debian/changelog
    desktop/unstable/gjs/debian/control
    desktop/unstable/gjs/debian/control.in
    desktop/unstable/gjs/debian/rules

Modified: desktop/unstable/gjs/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gjs/debian/changelog?rev=42223&op=diff
==============================================================================
--- desktop/unstable/gjs/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gjs/debian/changelog	[utf-8] Sun Aug 24 02:40:34 2014
@@ -1,3 +1,16 @@
+gjs (1.40.1-3) UNRELEASED; urgency=medium
+
+  * Add installed-tests as autopkgtests
+    + debian/control.in:
+      - set XS-Testsuite for autopkgtests
+      - add -tests package for installed tests
+    + debian/tests: Add autopkgtests
+    + debian/rules:
+      - configure with --enable-installed-tests
+      - Make tests fatal except for powerpc
+
+ -- Tim Lunn <tim at feathertop.org>  Mon, 18 Aug 2014 11:24:16 +1000
+
 gjs (1.40.1-2) unstable; urgency=medium
 
   * Bump Standards-Version to 3.9.5

Modified: desktop/unstable/gjs/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gjs/debian/control?rev=42223&op=diff
==============================================================================
--- desktop/unstable/gjs/debian/control	[utf-8] (original)
+++ desktop/unstable/gjs/debian/control	[utf-8] Sun Aug 24 02:40:34 2014
@@ -28,6 +28,7 @@
 Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gjs
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gjs
 Homepage: https://wiki.gnome.org/Gjs
+XS-Testsuite: autopkgtest
 
 Package: gjs
 Architecture: any
@@ -39,6 +40,19 @@
  Mozilla javascript engine and the GObject introsepection framework.
  .
  This package contains the interactive console application.
+
+Package: gjs-tests
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${misc:Depends},
+         gir1.2-gtk-3.0
+Description: Mozilla-based javascript bindings for the GNOME platform
+ Makes it possible for applications to use all of GNOME's platform
+ libraries using the Javascript language. It's mainly based on the
+ Mozilla javascript engine and the GObject introsepection framework.
+ .
+ This package contains test programs, designed to be run as part of a
+ regression testsuite.
 
 Package: libgjs0e
 Architecture: any

Modified: desktop/unstable/gjs/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gjs/debian/control.in?rev=42223&op=diff
==============================================================================
--- desktop/unstable/gjs/debian/control.in	[utf-8] (original)
+++ desktop/unstable/gjs/debian/control.in	[utf-8] Sun Aug 24 02:40:34 2014
@@ -23,6 +23,7 @@
 Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gjs
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gjs
 Homepage: https://wiki.gnome.org/Gjs
+XS-Testsuite: autopkgtest
 
 Package: gjs
 Architecture: any
@@ -34,6 +35,19 @@
  Mozilla javascript engine and the GObject introsepection framework.
  .
  This package contains the interactive console application.
+
+Package: gjs-tests
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${misc:Depends},
+         gir1.2-gtk-3.0
+Description: Mozilla-based javascript bindings for the GNOME platform
+ Makes it possible for applications to use all of GNOME's platform
+ libraries using the Javascript language. It's mainly based on the
+ Mozilla javascript engine and the GObject introsepection framework.
+ .
+ This package contains test programs, designed to be run as part of a
+ regression testsuite.
 
 Package: libgjs0e
 Architecture: any

Modified: desktop/unstable/gjs/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gjs/debian/rules?rev=42223&op=diff
==============================================================================
--- desktop/unstable/gjs/debian/rules	[utf-8] (original)
+++ desktop/unstable/gjs/debian/rules	[utf-8] Sun Aug 24 02:40:34 2014
@@ -7,12 +7,19 @@
 include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
 include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
 
+# configure flags
+DEB_CONFIGURE_EXTRA_FLAGS := --enable-installed-tests
+
 # Use recursive variables since this variable must not be expanded until 
 # files have been installed.
 LIBMOZJS = $(shell objdump -p debian/tmp/usr/lib/libgjs.so | awk '$$1=="NEEDED" && $$2~/^libmozjs/ { print $$2 }' | sed s/\\.so\\./-/ )
 DEB_DH_MAKESHLIBS_ARGS_libgjs0e = -Xusr/lib/gjs-1.0/ -V'libgjs0e (>= $(DEB_UPSTREAM_VERSION)), libgjs0-$(LIBMOZJS)' -- -c4
 
-DEB_MAKE_CHECK_TARGET := check || true
+DEB_MAKE_CHECK_TARGET := check
+
+ifeq ($(DEB_HOST_ARCH), powerpc)
+    DEB_MAKE_CHECK_TARGET := check || true
+endif
 
 install/libgjs0e::
 	echo gjs:Provides=libgjs0-$(LIBMOZJS) >> debian/$(cdbs_curpkg).substvars




More information about the pkg-gnome-commits mailing list