[DRE-commits] r5584 - in trunk/dh-make-ruby: . debian
Deepak Tripathi
deepak-guest at alioth.debian.org
Mon Jun 14 17:17:09 UTC 2010
Author: deepak-guest
Date: 2010-06-14 17:17:04 +0000 (Mon, 14 Jun 2010)
New Revision: 5584
Added:
trunk/dh-make-ruby/debian/
trunk/dh-make-ruby/debian/changelog
trunk/dh-make-ruby/debian/compat
trunk/dh-make-ruby/debian/control
trunk/dh-make-ruby/debian/dh-make-ruby.dirs
trunk/dh-make-ruby/debian/rules
Log:
[svn-inject] Applying Debian modifications (0.1.0-1) to trunk
Property changes on: trunk/dh-make-ruby/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: trunk/dh-make-ruby/debian/changelog
===================================================================
--- trunk/dh-make-ruby/debian/changelog (rev 0)
+++ trunk/dh-make-ruby/debian/changelog 2010-06-14 17:17:04 UTC (rev 5584)
@@ -0,0 +1,6 @@
+dh-make-ruby (0.1.0-1) UNRELEASED; urgency=low
+
+ * Initial Release.
+
+ -- Deepak Tripathi <apenguinlinux at gmail.com> Mon, 14 Jun 2010 22:41:10 +0530
+
Added: trunk/dh-make-ruby/debian/compat
===================================================================
--- trunk/dh-make-ruby/debian/compat (rev 0)
+++ trunk/dh-make-ruby/debian/compat 2010-06-14 17:17:04 UTC (rev 5584)
@@ -0,0 +1 @@
+4
Added: trunk/dh-make-ruby/debian/control
===================================================================
--- trunk/dh-make-ruby/debian/control (rev 0)
+++ trunk/dh-make-ruby/debian/control 2010-06-14 17:17:04 UTC (rev 5584)
@@ -0,0 +1,12 @@
+Source: dh-make-ruby
+Section: ruby
+Priority: optional
+Maintainer: Deepak Tripathi <apenguinlinux at gmail.com>
+Build-Depends: debhelper (>= 5), ruby1.8, ruby1.8-dev
+Standards-Version: 3.8.4
+
+Package: dh-make-ruby
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby1.8
+Description: Tool to create debian package from source.
+ This tools is to create ruby package from source.
Added: trunk/dh-make-ruby/debian/dh-make-ruby.dirs
===================================================================
--- trunk/dh-make-ruby/debian/dh-make-ruby.dirs (rev 0)
+++ trunk/dh-make-ruby/debian/dh-make-ruby.dirs 2010-06-14 17:17:04 UTC (rev 5584)
@@ -0,0 +1 @@
+usr/lib/ruby/1.8
Added: trunk/dh-make-ruby/debian/rules
===================================================================
--- trunk/dh-make-ruby/debian/rules (rev 0)
+++ trunk/dh-make-ruby/debian/rules 2010-06-14 17:17:04 UTC (rev 5584)
@@ -0,0 +1,93 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ # Add here commands to configure the package.
+ ruby1.8 setup.rb config --prefix=$(CURDIR)/debian/dh-make-ruby/usr --datadir=$(CURDIR)/debian/dh-make-ruby/usr/share/dh-make-ruby
+
+ touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp
+ dh_testdir
+
+ # Add here commands to compile the package.
+ ruby1.8 setup.rb setup
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ # Add here commands to clean up after the build process.
+ ruby1.8 setup.rb clean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/daemonize.
+ ruby1.8 setup.rb install
+ mv debian/dh-make-ruby/usr/local/lib/site_ruby/1.8/* debian/dh-make-ruby/usr/lib/ruby/1.8/ || true
+ rm -rf debian/dh-make-ruby/usr/local
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_installexamples
+# dh_install
+# dh_installmenu
+# dh_installdebconf
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_installinit
+# dh_installcron
+# dh_installinfo
+ dh_installman
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_makeshlibs
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
Property changes on: trunk/dh-make-ruby/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
More information about the Pkg-ruby-extras-commits
mailing list