summaryrefslogtreecommitdiff
path: root/profiles/targets/hacking
diff options
context:
space:
mode:
authorAnna (navi) Figueiredo Gomes <navi@vlhl.dev>2024-10-02 17:06:19 +0200
committerAnna (navi) Figueiredo Gomes <navi@vlhl.dev>2024-10-03 01:38:48 +0200
commite67efff4ff853084012caee0823e082eb9abb1e5 (patch)
tree37e7fa10cdaca36c5d85974fea51d5598f5f8476 /profiles/targets/hacking
parent5c418ade7bb2b232f334ab782e5a4e3b77cc1226 (diff)
profiles: Add intial layout of host.d profiles.
Signed-off-by: Anna (navi) Figueiredo Gomes <navi@vlhl.dev>
Diffstat (limited to 'profiles/targets/hacking')
-rw-r--r--profiles/targets/hacking/eapi1
-rw-r--r--profiles/targets/hacking/package.accept_keywords1
-rw-r--r--profiles/targets/hacking/packages22
-rw-r--r--profiles/targets/hacking/parent1
-rw-r--r--profiles/targets/hacking/profile.bashrc18
5 files changed, 43 insertions, 0 deletions
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"
+}