From c0b363d57bb73f44f4b7c945b04d06bc7775e86d Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Mon, 9 Jan 2006 20:02:19 +0000 Subject: Make dist/distcheck work again --- ChangeLog | 8 ++++++++ MANIFEST.in | 7 +++++++ Makefile.am | 8 +++++--- tests/Makefile.am | 8 +++++++- 4 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 MANIFEST.in diff --git a/ChangeLog b/ChangeLog index 2dac945..19eff4e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-01-09 Johan Dahlin + + * MANIFEST.in: + * Makefile.am: + * tests/Makefile.am: + + Make dist/distcheck work again + 2006-01-09 Johan Dahlin * setup.py: Add distutils support diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..002138a --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,7 @@ +include ChangeLog AUTHORS COPYING NEWS README +include MANIFEST.in +include gobject/pygobject.h gobject/pygobject-private.h +include pygtk.py pygobject-2.0.pc.in +include dsextras.py +recursive-include examples *.py +global-exclude */CVS/* .cvsignore diff --git a/Makefile.am b/Makefile.am index e76146e..c3d864f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,18 +7,20 @@ PLATFORM_VERSION = 2.0 CLEANFILES = EXTRA_DIST = \ MANIFEST.in \ - MAPPING \ pygobject-$(PLATFORM_VERSION).pc.in \ PKG-INFO \ PKG-INFO.in \ - setup.py \ - THREADS + setup.py INCLUDES = $(PYTHON_INCLUDES) $(GLIB_CFLAGS) -I$(top_srcdir)/gobject # pkg-config files pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = pygobject-$(PLATFORM_VERSION).pc +# extension modules +pkgpyexecdir = $(pyexecdir)/gtk-2.0 +pkgpyexec_LTLIBRARIES = + # python pyexec_PYTHON = pygtk.py pyexec_LTLIBRARIES = diff --git a/tests/Makefile.am b/tests/Makefile.am index c13ca72..a8c10db 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -3,7 +3,13 @@ INCLUDES = \ $(GLIB_CFLAGS) \ -I$(top_srcdir)/gobject -EXTRA_DIST = $(tests) common.py runtests.py test-thread.h test-unknown.h +EXTRA_DIST = \ + $(tests) \ + common.py \ + runtests.py \ + testmodule.py \ + test-thread.h \ + test-unknown.h noinst_LTLIBRARIES = testhelper.la linked_LIBS = testhelper.la -- cgit