Processed: Bug#936305 marked as pending in citeproc-py

2020-02-08 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #936305 [src:citeproc-py] citeproc-py: Python2 removal in sid/bullseye
Added tag(s) pending.

-- 
936305: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=936305
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processing of citeproc-py_0.3.0-5_source.changes

2020-02-08 Thread Debian FTP Masters
citeproc-py_0.3.0-5_source.changes uploaded successfully to localhost
along with the files:
  citeproc-py_0.3.0-5.dsc
  citeproc-py_0.3.0-5.debian.tar.xz
  citeproc-py_0.3.0-5_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



citeproc-py_0.3.0-5_source.changes REJECTED

2020-02-08 Thread Debian FTP Masters



citeproc-py_0.3.0-5.dsc: Invalid size hash for citeproc-py_0.3.0.orig.tar.xz:
According to the control file the size hash should be 78536,
but citeproc-py_0.3.0.orig.tar.xz has 78472.

If you did not include citeproc-py_0.3.0.orig.tar.xz in your upload, a 
different version
might already be known to the archive software.



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.



ispell-lt is marked for autoremoval from testing

2020-02-08 Thread Debian testing autoremoval watch
ispell-lt 1.2.1-8 is marked for autoremoval from testing on 2020-02-02

It is affected by these RC bugs:
936753: ispell-lt: Python2 removal in sid/bullseye



transfermii is marked for autoremoval from testing

2020-02-08 Thread Debian testing autoremoval watch
transfermii 1:0.6.1-3 is marked for autoremoval from testing on 2020-02-15

It (build-)depends on packages with these RC bugs:
936358: cwiid: Python2 removal in sid/bullseye
942981: cwiid: Python2 removal in sid/bullseye



cwiid is marked for autoremoval from testing

2020-02-08 Thread Debian testing autoremoval watch
cwiid 0.6.00+svn201-4 is marked for autoremoval from testing on 2020-02-15

It is affected by these RC bugs:
936358: cwiid: Python2 removal in sid/bullseye
942981: cwiid: Python2 removal in sid/bullseye



Bug#950980: vfu FTCBFS: uses build architecture build tools

2020-02-08 Thread Helmut Grohne
Source: vfu
Version: 4.18-1
Tags: patch
User: debian-cr...@lists.debian.org
Usertags: ftcbfs

vfu fails to cross build from source, because it uses build architecture
build tools. It starts with using the autoconf build system and then
skipping configure. That results in debhelper not passing cross tools to
make. Using the makefile build system is better here as it also skips
makes dh_auto_configure a noop. Then the upstream build system uses
non-standard variables for g++ in lots of places. I think it is best to
canonicalize that and hope that this change is upstreamable. Also the
build strips by default. Doing so also breaks generation of -dbgsym
packages as well as DEB_BUILD_OPTIONS=nostrip. The attached patch fixes
all of that. Please consider applying it.

