Giter Site home page Giter Site logo

cl-opensearch-query-builder's Introduction

cl-opensearch-query-builder

Common Lisp implementation of a builder for the OpenSearch query DSL

Installation

cl-opensearch-query-builder can be installed via Quicklisp from the Ultralisp distribution:

(ql-dist:install-dist "<http://dist.ultralisp.org/>" :prompt nil)
(ql:quickload :cl-opensearch-query-builder)

Documentation

View the documentation in the docs/ directory in this repository.

cl-opensearch-query-builder's People

Contributors

christopherbilg avatar

Stargazers

 avatar

Watchers

James Cloos avatar

cl-opensearch-query-builder's Issues

ASDF system definitions are broken because they use symbols instead of values.

ASDF:DEFSYSTEM uses non-evaluated symbols as is. This makes you asd file broken and also it broke your project built at Ultralisp.

Here is the small example just to illustrate the problem and to suggest a workaround:

CL-USER> (defparameter *license* "BSD")
*LICENSE*

;; Broken system
CL-USER> (asdf:defsystem "test1"
           :license *license*)
#<ASDF/SYSTEM:SYSTEM "test1">
CL-USER> (asdf:system-license (asdf:find-system :test1))
*LICENSE*

;; Fixed system
CL-USER> (asdf:defsystem "test2"
           :license #.*license*)
#<ASDF/SYSTEM:SYSTEM "test2">
CL-USER> (asdf:system-license (asdf:find-system :test2))
"BSD"

Some systems failed to build for Quicklisp dist

Building with SBCL 2.3.3.83-562a1a329 / ASDF 3.3.5 for quicklisp dist creation.

Trying to build commit id dd90c37

cl-opensearch-query-builder-test fails to build with the following error:

Unhandled NAME-CONFLICT in thread #<SB-THREAD:THREAD tid=1308784 "main thread" RUNNING {1001738003}>: USE-PACKAGE #<PACKAGE "IT.BESE.FIVEAM"> causes name-conflicts in #<PACKAGE "CL-OPENSEARCH-QUERY-BUILDER-TESTS"> between the following symbols: IT.BESE.FIVEAM:EXPLAIN, ASDF/PARSE-DEFSYSTEM:EXPLAIN

Full log here

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.