[pygobject] Remove distutils based build system.



commit 8d3125c8ce9890c70400dd8a3ac273b590fe6a31
Author: Dieter Verfaillie <dieterv optionexplicit be>
Date:   Tue Sep 6 22:22:11 2011 +0200

    Remove distutils based build system.
    
    The only reason this might be brought back to life again is when
    the whole stack can be built with Visual Studio (including
    gobject-introspection) again. Building with MinGW/MSYS can now
    be done with the usual autogen.sh/configure/make/make install dance.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657054

 MANIFEST.in              |    7 -
 Makefile.am              |   25 +--
 README.win32             |   21 --
 dsextras.py              |  509 ----------------------------------------------
 pygobject_postinstall.py |    9 -
 setup.py                 |  351 --------------------------------
 6 files changed, 7 insertions(+), 915 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 3b8b6fe..7ad7503 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,18 +6,13 @@ SUBDIRS = docs examples gi tests
 PLATFORM_VERSION = 3.0
 
 CLEANFILES =
-EXTRA_DIST = 				\
-	MANIFEST.in 			\
-	README.win32 			\
+EXTRA_DIST = \
+	ChangeLog.pre-2.18 \
 	pygobject-$(PLATFORM_VERSION).pc.in \
-	PKG-INFO 			\
-	PKG-INFO.in 			\
-	setup.py			\
-	pygobject_postinstall.py	\
-	dsextras.py			\
-	ChangeLog.pre-2.18		\
-	m4/as-ac-expand.m4		\
-	m4/jhflags.m4			\
+	PKG-INFO \
+	PKG-INFO.in \
+	m4/as-ac-expand.m4 \
+	m4/jhflags.m4 \
 	m4/python.m4
 
 MAINTAINERCLEANFILES = \
@@ -56,11 +51,6 @@ INCLUDES = -I$(top_srcdir)/gobject $(PYTHON_INCLUDES) $(GLIB_CFLAGS)
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = pygobject-$(PLATFORM_VERSION).pc
 
-# python modules
-pkgpyexecdir = $(pyexecdir)/gtk-2.0
-pkgpyexec_PYTHON = dsextras.py
-pkgpyexec_LTLIBRARIES =
-
 # python
 pyexec_LTLIBRARIES =
 
@@ -86,11 +76,10 @@ egg: $(top_srcdir)/gobject/gobject.la PKG-INFO
 	$(MKDIR_P) $(EGG_TMPDIR)
 	$(MKDIR_P) $(EGG_TMPDIR)/EGG-INFO
 	$(MAKE) -C gobject install-pkgpyexecLTLIBRARIES pkgpyexecdir=$(EGG_TMPDIR)
-	$(INSTALL) dsextras.py $(EGG_TMPDIR)
 	rm -fr $(EGG_TMPDIR)/gobject.la
 	$(INSTALL) PKG-INFO $(EGG_TMPDIR)/EGG-INFO
 	echo "gobject.so" >> $(EGG_TMPDIR)/EGG-INFO/native_libs.txt
-	( echo "gobject" ; echo "dsextras.py" ) >> $(EGG_TMPDIR)/EGG-INFO/top_level.txt
+	( echo "gobject" ) >> $(EGG_TMPDIR)/EGG-INFO/top_level.txt
 	cd $(EGG_TMPDIR) && zip -rq $(EGG_NAME) .
 	mv $(EGG_TMPDIR)/$(EGG_NAME) .
 	rm -fr $(EGG_TMPDIR)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]