evaryont-arson 2.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/PKGBUILD +3 -3
- data/README.mkd +16 -16
- data/VERSION.yml +1 -1
- data/arson.gemspec +2 -2
- data/bin/arson +1 -1
- data/lib/arson/version.rb +1 -1
- metadata +2 -2
data/PKGBUILD
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Contributor: Colin 'Evaryont' Shea <evaryont@saphrix.com>
|
2
2
|
pkgname=arson
|
3
|
-
pkgver=2.1.
|
3
|
+
pkgver=2.1.2
|
4
4
|
pkgrel=1
|
5
5
|
pkgdesc="The HOT AUR search helper!"
|
6
6
|
arch=(any)
|
@@ -11,11 +11,11 @@ makedepends=(rubygems)
|
|
11
11
|
filename="evaryont-$pkgname-$pkgver.gem"
|
12
12
|
source=(http://gems.github.com/gems/$filename)
|
13
13
|
noextract=($filename)
|
14
|
-
md5sums=('
|
14
|
+
md5sums=('ae846fc3da1937d0889da5482e71e491')
|
15
15
|
|
16
16
|
build() {
|
17
17
|
cd $srcdir
|
18
|
-
gem install --ignore-dependencies -i "$pkgdir/usr/lib/ruby/gems/1.8" -n "$pkgdir/usr/bin" $filename
|
18
|
+
gem install --ignore-dependencies --no-rdoc --no-ri -i "$pkgdir/usr/lib/ruby/gems/1.8" -n "$pkgdir/usr/bin" $filename
|
19
19
|
}
|
20
20
|
|
21
21
|
|
data/README.mkd
CHANGED
@@ -19,32 +19,32 @@ You can get arson 2 ways:
|
|
19
19
|
|
20
20
|
### Searching
|
21
21
|
|
22
|
-
arson's default fall back action. If arson doesn't understand your
|
22
|
+
arson's default fall back action. If arson doesn't understand your parameters,
|
23
23
|
it will search the AUR with them (after URL escaping them) and display the
|
24
24
|
results to you, in color.
|
25
25
|
|
26
|
-
-----
|
27
|
-
|
28
26
|
### Downloading
|
29
27
|
|
30
|
-
To download a package, pass
|
31
|
-
into
|
32
|
-
|
28
|
+
To download a package, pass `-d` to arson. Any other arguments will be converted
|
29
|
+
into package names and arson will try to download a package with that exact
|
30
|
+
name. e.g.:
|
33
31
|
arson -d arson # Downloads the package "arson"
|
34
|
-
arson -d pacman color # Downloads the
|
32
|
+
arson -d pacman color # Downloads the packages "pacman" and "color"
|
35
33
|
arson won't perform any clean up on the passed parameters, so (using the 2nd
|
36
|
-
example) arson will try to find the 'pacman color'
|
37
|
-
meant the 'pacman-color' package.
|
38
|
-
|
39
|
-
-----
|
34
|
+
example) arson will try to find the 'pacman' and 'color' packages while you
|
35
|
+
probably meant the 'pacman-color' package.
|
40
36
|
|
41
37
|
### Updating
|
42
38
|
|
43
|
-
If you pass
|
44
|
-
packages (as reported by `pacman -Qm
|
39
|
+
If you pass `-u` to arson, it will search through the locally installed foreign
|
40
|
+
packages (as reported by `pacman -Qm`) and return a list of possible updates
|
45
41
|
available in the AUR.
|
46
42
|
|
47
|
-
|
48
|
-
|
49
|
-
You can not pass anything or pass -h or --help to arson to get a quick summary of
|
43
|
+
You can not pass anything or pass `-h` or `--help` to arson to get a quick summary of
|
50
44
|
these options.
|
45
|
+
|
46
|
+
## Configuration
|
47
|
+
|
48
|
+
arson has a configuration file located at `~/.arson.yaml`. Look at the
|
49
|
+
[wiki page](http://wiki.github.com/evaryont/arson/config) for details about
|
50
|
+
what each option does.
|
data/VERSION.yml
CHANGED
data/arson.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{arson}
|
5
|
-
s.version = "2.1.
|
5
|
+
s.version = "2.1.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Colin 'Evaryont' Shea"]
|
9
|
-
s.date = %q{2009-06-
|
9
|
+
s.date = %q{2009-06-17}
|
10
10
|
s.default_executable = %q{arson}
|
11
11
|
s.description = %q{The HOT AUR search helper}
|
12
12
|
s.email = %q{evaryont@saphrix.com}
|
data/bin/arson
CHANGED
data/lib/arson/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: evaryont-arson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Colin 'Evaryont' Shea
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-06-
|
12
|
+
date: 2009-06-17 00:00:00 -07:00
|
13
13
|
default_executable: arson
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|