- Revision
- 16117
- Author
- vajda
- Date
- 2007-12-12 17:52:16 -0800 (Wed, 12 Dec 2007)
Log Message
- PyLucene now an egg in chandler build
- fixed bug 11643 (http://bugzilla.osafoundation.org/show_bug.cgi?id=11643)
(Using lucene search phrase and wildcards returns java.lang.nullpointerexception)
- fixed bug 11643 (http://bugzilla.osafoundation.org/show_bug.cgi?id=11643)
(Using lucene search phrase and wildcards returns java.lang.nullpointerexception)
Modified Paths
Diff
Modified: trunk/external/PyLucene/Makefile (16116 => 16117)
--- trunk/external/PyLucene/Makefile 2007-12-13 01:46:50 UTC (rev 16116) +++ trunk/external/PyLucene/Makefile 2007-12-13 01:52:16 UTC (rev 16117) @@ -1,10 +1,11 @@ VERSION=2.2.0-2-$(SVNVER) -SVNVER=367 +SVNVER=370 RELVER=$(VERSION)-$(BRANCH_REV_PREFIX)1 PYLUCENE=$(BUILD_ROOT)/PyLucene SRC="" BUILD=$(SNAP) +EGG=$(notdir $(shell cd $(BUILD_ROOT); find $(SNAP)/$(SITE) -name 'lucene-*-py$(PYTHON_VER)-*.egg')) TARBALL=PyLucene-$(SNAP)-$(RELVER).tar.gz MANIFEST=$(SNAP)/$(SITE)/lucene @@ -110,7 +111,10 @@ test $(TARBALL): - tar -C $(BUILD_ROOT) -cvzf $(TARBALL) $(MANIFEST) + echo "./$(EGG)" > $(BUILD_ROOT)/$(SNAP)/$(SITE)/lucene.pth + tar -C $(BUILD_ROOT) -cvzf $(PYLUCENE)/$(TARBALL) \ + $(SNAP)/$(SITE)/$(EGG) \ + $(SNAP)/$(SITE)/lucene.pth binaries: $(TARBALL)
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
