From: Silvio Rhatto Date: Tue, 2 Jul 2024 20:35:02 +0000 (-0300) Subject: Feat: make the project more general X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=53e1b44d87c32676da33074925f776a9fc4dd7ff;p=debian.git Feat: make the project more general --- diff --git a/docs/index.md b/docs/README.md similarity index 87% rename from docs/index.md rename to docs/README.md index 6e416b6..c4cc5f0 100644 --- a/docs/index.md +++ b/docs/README.md @@ -1,11 +1,12 @@ -# Debian packaging effort! +# Debian Maintenance Effort! In the past, we used to be [heavy slackware users](https://simplepkg.fluxo.info) when we just had a few boxes to manage. Then we had to change our whole packaging paradigm when we switched to Debian. These notes are mainly references to the detailed Debian/Ubuntu documentations -we're using in the course of learning the intricacies of Debian packaging. +we're using in the course of learning the intricacies of Debian maintenance, +including packaging. Grab this repository using diff --git a/docs/packaging/README.md b/docs/packaging/README.md new file mode 100644 index 0000000..174fb42 --- /dev/null +++ b/docs/packaging/README.md @@ -0,0 +1 @@ +# Debian Packaging Effort! diff --git a/docs/basics.md b/docs/packaging/basics.md similarity index 100% rename from docs/basics.md rename to docs/packaging/basics.md diff --git a/docs/building.md b/docs/packaging/building.md similarity index 100% rename from docs/building.md rename to docs/packaging/building.md diff --git a/docs/checking.md b/docs/packaging/checking.md similarity index 100% rename from docs/checking.md rename to docs/packaging/checking.md diff --git a/docs/cross.md b/docs/packaging/cross.md similarity index 100% rename from docs/cross.md rename to docs/packaging/cross.md diff --git a/docs/custom/leap.md b/docs/packaging/custom/leap.md similarity index 100% rename from docs/custom/leap.md rename to docs/packaging/custom/leap.md diff --git a/docs/custom/python.md b/docs/packaging/custom/python.md similarity index 100% rename from docs/custom/python.md rename to docs/packaging/custom/python.md diff --git a/docs/custom/ruby.md b/docs/packaging/custom/ruby.md similarity index 100% rename from docs/custom/ruby.md rename to docs/packaging/custom/ruby.md diff --git a/docs/env.md b/docs/packaging/env.md similarity index 100% rename from docs/env.md rename to docs/packaging/env.md diff --git a/docs/itp.md b/docs/packaging/itp.md similarity index 100% rename from docs/itp.md rename to docs/packaging/itp.md diff --git a/docs/references.md b/docs/packaging/references.md similarity index 100% rename from docs/references.md rename to docs/packaging/references.md diff --git a/docs/repositories.md b/docs/packaging/repositories.md similarity index 100% rename from docs/repositories.md rename to docs/packaging/repositories.md diff --git a/mkdocs.yml b/mkdocs.yml index 7397ce3..cb35c76 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,21 +1,39 @@ -site_name: A Debian packaging effort +# Site parameters +site_name: Debian Maintenance Effort +# Theme configuration +# See https://www.mkdocs.org/user-guide/choosing-your-theme/ +# https://squidfunk.github.io/mkdocs-material/ theme: + # Theme name name: material + # Logo logo: https://fluxo.info/images/fluxo.png + # Do not use external fonts + # Useful for offline operation, GDPR compliance and privacy in general + # See https://squidfunk.github.io/mkdocs-material/setup/changing-the-fonts/#autoloading + # + # This option was superseded by the privacy plugin: + # https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#built-in-privacy-plugin + #font: false + +# Navigation +# https://www.mkdocs.org/user-guide/writing-your-docs/#configure-pages-and-navigation nav: - - index.md - - basics.md - - env.md - - checking.md - - building.md - - repositories.md - - cross.md - - custom/python.md - - custom/ruby.md - - custom/leap.md - - itp.md + - README.md + - Packaging: + - packaging/README.md + - packaging/basics.md + - packaging/env.md + - packaging/checking.md + - packaging/building.md + - packaging/repositories.md + - packaging/cross.md + - packaging/custom/python.md + - packaging/custom/ruby.md + - packaging/custom/leap.md + - packaging/itp.md + - packaging/references.md - todo.md - - references.md