roastbeef 0.0.3 → 0.0.4
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.txt +19 -1
- data/lib/roastbeef.rb +1 -1
- data/lib/roastbeef/package.rb +2 -2
- metadata +3 -3
data/README.txt
CHANGED
@@ -37,6 +37,8 @@ usage:
|
|
37
37
|
|
38
38
|
== but say you wanted to install it
|
39
39
|
|
40
|
+
* sudo gem install roastbeef
|
41
|
+
|
40
42
|
you can get the source like this
|
41
43
|
|
42
44
|
* git clone git://github.com/technomancy/roastbeef.git
|
@@ -46,7 +48,7 @@ or once you have it installed do this
|
|
46
48
|
|
47
49
|
* roastbeef install roastbeef
|
48
50
|
|
49
|
-
== ok i admit there is still
|
51
|
+
== ok i admit there is still work to do
|
50
52
|
|
51
53
|
* accept optional configure arguments
|
52
54
|
* allow for rebuilds to be simpler commands than initial builds
|
@@ -58,6 +60,22 @@ these things i am not going to work on but will accept patches for
|
|
58
60
|
* support for hg, darcs, tarballs?
|
59
61
|
* add more packages
|
60
62
|
|
63
|
+
== watch out fellows
|
64
|
+
|
65
|
+
the version of rubygems that you get when you run "sudo apt-get
|
66
|
+
install rubygems" on an ubuntu or debian box puts things in
|
67
|
+
inconvenient places. your life will be easier if you do not use it.
|
68
|
+
grab the official build instead and you will save yourself pain:
|
69
|
+
http://rubyforge.org/frs/download.php/29548/rubygems-1.0.1.tgz
|
70
|
+
|
71
|
+
according to the debian packagers this brokenness is a feature not a
|
72
|
+
bug (something about LFS compliance) but it means that many many
|
73
|
+
rubygems will just not work without manually modifying your $PATH for
|
74
|
+
every user that wants to take advantage of them. see below:
|
75
|
+
|
76
|
+
http://pkg-ruby-extras.alioth.debian.org/rubygems.html
|
77
|
+
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=448639
|
78
|
+
|
61
79
|
== why did you pick a name such as roast beef
|
62
80
|
|
63
81
|
roast beef is a character in the comic strip known as achewood by
|
data/lib/roastbeef.rb
CHANGED
data/lib/roastbeef/package.rb
CHANGED
@@ -30,7 +30,7 @@ should do control-c to cancel.") || STDIN.gets if unremovable?
|
|
30
30
|
if unremovable?
|
31
31
|
puts "man i can not remove this package for you. have to do that yourself. to be fair I did warn you."
|
32
32
|
else
|
33
|
-
system((["cd #{path}"] + remove + ['cd', "rm -rf #{path}"]).join(' && '))
|
33
|
+
system((["cd #{path}"] + @remove + ['cd', "rm -rf #{path}"]).join(' && '))
|
34
34
|
end
|
35
35
|
end
|
36
36
|
|
@@ -51,7 +51,7 @@ should do control-c to cancel.") || STDIN.gets if unremovable?
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def unremovable?
|
54
|
-
remove.to_s == 'false'
|
54
|
+
@remove.to_s == 'false'
|
55
55
|
end
|
56
56
|
|
57
57
|
def checked_out?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: roastbeef
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phil Hagelberg
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-03-
|
12
|
+
date: 2008-03-16 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.5.
|
22
|
+
version: 1.5.1
|
23
23
|
version:
|
24
24
|
description: "uh ok so roast beef is some kind of package manager that is for bleeding-edge programs. so basically it does not have its own repositories. instead it just will download source from the upstream repository and will do all the necessary steps to install . you get things that are as fresh as possible. i am talking about really fresh like your eggs and milk. roast beef saves you from having to look up the repository locations for all the stuff you want to build from source. it also abstracts away the differences in build processes. say you want the latest version of such a package as gnu emacs. so you grab the source but you know emacs is a little different from other packages and requires \"make bootstrap\" in between the configure and make step. with roastbeef all the complexity of such things is hidden from you. and if you have a lot of stuff built from source you can keep them all up to date with a single command. the motivations behind this are made more clear in a blog post: http://technomancy.us/106 == man why you even got to do a thing"
|
25
25
|
email: technomancy@gmail.com
|