Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13397 - in main/branches/prefix: . pym
Date: Sat, 25 Apr 2009 11:06:20
Message-Id: E1Lxfi6-00040b-8i@stork.gentoo.org
1 Author: grobian
2 Date: 2009-04-25 11:06:17 +0000 (Sat, 25 Apr 2009)
3 New Revision: 13397
4
5 Modified:
6 main/branches/prefix/configure.in
7 main/branches/prefix/pym/Makefile.in
8 Log:
9 Remove --enable-just-compiled-sources, its implementation was commented
10 out anyway.
11
12
13
14 Modified: main/branches/prefix/configure.in
15 ===================================================================
16 --- main/branches/prefix/configure.in 2009-04-25 09:07:18 UTC (rev 13396)
17 +++ main/branches/prefix/configure.in 2009-04-25 11:06:17 UTC (rev 13397)
18 @@ -148,15 +148,6 @@
19 ]
20 )
21
22 -AC_ARG_ENABLE(just-compiled-sources,
23 -AC_HELP_STRING([--enable-just-compiled-sources],[install just the bytecode, not the sources (default no)]),
24 -[case "${enableval}" in
25 - yes) enable_py_sources=false;;
26 - no) enable_py_sources=true;;
27 - *) AC_MSG_ERROR(bad value ${enableval} for --enable-just-compiled-sources);;
28 -esac],
29 -[enable_py_sources=true])
30 -
31 AC_ARG_WITH(portage-user,
32 AC_HELP_STRING([--with-portage-user=myuser],[use user 'myuser' as portage owner (default portage)]),
33 [case "${withval}" in
34 @@ -248,8 +239,6 @@
35 AC_SUBST(PORTAGE_XARGS)
36 AC_SUBST(PORTAGE_GREP)
37
38 -AM_CONDITIONAL(INSTALL_PYTHON_SOURCES, test x$enable_py_sources = xtrue)
39 -
40 AC_MSG_CHECKING([for a list of variables known by configure])
41 pt_configvars=`sed -n -e "/^ac_subst_vars='/,/'$/p" ${srcdir}/configure | sed -e "s/^ac_subst_vars='//" -e "s/'$//"`
42 {
43
44 Modified: main/branches/prefix/pym/Makefile.in
45 ===================================================================
46 --- main/branches/prefix/pym/Makefile.in 2009-04-25 09:07:18 UTC (rev 13396)
47 +++ main/branches/prefix/pym/Makefile.in 2009-04-25 11:06:17 UTC (rev 13397)
48 @@ -41,11 +41,6 @@
49 ; do echo $(INSTALL_PYsubst) ${srcdir}/$${f} $(DESTDIR)$(PORTAGE_PYM)/$${f} \
50 ; $(INSTALL_PYsubst) ${srcdir}/$${f} $(DESTDIR)$(PORTAGE_PYM)/$${f} \
51 ; done
52 -# $(PYTHON) -c 'import compileall; compileall.compile_dir("$(DESTDIR)$(PORTAGE_PYM)")'
53 -# $(PYTHON) -O -c 'import compileall; compileall.compile_dir("$(DESTDIR)$(PORTAGE_PYM)")'
54 -#@INSTALL_PYTHON_SOURCES_FALSE@ $(list_sourcedir) | while read f \
55 -#@INSTALL_PYTHON_SOURCES_FALSE@ ; do rm -f $(DESTDIR)$(PORTAGE_PYM)/$${f} \
56 -#@INSTALL_PYTHON_SOURCES_FALSE@ ; done
57
58 distdir:
59 $(list_sourcedir_dirs) | while read f \