[DRE-commits] r4295 - trunk/soap4r/debian

Ryan Niebur ryan at alioth.debian.org
Sun Nov 1 23:17:58 UTC 2009


Author: ryan
Date: 2009-11-01 23:17:58 +0000 (Sun, 01 Nov 2009)
New Revision: 4295

Added:
   trunk/soap4r/debian/soap4r.docs
   trunk/soap4r/debian/soap4r.examples
Removed:
   trunk/soap4r/debian/docs
   trunk/soap4r/debian/examples
Modified:
   trunk/soap4r/debian/changelog
   trunk/soap4r/debian/compat
   trunk/soap4r/debian/control
   trunk/soap4r/debian/rules
Log:
whee

Modified: trunk/soap4r/debian/changelog
===================================================================
--- trunk/soap4r/debian/changelog	2009-11-01 23:07:00 UTC (rev 4294)
+++ trunk/soap4r/debian/changelog	2009-11-01 23:17:58 UTC (rev 4295)
@@ -3,8 +3,11 @@
   * adopt package (Closes: 532929)
   * add watch file
   * new upstream release
+  * switch to cdbs
+  * add actual packages
+  * clean stuff up
 
- -- Ryan Niebur <ryan at debian.org>  Sun, 01 Nov 2009 04:32:28 -0800
+ -- Ryan Niebur <ryan at debian.org>  Sun, 01 Nov 2009 15:14:40 -0800
 
 soap4r (1.5.5-1) unstable; urgency=low
 

Modified: trunk/soap4r/debian/compat
===================================================================
--- trunk/soap4r/debian/compat	2009-11-01 23:07:00 UTC (rev 4294)
+++ trunk/soap4r/debian/compat	2009-11-01 23:17:58 UTC (rev 4295)
@@ -1 +1 @@
-4
+7

Modified: trunk/soap4r/debian/control
===================================================================
--- trunk/soap4r/debian/control	2009-11-01 23:07:00 UTC (rev 4294)
+++ trunk/soap4r/debian/control	2009-11-01 23:17:58 UTC (rev 4295)
@@ -3,14 +3,42 @@
 Priority: optional
 Maintainer: Ryan Niebur <ryan at debian.org>
 Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
-Build-Depends: debhelper (>> 4.0.0)
+Build-Depends: debhelper (> 7), ruby-pkg-tools, cdbs
 Vcs-Svn: svn://svn.debian.org/svn/pkg-ruby-extras/trunk/soap4r/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-ruby-extras/trunk/soap4r/
-Standards-Version: 3.6.1
+Standards-Version: 3.8.3
 
 Package: soap4r
 Architecture: all
-Depends: libruby1.8
+Depends: libruby1.8 | libsoap4r-ruby1.8
+Suggests: libsoap4r-ruby1.8
 Description: SOAP1.1 implementation in ruby
  This is a dummy package to provide SOAP 1.1 implementation for
- default version of ruby (ruby1.8). 
+ default version of ruby (ruby1.8). It also contains examples
+ and documentation.
+
+Package: libsoap4r-ruby
+Architecture: all
+Depends: libsoap4r-ruby1.8
+Description: SOAP1.1 implementation in ruby [default ruby version]
+ soap4r is an implementation of SOAP 1.1 for Ruby.
+ .
+ This is a dependency package on libsoap4r-ruby1.8.
+
+Package: libsoap4r-ruby1.8
+Architecture: all
+Depends: libhttpclient-ruby1.8, libruby1.8
+Description: SOAP1.1 implementation in ruby [ruby 1.8]
+ soap4r is an implementation of SOAP 1.1 for Ruby.
+ .
+ This package is built for ruby 1.8.
+
+Package: libsoap4r-ruby1.9
+Architecture: all
+Depends: libhttpclient-ruby1.9, libruby1.9
+Description: SOAP1.1 implementation in ruby [ruby 1.9]
+ soap4r is an implementation of SOAP 1.1 for Ruby.
+ .
+ This package is built for ruby 1.9.
+
+

Deleted: trunk/soap4r/debian/docs
===================================================================
--- trunk/soap4r/debian/docs	2009-11-01 23:07:00 UTC (rev 4294)
+++ trunk/soap4r/debian/docs	2009-11-01 23:17:58 UTC (rev 4295)
@@ -1,4 +0,0 @@
-ToDo
-RELEASE_en.html
-rubyStyle.css
-

Deleted: trunk/soap4r/debian/examples
===================================================================
--- trunk/soap4r/debian/examples	2009-11-01 23:07:00 UTC (rev 4294)
+++ trunk/soap4r/debian/examples	2009-11-01 23:17:58 UTC (rev 4295)
@@ -1,2 +0,0 @@
-sample
-test

Modified: trunk/soap4r/debian/rules
===================================================================
--- trunk/soap4r/debian/rules	2009-11-01 23:07:00 UTC (rev 4294)
+++ trunk/soap4r/debian/rules	2009-11-01 23:17:58 UTC (rev 4295)
@@ -1,82 +1,6 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
 
-# This is the debhelper compatibility version to use.
-
-ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -g
-endif
-ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
-	INSTALL_PROGRAM += -s
-endif
-
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	# Add here commands to configure the package.
-	touch configure-stamp
-
-
-build: build-stamp
-
-build-stamp: configure-stamp 
-	dh_testdir
-	# Add here commands to compile the package.
-	#/usr/bin/docbook-to-man debian/soap4r.sgml > soap4r.1
-	touch build-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-	# Add here commands to clean up after the build process.
-	-$(MAKE) clean
-	dh_clean
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-	# Add here commands to install the package into debian/soap4r.
-
-# Build architecture-independent files here.
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-#	dh_installdebconf	
-	dh_installdocs
-	dh_installexamples
-#	dh_installmenu
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
-#	dh_installcron
-#	dh_installman
-#	dh_installinfo
-#	dh_undocumented
-	dh_installchangelogs 
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-#	dh_makeshlibs
-	dh_installdeb
-#	dh_perl
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-# Build architecture-dependent files here.
-binary-arch: build install
-# We have nothing to do by default.
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+DEB_RUBY_LIBDIR=$(strip $(shell ruby$(cdbs_ruby_ver) -rrbconfig -e 'puts Config::CONFIG["vendorlibdir"]'))

Copied: trunk/soap4r/debian/soap4r.docs (from rev 4291, trunk/soap4r/debian/docs)
===================================================================
--- trunk/soap4r/debian/soap4r.docs	                        (rev 0)
+++ trunk/soap4r/debian/soap4r.docs	2009-11-01 23:17:58 UTC (rev 4295)
@@ -0,0 +1,3 @@
+RELEASE_en.html
+rubyStyle.css
+

Copied: trunk/soap4r/debian/soap4r.examples (from rev 4291, trunk/soap4r/debian/examples)
===================================================================
--- trunk/soap4r/debian/soap4r.examples	                        (rev 0)
+++ trunk/soap4r/debian/soap4r.examples	2009-11-01 23:17:58 UTC (rev 4295)
@@ -0,0 +1,2 @@
+sample
+test




More information about the Pkg-ruby-extras-commits mailing list