diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-11-12 17:23:21 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-11-12 17:23:21 +0000 |
commit | 362a2a8ba06ce8218279c5db30fc4954d02c5fcf (patch) | |
tree | 332e798f04c9b6f7e9cbdf042c54058596196c7a /dev-python/pygobject/files | |
parent | Unmask webkit-gtk[webkit2] on ppc since at-spi2-core has been keyworded. (diff) | |
download | historical-362a2a8ba06ce8218279c5db30fc4954d02c5fcf.tar.gz historical-362a2a8ba06ce8218279c5db30fc4954d02c5fcf.tar.bz2 historical-362a2a8ba06ce8218279c5db30fc4954d02c5fcf.zip |
Version bump with various bugfixes. Drop old.
Package-Manager: portage-2.2.0_alpha142/cvs/Linux x86_64
Manifest-Sign-Key: 0xCF0ADD61
Diffstat (limited to 'dev-python/pygobject/files')
-rw-r--r-- | dev-python/pygobject/files/pygobject-3.4.0-make_check.patch | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/dev-python/pygobject/files/pygobject-3.4.0-make_check.patch b/dev-python/pygobject/files/pygobject-3.4.0-make_check.patch deleted file mode 100644 index 08d8fa39d69a..000000000000 --- a/dev-python/pygobject/files/pygobject-3.4.0-make_check.patch +++ /dev/null @@ -1,75 +0,0 @@ -From 50dd12f2958945626defdf305332f270309cacc0 Mon Sep 17 00:00:00 2001 -From: Gilles Dartiguelongue <eva@gentoo.org> -Date: Fri, 5 Nov 2010 23:39:08 +0100 -Subject: [PATCH] Do not build tests unless needed - -[Alexandre Rostovtsev <tetromino@gmail.com>: port to 2.90.1] ---- - tests/Makefile.am | 10 +++++----- - tests/runtests.py | 3 +++ - 2 files changed, 8 insertions(+), 5 deletions(-) - -diff --git a/tests/Makefile.am b/tests/Makefile.am -index 081028a..ac71575 100644 ---- a/tests/Makefile.am -+++ b/tests/Makefile.am -@@ -1,5 +1,5 @@ - CLEANFILES = --noinst_LTLIBRARIES = libregress.la libgimarshallingtests.la -+check_LTLIBRARIES = libregress.la libgimarshallingtests.la - - nodist_libregress_la_SOURCES = $(GI_DATADIR)/tests/regress.c $(GI_DATADIR)/tests/regress.h - libregress_la_CFLAGS = $(GIO_CFLAGS) $(CAIRO_CFLAGS) -@@ -43,7 +43,7 @@ gschemas.compiled: org.gnome.test.gschema.xml - - CLEANFILES += Regress-1.0.gir Regress-1.0.typelib GIMarshallingTests-1.0.gir GIMarshallingTests-1.0.typelib gschemas.compiled - --noinst_LTLIBRARIES += testhelper.la -+check_LTLIBRARIES += testhelper.la - - testhelper_la_CFLAGS = -I$(top_srcdir)/gi/_gobject -I$(top_srcdir)/gi/_glib $(PYTHON_INCLUDES) $(GLIB_CFLAGS) - testhelper_la_LDFLAGS = -module -avoid-version -@@ -63,7 +63,7 @@ testhelper.la: $(testhelper_la_OBJECTS) $(testhelper_la_DEPENDENCIES) - test -L $@ || $(LN_S) .libs/$@ $@ - - --all: $(LTLIBRARIES:.la=.so) -+all: $(check_LTLIBRARIES:.la=.so) - - EXTRA_DIST = \ - compathelper.py \ -@@ -103,7 +103,7 @@ EXTRA_DIST = \ - $(NULL) - - clean-local: -- rm -f $(LTLIBRARIES:.la=.so) file.txt~ -+ rm -f $(check_LTLIBRARIES:.la=.so) file.txt~ - - DBUS_LAUNCH=$(shell which dbus-launch) - RUN_TESTS_ENV_VARS= \ -@@ -114,7 +114,7 @@ RUN_TESTS_ENV_VARS= \ - MALLOC_PERTURB_=85 \ - TESTS_BUILDDIR=$(builddir) - --check-local: $(LTLIBRARIES:.la=.so) Regress-1.0.typelib GIMarshallingTests-1.0.typelib gschemas.compiled -+check-local: $(check_LTLIBRARIES:.la=.so) Regress-1.0.typelib GIMarshallingTests-1.0.typelib gschemas.compiled - @echo " CHECK Pyflakes" - @if type pyflakes >/dev/null 2>&1; then pyflakes $(top_srcdir); else echo "skipped, pyflakes not installed"; fi - @echo " CHECK PEP8" -diff --git a/tests/runtests.py b/tests/runtests.py -index c518fcc..35bb5c4 100755 ---- a/tests/runtests.py -+++ b/tests/runtests.py -@@ -34,6 +34,9 @@ if sys.version_info[:2] == (2, 6): - unittest.TestCase.assertGreater = assertGreater - unittest.TestCase.assertIsInstance = assertIsInstance - -+# Some tests fail with translated messages. -+os.environ["LC_ALL"] = "C" -+ - if '--help' in sys.argv: - print("Usage: ./runtests.py <testfiles>") - sys.exit(0) --- -1.7.12 - |