-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (85 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
110 lines (85 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>basecubedev APT Repository</title>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.6;
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
color: #1f2328;
}
code, pre {
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}
pre {
background: #f6f8fa;
border: 1px solid #d0d7de;
border-radius: 6px;
padding: 1rem;
overflow-x: auto;
}
.note {
background: #fff8c5;
border: 1px solid #d4a72c;
border-radius: 6px;
padding: 0.75rem 1rem;
}
.meta {
color: #57606a;
font-size: 0.95rem;
}
</style>
</head>
<body>
<h1>basecubedev APT Repository</h1>
<p>
Official public Debian/Ubuntu package repository for selected
basecubedev open source projects.
</p>
<p class="note">
This is a third-party APT repository. Add it only if you trust
basecubedev as the package publisher.
</p>
<h2>Available packages</h2>
<ul>
<li><code>paping-go</code> - TCP port ping utility written in Go</li>
</ul>
<h2>Quick install</h2>
<pre><code>sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://repo.basecubedev.de/basecubedev-archive-keyring.gpg \
| sudo tee /etc/apt/keyrings/basecubedev.gpg > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/basecubedev.gpg] https://repo.basecubedev.de/debian stable main" \
| sudo tee /etc/apt/sources.list.d/basecubedev.list
sudo apt update
sudo apt install paping-go</code></pre>
<h2>Verify repository / package info</h2>
<pre><code>apt-cache policy paping-go
apt show paping-go</code></pre>
<h2>Remove repository</h2>
<pre><code>sudo rm -f /etc/apt/sources.list.d/basecubedev.list
sudo rm -f /etc/apt/keyrings/basecubedev.gpg
sudo apt update</code></pre>
<h2>Signing key</h2>
<p>
The repository metadata is signed with the basecubedev APT archive key.
</p>
<pre><code>DD12 048C E83D 87A5 A67A 974B 8B71 DCDC B8A2 4912</code></pre>
<h2>Repository layout</h2>
<p>
APT metadata is published under <code>/debian/dists</code>, and package
files are published under <code>/debian/pool</code>.
</p>
<pre><code>APT root:
https://repo.basecubedev.de/debian
Public archive key:
https://repo.basecubedev.de/basecubedev-archive-keyring.gpg</code></pre>
<p class="meta">
basecubedev APT Repository · Hosted on GitHub Pages
</p>
</body>
</html>