Your message dated Fri, 29 Nov 2013 10:26:41 +0000
with message-id <[email protected]>
and subject line Bug#730646: Removed package(s) from unstable
has caused the Debian Bug report #687795,
regarding please acknowledge 1.2+cvs20070125-1.1 NMU
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
687795: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687795
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
package: langscan

Hi,

please include the changes from 1.2+cvs20070125-1.1 into your next upload.
debdiff is attached.

cheers,
        Holger
diff -u langscan-1.2+cvs20070125/debian/changelog langscan-1.2+cvs20070125/debian/changelog
--- langscan-1.2+cvs20070125/debian/changelog
+++ langscan-1.2+cvs20070125/debian/changelog
@@ -1,3 +1,20 @@
+langscan (1.2+cvs20070125-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Build only with Ruby 1.8.
+    + debian/control: remove ruby from Build-Depends field as it would pull
+      ruby-1.9.1
+    + debian/rules: add --with-ruby flag to configure script to point to
+      /usr/bin/ruby1.8 binary
+    + acinclude.m4: use $RUBY variable instead of hardcoded name 'ruby' for
+      the Ruby binary to ensure that Ruby 1.8 is used in the configuration
+      process. (Closes: #676113)
+    + gonzui,the only reverse dependency, will only work with Ruby 1.8 anyway
+      because of other depencies.
+  * Set urgency to medium, as a RC bug is fixed.
+
+ -- Cédric Boutillier <[email protected]>  Mon, 03 Sep 2012 22:38:55 +0200
+
 langscan (1.2+cvs20070125-1) unstable; urgency=low
 
   * New upstream release.
diff -u langscan-1.2+cvs20070125/debian/rules langscan-1.2+cvs20070125/debian/rules
--- langscan-1.2+cvs20070125/debian/rules
+++ langscan-1.2+cvs20070125/debian/rules
@@ -12,8 +12,9 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-RUBYLIBDIR = $(shell ruby -rrbconfig -e 'puts Config::CONFIG["rubylibdir"]')
-RUBYARCHDIR = $(shell ruby -rrbconfig -e 'puts Config::CONFIG["archdir"]')
+RUBY = /usr/bin/ruby1.8
+RUBYLIBDIR = $(shell $(RUBY) -rrbconfig -e 'puts Config::CONFIG["rubylibdir"]')
+RUBYARCHDIR = $(shell $(RUBY) -rrbconfig -e 'puts Config::CONFIG["archdir"]')
 
 CFLAGS = -Wall -g
 
@@ -28,7 +29,7 @@
 	dh_testdir
 	# Add here commands to configure the package.
 	./autogen.sh --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" \
-	--with-rubydir=$(RUBYLIBDIR) --with-rubyarchdir=$(RUBYARCHDIR)
+	--with-rubydir=$(RUBYLIBDIR) --with-rubyarchdir=$(RUBYARCHDIR) --with-ruby=$(RUBY)
 	touch configure-stamp
 
 
diff -u langscan-1.2+cvs20070125/debian/control langscan-1.2+cvs20070125/debian/control
--- langscan-1.2+cvs20070125/debian/control
+++ langscan-1.2+cvs20070125/debian/control
@@ -2,7 +2,7 @@
 Section: devel
 Priority: optional
 Maintainer: NIIBE Yutaka <[email protected]>
-Build-Depends: debhelper (>= 5), autotools-dev, autoconf (>= 2.50), automake (>= 1.9.5), ruby, ruby1.8 (>= 1.8.2), ruby1.8-dev (>= 1.8.2), flex, ocaml-nox
+Build-Depends: debhelper (>= 5), autotools-dev, autoconf (>= 2.50), automake (>= 1.9.5), ruby1.8 (>= 1.8.2), ruby1.8-dev (>= 1.8.2), flex, ocaml-nox
 Standards-Version: 3.7.2.2
 
 Package: liblangscan-ruby
only in patch2:
unchanged:
--- langscan-1.2+cvs20070125.orig/acinclude.m4
+++ langscan-1.2+cvs20070125/acinclude.m4
@@ -19,7 +19,7 @@
   REQUIRED_VERSION="$1"
   AC_MSG_CHECKING([ruby version...])
   RUBY_VERSION="`$RUBY -e "puts RUBY_VERSION"`"
-  if ruby -e "exit(RUBY_VERSION >= '$REQUIRED_VERSION')" >/dev/null; then
+  if $RUBY -e "exit(RUBY_VERSION >= '$REQUIRED_VERSION')" >/dev/null; then
     AC_MSG_RESULT($RUBY_VERSION found)
   else
     AC_MSG_RESULT($RUBY_VERSION found)
@@ -41,7 +41,7 @@
   AC_MSG_CHECKING([path to ruby library])
   if test "x$rubydir" = x; then
     changequote(<<, >>)
-    rubydir=`ruby -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]'`
+    rubydir=`$RUBY -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]'`
     changequote([, ])
   fi
   AC_MSG_RESULT($rubydir)
@@ -57,20 +57,20 @@
   AC_MSG_CHECKING([path to ruby binary library])
   if test "x$rubyarchdir" = x; then
     changequote(<<, >>)
-    rubyarchdir=`ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]'`
+    rubyarchdir=`$RUBY -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]'`
     changequote([, ])
   fi
   AC_MSG_RESULT($rubyarchdir)
   AC_SUBST(rubyarchdir)
 
   changequote(<<, >>)
-  RUBY_CC="`ruby -rmkmf -e 'puts Config::MAKEFILE_CONFIG["CC"]'`"
-  RUBY_LDSHARED="`ruby -rmkmf -e 'puts Config::MAKEFILE_CONFIG["LDSHARED"]'`"
-  RUBY_CFLAGS="`ruby -rmkmf -e 'puts Config::MAKEFILE_CONFIG["CCDLFLAGS"] + " " + Config::MAKEFILE_CONFIG["CFLAGS"]'`"
-  RUBY_DLEXT="`ruby -rmkmf -e 'puts Config::MAKEFILE_CONFIG["DLEXT"]'`"
-  RUBY_DLDFLAGS="`ruby -rmkmf -e 'puts Config::MAKEFILE_CONFIG["DLDFLAGS"]'`"
-  RUBY_LIBS="`ruby -rmkmf -e 'puts Config::MAKEFILE_CONFIG["LIBS"]'`"
-  RUBY_HDRHDIR="`ruby -rmkmf -e 'puts Config::CONFIG["archdir"]'`"
+  RUBY_CC="`$RUBY -rmkmf -e 'puts Config::MAKEFILE_CONFIG["CC"]'`"
+  RUBY_LDSHARED="`$RUBY -rmkmf -e 'puts Config::MAKEFILE_CONFIG["LDSHARED"]'`"
+  RUBY_CFLAGS="`$RUBY -rmkmf -e 'puts Config::MAKEFILE_CONFIG["CCDLFLAGS"] + " " + Config::MAKEFILE_CONFIG["CFLAGS"]'`"
+  RUBY_DLEXT="`$RUBY -rmkmf -e 'puts Config::MAKEFILE_CONFIG["DLEXT"]'`"
+  RUBY_DLDFLAGS="`$RUBY -rmkmf -e 'puts Config::MAKEFILE_CONFIG["DLDFLAGS"]'`"
+  RUBY_LIBS="`$RUBY -rmkmf -e 'puts Config::MAKEFILE_CONFIG["LIBS"]'`"
+  RUBY_HDRHDIR="`$RUBY -rmkmf -e 'puts Config::CONFIG["archdir"]'`"
   RUBY_CPPFLAGS='-I. -I$(RUBY_HDRHDIR)'
   changequote([, ])
 

--- End Message ---
--- Begin Message ---
Version: 1.2+cvs20070125-1.1+rm

Dear submitter,

as the package langscan has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see http://bugs.debian.org/730646

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to