Package: libintl-gettext-ruby
Severity: minor
Tags: patch
Hi,
ruby1.6 is scheduled to be dropped from the archive before the release
of etch [1]. Please stop building ruby1.6 modules.
The attached patch modifies your packaging to stop building ruby1.6
modules. Please consider applying.
Regards,
Stefan
[1] http://wiki.debian.org/RemoveRuby16
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
diff -ur libintl-gettext-ruby-0.11/debian/control
libintl-gettext-ruby-0.11.mod/debian/control
--- libintl-gettext-ruby-0.11/debian/control 2006-05-09 19:39:19.000000000
+0200
+++ libintl-gettext-ruby-0.11.mod/debian/control 2006-05-09
19:38:11.000000000 +0200
@@ -2,7 +2,7 @@
Section: interpreters
Priority: optional
Maintainer: Masato Taruishi <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 3), ruby1.6, ruby1.6-dev, ruby1.8, ruby1.8-dev
+Build-Depends: debhelper (>> 3), ruby1.8, ruby1.8-dev
Standards-Version: 3.6.1
Package: libintl-gettext-ruby
@@ -11,14 +11,6 @@
Description: Gettext wrapper for Ruby
A simple wrapper of GNU gettext for Ruby.
-Package: libintl-gettext-ruby1.6
-Architecture: any
-Depends: ${shlibs:Depends}
-Conflicts: libintl-gettext-ruby (<< 0.11-3)
-Replaces: libintl-gettext-ruby (<< 0.11-3)
-Description: Gettext wrapper for Ruby 1.6
- A simple wrapper of GNU gettext for Ruby 1.6.
-
Package: libintl-gettext-ruby1.8
Architecture: any
Depends: ${shlibs:Depends}
diff -ur libintl-gettext-ruby-0.11/debian/rules
libintl-gettext-ruby-0.11.mod/debian/rules
--- libintl-gettext-ruby-0.11/debian/rules 2006-05-09 19:39:19.000000000
+0200
+++ libintl-gettext-ruby-0.11.mod/debian/rules 2006-05-09 19:38:28.000000000
+0200
@@ -12,8 +12,7 @@
build-stamp:
dh_testdir
- install -d build-tree-16 build-tree-18
- cd build-tree-16 && ruby1.6 ../extconf.rb && $(MAKE)
+ install -d build-tree-18
cd build-tree-18 && ruby1.8 ../extconf.rb && $(MAKE)
touch build-stamp
@@ -24,7 +23,7 @@
rm -f build-stamp install-stamp
# Add here commands to clean up after the build process.
- rm -rf build-tree-16 build-tree-18
+ rm -rf build-tree-18
dh_clean
@@ -38,8 +37,6 @@
# Add here commands to install the package into debian/tmp.
#$(MAKE) prefix=`pwd`/debian/tmp/usr install
- cd build-tree-16 && \
- $(MAKE) archdir=$(CURDIR)/debian/libintl-gettext-ruby1.6$(shell
ruby1.6 -rrbconfig -e 'print Config::CONFIG["archdir"]') install
cd build-tree-18 && \
$(MAKE) RUBYARCHDIR=$(CURDIR)/debian/libintl-gettext-ruby1.8$(shell
ruby1.8 -rrbconfig -e 'print Config::CONFIG["archdir"]') install