From 2fd9794e997632cdbf124e96a8006ade0532ab51 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 3 Sep 2020 11:23:04 +0300 Subject: update --- 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 +++++++++++----------- 6 files changed, 120 insertions(+), 104 deletions(-) create mode 100644 src/blog/20200803.md delete mode 100644 src/blog/20200803.txt (limited to 'src') 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