Skip to content

Commit b036342

Browse files
committed
website: re-generate commons
1 parent 0ead445 commit b036342

21 files changed

Lines changed: 1538 additions & 780 deletions

website/blog/2025-10-03-cmake-v3-30-9-1-released.mdx

Lines changed: 115 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22

3-
title: xPack xPack CMake v3.30.9-1 released
3+
title: xPack CMake v3.30.9-1 released
44
seo_title: Version 3.30.9-1 released
5-
description: Version 3.30.9-1 is a TODO new/maintenance release.
5+
description: Version 3.30.9-1 is a new release.
66
keywords:
77
- xpack
88
- cmake
@@ -31,6 +31,10 @@ download_url: https://github.com/xpack-dev-tools/cmake-xpack/releases/tag/v3.30.
3131
import {PageMetadata} from '@docusaurus/theme-common';
3232
import Image from '@theme/IdealImage';
3333
import CodeBlock from '@theme/CodeBlock';
34+
import Tabs from '@theme/Tabs';
35+
import TabItem from '@theme/TabItem';
36+
37+
import customField from '@site/src/libs/customField';
3438

3539
import Prerequisites from './_common/_prerequisites-glib-2.28.mdx';
3640
import DeprecationNotices from './_common/_deprecation-notices-glib-2.28.mdx';
@@ -53,8 +57,8 @@ and **GNU/Linux** (x64 and arm64).
5357
:::note Raspberry Pi
5458

5559
The main targets for the GNU/Linux Arm
56-
binaries are the **Raspberry Pi** class devices (aarch64;
57-
armv6 and armv7l are not supported).
60+
binaries are the **Raspberry Pi** class devices (aarch64 only;
61+
armv6 and armv7l are no longer supported).
5862

5963
:::
6064

@@ -72,7 +76,7 @@ The easiest way to install this specific version, is by using **xpm**:
7276
`xpm install @xpack-dev-tools/cmake@${frontMatter.version}.${frontMatter.npm_subversion} -verbose
7377
`} </CodeBlock>
7478

75-
Comprehensive instructions for installing **xPack xPack CMake** on different platforms
79+
Comprehensive instructions for installing **xPack CMake** on different platforms
7680
can be found in the [Install Guide](/docs/install/).
7781

