docs: remove deb dir, update usage

This commit is contained in:
wcbing 2025-01-22 16:25:41 +08:00
parent 5511c4855d
commit 010535786f
5 changed files with 14 additions and 88 deletions

5
.gitignore vendored
View File

@ -1,6 +1,3 @@
data/github-local.json data/github-local.json
data/deb.db data/deb.db
deb/* deb/
!deb/index.html
!deb/add.sh
!deb/del.sh

View File

@ -1,27 +1,23 @@
# wcbingAPT软件源/仓库 # wcbing APT 软件源/仓库
供 Debian 系发行版用户使用的软件源,收集一些国内常用软件的二进制包。 适用于 Debian-based 发行版Debian/Ubuntu/Mint/...)的 APT 软件源/仓库,收集一些国内常用软件的二进制包。
本仓库对于下载不受限的软件不提供文件托管服务,仅提供链接重定向功能,致力于在不改动 APT 的情况下实现类似 WinGet、Homebrew Cask 等仅提供仓库索引的效果。 本仓库仅提供链接重定向功能,致力于在不改动 APT 的情况下实现类似 WinGet、Homebrew Cask 等仅提供仓库索引的效果。
收录的软件说明:
- 官方打包发布的文件 ~~,不接受第三方自行打包~~
- 有固定的更新地址,如官网、官方仓库或 Github Releases。
- 不收录打包的 wine 应用、Android 应用。
- 不收录图标、主题、字体等包,以后可能单独建一个相关仓库。
- 现主要服务 x86_64 用户,同时实验性支持 arm64如有需要请参考最后一节自行建立仓库。
## 使用现有仓库 ## 使用现有仓库
添加本仓库: 请于[现有仓库实例](https://packages.wcbing.top/deb/)查看使用方法。
```sh
curl -fsSL https://packages.wcbing.top/deb/add.sh | sudo sh
``` ## 收录的软件说明
- 现主要服务 x86_64 用户,同时实验性支持 arm64。
如有需要请参考最后一节自行建立仓库。
- 主要收录官方打包发布的文件,不接受第三方自行打包的商业软件。
- 有固定的更新地址,如官网、官方仓库或 Github Releases。
- 不收录打包的 wine 应用、Android 应用。
- 不收录图标、主题、字体等包,以后可能单独建一个相关仓库。
移除本仓库:
```sh
curl -fsSL https://packages.wcbing.top/deb/del.sh | sudo sh
```
## 已收录软件 ## 已收录软件

View File

@ -1,3 +0,0 @@
echo "deb [trusted=yes] https://packages.wcbing.top/deb/$(dpkg --print-architecture) /" > \
/etc/apt/sources.list.d/wcbing.list
apt update

View File

@ -1,3 +0,0 @@
rm -f /etc/apt/keyrings/wcbing.gpg
rm -f /etc/apt/sources.list.d/wcbing.list
apt update

View File

@ -1,61 +0,0 @@
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="color-scheme" content="light dark">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>wcbing 的 APT 软件源</title>
<style>
body {
text-align: center;
max-width: 600px;
margin: 0 auto;
}
a {
color: #4096ff;
text-decoration: none;
}
.code-blocks {
border: 1px solid #777;
padding: 0.8em;
border-radius: 5px;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 1em 0;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<h1>wcbing 的 APT 软件源</h1>
<h3>➕添加本仓库</h3>
<p class="code-blocks">
<code>curl -fsSL https://packages.wcbing.top/deb/add.sh | sudo sh</code>
</p>
<h3>➖移除本仓库</h3>
<p class="code-blocks">
<code>curl -fsSL https://packages.wcbing.top/deb/del.sh | sudo sh</code>
</p>
<h3>🔗相关链接</h3>
<p>
欢迎参与<a href="https://github.com/wcbing/wcbing-apt-repo">本项目</a> |
<a href="https://github.com/wcbing/wcbing-apt-repo#已收录软件">已收录软件</a>|
<a href="https://t.me/wcbing_apt_repo">更新提醒</a>
</p>
<div class="footer">
<a href="status/">日志</a> |
<a href="amd64/Packages">amd64📦</a> |
<a href="arm64/Packages">arm64📦</a>
</div>
</body>
</html>