pkgr 1.1.4pre2 → 1.1.4pre3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md
CHANGED
|
@@ -4,13 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
Make debian packages out of any app that can run on Heroku.
|
|
6
6
|
|
|
7
|
+
## Supported distributions (64bits only)
|
|
8
|
+
|
|
9
|
+
* Ubuntu precise
|
|
10
|
+
* Debian squeeze / Ubuntu lucid
|
|
11
|
+
|
|
12
|
+
Note: packages can work on Debian wheezy, provided that libssl0.9.8 is installed. It has to be done manually though, as they're no longer provided in the default repositories.
|
|
13
|
+
|
|
7
14
|
## Examples
|
|
8
15
|
|
|
9
16
|
* See <http://deb.pkgr.io/> for examples of apps packaged with `pkgr` (e.g. Gitlab, Discourse).
|
|
10
17
|
|
|
11
18
|
## Installation
|
|
12
19
|
|
|
13
|
-
Install `pkgr` on a
|
|
20
|
+
Install `pkgr` on a debian based build machine:
|
|
14
21
|
|
|
15
22
|
sudo apt-get install ruby1.9.1-full
|
|
16
23
|
sudo gem install pkgr
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
default:
|
|
2
|
+
- libssl0.9.8
|
|
2
3
|
- curl
|
|
3
4
|
- libmysqlclient-dev
|
|
4
5
|
- libpq-dev
|
|
@@ -9,11 +10,3 @@ default:
|
|
|
9
10
|
- libxslt1-dev
|
|
10
11
|
- libreadline-dev
|
|
11
12
|
- build-essential
|
|
12
|
-
debian-squeeze:
|
|
13
|
-
- libssl0.9.8
|
|
14
|
-
ubuntu-lucid:
|
|
15
|
-
- libssl0.9.8
|
|
16
|
-
debian-wheezy:
|
|
17
|
-
- libssl1.0.0
|
|
18
|
-
ubuntu-precise:
|
|
19
|
-
- libssl1.0.0
|
|
@@ -3,31 +3,28 @@ default:
|
|
|
3
3
|
- mysql-common
|
|
4
4
|
- libpq5
|
|
5
5
|
- libsqlite3-0
|
|
6
|
+
- libssl0.9.8
|
|
6
7
|
- openssl
|
|
7
8
|
- libxml2
|
|
8
9
|
- libxslt1.1
|
|
9
10
|
- libreadline5
|
|
10
11
|
- libreadline6
|
|
11
12
|
debian-squeeze:
|
|
12
|
-
- libssl0.9.8
|
|
13
13
|
- libmysqlclient16
|
|
14
14
|
- libevent-1.4-2
|
|
15
15
|
- libevent-core-1.4-2
|
|
16
16
|
- libevent-extra-1.4-2
|
|
17
17
|
ubuntu-lucid:
|
|
18
|
-
- libssl0.9.8
|
|
19
18
|
- libmysqlclient16
|
|
20
19
|
- libevent-1.4-2
|
|
21
20
|
- libevent-core-1.4-2
|
|
22
21
|
- libevent-extra-1.4-2
|
|
23
22
|
debian-wheezy:
|
|
24
|
-
- libssl1.0.0
|
|
25
23
|
- libmysqlclient18
|
|
26
24
|
- libevent-2.0-5
|
|
27
25
|
- libevent-core-2.0-5
|
|
28
26
|
- libevent-extra-2.0-5
|
|
29
27
|
ubuntu-precise:
|
|
30
|
-
- libssl1.0.0
|
|
31
28
|
- libmysqlclient18
|
|
32
29
|
- libevent-2.0-5
|
|
33
30
|
- libevent-core-2.0-5
|
data/lib/pkgr/version.rb
CHANGED