7882
## Compliance
@@ -157,6 +161,112 @@ xpack-cmake-3.30.9-1-win32-x64.zip
157161
158162
```
159163

164+
## Folders hierarchy
165+
166+
After install, the package creates a hierarchy of folders like the following
167+
(only the first two depth levels are shown):
168+
169+
<Tabs groupId="operating-systems">
170+
171+
<TabItem value="windows" label="Windows" default>
172+
173+
<CodeBlock language="console"> {
174+
`C:\> tree /f %USERPROFILE%\\AppData\\Roaming\\xPacks\\@{{packageScope}}\\{{packageName}}\\${frontMatter.version}.${frontMatter.npm_subversion}\\.content
175+
Folder PATH listing
176+
Volume serial number is B02D-925C
177+
├── README.md
178+
├── bin
179+
│ ├── cmake.exe
180+
│ ├── cmcldeps.exe
181+
│ ├── cpack.exe
182+
│ ├── ctest.exe
183+
│ ├── libgcc_s_seh-1.dll
184+
│ └── libstdc++-6.dll
185+
├── distro-info
186+
│ └── licenses
187+
├── doc
188+
│ └── cmake-3.30
189+
└── share
190+
├── aclocal
191+
├── bash-completion
192+
├── cmake-3.30
193+
├── emacs
194+
└── vim
195+
196+
11 directories, 8 files
197+
`} </CodeBlock>
198+
199+
</TabItem>
200+
201+
<TabItem value="macos" label="macOS">
202+
203+
<CodeBlock language="console"> {
204+
`$ tree -L 2 ~/Library/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
205+
/Users/ilg/Library/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
206+
├── README.md
207+
├── bin
208+
│ ├── ccmake
209+
│ ├── cmake
210+
│ ├── cpack
211+
│ └── ctest
212+
├── distro-info
213+
│ └── licenses
214+
├── doc
215+
│ └── cmake-3.30
216+
├── libexec
217+
│ ├── libc++.1.0.dylib
218+
│ ├── libc++abi.1.0.dylib
219+
│ ├── libncurses.6.dylib
220+
│ └── libunwind.1.0.dylib
221+
└── share
222+
├── aclocal
223+
├── bash-completion
224+
├── cmake-3.30
225+
├── emacs
226+
└── vim
227+
228+
13 directories, 9 files
229+
`} </CodeBlock>
230+
231+
</TabItem>
232+
233+
<TabItem value="linux" label="GNU/Linux">
234+
235+
<CodeBlock language="console"> {
236+
`$ tree -L 2 ~/.local/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
237+
/home/ilg/.local/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
238+
├── README.md
239+
├── bin
240+
│ ├── ccmake
241+
│ ├── cmake
242+
│ ├── cpack
243+
│ └── ctest
244+
├── distro-info
245+
│ └── licenses
246+
├── doc
247+
│ └── cmake-3.30
248+
├── libexec
249+
│ ├── libcrypto.so.3
250+
│ ├── libgcc_s.so.1
251+
│ ├── libncurses.so.6 -> libncurses.so.6.5
252+
│ ├── libncurses.so.6.5
253+
│ ├── libssl.so.3
254+
│ ├── libstdc++.so.6 -> libstdc++.so.6.0.33
255+
│ └── libstdc++.so.6.0.33
256+
└── share
257+
├── aclocal
258+
├── bash-completion
259+
├── cmake-3.30
260+
├── emacs
261+
└── vim
262+
263+
12 directories, 12 files
264+
`} </CodeBlock>
265+
266+
</TabItem>
267+
268+
</Tabs>
269+
160270
<DeprecationNotices/>
161271

162272
<DownloadAnalytics version={frontMatter.version}/>

website/blog/2025-10-04-cmake-v3-31-9-1-released.mdx

Lines changed: 115 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22

3-
title: xPack xPack CMake v3.31.9-1 released
3+
title: xPack CMake v3.31.9-1 released
44
seo_title: Version 3.31.9-1 released
5-
description: Version 3.31.9-1 is a TODO new/maintenance release.
5+
description: Version 3.31.9-1 is a new release.
66
keywords:
77
- xpack
88
- cmake
@@ -31,6 +31,10 @@ download_url: https://github.com/xpack-dev-tools/cmake-xpack/releases/tag/v3.31.
3131
import {PageMetadata} from '@docusaurus/theme-common';
3232
import Image from '@theme/IdealImage';
3333
import CodeBlock from '@theme/CodeBlock';
34+
import Tabs from '@theme/Tabs';
35+
import TabItem from '@theme/TabItem';
36+
37+
import customField from '@site/src/libs/customField';
3438

3539
import Prerequisites from './_common/_prerequisites-glib-2.28.mdx';
3640
import DeprecationNotices from './_common/_deprecation-notices-glib-2.28.mdx';
@@ -53,8 +57,8 @@ and **GNU/Linux** (x64 and arm64).
5357
:::note Raspberry Pi
5458

5559
The main targets for the GNU/Linux Arm
56-
binaries are the **Raspberry Pi** class devices (aarch64;
57-
armv6 and armv7l are not supported).
60+
binaries are the **Raspberry Pi** class devices (aarch64 only;
61+
armv6 and armv7l are no longer supported).
5862

5963
:::
6064

@@ -72,7 +76,7 @@ The easiest way to install this specific version, is by using **xpm**:
7276
`xpm install @xpack-dev-tools/cmake@${frontMatter.version}.${frontMatter.npm_subversion} -verbose
7377
`} </CodeBlock>
7478

75-
Comprehensive instructions for installing **xPack xPack CMake** on different platforms
79+
Comprehensive instructions for installing **xPack CMake** on different platforms
7680
can be found in the [Install Guide](/docs/install/).
7781

7882
## Compliance
@@ -157,6 +161,112 @@ xpack-cmake-3.31.9-1-win32-x64.zip
157161
158162
```
159163

