From e67efff4ff853084012caee0823e082eb9abb1e5 Mon Sep 17 00:00:00 2001 From: "Anna (navi) Figueiredo Gomes" Date: Wed, 2 Oct 2024 17:06:19 +0200 Subject: profiles: Add intial layout of host.d profiles. Signed-off-by: Anna (navi) Figueiredo Gomes --- profiles/targets/hacking/eapi | 1 + profiles/targets/hacking/package.accept_keywords | 1 + profiles/targets/hacking/packages | 22 ++++++++++++++++++++++ profiles/targets/hacking/parent | 1 + profiles/targets/hacking/profile.bashrc | 18 ++++++++++++++++++ 5 files changed, 43 insertions(+) create mode 100644 profiles/targets/hacking/eapi create mode 100644 profiles/targets/hacking/package.accept_keywords create mode 100644 profiles/targets/hacking/packages create mode 100644 profiles/targets/hacking/parent create mode 100644 profiles/targets/hacking/profile.bashrc (limited to 'profiles/targets/hacking') diff --git a/profiles/targets/hacking/eapi b/profiles/targets/hacking/eapi new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/profiles/targets/hacking/eapi @@ -0,0 +1 @@ +8 diff --git a/profiles/targets/hacking/package.accept_keywords b/profiles/targets/hacking/package.accept_keywords new file mode 100644 index 0000000..3060d05 --- /dev/null +++ b/profiles/targets/hacking/package.accept_keywords @@ -0,0 +1 @@ +dev-build/muon ~amd64 diff --git a/profiles/targets/hacking/packages b/profiles/targets/hacking/packages new file mode 100644 index 0000000..92ec9ac --- /dev/null +++ b/profiles/targets/hacking/packages @@ -0,0 +1,22 @@ +app-nvim/cmp +app-nvim/cmp-lsp +app-nvim/cmp-luasnip +app-nvim/lspconfig +app-nvim/navic +app-nvim/treesitter +dev-build/muon +dev-debug/gdb +dev-debug/ltrace +dev-debug/strace +dev-debug/valgrind +dev-util/FlameGraph +dev-util/bash-language-server +dev-util/lua-language-server +dev-util/bear +dev-util/ccls +dev-util/cdecl +dev-util/cloc +dev-util/perf +dev-util/pkgcheck +dev-util/pkgdev +dev-util/reuse diff --git a/profiles/targets/hacking/parent b/profiles/targets/hacking/parent new file mode 100644 index 0000000..063435e --- /dev/null +++ b/profiles/targets/hacking/parent @@ -0,0 +1 @@ +enomicon:targets/cmdline diff --git a/profiles/targets/hacking/profile.bashrc b/profiles/targets/hacking/profile.bashrc new file mode 100644 index 0000000..ed0c56e --- /dev/null +++ b/profiles/targets/hacking/profile.bashrc @@ -0,0 +1,18 @@ +git_commit_state() { + test -z "$GITIFY" && return + pushd "${S}" || return + test -d .git || git init + git config user.name "Anna (navi) Figueiredo Gomes" + git config user.email "navi@vlhl.dev" + git add . + git commit -a -s -m "$@" + popd || return +} + +post_src_unpack() { + git_commit_state "unpacked" +} + +post_src_prepare() { + git_commit_state "prepared" +} -- cgit v1.2.3