1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00

Initial Commit

This commit is contained in:
Henrik Hautakoski 2019-10-08 14:30:40 +02:00
commit d9f9c082c3
5 changed files with 91 additions and 0 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
*.lock
_site/
.bundle/
vendor/

25
404.html Normal file
View file

@ -0,0 +1,25 @@
---
permalink: /404.html
layout: default
---
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>

2
Gemfile Normal file
View file

@ -0,0 +1,2 @@
source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins

1
_config.yml Normal file
View file

@ -0,0 +1 @@
title: EOS Sw/eden APT

59
index.md Normal file
View file

@ -0,0 +1,59 @@
The repository is hosted on https://apt.eossweden.org/
### Setup
First you must add our `gpg` key to `apt`:
```bash
$ curl https://apt.eossweden.org/key | sudo apt-key add -
```
Then you can add one or more of your repositories:
```bash
$ sudo apt-add-repository -y 'deb [arch=amd64] https://apt.eossweden.org/eosio bionic stable'
$ sudo apt-get update
```
The url is structures as follows:
```
https://apt.eossweden.org/<repository> bionic <component> [ <component1> ] [ <componentN> ]
```
one `repository` and one or more `components` needs to be specified. These are explained below.
### Contents
Here is a list of different repositories we provide. Each repository has 3 different components described below.
#### Components
| Name | Description |
| ------- | ---------------------------------------------------------------------------------------------------------- |
| stable | Releases that are properly tested and does not contain any experimental code |
| edge | Development releases that may or may not work as expected. Do not use in production evironment |
| testing | Cutting edge releases, everything ends up here first to be tested before being moved to `edge` or `stable` |
#### Repositories
| Name | Description |
| --------- | -------------------------------------- |
| main | Releases of EOS Sw/eden own products. |
| eosio | EOSIO Software |
### Example
To add the `stable` `eosio` repository the following command will do:
```bash
$ sudo apt-add-repository -y 'deb [arch=amd64] https://apt.eossweden.org/main bionic stable'
```
To add both `edge` and `stable` components for the `main` repository:
```bash
$ sudo apt-add-repository -y 'deb [arch=amd64] https://apt.eossweden.org/main bionic stable edge
```