mini_portile 0.6.1 → 0.6.2
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/History.txt +5 -0
- data/LICENSE.txt +1 -1
- data/README.rdoc +2 -2
- data/Rakefile +4 -4
- data/examples/Rakefile +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8bb1f4555b185687edb331802be1e4783b39716
|
4
|
+
data.tar.gz: 4de819ec5c11062cb206751a0245380e503b37e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a1ed772f09c079a4bc2582507e92cc661703b6702c1da0e02da6ffc63664d39d06ee04635fc36c863d7e7b3c2fcc2c3afa26ffaf7b31bc6b4d2682185e71cc4
|
7
|
+
data.tar.gz: eda4c7c81eb1e275829a122ea7ce1f438df33a88dc490929aae0637064c809be625180c961f18aa8d4dc070354525f15dd36feb1335e92d57e5a4a3fe263f918
|
data/History.txt
CHANGED
data/LICENSE.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
= MiniPortile
|
2
2
|
|
3
|
-
* {Source Code}[https://github.com/
|
4
|
-
* {Bug Reports}[https://github.com/
|
3
|
+
* {Source Code}[https://github.com/flavorjones/mini_portile]
|
4
|
+
* {Bug Reports}[https://github.com/flavorjones/mini_portile/issues]
|
5
5
|
|
6
6
|
This project is a minimalistic, simplistic and stupid implementation of a port/recipe
|
7
7
|
system <b>for developers</b>.
|
data/Rakefile
CHANGED
@@ -4,7 +4,7 @@ require "rubygems/package_task"
|
|
4
4
|
GEM_SPEC = Gem::Specification.new do |s|
|
5
5
|
# basic information
|
6
6
|
s.name = "mini_portile"
|
7
|
-
s.version = "0.6.
|
7
|
+
s.version = "0.6.2"
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
9
|
|
10
10
|
# description and details
|
@@ -30,12 +30,12 @@ GEM_SPEC = Gem::Specification.new do |s|
|
|
30
30
|
s.extra_rdoc_files = %w(README.rdoc History.txt LICENSE.txt)
|
31
31
|
|
32
32
|
# project information
|
33
|
-
s.homepage = 'http://github.com/
|
33
|
+
s.homepage = 'http://github.com/flavorjones/mini_portile'
|
34
34
|
s.licenses = ['MIT']
|
35
35
|
|
36
36
|
# author and contributors
|
37
|
-
s.
|
38
|
-
s.email = '
|
37
|
+
s.authors = ['Luis Lavena', 'Mike Dalessio']
|
38
|
+
s.email = 'mike.dalessio@gmail.com'
|
39
39
|
end
|
40
40
|
|
41
41
|
Gem::PackageTask.new(GEM_SPEC) do |pkg|
|
data/examples/Rakefile
CHANGED
@@ -16,7 +16,7 @@ recipes.push sqlite3
|
|
16
16
|
|
17
17
|
# c-ares
|
18
18
|
c_ares = MiniPortile.new "c-ares", "1.7.5"
|
19
|
-
c_ares.files << "https://
|
19
|
+
c_ares.files << "https://distfiles.openknapsack.org/#{c_ares.name}/#{c_ares.name}-#{c_ares.version}.tar.gz"
|
20
20
|
|
21
21
|
recipes.push c_ares
|
22
22
|
|
metadata
CHANGED
@@ -1,19 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini_portile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis Lavena
|
8
|
+
- Mike Dalessio
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-
|
12
|
+
date: 2014-12-30 00:00:00.000000000 Z
|
12
13
|
dependencies: []
|
13
14
|
description: Simplistic port-like solution for developers. It provides a standard
|
14
15
|
and simplified way to compile against dependency libraries without messing up your
|
15
16
|
system.
|
16
|
-
email:
|
17
|
+
email: mike.dalessio@gmail.com
|
17
18
|
executables: []
|
18
19
|
extensions: []
|
19
20
|
extra_rdoc_files:
|
@@ -27,7 +28,7 @@ files:
|
|
27
28
|
- Rakefile
|
28
29
|
- examples/Rakefile
|
29
30
|
- lib/mini_portile.rb
|
30
|
-
homepage: http://github.com/
|
31
|
+
homepage: http://github.com/flavorjones/mini_portile
|
31
32
|
licenses:
|
32
33
|
- MIT
|
33
34
|
metadata: {}
|