fcgi 0.8.6 → 0.8.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +6 -13
- data/ext/{fcgi/extconf.rb → extconf.rb} +0 -0
- data/ext/{fcgi/fcgi.c → fcgi.c} +0 -0
- data/{lib/fcgi.rb → fcgi.rb} +0 -0
- metadata +6 -7
- data/Makefile +0 -131
data/Rakefile
CHANGED
@@ -5,23 +5,17 @@ require 'rake/rdoctask'
|
|
5
5
|
require 'rake/gempackagetask'
|
6
6
|
require 'rake/contrib/rubyforgepublisher'
|
7
7
|
|
8
|
-
PKG_VERSION = "0.8.6"
|
8
|
+
PKG_VERSION = "0.8.6.1"
|
9
9
|
PKG_NAME = "fcgi"
|
10
10
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
11
11
|
|
12
|
-
PKG_FILES =
|
13
|
-
"lib/**/*",
|
14
|
-
"ext/*",
|
15
|
-
"ext/fcgi/fcgi.c*",
|
16
|
-
"[A-Z]*",
|
17
|
-
].exclude(/\bCVS\b|~$/)
|
12
|
+
PKG_FILES = ["ChangeLog", "Rakefile", "README", "README.signals", "fcgi.rb", "ext/fcgi.c", "ext/extconf.rb"]
|
18
13
|
|
19
14
|
|
20
15
|
# Publish beta gem
|
21
16
|
desc "Publish the gem on leetsoft"
|
22
17
|
task :publish => [:package] do
|
23
18
|
Rake::SshFilePublisher.new("leetsoft.com", "dist/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
|
24
|
-
Rake::SshFilePublisher.new("leetsoft.com", "dist/pkg", "pkg", "#{PKG_FILE_NAME}.zip").upload
|
25
19
|
Rake::SshFilePublisher.new("leetsoft.com", "dist/pkg", "pkg", "#{PKG_FILE_NAME}.tgz").upload
|
26
20
|
`ssh tobi@leetsoft.com './gemupdate'`
|
27
21
|
end
|
@@ -29,21 +23,20 @@ end
|
|
29
23
|
spec = Gem::Specification.new do |s|
|
30
24
|
s.name = PKG_NAME
|
31
25
|
s.version = PKG_VERSION
|
26
|
+
s.platform = Gem::Platform::RUBY
|
32
27
|
s.summary = %q{FastCGI ruby binding.}
|
33
|
-
s.require_paths = ["."]
|
34
28
|
s.email = %q{moonwolf@moonwolf.com}
|
35
29
|
s.homepage = %q{http://rwiki.moonwolf.com/rw-cgi.cgi?cmd=view;name=fcgi}
|
36
|
-
s.autorequire = %q{fcgi}
|
37
30
|
s.has_rdoc = true
|
38
31
|
s.files = PKG_FILES
|
39
32
|
s.extra_rdoc_files = ["README"]
|
40
|
-
s.
|
33
|
+
s.require_path = "."
|
34
|
+
s.autorequire = "fcgi"
|
35
|
+
s.extensions = ["ext/extconf.rb"]
|
41
36
|
end
|
42
37
|
|
43
38
|
Rake::GemPackageTask.new(spec) do |p|
|
44
|
-
p.gem_spec = spec
|
45
39
|
p.need_tar = true
|
46
|
-
p.need_zip = true
|
47
40
|
end
|
48
41
|
|
49
42
|
# --- Ruby forge release manager by florian gross -------------------------------------------------
|
File without changes
|
data/ext/{fcgi/fcgi.c → fcgi.c}
RENAMED
File without changes
|
data/{lib/fcgi.rb → fcgi.rb}
RENAMED
File without changes
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
|
|
3
3
|
specification_version: 1
|
4
4
|
name: fcgi
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.8.6
|
7
|
-
date: 2005-06-
|
6
|
+
version: 0.8.6.1
|
7
|
+
date: 2005-06-18
|
8
8
|
summary: FastCGI ruby binding.
|
9
9
|
require_paths:
|
10
10
|
- "."
|
@@ -26,20 +26,19 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
26
26
|
platform: ruby
|
27
27
|
authors: []
|
28
28
|
files:
|
29
|
-
- lib/fcgi.rb
|
30
|
-
- ext/fcgi
|
31
|
-
- ext/fcgi/fcgi.c
|
32
29
|
- ChangeLog
|
33
|
-
- Makefile
|
34
30
|
- Rakefile
|
35
31
|
- README
|
36
32
|
- README.signals
|
33
|
+
- fcgi.rb
|
34
|
+
- ext/fcgi.c
|
35
|
+
- ext/extconf.rb
|
37
36
|
test_files: []
|
38
37
|
rdoc_options: []
|
39
38
|
extra_rdoc_files:
|
40
39
|
- README
|
41
40
|
executables: []
|
42
41
|
extensions:
|
43
|
-
- ext/
|
42
|
+
- ext/extconf.rb
|
44
43
|
requirements: []
|
45
44
|
dependencies: []
|
data/Makefile
DELETED
@@ -1,131 +0,0 @@
|
|
1
|
-
|
2
|
-
SHELL = /bin/sh
|
3
|
-
|
4
|
-
#### Start of system configuration section. ####
|
5
|
-
|
6
|
-
srcdir = ext/fcgi
|
7
|
-
topdir = /opt/local/lib/ruby/1.8/powerpc-darwin8.1.0
|
8
|
-
hdrdir = $(topdir)
|
9
|
-
VPATH = $(srcdir)
|
10
|
-
prefix = $(DESTDIR)/opt/local
|
11
|
-
exec_prefix = $(prefix)
|
12
|
-
sitedir = $(prefix)/lib/ruby/site_ruby
|
13
|
-
rubylibdir = $(libdir)/ruby/$(ruby_version)
|
14
|
-
builddir = $(ac_builddir)
|
15
|
-
archdir = $(rubylibdir)/$(arch)
|
16
|
-
sbindir = $(exec_prefix)/sbin
|
17
|
-
vendordir = $(prefix)/lib/ruby/vendor_ruby
|
18
|
-
compile_dir = $(DESTDIR)/opt/local/var/db/dports/build/file._opt_local_var_db_dports_sources_rsync.rsync.opendarwin.org_dpupdate_dports_lang_ruby/work/ruby-1.8.2
|
19
|
-
datadir = $(prefix)/share
|
20
|
-
includedir = $(prefix)/include
|
21
|
-
infodir = $(prefix)/info
|
22
|
-
top_builddir = $(ac_top_builddir)
|
23
|
-
sysconfdir = $(prefix)/etc
|
24
|
-
mandir = $(DESTDIR)/opt/local/share/man
|
25
|
-
libdir = $(exec_prefix)/lib
|
26
|
-
sharedstatedir = $(prefix)/com
|
27
|
-
oldincludedir = $(DESTDIR)/usr/include
|
28
|
-
sitearchdir = $(sitelibdir)/$(sitearch)
|
29
|
-
vendorarchdir = $(vendorlibdir)/$(vendorarch)
|
30
|
-
bindir = $(exec_prefix)/bin
|
31
|
-
localstatedir = $(prefix)/var
|
32
|
-
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
|
-
sitelibdir = $(sitedir)/$(ruby_version)
|
34
|
-
libexecdir = $(exec_prefix)/libexec
|
35
|
-
|
36
|
-
CC = gcc
|
37
|
-
LIBRUBY = $(LIBRUBY_SO)
|
38
|
-
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
39
|
-
LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
|
40
|
-
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static
|
41
|
-
|
42
|
-
CFLAGS = -fno-common -O -pipe -I/opt/local/include -fno-common -pipe -fno-common
|
43
|
-
CPPFLAGS = -I. -I$(topdir) -I$(hdrdir) -I$(srcdir) -DHAVE_FCGIAPP_H -O -pipe -I/opt/local/include
|
44
|
-
CXXFLAGS = $(CFLAGS)
|
45
|
-
DLDFLAGS = -L/opt/local/lib
|
46
|
-
LDSHARED = cc -dynamic -bundle -undefined suppress -flat_namespace
|
47
|
-
AR = ar
|
48
|
-
EXEEXT =
|
49
|
-
|
50
|
-
RUBY_INSTALL_NAME = ruby
|
51
|
-
RUBY_SO_NAME = $(RUBY_INSTALL_NAME)
|
52
|
-
arch = powerpc-darwin8.1.0
|
53
|
-
sitearch = powerpc-darwin8.1.0
|
54
|
-
vendorarch = powerpc-darwin8.1.0
|
55
|
-
ruby_version = 1.8
|
56
|
-
ruby = /opt/local/bin/ruby
|
57
|
-
RUBY = $(ruby)
|
58
|
-
RM = $(RUBY) -run -e rm -- -f
|
59
|
-
MAKEDIRS = $(RUBY) -run -e mkdir -- -p
|
60
|
-
INSTALL_PROG = $(RUBY) -run -e install -- -vpm 0755
|
61
|
-
INSTALL_DATA = $(RUBY) -run -e install -- -vpm 0644
|
62
|
-
|
63
|
-
#### End of system configuration section. ####
|
64
|
-
|
65
|
-
|
66
|
-
LIBPATH = -L"$(libdir)"
|
67
|
-
DEFFILE =
|
68
|
-
|
69
|
-
CLEANFILES =
|
70
|
-
DISTCLEANFILES =
|
71
|
-
|
72
|
-
target_prefix =
|
73
|
-
LOCAL_LIBS =
|
74
|
-
LIBS = $(LIBRUBYARG_SHARED) -lfcgi -ldl -lobjc
|
75
|
-
OBJS = fcgi.o
|
76
|
-
TARGET = fcgi
|
77
|
-
DLLIB = $(TARGET).bundle
|
78
|
-
STATIC_LIB = $(TARGET).a
|
79
|
-
|
80
|
-
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
|
81
|
-
RUBYLIBDIR = $(sitelibdir)$(target_prefix)
|
82
|
-
RUBYARCHDIR = $(sitearchdir)$(target_prefix)
|
83
|
-
|
84
|
-
CLEANLIBS = "$(TARGET).{lib,exp,il?,tds,map}" $(DLLIB)
|
85
|
-
CLEANOBJS = "*.{o,a,s[ol],pdb,bak}"
|
86
|
-
|
87
|
-
all: $(DLLIB)
|
88
|
-
static: $(STATIC_LIB)
|
89
|
-
|
90
|
-
clean:
|
91
|
-
@$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
|
92
|
-
|
93
|
-
distclean: clean
|
94
|
-
@$(RM) Makefile extconf.h conftest.* mkmf.log
|
95
|
-
@$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
|
96
|
-
|
97
|
-
realclean: distclean
|
98
|
-
install: $(RUBYARCHDIR)
|
99
|
-
install: $(RUBYARCHDIR)/$(DLLIB)
|
100
|
-
$(RUBYARCHDIR)/$(DLLIB): $(DLLIB) $(RUBYARCHDIR)
|
101
|
-
@$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
|
102
|
-
$(RUBYARCHDIR):
|
103
|
-
@$(MAKEDIRS) $(RUBYARCHDIR)
|
104
|
-
|
105
|
-
site-install: install
|
106
|
-
|
107
|
-
.SUFFIXES: .c .cc .m .cxx .cpp .C .o
|
108
|
-
|
109
|
-
.cc.o:
|
110
|
-
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
111
|
-
|
112
|
-
.cpp.o:
|
113
|
-
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
114
|
-
|
115
|
-
.cxx.o:
|
116
|
-
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
117
|
-
|
118
|
-
.C.o:
|
119
|
-
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
120
|
-
|
121
|
-
.c.o:
|
122
|
-
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
|
123
|
-
|
124
|
-
$(DLLIB): $(OBJS)
|
125
|
-
@-$(RM) $@
|
126
|
-
$(LDSHARED) $(DLDFLAGS) $(LIBPATH) -o $(DLLIB) $(OBJS) $(LOCAL_LIBS) $(LIBS)
|
127
|
-
|
128
|
-
$(STATIC_LIB): $(OBJS)
|
129
|
-
$(AR) cru $@ $(OBJS)
|
130
|
-
@-ranlib $(DLLIB) 2> /dev/null || true
|
131
|
-
|