Helmut
diff --minimal -Nru vfu-4.18/debian/changelog vfu-4.18/debian/changelog
--- vfu-4.18/debian/changelog   2020-01-02 01:49:06.0 +0100
+++ vfu-4.18/debian/changelog   2020-02-09 07:01:09.0 +0100
@@ -1,3 +1,12 @@
+vfu (4.18-2) UNRELEASED; urgency=medium
+
+  * Fix FTCBFS: (Closes: #-1)
++ Use the makefile debhelper build system to pass cross tools.
++ Defer stripping to dh_strip.
++ cross.patch: make build tools substitutable via standard means.
+
+ -- Helmut Grohne   Sun, 09 Feb 2020 07:01:09 +0100
+
 vfu (4.18-1) unstable; urgency=medium
 
   * QA upload.
diff --minimal -Nru vfu-4.18/debian/patches/cross.patch 
vfu-4.18/debian/patches/cross.patch
--- vfu-4.18/debian/patches/cross.patch 1970-01-01 01:00:00.0 +0100
+++ vfu-4.18/debian/patches/cross.patch 2020-02-09 07:01:09.0 +0100
@@ -0,0 +1,389 @@
+--- vfu-4.18.orig/vslib/makefile
 vfu-4.18/vslib/makefile
+@@ -25,8 +25,8 @@
+ 
+ 
+ AR = ar rv
+-CC = g++
+-LD = g++
++CXX = g++
++LD = $(CXX)
+ MKDIR = mkdir -p
+ RANLIB = ranlib
+ RMDIR = rm -rf
+@@ -36,8 +36,8 @@
+ 
+ ### TARGET 1: libvslib.a 
###
+ 
+-CC_1   = g++
+-LD_1   = g++
++CXX_1  = $(CXX)
++LD_1   = $(CXX_1)
+ AR_1   = ar rv
+ RANLIB_1   = ranlib
+ CCFLAGS_1  = -I. -O2 $(CCDEF)  
+@@ -100,33 +100,33 @@
+ ### TARGET OBJECTS FOR TARGET 1: libvslib.a 

+ 
+ .OBJ.libvslib.a/clusters.o: clusters.cpp  clusters.cpp clusters.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c clusters.cpp -o 
.OBJ.libvslib.a/clusters.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c clusters.cpp -o 
.OBJ.libvslib.a/clusters.o
+ .OBJ.libvslib.a/dlog.o: dlog.cpp  dlog.cpp dlog.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c dlog.cpp -o 
.OBJ.libvslib.a/dlog.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c dlog.cpp -o 
.OBJ.libvslib.a/dlog.o
+ .OBJ.libvslib.a/eval.o: eval.cpp  eval.cpp eval.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c eval.cpp -o 
.OBJ.libvslib.a/eval.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c eval.cpp -o 
.OBJ.libvslib.a/eval.o
+ .OBJ.libvslib.a/fnmatch2.o: fnmatch2.cpp  fnmatch2.cpp fnmatch2.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c fnmatch2.cpp -o 
.OBJ.libvslib.a/fnmatch2.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c fnmatch2.cpp -o 
.OBJ.libvslib.a/fnmatch2.o
+ .OBJ.libvslib.a/getopt2.o: getopt2.cpp  getopt2.cpp getopt2.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c getopt2.cpp  -o 
.OBJ.libvslib.a/getopt2.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c getopt2.cpp  -o 
.OBJ.libvslib.a/getopt2.o
+ .OBJ.libvslib.a/scroll.o: scroll.cpp  scroll.cpp scroll.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c scroll.cpp   -o 
.OBJ.libvslib.a/scroll.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c scroll.cpp   -o 
.OBJ.libvslib.a/scroll.o
+ .OBJ.libvslib.a/vslib.o: vslib.cpp  vslib.cpp
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c vslib.cpp-o 
.OBJ.libvslib.a/vslib.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c vslib.cpp-o 
.OBJ.libvslib.a/vslib.o
+ .OBJ.libvslib.a/vstring.o: vstring.cpp  vstring.cpp vstring.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c vstring.cpp  -o 
.OBJ.libvslib.a/vstring.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c vstring.cpp  -o 
.OBJ.libvslib.a/vstring.o
+ .OBJ.libvslib.a/vstrlib.o: vstrlib.cpp  vstrlib.cpp vstrlib.h vstring.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c vstrlib.cpp  -o 
.OBJ.libvslib.a/vstrlib.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c vstrlib.cpp  -o 
.OBJ.libvslib.a/vstrlib.o
+ .OBJ.libvslib.a/vsuti.o: vsuti.cpp  vsuti.cpp vsuti.h target.h vstring.h 
vstrlib.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c vsuti.cpp-o 
.OBJ.libvslib.a/vsuti.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c vsuti.cpp-o 
.OBJ.libvslib.a/vsuti.o
+ .OBJ.libvslib.a/vscrc.o: vscrc.cpp  vscrc.cpp vsuti.h target.h vstring.h
+-  $(CC_1) $(CFLAGS_1) $(CCFLAGS_1) -c vscrc.cpp-o 
.OBJ.libvslib.a/vscrc.o
++  $(CXX_1) $(CFLAGS_1) $(CCFLAGS_1) -c vscrc.cpp-o 
.OBJ.libvslib.a/vscr