[DRE-commits] [SCM] ruby-eb.git branch, master, updated. debian/2.6-1.1-7-gfd13a5c
Taku YASUI
tach at debian.org
Tue May 8 08:02:17 UTC 2012
The following commit has been merged in the master branch:
commit e8b054a8fce03320149d43b0fa275fb2dcdafe61
Author: Taku YASUI <tach at debian.org>
Date: Tue May 8 16:38:07 2012 +0900
Ruby package transition
* Ruby package transition
- Change package name to ruby-eb
* Change maintainer to Debian Ruby Extras Maintainers.
- akira yamada <akira at debian.org> and Taku YASUI <tach at debian.org>
are uploaders.
* Commit debian source to git.debian.org.
- git://git.debian.org/pkg-ruby-extras/ruby-eb.git
- Add Vcs metadata to debian/control.
* Change source format to '3.0 (quilt)'.
* Bump Standards-Verson to 3.9.3.
* Use gem2deb to build package.
diff --git a/debian/changelog b/debian/changelog
index a171120..7ad0434 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+ruby-eb (2.6-2) unstable; urgency=low
+
+ * Ruby package transition
+ - Change package name to ruby-eb
+ * Change maintainer to Debian Ruby Extras Maintainers.
+ - akira yamada <akira at debian.org> and Taku YASUI <tach at debian.org>
+ are uploaders.
+ * Commit debian source to git.debian.org.
+ - git://git.debian.org/pkg-ruby-extras/ruby-eb.git
+ - Add Vcs metadata to debian/control.
+ * Change source format to '3.0 (quilt)'.
+ * Bump Standards-Verson to 3.9.3.
+ * Use gem2deb to build package.
+
+ -- Taku YASUI <tach at debian.org> Tue, 08 May 2012 16:33:22 +0900
+
libeb-ruby (2.6-1.1) unstable; urgency=medium
* Non-maintainer upload.
diff --git a/debian/compat b/debian/compat
index 7ed6ff8..45a4fb7 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-5
+8
diff --git a/debian/control b/debian/control
index 126188d..06ba403 100644
--- a/debian/control
+++ b/debian/control
@@ -1,15 +1,31 @@
Source: libeb-ruby
Section: ruby
Priority: extra
-Maintainer: akira yamada <akira at debian.org>
-Build-Depends: debhelper, libeb16-dev, zlib1g-dev, ruby1.8, ruby1.8-dev
-Standards-Version: 3.8.1
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: akira yamada <akira at debian.org>, Taku YASUI <tach at debian.org>
+Build-Depends: debhelper (>= 8), quilt, gem2deb, libeb16-dev, zlib1g-dev
+Standards-Version: 3.9.3
+Homepage: http://rubyeb.sourceforge.net/
+Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-eb.git
+Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-eb.git;a=summary
+XS-Ruby-Versions: all
-Package: libeb-ruby1.8
+Package: ruby-eb
Architecture: any
-Depends: ${shlibs:Depends}
-Description: EB library interface for the Ruby 1.8
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Provides: libeb-ruby1.8
+Replaces: libeb-ruby1.8 (<< 2.6-2~)
+Breaks: libeb-ruby1.8 (<< 2.6-2~)
+XB-Ruby-Versions: ${ruby:Versions}
+Description: EB library interface for the Ruby
Extension Library for EB Library
<URL:http://www.sra.co.jp/people/m-kasahr/eb/> which is for accessing
CD-ROM books(EPWING/EB etc.).
+Package: libeb-ruby1.8
+Section: oldlibs
+Architecture: all
+Depends: ${misc:Depends}, ruby-eb
+Description: EB library interface for the Ruby (transitional package)
+ This is a dummy transition package that can be safely removed once no
+ package depend on it.
diff --git a/debian/dirs b/debian/dirs
deleted file mode 100644
index 01ec994..0000000
--- a/debian/dirs
+++ /dev/null
@@ -1 +0,0 @@
-usr/lib/ruby
diff --git a/debian/docs b/debian/ruby-eb.docs
similarity index 100%
rename from debian/docs
rename to debian/ruby-eb.docs
diff --git a/debian/examples b/debian/ruby-eb.examples
similarity index 100%
rename from debian/examples
rename to debian/ruby-eb.examples
diff --git a/debian/rules b/debian/rules
index 6da5f2e..a5e7dc8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,79 +1,15 @@
#!/usr/bin/make -f
-# -*- mode: makefile; -*-
-# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
-
-# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
-
-RUBY := ruby1.8
-
-# This is the debhelper compatability version to use.
-#export DH_COMPAT=5
-
-build: build-stamp
-build-stamp:
- dh_testdir
-
- # Add here commands to compile the package.
- $(RUBY) extconf.rb
- $(MAKE)
-
- touch build-stamp
-
-clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp install-stamp
-
- # Add here commands to clean up after the build process.
- [ ! -f Makefile ] || $(MAKE) distclean
-
- dh_clean
-
-install: install-stamp
-install-stamp: build-stamp
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
- # Add here commands to install the package into debian/libeb-ruby1.8.
- $(MAKE) sitedir=$(CURDIR)/debian/libeb-ruby1.8/usr/lib/ruby install
-
- touch install-stamp
-
-# 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_testversion
- dh_testdir
- dh_testroot
- dh_installdocs
- dh_installexamples
-# dh_installmenu
-# dh_installemacsen
-# dh_installpam
-# dh_installinit
-# dh_installcron
-# dh_installmanpages
-# dh_undocumented
- dh_installchangelogs
- dh_link
- dh_strip
- dh_compress -X.rb
- dh_fixperms
-# dh_makeshlibs
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
-
-source diff:
- @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+#
+# Uncomment to ignore all test failures (but the tests will run anyway)
+#export DH_RUBY_IGNORE_TESTS=all
+#
+# Uncomment to ignore some test failures (but the tests will run anyway).
+# Valid values:
+#export DH_RUBY_IGNORE_TESTS=ruby1.8 ruby1.9.1 require-rubygems
+#
+# If you need to specify the .gemspec (eg there is more than one)
+#export DH_RUBY_GEMSPEC=gem.gemspec
+
+%:
+ dh $@ --buildsystem=ruby --with ruby
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
--
ruby-eb.git
More information about the Pkg-ruby-extras-commits
mailing list