pkgr 1.5.0 → 1.5.1
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.
- checksums.yaml +4 -4
- data/README.md +13 -3
- data/data/buildpacks/amazon-2014 +2 -1
- data/data/buildpacks/amazon-2015 +2 -1
- data/data/buildpacks/centos-6 +2 -1
- data/data/buildpacks/centos-7 +2 -1
- data/data/buildpacks/debian-6 +2 -1
- data/data/buildpacks/debian-7 +2 -1
- data/data/buildpacks/debian-8 +2 -1
- data/data/buildpacks/fedora-20 +2 -1
- data/data/buildpacks/sles-11 +2 -1
- data/data/buildpacks/sles-12 +2 -1
- data/data/buildpacks/ubuntu-10.04 +3 -2
- data/data/buildpacks/ubuntu-12.04 +2 -1
- data/data/buildpacks/ubuntu-14.04 +2 -1
- data/data/buildpacks/ubuntu-16.04 +2 -1
- data/lib/pkgr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6953d1856b4cb7378d7465a3cfb0bc8f7e21ce7
|
|
4
|
+
data.tar.gz: 4416c2783fe73bc50d797d99e64e178e183dc04e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ebeee46be1c87ce49ef306362a2f2da56007a121c2eaef55300837421a145241c51468652d8353329cdd8789777565d375fcea015012972ccf802e6dac6c33b
|
|
7
|
+
data.tar.gz: dafa9e7fc52334d49b2b536b5b0fbd253cd7ab0a5b5be6d41c190b2139ec7c05d994c1ba5a42b113e3299ef3cfebdf615d0696a049a981715c1825a7aeff268a
|
data/README.md
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
## Goal
|
|
4
4
|
|
|
5
|
-
Make debian or rpm packages out of any app, including init script, crons,
|
|
5
|
+
Make debian or rpm packages out of any app, including init script, crons,
|
|
6
|
+
logrotate, etc. Excellent way to distribute apps or command line tools without
|
|
7
|
+
complicated installation instructions.
|
|
6
8
|
|
|
7
9
|
Hosted service available at <https://packager.io/>. Free for OpenSource apps.
|
|
8
10
|
|
|
@@ -10,12 +12,19 @@ Hosted service available at <https://packager.io/>. Free for OpenSource apps.
|
|
|
10
12
|
|
|
11
13
|
* Ruby
|
|
12
14
|
* NodeJS
|
|
15
|
+
* Python
|
|
13
16
|
* Go
|
|
14
17
|
|
|
15
|
-
You can also
|
|
18
|
+
You can also try out PHP support by specifying the following buildpack:
|
|
19
|
+
`https://github.com/pkgr/heroku-buildpack-php#buildcurl`
|
|
20
|
+
|
|
21
|
+
You can also point to other buildpacks
|
|
22
|
+
([doc](https://packager.io/documentation/customizing-the-build/#buildpack)).
|
|
23
|
+
They may just work.
|
|
16
24
|
|
|
17
25
|
## Supported distributions (64bits only)
|
|
18
26
|
|
|
27
|
+
* Ubuntu 16.04 ("xenial")
|
|
19
28
|
* Ubuntu 14.04 ("trusty")
|
|
20
29
|
* Ubuntu 12.04 ("precise")
|
|
21
30
|
* Debian 8 ("jessie")
|
|
@@ -23,7 +32,8 @@ You can also point to other buildpacks ([doc](https://packager.io/documentation/
|
|
|
23
32
|
* RHEL/CentOS 7
|
|
24
33
|
* RHEL/CentOS 6
|
|
25
34
|
* Suse Linux Enterprise Server 12
|
|
26
|
-
*
|
|
35
|
+
* Suse Linux Enterprise Server 11
|
|
36
|
+
* Amazon Linux AMI 2015
|
|
27
37
|
* Amazon Linux AMI 2014
|
|
28
38
|
|
|
29
39
|
## Examples
|
data/data/buildpacks/amazon-2014
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
data/data/buildpacks/amazon-2015
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
data/data/buildpacks/centos-6
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
data/data/buildpacks/centos-7
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
data/data/buildpacks/debian-6
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
1
3
|
https://github.com/heroku/heroku-buildpack-ruby.git,CURL_CONNECT_TIMEOUT=60,CURL_TIMEOUT=300
|
|
2
|
-
https://github.com/heroku/heroku-buildpack-nodejs.git
|
data/data/buildpacks/debian-7
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
data/data/buildpacks/debian-8
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
data/data/buildpacks/fedora-20
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
data/data/buildpacks/sles-11
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
data/data/buildpacks/sles-12
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
https://github.com/
|
|
2
|
-
https://github.com/
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
3
|
+
https://github.com/heroku/heroku-buildpack-nodejs.git
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git#
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
https://github.com/pkgr/heroku-buildpack-ruby.git,
|
|
1
|
+
https://github.com/pkgr/heroku-buildpack-ruby.git#buildcurl,BUILDPACK_NODE_VERSION="0.6.8"
|
|
2
|
+
https://github.com/pkgr/heroku-buildpack-python.git#buildcurl
|
|
2
3
|
https://github.com/heroku/heroku-buildpack-nodejs.git#v58
|
|
3
4
|
https://github.com/kr/heroku-buildpack-go.git
|
data/lib/pkgr/version.rb
CHANGED