Skip to content

Commit

Permalink
docs: the return of core dependencies redux
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Apr 3, 2024
1 parent 4867054 commit f7f29ad
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ taps:
name: Homebrew/core
fullname: Homebrew/homebrew-core
remote: https://github.com/Homebrew/homebrew-core
api: https://formulae.coatl.dev/api
api: https://formulae.brew.sh/api
bottle_dir: bottle-core
formula_dir: formula-core

Expand Down
11 changes: 11 additions & 0 deletions api/formula-core.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
---
[
{%- assign sorted_formulae = site.data.formula-core | sort -%}
{% for formula in sorted_formulae %}
{{ formula[1] | jsonify }}
{%- unless forloop.last -%}
,
{%- endunless -%}
{% endfor %}
]
17 changes: 17 additions & 0 deletions formula_core_index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: homebrew-core
layout: default
permalink: /formula-core/
---
<p>This is a listing of all packages available from the <a href="{{ site.taps.core.remote }}">{{ site.taps.core.repo }} tap</a> via the <a href="https://brew.sh">Homebrew</a> package manager for macOS.</p>

<table>
{%- assign sorted_formulae = site.data.formula-core | sort -%}
{%- for f in sorted_formulae -%}
<tr>
{%- assign formula = f[1] -%}
{%- assign formula_path = "formula-core" -%}
{%- include formula.html formula_path=formula_path formula=formula -%}
</tr>
{%- endfor -%}
</table>
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
---
<p><a href="{{ site.baseurl }}/">{{site.title}}</a> is an online package browser for <a href="{{site.taps.coatl-dev.remote}}" target="_blank">{{site.taps.coatl-dev.repo}}</a>'s Homebrew tap. For more information on how to install and use Homebrew see <a href="https://brew.sh">Homebrew's homepage</a>.</p>

<h2><a href="{{ site.baseurl }}/formula/">Browse all formulae</a></h2>
<h2><a href="{{ site.baseurl }}/formula/">Browse all coatl-dev formulae</a></h2>
<h2><a href="{{ site.baseurl }}/formula-core/">Browse all referenced core formulae</a></h2>

0 comments on commit f7f29ad

Please sign in to comment.