krb5 0.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.
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/krb5/version', __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = 'krb5'
6
+ s.version = Krb5::VERSION
7
+ s.platform = Gem::Platform::RUBY
8
+ s.date = Time.now.strftime('%Y-%m-%d')
9
+ s.summary = 'Kerberos binding for Ruby'
10
+ s.homepage = 'http://github.com/dvyjones/krb5'
11
+ s.email = 'dvyjones@binaryhex.com'
12
+ s.authors = [ 'Henrik Hodne', 'Chris Lalancette' ]
13
+
14
+ s.files = `git ls-files`.split("\n")
15
+ s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
16
+ s.require_path = 'lib'
17
+
18
+ s.extensions << 'ext/extconf.rb'
19
+
20
+ s.add_development_dependency 'bundler', '>= 1.0.0'
21
+ end
@@ -0,0 +1,3 @@
1
+ module Krb5
2
+ VERSION = Version = '0.1'
3
+ end
@@ -0,0 +1,36 @@
1
+ have_library: checking for krb5_init_context() in -lkrb5... -------------------- yes
2
+
3
+ "gcc -o conftest -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1/x86_64-darwin10.4.0 -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1/ruby/backward -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1 -Iext -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wpointer-arith -Wwrite-strings -Wno-missing-field-initializers -Wshorten-64-to-32 -Wno-long-long -fno-common -pipe conftest.c -L. -L/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/lib -L. -lruby.1.9.1-static -lpthread -ldl -lobjc "
4
+ checked program was:
5
+ /* begin */
6
+ 1: #include "ruby.h"
7
+ 2:
8
+ 3: int main() {return 0;}
9
+ /* end */
10
+
11
+ "gcc -o conftest -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1/x86_64-darwin10.4.0 -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1/ruby/backward -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1 -Iext -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wpointer-arith -Wwrite-strings -Wno-missing-field-initializers -Wshorten-64-to-32 -Wno-long-long -fno-common -pipe conftest.c -L. -L/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/lib -L. -lruby.1.9.1-static -lkrb5 -lpthread -ldl -lobjc "
12
+ conftest.c: In function ‘t’:
13
+ conftest.c:5: error: ‘krb5_init_context’ undeclared (first use in this function)
14
+ conftest.c:5: error: (Each undeclared identifier is reported only once
15
+ conftest.c:5: error: for each function it appears in.)
16
+ checked program was:
17
+ /* begin */
18
+ 1: #include "ruby.h"
19
+ 2:
20
+ 3: /*top*/
21
+ 4: int main() {return 0;}
22
+ 5: int t() { void ((*volatile p)()); p = (void ((*)()))krb5_init_context; return 0; }
23
+ /* end */
24
+
25
+ "gcc -o conftest -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1/x86_64-darwin10.4.0 -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1/ruby/backward -I/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/include/ruby-1.9.1 -Iext -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wpointer-arith -Wwrite-strings -Wno-missing-field-initializers -Wshorten-64-to-32 -Wno-long-long -fno-common -pipe conftest.c -L. -L/Users/dvyjones/.rvm/rubies/ruby-1.9.2-p0/lib -L. -lruby.1.9.1-static -lkrb5 -lpthread -ldl -lobjc "
26
+ checked program was:
27
+ /* begin */
28
+ 1: #include "ruby.h"
29
+ 2:
30
+ 3: /*top*/
31
+ 4: int main() {return 0;}
32
+ 5: int t() { krb5_init_context(); return 0; }
33
+ /* end */
34
+
35
+ --------------------
36
+
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: krb5
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ version: "0.1"
9
+ platform: ruby
10
+ authors:
11
+ - Henrik Hodne
12
+ - Chris Lalancette
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-11-27 00:00:00 -08:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: bundler
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 0
31
+ - 0
32
+ version: 1.0.0
33
+ type: :development
34
+ version_requirements: *id001
35
+ description:
36
+ email: dvyjones@binaryhex.com
37
+ executables: []
38
+
39
+ extensions:
40
+ - ext/extconf.rb
41
+ extra_rdoc_files: []
42
+
43
+ files:
44
+ - COPYING
45
+ - Makefile
46
+ - README
47
+ - Rakefile
48
+ - TODO
49
+ - ext/extconf.rb
50
+ - ext/ruby_krb5.c
51
+ - krb5.gemspec
52
+ - lib/krb5/version.rb
53
+ - mkmf.log
54
+ has_rdoc: true
55
+ homepage: http://github.com/dvyjones/krb5
56
+ licenses: []
57
+
58
+ post_install_message:
59
+ rdoc_options: []
60
+
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ none: false
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ segments:
69
+ - 0
70
+ version: "0"
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ segments:
77
+ - 0
78
+ version: "0"
79
+ requirements: []
80
+
81
+ rubyforge_project:
82
+ rubygems_version: 1.3.7
83
+ signing_key:
84
+ specification_version: 3
85
+ summary: Kerberos binding for Ruby
86
+ test_files: []
87
+