ソースを参照

autoupdate docs by xmake-repo/ci

ruki 2 年 前
コミット
b35704569b

+ 1 - 1
_coverpage.md

@@ -6,7 +6,7 @@
 
 - *Simple, lightweight, cross-platform*
 - *Modern C/C++ package manager, support distributed repositories*
-- **Recently added: simplethreadpool, port, llfio**
+- **Recently added: pycdc, simplethreadpool, port**
 
 [Gitee](https://gitee.com/tboox/xrepo/)
 [Github](https://github.com/xmake-io/xrepo/)

+ 1 - 1
_sidebar.md

@@ -1,7 +1,7 @@
 - Getting Started
   - [Sponsor](https://xmake.io/#/about/sponsor)
   - [Quick Start](getting_started.md)
-- Packages (794)
+- Packages (795)
   - [android](packages/android.md)
   - [bsd](packages/bsd.md)
   - [cross](packages/cross.md)

+ 33 - 0
mirror/packages/linux.html

@@ -20907,6 +20907,39 @@
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <pre><code class="lang-lua">add_requires("pybind11")
 </code></pre>
+<h3 id="pycdclinux">pycdc (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ python bytecode disassembler and decompiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/zrax/pycdc">https://github.com/zrax/pycdc</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2022.10.04</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64-v8a, armv7, armv7s, i386, mips, mips64, mips64el, mipsel, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pycdc/xmake.lua">pycdc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pycdc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pycdc")
+</code></pre>
 <h3 id="pystringlinux">pystring (linux)</h3>
 <table>
 <thead>

+ 33 - 0
mirror/packages/macosx.html

@@ -19454,6 +19454,39 @@
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <pre><code class="lang-lua">add_requires("pybind11")
 </code></pre>
+<h3 id="pycdcmacosx">pycdc (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ python bytecode disassembler and decompiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/zrax/pycdc">https://github.com/zrax/pycdc</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2022.10.04</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pycdc/xmake.lua">pycdc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pycdc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pycdc")
+</code></pre>
 <h3 id="pystringmacosx">pystring (macosx)</h3>
 <table>
 <thead>

+ 33 - 0
mirror/packages/windows.html

@@ -16768,6 +16768,39 @@
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <pre><code class="lang-lua">add_requires("pybind11")
 </code></pre>
+<h3 id="pycdcwindows">pycdc (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ python bytecode disassembler and decompiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/zrax/pycdc">https://github.com/zrax/pycdc</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2022.10.04</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64, x64, x86</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pycdc/xmake.lua">pycdc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pycdc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pycdc")
+</code></pre>
 <h3 id="pystringwindows">pystring (windows)</h3>
 <table>
 <thead>

+ 23 - 0
packages/linux.md

@@ -13926,6 +13926,29 @@ add_requires("pybind11")
 ```
 
 
+### pycdc (linux)
+
+
+| Description | *C++ python bytecode disassembler and decompiler* |
+| -- | -- |
+| Homepage | [https://github.com/zrax/pycdc](https://github.com/zrax/pycdc) |
+| Versions | 2022.10.04 |
+| Architectures | arm64-v8a, armv7, armv7s, i386, mips, mips64, mips64el, mipsel, x86_64 |
+| Definition | [pycdc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pycdc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pycdc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pycdc")
+```
+
+
 ### pystring (linux)
 
 

+ 23 - 0
packages/macosx.md

@@ -12958,6 +12958,29 @@ add_requires("pybind11")
 ```
 
 
+### pycdc (macosx)
+
+
+| Description | *C++ python bytecode disassembler and decompiler* |
+| -- | -- |
+| Homepage | [https://github.com/zrax/pycdc](https://github.com/zrax/pycdc) |
+| Versions | 2022.10.04 |
+| Architectures | arm64, x86_64 |
+| Definition | [pycdc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pycdc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pycdc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pycdc")
+```
+
+
 ### pystring (macosx)
 
 

+ 23 - 0
packages/windows.md

@@ -11114,6 +11114,29 @@ add_requires("pybind11")
 ```
 
 
+### pycdc (windows)
+
+
+| Description | *C++ python bytecode disassembler and decompiler* |
+| -- | -- |
+| Homepage | [https://github.com/zrax/pycdc](https://github.com/zrax/pycdc) |
+| Versions | 2022.10.04 |
+| Architectures | arm64, x64, x86 |
+| Definition | [pycdc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pycdc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pycdc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pycdc")
+```
+
+
 ### pystring (windows)
 
 

+ 15 - 15
sitemap.xml

@@ -7,77 +7,77 @@
     
 <url>
   <loc>https://xrepo.xmake.io</loc>
-  <lastmod>2022-11-28T13:09:17+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:39+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/android.html</loc>
-  <lastmod>2022-11-28T13:09:21+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:41+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/linux.html</loc>
-  <lastmod>2022-11-28T13:09:21+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/iphoneos.html</loc>
-  <lastmod>2022-11-28T13:09:21+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/wasm.html</loc>
-  <lastmod>2022-11-28T13:09:22+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/msys.html</loc>
-  <lastmod>2022-11-28T13:09:22+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/windows.html</loc>
-  <lastmod>2022-11-28T13:09:22+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/bsd.html</loc>
-  <lastmod>2022-11-28T13:09:23+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/cross.html</loc>
-  <lastmod>2022-11-28T13:09:23+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/macosx.html</loc>
-  <lastmod>2022-11-28T13:09:24+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/mingw.html</loc>
-  <lastmod>2022-11-28T13:09:24+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2022-11-28T13:09:24+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/index.html</loc>
-  <lastmod>2022-11-28T13:09:25+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2022-11-28T13:09:25+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2022-11-28T13:09:25+08:00</lastmod>
+  <lastmod>2022-11-28T15:29:44+08:00</lastmod>
 </url>
 
 </urlset>

+ 1 - 1
zh-cn/_coverpage.md

@@ -6,7 +6,7 @@
 
 - *简单,轻量,跨平台*
 - *现代化的 C/C++ 包管理工具,分布式仓库支持*
-- **Recently added: simplethreadpool, port, llfio**
+- **Recently added: pycdc, simplethreadpool, port**
 
 [Gitee](https://gitee.com/tboox/xrepo/)
 [GitHub](https://github.com/xmake-io/xrepo/)

+ 1 - 1
zh-cn/_sidebar.md

@@ -1,7 +1,7 @@
 - 快速入门
   - [赞助](https://xmake.io/#/zh-cn/about/sponsor)
   - [快速上手](zh-cn/getting_started.md)
-- 包列表 (794)
+- 包列表 (795)
   - [android](packages/android.md)
   - [bsd](packages/bsd.md)
   - [cross](packages/cross.md)