Skip to content

Commit dc15c1f

Browse files
committedMay 20, 2011
Add few pages to documentation
1 parent 3d562ee commit dc15c1f

10 files changed

+136
-15
lines changed
 

‎_layouts/documentation.html

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
{% endfor %}
3333
</div>
3434

35+
{% if page.stub %}
36+
<div class="warning">This page is a <b>stub</b>, please help expanding and cleaning it.</div>
37+
{% endif %}
38+
3539
<div class="documentation">
3640
{{ content }}
3741
</div>

‎about.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: About Distrø
33
layout: default
44
---
55

6-
Distrø aims to be THE distribution.
6+
Distrø aims to be **THE** distribution.
77

88
Kernel agnostic, libc agnostic, compiler agnostic.
99

‎css/default.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/default.scss

+8
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,14 @@ ul.contents {
144144
}
145145
}
146146

147+
.warning {
148+
text-align: center;
149+
margin-top: 5px;
150+
color: #b21818;
151+
border-bottom: 2px solid #dd1818;
152+
border-top: 2px solid #dd1818;
153+
}
154+
147155
.post {
148156
.header {
149157
h2 {

‎docs/en/general-concepts.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: General Concepts
3+
layout: documentation
4+
5+
lang: en
6+
---
7+
8+
This section covers some general concepts with which you should be familiar when working
9+
with Distrø.
10+
11+
{:class="contents"}
12+
+ [Packages](/docs/en/general-concepts/packages.html)
13+
+ [Repositories](/docs/en/general-concepts/repositories.html)

‎docs/en/general-concepts/packages.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: Packages
3+
layout: documentation
4+
5+
lang: en
6+
stub: true
7+
---
8+
9+
Packages
10+
========
11+
In Distrø packages have various variables, like `description`, `homepage`, `license` and such,
12+
these variables are used by packo to help you find the packages you want to install.
13+
14+
Tags
15+
----
16+
Having tags instead of categories makes searching and definition a lot easier, just think about
17+
the fact that for example, you can mask all packges made by GNU, and use in this way bsd alternatives
18+
or something else.
19+
20+
You can apply various configuration to packages with certain tags, in this way configuration
21+
becomes super easy.
22+
23+
Features
24+
--------
25+
Features are similiar to Gentoo USE flags, they specify (who would know) features for a package,
26+
for example if a package can be installed with a gtk interface you can set the gtk feature (in
27+
the environment or in your profile) and it will be installed with it.
28+
29+
Each package has a set of enableable features and packages can define what features can be enabled
30+
at the same time to not get broken packages.
31+
32+
Flavor
33+
------
34+
The flavor of a package is somewhat similar to features, but it's a general change to the package,
35+
for example there are some default flavors that can be set, `vanilla` means the package has no
36+
additional patches and contains what it would contain with a standard installation, then you can
37+
set `documentation` to enable the documentation, or it will be stripped from the package, same
38+
goes for `headers`. Then there's the `debug` flavor that adds debug symbols to the package.
39+
40+
Every package can set different flavors, for example `rubinius-9999` has the flavor `hydra` which
41+
uses the hydra branch instead of master.
+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: Repositories
3+
layout: documentation
4+
5+
lang: en
6+
stub: true
7+
---
8+
9+
Repositories
10+
============
11+
Distrø and packø are designed to easily support multiple repositories from different sources
12+
and types.
13+
14+
All of this because I believe that everyone should be able to easily create alternatives and
15+
completely different distributions from the same technology.
16+
17+
Obviously th choices of the package manager aren't changeable, which means you have to like Ruby
18+
or deal with it.
19+
20+
There are three types of repositories, each one with their special capabilities.
21+
22+
Source repositories
23+
-------------------
24+
Source repositories are the base of Distrø and they're pretty similar to Gentoo trees.
25+
26+
When installing from a source repository the package gets compiled and transformed into an
27+
intallable package (usually a `.pko`).
28+
29+
The binary package is then installed like it was coming from a binary package.
30+
31+
Binary repositories
32+
-------------------
33+
Binary repositories get generated from source repositories and usually have only limited sets
34+
of features/flavor and just a single version.
35+
36+
To install from a binary repository you have to specify the binary flavor or specify to install
37+
a package from a specific repository.
38+
39+
Multiple binary repositories can easily co-exist if you specify as default `REPOSITORY` the
40+
default binary repository you're using, for example if you use the stable core2 repository
41+
you can add the unstable core2 repository and install only few selected packages from that
42+
repository without moving everything to unstable when you update.
43+
44+
Virtual repositories
45+
--------------------
46+
A virtual repository is a Ruby script that states how to look for packages, dependencies and how to
47+
install and uninstall a package.
48+
49+
Virtual repositories are really useful for wrapping other package managers to use by packo, for example
50+
CPAN or gem, usually other package managers have to create by hand ebuilds/whatever for every wanted
51+
gem, with packø you can simply add the virtual/gem repository and install packages through gem
52+
transparently, dependencies and such are then coordinated by packø in an automagical way.

‎docs/en/index.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ Contents
2727

2828
{:class="contents"}
2929
* [Contributing](/docs/en/contributing.html#documentation)
30+
* [General concepts](/docs/en/general-concepts.html)
31+
* + [Packages](/docs/en/general-concepts/packages.html)
32+
* + [Repositories](/docs/en/general-concepts/repositories.html)
3033
* [Packø](/docs/packo/index.html)
3134
* + [Quickstart Rbuild Guide](/docs/en/packo/quickstart.html)
32-
* + [General concepts](/docs/en/packo/general-concepts.html)
3335
* + [Building Systems](/docs/en/packo/building-systems.html)

‎docs/en/packo/building-systems.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Building Systems
3+
layout: documentation
4+
5+
lang: en
6+
---
7+
8+
This section covers various building systems which are needed to know when writing
9+
rbuilds.
10+
11+
- [Autotools](/docs/en/packo/building-systems/autotools.html)
12+
- [CMake](/docs/en/packo/building-systems/cmake.html)
13+
- [Rake](/docs/en/packo/building-systems/rake.html)

‎docs/en/packo/general-concepts.md

-12
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.