* fix(postgresql.org): install contrib extensions
in the homebrew formula, postgres does `make install-world`, not just
`make install`, which installs extensions under the `contrib/` source dir.
in my case, i need the pg_trgm (trigram index) extension
* fix(postgresql.org): disable sgml doc generation
as popular as i'm sure they are, seems better if the package builds
* fix(postgresql.org): disable incompatible pointer type warnings
causes the contrib extensions to fail with this version of clang on
linux
* fix(ruby-lang.org)
it appears there are a few hardcoded paths from ci that made it into the
packaged rbconfig.rb. this breaks installation of gems that require
native compilation. so, lets patch that up
* fix(ruby-lang.org): actually, don't use brewkit stubs for install & cc
* fix(ruby): make this a little more explicit
* +overmind
adds the overmind package
* fix(overmind): adjust ldflags to fix linux build
* fix(overmind): oops - it should work on arm linux too
* cleanup
---------
Co-authored-by: Jacob Heider <jacob@pkgx.dev>
* update
* does not compile on darwin
* try to compile on darwin
* clean up and lock version majors
---------
Co-authored-by: Jacob Heider <jacob@pkgx.dev>
* fix(opensearch): don't include the jna library on mac for x86-64
there seems to be some linker issue with loading libc. calling these
native functions doesn't seem strictly necessary. maybe better that
the package works at all.
in macos 13 and later, it works fine, so maybe this workaround could
be removed when macos 12 is no longer supported
* fix(opensearch): remove some windows-only code that is breaking
* fix(opensearch): err, that was in the wrong spot
* +opensearch
includes knn plugin
* opensearch: fix the rpath on the jnilibs
* opensearch: add debug lines to the gradle invocation
trying to see what's wrong with jsonslurper
* opensearch: remove the debug log
it's too noisy to see what's going on
* opensearch: does it help if we always use clang on mac?
* opensearch: reshuffle some workarounds on mac
* opensearch: cleanup deps
* clean up cd > working-directory
* yaml quoting
* more quoting
* fix my fixes
---------
Co-authored-by: Jacob Heider <jacob@pkgx.dev>