164+
## Folders hierarchy
165+
166+
After install, the package creates a hierarchy of folders like the following
167+
(only the first two depth levels are shown):
168+
169+
<Tabs groupId="operating-systems">
170+
171+
<TabItem value="windows" label="Windows" default>
172+
173+
<CodeBlock language="console"> {
174+
`C:\> tree /f %USERPROFILE%\\AppData\\Roaming\\xPacks\\@{{packageScope}}\\{{packageName}}\\${frontMatter.version}.${frontMatter.npm_subversion}\\.content
175+
Folder PATH listing
176+
Volume serial number is B02D-925C
177+
├── README.md
178+
├── bin
179+
│ ├── cmake.exe
180+
│ ├── cmcldeps.exe
181+
│ ├── cpack.exe
182+
│ ├── ctest.exe
183+
│ ├── libgcc_s_seh-1.dll
184+
│ └── libstdc++-6.dll
185+
├── distro-info
186+
│ └── licenses
187+
├── doc
188+
│ └── cmake-3.30
189+
└── share
190+
├── aclocal
191+
├── bash-completion
192+
├── cmake-3.31
193+
├── emacs
194+
└── vim
195+
196+
11 directories, 8 files
197+
`} </CodeBlock>
198+
199+
</TabItem>
200+
201+
<TabItem value="macos" label="macOS">
202+
203+
<CodeBlock language="console"> {
204+
`$ tree -L 2 ~/Library/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
205+
/Users/ilg/Library/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
206+
├── README.md
207+
├── bin
208+
│ ├── ccmake
209+
│ ├── cmake
210+
│ ├── cpack
211+
│ └── ctest
212+
├── distro-info
213+
│ └── licenses
214+
├── doc
215+
│ └── cmake-3.30
216+
├── libexec
217+
│ ├── libc++.1.0.dylib
218+
│ ├── libc++abi.1.0.dylib
219+
│ ├── libncurses.6.dylib
220+
│ └── libunwind.1.0.dylib
221+
└── share
222+
├── aclocal
223+
├── bash-completion
224+
├── cmake-3.31
225+
├── emacs
226+
└── vim
227+
228+
13 directories, 9 files
229+
`} </CodeBlock>
230+
231+
</TabItem>
232+
233+
<TabItem value="linux" label="GNU/Linux">
234+
235+
<CodeBlock language="console"> {
236+
`$ tree -L 2 ~/.local/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
237+
/home/ilg/.local/xPacks/\{{packageScopedName}}/${frontMatter.version}.${frontMatter.npm_subversion}/.content/
238+
├── README.md
239+
├── bin
240+
│ ├── ccmake
241+
│ ├── cmake
242+
│ ├── cpack
243+
│ └── ctest
244+
├── distro-info
245+
│ └── licenses
246+
├── doc
247+
│ └── cmake-3.30
248+
├── libexec
249+
│ ├── libcrypto.so.3
250+
│ ├── libgcc_s.so.1
251+
│ ├── libncurses.so.6 -> libncurses.so.6.5
252+
│ ├── libncurses.so.6.5
253+
│ ├── libssl.so.3
254+
│ ├── libstdc++.so.6 -> libstdc++.so.6.0.33
255+
│ └── libstdc++.so.6.0.33
256+
└── share
257+
├── aclocal
258+
├── bash-completion
259+
├── cmake-3.31
260+
├── emacs
261+
└── vim
262+
263+
12 directories, 12 files
264+
`} </CodeBlock>
265+
266+
</TabItem>
267+
268+
</Tabs>
269+
160270
<DeprecationNotices/>
161271

162272
<DownloadAnalytics version={frontMatter.version}/>

website/blog/_templates/blog-post-release-part-1-liquid.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
title: xPack {{packageConfig.descriptiveName}} v{{xpackVersion}} released
44
seo_title: Version {{xpackVersion}} released
5-
description: Version {{xpackVersion}} is a TODO new/maintenance release.
5+
description: Version {{xpackVersion}} is a TODO maintenance/new release.
66
keywords:
77
- xpack
88
- {{packageConfig.permalinkName}}
@@ -31,6 +31,10 @@ download_url: https://github.com/xpack-dev-tools/cmake-xpack/releases/tag/v{{xpa
3131
import {PageMetadata} from '@docusaurus/theme-common';
3232
import Image from '@theme/IdealImage';
3333
import CodeBlock from '@theme/CodeBlock';
34+
import Tabs from '@theme/Tabs';
35+
import TabItem from '@theme/TabItem';
36+
37+
import customField from '@site/src/libs/customField';
3438

3539
import Prerequisites from './_common/_prerequisites-glib-2.28.mdx';
3640
import DeprecationNotices from './_common/_deprecation-notices-glib-2.28.mdx';
@@ -53,8 +57,8 @@ and **GNU/Linux** (x64 and arm64).
5357
:::note Raspberry Pi
5458

5559
The main targets for the GNU/Linux Arm
56-
binaries are the **Raspberry Pi** class devices (aarch64;
57-
armv6 and armv7l are not supported).
60+
binaries are the **Raspberry Pi** class devices (aarch64 only;
61+
armv6 and armv7l are no longer supported).
5862

5963
:::
6064

0 commit comments

Comments
 (0)