* [Cluster-devel] conga/luci Makefile
@ 2006-07-05 17:55 rmccabe
0 siblings, 0 replies; 6+ messages in thread
From: rmccabe @ 2006-07-05 17:55 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2006-07-05 17:55:32
Modified files:
luci : Makefile
Log message:
fix makefile cmdline flag order
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/Makefile.diff?cvsroot=cluster&r1=1.9&r2=1.10
--- conga/luci/Makefile 2006/07/05 17:41:22 1.9
+++ conga/luci/Makefile 2006/07/05 17:55:32 1.10
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.9 2006/07/05 17:41:22 rmccabe Exp $
+# $Id: Makefile,v 1.10 2006/07/05 17:55:32 rmccabe Exp $
ZOPEINSTANCE=/var/lib/luci
@@ -46,19 +46,19 @@
make -C storage import
export_storage:
- make -C -e storage export
+ make -e -C storage export
import_cluster:
- make -C -e cluster import
+ make -e -C cluster import
export_cluster:
- make -C -e cluster export
+ make -e -C cluster export
import_homebase:
- make -C -e homebase import
+ make -e -C homebase import
export_homebase:
- make -C -e homebase export
+ make -e -C homebase export
import_pts: import_storage import_cluster import_homebase
export_pts: export_storage export_cluster export_homebase
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] conga/luci Makefile
@ 2006-08-04 18:04 kupcevic
0 siblings, 0 replies; 6+ messages in thread
From: kupcevic @ 2006-08-04 18:04 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Changes by: kupcevic at sourceware.org 2006-08-04 18:04:05
Modified files:
luci : Makefile
Log message:
command ordering error in zope installation
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/Makefile.diff?cvsroot=cluster&r1=1.14&r2=1.15
--- conga/luci/Makefile 2006/08/04 17:55:24 1.14
+++ conga/luci/Makefile 2006/08/04 18:04:05 1.15
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.14 2006/08/04 17:55:24 kupcevic Exp $
+# $Id: Makefile,v 1.15 2006/08/04 18:04:05 kupcevic Exp $
ZOPEINSTANCE=/var/lib/luci
include ../make/version.in
@@ -21,11 +21,11 @@
install:
if [ "${include_zope_and_plone}" = "yes" ] ; then \
install -d ${libdir}/luci ; \
- install -d -m 700 ${libdir}/luci/zope ; \
cd zope ; \
./configure --prefix=${libdir}/luci/zope --with-python=/usr/bin/python ; \
make ; \
make install ; \
+ chmod 700 ${libdir}/luci/zope ; \
fi
if [ "${include_zope_and_plone}" = "yes" ] ; then \
install -d ${libdir}/luci/zope/lib/python/Products ; \
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] conga/luci Makefile
@ 2006-08-08 17:56 rmccabe
0 siblings, 0 replies; 6+ messages in thread
From: rmccabe @ 2006-08-08 17:56 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2006-08-08 17:56:41
Modified files:
luci : Makefile
Log message:
remove unneeded on-disk (as opposed to in-DB) zope and plone products:
zope:
- ZGadflyDA
- ZopeTutorial
- ZReST
plone:
- ATContentTypes
- ATReferenceBrowserWidget
- ExtendedPathIndex
- ExternalEditor
- kupu
- Marshall
- PasswordResetTool
- PloneLanguageTool
- PloneTestCase
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/Makefile.diff?cvsroot=cluster&r1=1.16&r2=1.17
--- conga/luci/Makefile 2006/08/04 22:14:32 1.16
+++ conga/luci/Makefile 2006/08/08 17:56:41 1.17
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.16 2006/08/04 22:14:32 kupcevic Exp $
+# $Id: Makefile,v 1.17 2006/08/08 17:56:41 rmccabe Exp $
ZOPEINSTANCE=/var/lib/luci
include ../make/version.in
@@ -9,8 +9,8 @@
# list zope/plone files and/or directories to be removed
# (paths relative to zope/plone installation directory)
-ZOPE_REMOVES="bin include skel zopeskel"
-PLONE_REMOVES="Five README.txt"
+ZOPE_REMOVES="bin include skel zopeskel ZGadflyDA ZopeTutorial ZReST"
+PLONE_REMOVES="Five README.txt ATContentTypes ATReferenceBrowserWidget ExtendedPathIndex ExternalEditor kupu Marshall PasswordResetTool PloneLanguageTool PloneTestCase"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] conga/luci Makefile
@ 2006-08-09 0:42 rmccabe
0 siblings, 0 replies; 6+ messages in thread
From: rmccabe @ 2006-08-09 0:42 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2006-08-09 00:42:46
Modified files:
luci : Makefile
Log message:
fix paths to zope products
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/Makefile.diff?cvsroot=cluster&r1=1.17&r2=1.18
--- conga/luci/Makefile 2006/08/08 17:56:41 1.17
+++ conga/luci/Makefile 2006/08/09 00:42:46 1.18
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.17 2006/08/08 17:56:41 rmccabe Exp $
+# $Id: Makefile,v 1.18 2006/08/09 00:42:46 rmccabe Exp $
ZOPEINSTANCE=/var/lib/luci
include ../make/version.in
@@ -9,7 +9,7 @@
# list zope/plone files and/or directories to be removed
# (paths relative to zope/plone installation directory)
-ZOPE_REMOVES="bin include skel zopeskel ZGadflyDA ZopeTutorial ZReST"
+ZOPE_REMOVES="bin include skel zopeskel lib64/python/Products/ZGadflyDA lib64/python/Products/ZopeTutorial lib64/python/Products/ZReST lib/python/Products/ZGadflyDA lib/python/Products/ZopeTutorial lib/python/Products/ZReST"
PLONE_REMOVES="Five README.txt ATContentTypes ATReferenceBrowserWidget ExtendedPathIndex ExternalEditor kupu Marshall PasswordResetTool PloneLanguageTool PloneTestCase"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] conga/luci Makefile
@ 2006-08-09 15:28 rmccabe
0 siblings, 0 replies; 6+ messages in thread
From: rmccabe @ 2006-08-09 15:28 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2006-08-09 15:28:10
Modified files:
luci : Makefile
Log message:
Kill off ZEO, nt_svcutils, and reStructuredText components from our /usr/lib(64)?/luci/zope/python/lib(64)?/ directory for rhel
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/Makefile.diff?cvsroot=cluster&r1=1.18&r2=1.19
--- conga/luci/Makefile 2006/08/09 00:42:46 1.18
+++ conga/luci/Makefile 2006/08/09 15:28:10 1.19
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.18 2006/08/09 00:42:46 rmccabe Exp $
+# $Id: Makefile,v 1.19 2006/08/09 15:28:10 rmccabe Exp $
ZOPEINSTANCE=/var/lib/luci
include ../make/version.in
@@ -9,7 +9,8 @@
# list zope/plone files and/or directories to be removed
# (paths relative to zope/plone installation directory)
-ZOPE_REMOVES="bin include skel zopeskel lib64/python/Products/ZGadflyDA lib64/python/Products/ZopeTutorial lib64/python/Products/ZReST lib/python/Products/ZGadflyDA lib/python/Products/ZopeTutorial lib/python/Products/ZReST"
+ZOPE_REMOVES="bin include skel zopeskel lib64/products/ZEO lib64/products/nt_svcutils lib64/products/reStructuredText lib/products/ZEO lib/products/nt_svcutils lib/products/reStructuredText lib64/python/Products/ZGadflyDA lib64/python/Products/ZopeTutorial lib64/python/Products/ZReST lib/python/Products/ZGadflyDA lib/python/Products/ZopeTutorial lib/python/Products/ZReST"
+
PLONE_REMOVES="Five README.txt ATContentTypes ATReferenceBrowserWidget ExtendedPathIndex ExternalEditor kupu Marshall PasswordResetTool PloneLanguageTool PloneTestCase"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Cluster-devel] conga/luci Makefile
@ 2006-08-09 15:52 rmccabe
0 siblings, 0 replies; 6+ messages in thread
From: rmccabe @ 2006-08-09 15:52 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2006-08-09 15:52:14
Modified files:
luci : Makefile
Log message:
typo... products -> python
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/Makefile.diff?cvsroot=cluster&r1=1.19&r2=1.20
--- conga/luci/Makefile 2006/08/09 15:28:10 1.19
+++ conga/luci/Makefile 2006/08/09 15:52:14 1.20
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.19 2006/08/09 15:28:10 rmccabe Exp $
+# $Id: Makefile,v 1.20 2006/08/09 15:52:14 rmccabe Exp $
ZOPEINSTANCE=/var/lib/luci
include ../make/version.in
@@ -9,7 +9,7 @@
# list zope/plone files and/or directories to be removed
# (paths relative to zope/plone installation directory)
-ZOPE_REMOVES="bin include skel zopeskel lib64/products/ZEO lib64/products/nt_svcutils lib64/products/reStructuredText lib/products/ZEO lib/products/nt_svcutils lib/products/reStructuredText lib64/python/Products/ZGadflyDA lib64/python/Products/ZopeTutorial lib64/python/Products/ZReST lib/python/Products/ZGadflyDA lib/python/Products/ZopeTutorial lib/python/Products/ZReST"
+ZOPE_REMOVES="bin include skel zopeskel lib64/python/ZEO lib64/python/nt_svcutils lib64/python/reStructuredText lib/python/ZEO lib/python/nt_svcutils lib/python/reStructuredText lib64/python/Products/ZGadflyDA lib64/python/Products/ZopeTutorial lib64/python/Products/ZReST lib/python/Products/ZGadflyDA lib/python/Products/ZopeTutorial lib/python/Products/ZReST"
PLONE_REMOVES="Five README.txt ATContentTypes ATReferenceBrowserWidget ExtendedPathIndex ExternalEditor kupu Marshall PasswordResetTool PloneLanguageTool PloneTestCase"
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-08-09 15:52 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-05 17:55 [Cluster-devel] conga/luci Makefile rmccabe
-- strict thread matches above, loose matches on Subject: below --
2006-08-04 18:04 kupcevic
2006-08-08 17:56 rmccabe
2006-08-09 0:42 rmccabe
2006-08-09 15:28 rmccabe
2006-08-09 15:52 rmccabe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).