Tamar 0.7.3 → 0.7.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,29 @@
1
+ Source: rubyluabridge
2
+ Section: ruby
3
+ Priority: optional
4
+ Maintainer: Athena Capital Research <acr-debian@athenacr.com>
5
+ Uploaders: Roberto C. Sanchez <roberto@connexer.com>
6
+ Build-Depends: debhelper (>= 5), liblua5.1-0-dev, rake, ruby1.8-dev, rubygems1.8, libboost1.38-dev | libboost1.39-dev | libboost1.40-dev | libboost1.41-dev | libboost1.42-dev
7
+ Standards-Version: 3.8.3
8
+ Homepage: http://rubyluabridge.rubyforge.org
9
+ Vcs-Browser: http://rubyluabridge.rubyforge.org/svn/debian/rubyluabridge/trunk
10
+ Vcs-Svn: svn://rubyforge.org/var/svn/rubyluabridge/debian/rubyluabridge/trunk
11
+
12
+ Package: libluabridge-ruby1.8
13
+ Architecture: any
14
+ Depends: ${shlibs:Depends}, ${misc:Depends}, liblua5.1-0
15
+ Description: access Lua from Ruby (Ruby 1.8)
16
+ RubyLuaBridge is a seamless bridge between Ruby and Lua. It is a C
17
+ extension that uses the actual Lua C library.
18
+ .
19
+ This package is built for Ruby 1.8.
20
+
21
+ Package: libluabridge-ruby
22
+ Architecture: all
23
+ Depends: libluabridge-ruby1.8
24
+ Description: access Lua from Ruby
25
+ RubyLuaBridge is a seamless bridge between Ruby and Lua. It is a C
26
+ extension that uses the actual Lua C library.
27
+ .
28
+ This generic package depends on the one built against the current Ruby.
29
+
@@ -0,0 +1,34 @@
1
+ Original source may be found at: http://rubyforge.org/projects/rubyluabridge/
2
+
3
+ Files: debian/*
4
+ Copyright: © 2007 Wes Chow <wchow@athenacr.com>
5
+ © 2008 Roberto C. Sanchez <roberto@connexer.com>
6
+ License: BSD-3
7
+
8
+ Files: *
9
+ Copyright: © 2007 Evan Wies <evan@neomantra.net>
10
+ License: BSD-3
11
+ Redistribution and use in source and binary forms, with or without
12
+ modification, are permitted provided that the following conditions are met:
13
+
14
+ * Redistributions of source code must retain the above copyright notice,
15
+ this list of conditions and the following disclaimer.
16
+ * Redistributions in binary form must reproduce the above copyright
17
+ notice, this list of conditions and the following disclaimer in the
18
+ documentation and/or other materials provided with the distribution.
19
+ * Neither the name of the neomantra nor the names of its contributors may
20
+ be used to endorse or promote products derived from this software
21
+ without specific prior written permission.
22
+
23
+ THIS SOFTWARE IS PROVIDED BY Evan Wies ``AS IS’’ AND ANY EXPRESS OR IMPLIED
24
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
26
+ EVENT SHALL Evan Wies BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
30
+ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
+ POSSIBILITY OF SUCH DAMAGE.
33
+ On Debian systems, the complete text of the BSD License can be
34
+ found in `/usr/share/common-licenses/BSD'.
@@ -0,0 +1,11 @@
1
+ Document: libluabridge-ruby1.8
2
+ Title: RubyLuaBridge Manual
3
+ Author: Evan Wies <evan@neomantra.net>
4
+ Abstract: This manual describes how to use
5
+ RubyLuaBridge to be able to access Ruby code
6
+ from Lua and vice versa.
7
+ Section: Programming/Ruby
8
+
9
+ Format: HTML
10
+ Index: /usr/share/doc/libluabridge-ruby1.8/html/index.html
11
+ Files: /usr/share/doc/libluabridge-ruby1.8/html/*.html
@@ -0,0 +1,2 @@
1
+ README
2
+ doc/html
@@ -0,0 +1 @@
1
+ usr/lib/ruby/1.8/*/rubyluabridge.so
@@ -0,0 +1,65 @@
1
+ #!/usr/bin/make -f
2
+ # -*- makefile -*-
3
+ # Sample debian/rules that uses debhelper.
4
+ # This file was originally written by Joey Hess and Craig Small.
5
+ # As a special exception, when this file is copied by dh-make into a
6
+ # dh-make output file, you may use that output file without restriction.
7
+ # This special exception was added by Craig Small in version 0.37 of dh-make.
8
+
9
+ # Uncomment this to turn on verbose mode.
10
+ #export DH_VERBOSE=1
11
+
12
+
13
+
14
+ build: build-stamp
15
+ build-stamp:
16
+ dh_testdir
17
+ build/extconf_ubuntu.sh
18
+ rake
19
+ $(MAKE)
20
+
21
+ clean:
22
+ dh_testdir
23
+ dh_testroot
24
+ rm -f build-stamp configure-stamp
25
+ [ ! -f Makefile ] || $(MAKE) clean
26
+ [ ! -f Makefile ] || $(MAKE) distclean
27
+ -rake clean
28
+ dh_clean
29
+
30
+ install: build
31
+ dh_testdir
32
+ dh_testroot
33
+ dh_clean -k
34
+ dh_installdirs
35
+ $(MAKE) DESTDIR=$(CURDIR)/debian/rubyluabridge install
36
+ mkdir -p $(CURDIR)/debian/rubyluabridge/usr/lib/ruby/1.8/
37
+ mv $(CURDIR)/debian/rubyluabridge/usr/local/lib/site_ruby/1.8/* $(CURDIR)/debian/rubyluabridge/usr/lib/ruby/1.8/
38
+ rm -rf $(CURDIR)/debian/rubyluabridge/usr/local
39
+
40
+
41
+ # Build architecture-independent files here.
42
+ binary-indep: build install
43
+ # We have nothing to do by default.
44
+
45
+ # Build architecture-dependent files here.
46
+ binary-arch: build install
47
+ dh_testdir
48
+ dh_testroot
49
+ dh_installchangelogs
50
+ dh_installdocs
51
+ dh_installexamples
52
+ dh_install --sourcedir=$(CURDIR)/debian/rubyluabridge
53
+ dh_installman
54
+ dh_link
55
+ dh_strip
56
+ dh_compress
57
+ dh_fixperms
58
+ dh_installdeb
59
+ dh_shlibdeps
60
+ dh_gencontrol
61
+ dh_md5sums
62
+ dh_builddeb
63
+
64
+ binary: binary-indep binary-arch
65
+ .PHONY: build clean binary-indep binary-arch binary install configure
@@ -0,0 +1,2 @@
1
+ version=3
2
+ http://rubyforge.org/frs/?group_id=3393 .*/rubyluabridge-(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)