From 2fd9794e997632cdbf124e96a8006ade0532ab51 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 3 Sep 2020 11:23:04 +0300 Subject: update --- build | 2 +- docs/blog/20200803.html | 92 ++++++++++++++++++++++++------------------------- docs/blog/20200803.txt | 31 ++++++++--------- docs/index.html | 12 +++---- docs/index.txt | 16 ++++----- docs/news.html | 8 ++++- docs/news.txt | 7 ++++ docs/news.xml | 13 ++++++- docs/rss.xml | 33 +++++++++--------- index/20200903.news | 6 ++++ src/blog/20200803.md | 77 +++++++++++++++++++++++++++++++++++++++++ src/blog/20200803.txt | 78 ----------------------------------------- src/index.md | 16 ++++----- src/news.md | 7 ++++ src/news.xml | 13 ++++++- src/rss.xml | 33 +++++++++--------- 16 files changed, 243 insertions(+), 201 deletions(-) create mode 100644 index/20200903.news create mode 100644 src/blog/20200803.md delete mode 100644 src/blog/20200803.txt diff --git a/build b/build index 85c74b6..1d4484e 100755 --- a/build +++ b/build @@ -52,7 +52,7 @@ genpages() ( tohtml() { srcfile=${1#.} srcfile=${srcfile%.*}.txt case "${1##*.}" in - md) markdown "$1" ;; + md) markdown -f footnote -f fencedcode "$1" ;; txt) txt2html "$1" ;; esac | diff --git a/docs/blog/20200803.html b/docs/blog/20200803.html index addffd6..9ad1eda 100644 --- a/docs/blog/20200803.html +++ b/docs/blog/20200803.html @@ -18,86 +18,84 @@ installation
-
-August 2020 News Post
-================================================================================
+

August 2020 News Post

-We are having some stalls during this summer, as I am currently working on +

We are having some stalls during this summer, as I am currently working on university-related stuff. Nonetheless, there are some important changes that I -want to share in this month's post. +want to share in this month’s post.

+

INDEX

-INDEX --------------------------------------------------------------------------------- + -- Carbs Packaging Tools [1.0] -- Docs [2.0] -- Re-opening the Carbs Linux server [3.0] +

Carbs Packaging Tools

-[1.0] Carbs Packaging Tools --------------------------------------------------------------------------------- +

This month I have reworked kiss into a new package manager, now renamed as +cpt. Updating kiss will now bootstrap the new package manager, so you don’t +have to manually edit your system. If you don’t like the idea of this, you can +look up the post-install script on core/kiss and apply the changes manually.

-This month I have reworked `kiss` into a new package manager, now renamed as -`cpt`. Updating `kiss` will now bootstrap the new package manager, so you don't -have to manually edit your system. If you don't like the idea of this, you can -look up the `post-install` script on `core/kiss` and apply the changes manually. +

You will also need to rename your KISS* variables to CPT*. So, KISS_PATH +becomes CPT_PATH.

-You will also need to rename your KISS_* variables to CPT_*. So, KISS_PATH -becomes CPT_PATH. - -The rework changes the previous commands on the package manager into standalone +

The rework changes the previous commands on the package manager into standalone tools, and move the package manager functions to a library. This makes it easier for a user to import functions and variables from the package manager, and extend the package manager with their own intended way. Previously this required ugly hacks and workarounds to use the package manager functions. I will be making use of these changes to re-implement binary package management functions -as well. - -If you want to use the library on your script you can simply do this: +as well.

- +--------------------------------------------------------------------------+ - | | - | #!/bin/sh | - | . cpt-lib | - | (...) | - | | - +--------------------------------------------------------------------------+ +

If you want to use the library on your script you can simply do this:

-There are obviously some clean-up and simplifications needed in this new -tool-based package management method. +
+--------------------------------------------------------------------------+
+|                                                                          |
+| #!/bin/sh                                                                |
+| . cpt-lib                                                                |
+| (...)                                                                    |
+|                                                                          |
++--------------------------------------------------------------------------+
+
+

There are obviously some clean-up and simplifications needed in this new +tool-based package management method.

-[2.0] Docs --------------------------------------------------------------------------------- +

Docs

-I have added documentation for the distribution, and finally updated the guide -for installation. It is now _almost_ complete. These docs can be installed to +

I have added documentation for the distribution, and finally updated the guide +for installation. It is now almost complete. These docs can be installed to your system for online viewing. I will also add a documentation crawler similar -to how werc[1] works (but as an offline viewer). You can find `carbs-docs` from +to how werc1 works (but as an offline viewer). You can find carbs-docs from the repository. Currently, the documentation lacks but I will be adding new stuff. These will solely be distribution specific documentation and will not be a wiki-like source. If anyone would like to contribute to a wiki-like documentation source, I would happily re-open the distribution wiki. You can -find the source on https://github.com/CarbsLinux/docs +find the source on https://github.com/CarbsLinux/docs

+

Re-opening the Carbs Linux server

-[3.0] Re-opening the Carbs Linux server --------------------------------------------------------------------------------- - -Back in May, I had shutdown the Carbs Linux server due to financial issues, but +

Back in May, I had shutdown the Carbs Linux server due to financial issues, but I am slowly reverting to the self-hosted model. Back then, the git repositories were mirrored to GitHub, and the management was overall much more flexible. The server used to run Carbs Linux as well (that was fun and horrifying at the same time). Now, I will be relaunching the git server which will be the upstream source before August 5. You can switch your remote, but GitHub will stay as a -remote nonetheless. - -EDIT: The git-server is up! +remote nonetheless.

+

EDIT: The git-server is up!

+
+
+
    +
  1. +http://werc.cat-v.org
  2. +
+
-[1]: http://werc.cat-v.org -
View Page Source
diff --git a/docs/blog/20200803.txt b/docs/blog/20200803.txt index 184baaa..eaee932 100644 --- a/docs/blog/20200803.txt +++ b/docs/blog/20200803.txt @@ -5,16 +5,15 @@ We are having some stalls during this summer, as I am currently working on university-related stuff. Nonetheless, there are some important changes that I want to share in this month's post. - INDEX -------------------------------------------------------------------------------- -- Carbs Packaging Tools [1.0] -- Docs [2.0] -- Re-opening the Carbs Linux server [3.0] +- [Carbs Packaging Tools](#carbs-packaging-tools) +- [Docs](#docs) +- [Re-opening the Carbs Linux server](#re-opening-the-carbs-linux-server) -[1.0] Carbs Packaging Tools +Carbs Packaging Tools -------------------------------------------------------------------------------- This month I have reworked `kiss` into a new package manager, now renamed as @@ -35,25 +34,25 @@ as well. If you want to use the library on your script you can simply do this: - +--------------------------------------------------------------------------+ - | | - | #!/bin/sh | - | . cpt-lib | - | (...) | - | | - +--------------------------------------------------------------------------+ + +--------------------------------------------------------------------------+ + | | + | #!/bin/sh | + | . cpt-lib | + | (...) | + | | + +--------------------------------------------------------------------------+ There are obviously some clean-up and simplifications needed in this new tool-based package management method. -[2.0] Docs +Docs -------------------------------------------------------------------------------- I have added documentation for the distribution, and finally updated the guide for installation. It is now _almost_ complete. These docs can be installed to your system for online viewing. I will also add a documentation crawler similar -to how werc[1] works (but as an offline viewer). You can find `carbs-docs` from +to how werc[^1] works (but as an offline viewer). You can find `carbs-docs` from the repository. Currently, the documentation lacks but I will be adding new stuff. These will solely be distribution specific documentation and will not be a wiki-like source. If anyone would like to contribute to a wiki-like @@ -61,7 +60,7 @@ documentation source, I would happily re-open the distribution wiki. You can find the source on https://github.com/CarbsLinux/docs -[3.0] Re-opening the Carbs Linux server +Re-opening the Carbs Linux server -------------------------------------------------------------------------------- Back in May, I had shutdown the Carbs Linux server due to financial issues, but @@ -75,4 +74,4 @@ remote nonetheless. EDIT: The git-server is up! -[1]: http://werc.cat-v.org +[^1]: http://werc.cat-v.org diff --git a/docs/index.html b/docs/index.html index 9dd74c8..357249b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -75,6 +75,12 @@ other system supervision technique along with your own init scripts.

RSS Feed | See all news

+

Sep 03 2020

+ +

The default TLS provider has been reverted to ‘libressl’. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update

+

Jul 27 2020

Carbs Linux’s fork of the kiss package manager has been renamed to @@ -96,12 +102,6 @@ It can be found on the GitHub p

A rootfs tarball targeting the i686 architecture has been released. It can be found on the downloads page

- -

May 10 2020

- -

A GCC 10.1.0 change causes a kernel panic for kernels built -with GCC 10.1. This issue can be resolved by applying this -patch to your kernel sources.

View Page Source
diff --git a/docs/index.txt b/docs/index.txt index 46ae09e..b34e583 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -60,6 +60,13 @@ News [RSS Feed](/news.xml) | [See all news](/news.html) +Sep 03 2020 +-------------------------------------------------------------------------------- + +The default TLS provider has been reverted to 'libressl'. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update + Jul 27 2020 -------------------------------------------------------------------------------- @@ -89,12 +96,3 @@ A rootfs tarball targeting the i686 architecture has been released. It can be found on the [downloads page] [downloads page]: https://dl.carbslinux.org/releases/i686 - -May 10 2020 --------------------------------------------------------------------------------- - -A GCC 10.1.0 change causes a kernel panic for kernels built -with GCC 10.1. This issue can be resolved by applying this -[patch] to your kernel sources. - -[patch]: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/patch/?id=f670269a42bfdd2c83a1118cc3d1b475547eac22 diff --git a/docs/news.html b/docs/news.html index f37a432..981034d 100644 --- a/docs/news.html +++ b/docs/news.html @@ -1,7 +1,7 @@ - Jul 27 2020 | Carbs Linux + Sep 03 2020 | Carbs Linux @@ -18,6 +18,12 @@ installation
+

Sep 03 2020

+ +

The default TLS provider has been reverted to ‘libressl’. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update

+

Jul 27 2020

Carbs Linux’s fork of the kiss package manager has been renamed to diff --git a/docs/news.txt b/docs/news.txt index f297a81..80d760c 100644 --- a/docs/news.txt +++ b/docs/news.txt @@ -1,3 +1,10 @@ +Sep 03 2020 +-------------------------------------------------------------------------------- + +The default TLS provider has been reverted to 'libressl'. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update + Jul 27 2020 -------------------------------------------------------------------------------- diff --git a/docs/news.xml b/docs/news.xml index f32807f..2323a56 100644 --- a/docs/news.xml +++ b/docs/news.xml @@ -9,7 +9,18 @@ a simple linux distribution https://carbslinux.org - Tue Aug 18 2020 00:00 + Thu Sep 03 2020 08:00 + +Sep 03 2020 +Thu, 03 Sep 2020 +Cem Keylan +https://carbslinux.org/index.html +<h2>Sep 03 2020</h2> + +<p>The default TLS provider has been reverted to &lsquo;libressl&rsquo;. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update</p> + Jul 27 2020 Mon, 27 Jul 2020 diff --git a/docs/rss.xml b/docs/rss.xml index 41f50e8..37ac90c 100644 --- a/docs/rss.xml +++ b/docs/rss.xml @@ -9,12 +9,12 @@ a simple linux distribution https://carbslinux.org - Tue Aug 18 2020 00:00 + Thu Sep 03 2020 08:00 August 2020 News Post Mon, 03 Aug 2020 Cem Keylan -https://carbslinux.org/blog/20200803.txt +https://carbslinux.org/blog/20200803.html <h1>August 2020 News Post</h1> <p>We are having some stalls during this summer, as I am currently working on @@ -24,13 +24,13 @@ want to share in this month&rsquo;s post.</p> <h2>INDEX</h2> <ul> -<li>Carbs Packaging Tools [1.0]</li> -<li>Docs [2.0]</li> -<li>Re-opening the Carbs Linux server [3.0]</li> +<li><a href="#carbs-packaging-tools">Carbs Packaging Tools</a></li> +<li><a href="#docs">Docs</a></li> +<li><a href="#re-opening-the-carbs-linux-server">Re-opening the Carbs Linux server</a></li> </ul> -<h2>[1.0] Carbs Packaging Tools</h2> +<h2>Carbs Packaging Tools</h2> <p>This month I have reworked <code>kiss</code> into a new package manager, now renamed as <code>cpt</code>. Updating <code>kiss</code> will now bootstrap the new package manager, so you don&rsquo;t @@ -50,30 +50,31 @@ as well.</p> <p>If you want to use the library on your script you can simply do this:</p> -<p> +&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;+ - | | - | #!/bin/sh | - | . cpt-lib | - | (&hellip;) | - | | - +&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;+</p> +<pre><code>+--------------------------------------------------------------------------+ +| | +| #!/bin/sh | +| . cpt-lib | +| (...) | +| | ++--------------------------------------------------------------------------+ +</code></pre> <p>There are obviously some clean-up and simplifications needed in this new tool-based package management method.</p> -<h2>[2.0] Docs</h2> +<h2>Docs</h2> <p>I have added documentation for the distribution, and finally updated the guide for installation. It is now <em>almost</em> complete. These docs can be installed to your system for online viewing. I will also add a documentation crawler similar -to how werc<a href="http://werc.cat-v.org">1</a> works (but as an offline viewer). You can find <code>carbs-docs</code> from +to how werc<a href="http://werc.cat-v.org">^1</a> works (but as an offline viewer). You can find <code>carbs-docs</code> from the repository. Currently, the documentation lacks but I will be adding new stuff. These will solely be distribution specific documentation and will not be a wiki-like source. If anyone would like to contribute to a wiki-like documentation source, I would happily re-open the distribution wiki. You can find the source on https://github.com/CarbsLinux/docs</p> -<h2>[3.0] Re-opening the Carbs Linux server</h2> +<h2>Re-opening the Carbs Linux server</h2> <p>Back in May, I had shutdown the Carbs Linux server due to financial issues, but I am slowly reverting to the self-hosted model. Back then, the git repositories diff --git a/index/20200903.news b/index/20200903.news new file mode 100644 index 0000000..0f4aa8d --- /dev/null +++ b/index/20200903.news @@ -0,0 +1,6 @@ +Sep 03 2020 +-------------------------------------------------------------------------------- + +The default TLS provider has been reverted to 'libressl'. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update diff --git a/src/blog/20200803.md b/src/blog/20200803.md new file mode 100644 index 0000000..eaee932 --- /dev/null +++ b/src/blog/20200803.md @@ -0,0 +1,77 @@ +August 2020 News Post +================================================================================ + +We are having some stalls during this summer, as I am currently working on +university-related stuff. Nonetheless, there are some important changes that I +want to share in this month's post. + +INDEX +-------------------------------------------------------------------------------- + +- [Carbs Packaging Tools](#carbs-packaging-tools) +- [Docs](#docs) +- [Re-opening the Carbs Linux server](#re-opening-the-carbs-linux-server) + + +Carbs Packaging Tools +-------------------------------------------------------------------------------- + +This month I have reworked `kiss` into a new package manager, now renamed as +`cpt`. Updating `kiss` will now bootstrap the new package manager, so you don't +have to manually edit your system. If you don't like the idea of this, you can +look up the `post-install` script on `core/kiss` and apply the changes manually. + +You will also need to rename your KISS_* variables to CPT_*. So, KISS_PATH +becomes CPT_PATH. + +The rework changes the previous commands on the package manager into standalone +tools, and move the package manager functions to a library. This makes it easier +for a user to import functions and variables from the package manager, and +extend the package manager with their own intended way. Previously this required +ugly hacks and workarounds to use the package manager functions. I will be +making use of these changes to re-implement binary package management functions +as well. + +If you want to use the library on your script you can simply do this: + + +--------------------------------------------------------------------------+ + | | + | #!/bin/sh | + | . cpt-lib | + | (...) | + | | + +--------------------------------------------------------------------------+ + +There are obviously some clean-up and simplifications needed in this new +tool-based package management method. + + +Docs +-------------------------------------------------------------------------------- + +I have added documentation for the distribution, and finally updated the guide +for installation. It is now _almost_ complete. These docs can be installed to +your system for online viewing. I will also add a documentation crawler similar +to how werc[^1] works (but as an offline viewer). You can find `carbs-docs` from +the repository. Currently, the documentation lacks but I will be adding new +stuff. These will solely be distribution specific documentation and will not be +a wiki-like source. If anyone would like to contribute to a wiki-like +documentation source, I would happily re-open the distribution wiki. You can +find the source on https://github.com/CarbsLinux/docs + + +Re-opening the Carbs Linux server +-------------------------------------------------------------------------------- + +Back in May, I had shutdown the Carbs Linux server due to financial issues, but +I am slowly reverting to the self-hosted model. Back then, the git repositories +were mirrored to GitHub, and the management was overall much more flexible. The +server used to run Carbs Linux as well (that was fun and horrifying at the same +time). Now, I will be relaunching the git server which will be the upstream +source before August 5. You can switch your remote, but GitHub will stay as a +remote nonetheless. + +EDIT: The git-server is up! + + +[^1]: http://werc.cat-v.org diff --git a/src/blog/20200803.txt b/src/blog/20200803.txt deleted file mode 100644 index 184baaa..0000000 --- a/src/blog/20200803.txt +++ /dev/null @@ -1,78 +0,0 @@ -August 2020 News Post -================================================================================ - -We are having some stalls during this summer, as I am currently working on -university-related stuff. Nonetheless, there are some important changes that I -want to share in this month's post. - - -INDEX --------------------------------------------------------------------------------- - -- Carbs Packaging Tools [1.0] -- Docs [2.0] -- Re-opening the Carbs Linux server [3.0] - - -[1.0] Carbs Packaging Tools --------------------------------------------------------------------------------- - -This month I have reworked `kiss` into a new package manager, now renamed as -`cpt`. Updating `kiss` will now bootstrap the new package manager, so you don't -have to manually edit your system. If you don't like the idea of this, you can -look up the `post-install` script on `core/kiss` and apply the changes manually. - -You will also need to rename your KISS_* variables to CPT_*. So, KISS_PATH -becomes CPT_PATH. - -The rework changes the previous commands on the package manager into standalone -tools, and move the package manager functions to a library. This makes it easier -for a user to import functions and variables from the package manager, and -extend the package manager with their own intended way. Previously this required -ugly hacks and workarounds to use the package manager functions. I will be -making use of these changes to re-implement binary package management functions -as well. - -If you want to use the library on your script you can simply do this: - - +--------------------------------------------------------------------------+ - | | - | #!/bin/sh | - | . cpt-lib | - | (...) | - | | - +--------------------------------------------------------------------------+ - -There are obviously some clean-up and simplifications needed in this new -tool-based package management method. - - -[2.0] Docs --------------------------------------------------------------------------------- - -I have added documentation for the distribution, and finally updated the guide -for installation. It is now _almost_ complete. These docs can be installed to -your system for online viewing. I will also add a documentation crawler similar -to how werc[1] works (but as an offline viewer). You can find `carbs-docs` from -the repository. Currently, the documentation lacks but I will be adding new -stuff. These will solely be distribution specific documentation and will not be -a wiki-like source. If anyone would like to contribute to a wiki-like -documentation source, I would happily re-open the distribution wiki. You can -find the source on https://github.com/CarbsLinux/docs - - -[3.0] Re-opening the Carbs Linux server --------------------------------------------------------------------------------- - -Back in May, I had shutdown the Carbs Linux server due to financial issues, but -I am slowly reverting to the self-hosted model. Back then, the git repositories -were mirrored to GitHub, and the management was overall much more flexible. The -server used to run Carbs Linux as well (that was fun and horrifying at the same -time). Now, I will be relaunching the git server which will be the upstream -source before August 5. You can switch your remote, but GitHub will stay as a -remote nonetheless. - -EDIT: The git-server is up! - - -[1]: http://werc.cat-v.org diff --git a/src/index.md b/src/index.md index 46ae09e..b34e583 100644 --- a/src/index.md +++ b/src/index.md @@ -60,6 +60,13 @@ News [RSS Feed](/news.xml) | [See all news](/news.html) +Sep 03 2020 +-------------------------------------------------------------------------------- + +The default TLS provider has been reverted to 'libressl'. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update + Jul 27 2020 -------------------------------------------------------------------------------- @@ -89,12 +96,3 @@ A rootfs tarball targeting the i686 architecture has been released. It can be found on the [downloads page] [downloads page]: https://dl.carbslinux.org/releases/i686 - -May 10 2020 --------------------------------------------------------------------------------- - -A GCC 10.1.0 change causes a kernel panic for kernels built -with GCC 10.1. This issue can be resolved by applying this -[patch] to your kernel sources. - -[patch]: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/patch/?id=f670269a42bfdd2c83a1118cc3d1b475547eac22 diff --git a/src/news.md b/src/news.md index f297a81..80d760c 100644 --- a/src/news.md +++ b/src/news.md @@ -1,3 +1,10 @@ +Sep 03 2020 +-------------------------------------------------------------------------------- + +The default TLS provider has been reverted to 'libressl'. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update + Jul 27 2020 -------------------------------------------------------------------------------- diff --git a/src/news.xml b/src/news.xml index f32807f..2323a56 100644 --- a/src/news.xml +++ b/src/news.xml @@ -9,7 +9,18 @@ a simple linux distribution https://carbslinux.org - Tue Aug 18 2020 00:00 + Thu Sep 03 2020 08:00 + +Sep 03 2020 +Thu, 03 Sep 2020 +Cem Keylan +https://carbslinux.org/index.html +<h2>Sep 03 2020</h2> + +<p>The default TLS provider has been reverted to &lsquo;libressl&rsquo;. System update will +replace bearssl dependencies with libressl. You may choose to keep or remove +bearssl after the update</p> + Jul 27 2020 Mon, 27 Jul 2020 diff --git a/src/rss.xml b/src/rss.xml index 41f50e8..37ac90c 100644 --- a/src/rss.xml +++ b/src/rss.xml @@ -9,12 +9,12 @@ a simple linux distribution https://carbslinux.org - Tue Aug 18 2020 00:00 + Thu Sep 03 2020 08:00 August 2020 News Post Mon, 03 Aug 2020 Cem Keylan -https://carbslinux.org/blog/20200803.txt +https://carbslinux.org/blog/20200803.html <h1>August 2020 News Post</h1> <p>We are having some stalls during this summer, as I am currently working on @@ -24,13 +24,13 @@ want to share in this month&rsquo;s post.</p> <h2>INDEX</h2> <ul> -<li>Carbs Packaging Tools [1.0]</li> -<li>Docs [2.0]</li> -<li>Re-opening the Carbs Linux server [3.0]</li> +<li><a href="#carbs-packaging-tools">Carbs Packaging Tools</a></li> +<li><a href="#docs">Docs</a></li> +<li><a href="#re-opening-the-carbs-linux-server">Re-opening the Carbs Linux server</a></li> </ul> -<h2>[1.0] Carbs Packaging Tools</h2> +<h2>Carbs Packaging Tools</h2> <p>This month I have reworked <code>kiss</code> into a new package manager, now renamed as <code>cpt</code>. Updating <code>kiss</code> will now bootstrap the new package manager, so you don&rsquo;t @@ -50,30 +50,31 @@ as well.</p> <p>If you want to use the library on your script you can simply do this:</p> -<p> +&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;+ - | | - | #!/bin/sh | - | . cpt-lib | - | (&hellip;) | - | | - +&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;+</p> +<pre><code>+--------------------------------------------------------------------------+ +| | +| #!/bin/sh | +| . cpt-lib | +| (...) | +| | ++--------------------------------------------------------------------------+ +</code></pre> <p>There are obviously some clean-up and simplifications needed in this new tool-based package management method.</p> -<h2>[2.0] Docs</h2> +<h2>Docs</h2> <p>I have added documentation for the distribution, and finally updated the guide for installation. It is now <em>almost</em> complete. These docs can be installed to your system for online viewing. I will also add a documentation crawler similar -to how werc<a href="http://werc.cat-v.org">1</a> works (but as an offline viewer). You can find <code>carbs-docs</code> from +to how werc<a href="http://werc.cat-v.org">^1</a> works (but as an offline viewer). You can find <code>carbs-docs</code> from the repository. Currently, the documentation lacks but I will be adding new stuff. These will solely be distribution specific documentation and will not be a wiki-like source. If anyone would like to contribute to a wiki-like documentation source, I would happily re-open the distribution wiki. You can find the source on https://github.com/CarbsLinux/docs</p> -<h2>[3.0] Re-opening the Carbs Linux server</h2> +<h2>Re-opening the Carbs Linux server</h2> <p>Back in May, I had shutdown the Carbs Linux server due to financial issues, but I am slowly reverting to the self-hosted model. Back then, the git repositories -- cgit v1.2.3