Bug#775532: citeproc/data/schema/csl.rng license Re: Bug#775532: RFS: citeproc-py/0.3.0-1 [ITP] -- Python library for CSL based bibliography processing

2015-06-13 Thread Yaroslav Halchenko

On Tue, 12 May 2015, Andrey Rahmatullin wrote:

> I'm afraid the license for citeproc/data/schema/ is not DFSG-free:
> "Permission to freely use, copy and distribute."

Dear Brecht,

I am not sure if you were contacted already about this issue.
The rights field of citeproc/data/schema/csl.rng is a bit too
restrictive (e.g. not allowing modifications).  I wondered if you have
contact with original authors to seek clarification and possibly
release under some DFSG compliant license?

Thanks in advance


-- 
Yaroslav O. Halchenko, Ph.D.
http://neuro.debian.net http://www.pymvpa.org http://www.fail2ban.org
Research Scientist,Psychological and Brain Sciences Dept.
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150614045803.ga5...@onerussian.com



Re: Avoiding linking with /home/packaging/X/libxx.so

2015-06-13 Thread lumin
Hi mentors,

> 
> That's not the unusual way to link to a shared library. You should use
> something like:
> 
>   $(CC) -g -o hello hello.o -L../lib/ -lsharedlib
> 
> (Although it would probably only work if the library had a SONAME.)

I did an experiment. Had the rpath issue fixed, the build result seems
to be far much better! and no any ELF contains RPATH after modifying 
upstream Makefile (full quilt patch attached as [01-*.patch]).

I installed the experimentally built packages, and they works well.

$ readelf -d libcaffe.so.0 
0x000e (SONAME)  Library soname: [libcaffe.so.0]
$ readelf -d caffe.bin 
0x0001 (NEEDED)  Shared library: [libcaffe.so.0]
$ ldd caffe.bin   | grep caffe
libcaffe.so.0 => /usr/lib/libcaffe.so.0 (0x7f8e1d222000)

1. I added SONAME for shlib, changing upstream makefile.
it is implemented by a hack:

 44 +   #$(Q)$(CXX) -shared -o $@ $(OBJS) $(LINKFLAGS) $(LDFLAGS)
$(DYNAMIC_FLAGS)
 45 +   echo $(CXX) -shared -o $@ $(OBJS) $(LINKFLAGS) $(LDFLAGS)
$(DYNAMIC_FLAGS) \
 46 +   -Wl,-soname,$(SONAME) > build_so.sh
 47 +   sed -i -e 's/-pie//g' build_so.sh
 48 +   sh build_so.sh
 49 +   sh -c "cd $(LIB_BUILD_DIR); ln -s $(SONAME) libcaffe.so"

it looks weird, but I didn't find the source of '-pie' option,
in order to remove -pie option, so used a dirty hack.
if I don't remove -pie, g++ would complain: cannot find
reference to
main , such thing. then failed to build.
this dirty hack works very well.

2. In upstream Makefile, I replaced -rpath with -L$(..). globally,
   e.g.

 80  $(TOOL_BINS): %.bin : %.o | $(DYNAMIC_NAME)
 81 @ echo CXX/LD -o $@
 82 $(Q)$(CXX) $< -o $@ $(LINKFLAGS) -l$(PROJECT) $(LDFLAGS) \
 83 -   -Wl,-rpath,$(ORIGIN)/../lib
 84 +   -L$(ORIGIN)/$(LIB_BUILD_DIR)/

> * Andrey Rahmatullin , 2015-06-12, 14:31:
> >SONAMEs, not paths, are added to DT_NEEDED.
> 
> Technically, you can put (both relative and absolute) paths in
> DT_NEEDED, not only SONAMEs. The dynamic linker is happy to use such
> DT_NEEDED entries. It's a terrible idea, though. :-)

Well, now I added SONAME, and the test build looks very good.
Now I can continue with my ITP.
FYI: I also attached (experimental)rules and (experimental)control,
if someone is interested.

Thank you all for answering my questions :-)

-- 
Regards,
  C.D.Luminate
Fix rpath issue in upstream Makefile
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,7 @@
+# start debian
+SONAME := libcaffe.so.0
+Q :=
+# end debian
 PROJECT := caffe
 
 CONFIG_FILE := Makefile.config
@@ -31,7 +35,7 @@
 # The target shared library name
 LIB_BUILD_DIR := $(BUILD_DIR)/lib
 STATIC_NAME := $(LIB_BUILD_DIR)/lib$(PROJECT).a
-DYNAMIC_NAME := $(LIB_BUILD_DIR)/lib$(PROJECT).so
+DYNAMIC_NAME := $(LIB_BUILD_DIR)/$(SONAME)
 
 ##
 # Get all source files
@@ -255,7 +259,7 @@
 	# boost::thread is called boost_thread-mt to mark multithreading on OS X
 	LIBRARIES += boost_thread-mt
 	# we need to explicitly ask for the rpath to be obeyed
-	DYNAMIC_FLAGS := -install_name @rpath/libcaffe.so
+	DYNAMIC_FLAGS := -Wl,-soname,$(SONAME)
 	ORIGIN := @loader_path
 else
 	ORIGIN := \$$ORIGIN
@@ -443,7 +447,7 @@
 	@ echo CXX/LD -o $@ $<
 	$(Q)$(CXX) -shared -o $@ $(PY$(PROJECT)_SRC) \
 		-o $@ $(LINKFLAGS) -l$(PROJECT) $(PYTHON_LDFLAGS) \
-		-Wl,-rpath,$(ORIGIN)/../../build/lib
+		-L$(ORIGIN)/$(LIB_BUILD_DIR)/
 
 mat$(PROJECT): mat
 
@@ -506,7 +510,12 @@
 
 $(DYNAMIC_NAME): $(OBJS) | $(LIB_BUILD_DIR)
 	@ echo LD -o $@
-	$(Q)$(CXX) -shared -o $@ $(OBJS) $(LINKFLAGS) $(LDFLAGS) $(DYNAMIC_FLAGS)
+	#$(Q)$(CXX) -shared -o $@ $(OBJS) $(LINKFLAGS) $(LDFLAGS) $(DYNAMIC_FLAGS)
+	echo $(CXX) -shared -o $@ $(OBJS) $(LINKFLAGS) $(LDFLAGS) $(DYNAMIC_FLAGS) \
+		-Wl,-soname,$(SONAME) > build_so.sh
+	sed -i -e 's/-pie//g' build_so.sh
+	sh build_so.sh
+	sh -c "cd $(LIB_BUILD_DIR); ln -s $(SONAME) libcaffe.so"
 
 $(STATIC_NAME): $(OBJS) | $(LIB_BUILD_DIR)
 	@ echo AR -o $@
@@ -537,19 +546,22 @@
 		| $(DYNAMIC_NAME) $(TEST_BIN_DIR)
 	@ echo CXX/LD -o $@ $<
 	$(Q)$(CXX) $(TEST_MAIN_SRC) $(TEST_OBJS) $(GTEST_OBJ) \
-		-o $@ $(LINKFLAGS) $(LDFLAGS) -l$(PROJECT) -Wl,-rpath,$(ORIGIN)/../lib
+		-o $@ $(LINKFLAGS) $(LDFLAGS) -l$(PROJECT) \
+		-L$(ORIGIN)/$(LIB_BUILD_DIR)/
 
 $(TEST_CU_BINS): $(TEST_BIN_DIR)/%.testbin: $(TEST_CU_BUILD_DIR)/%.o \
 	$(GTEST_OBJ) | $(DYNAMIC_NAME) $(TEST_BIN_DIR)
 	@ echo LD $<
 	$(Q)$(CXX) $(TEST_MAIN_SRC) $< $(GTEST_OBJ) \
-		-o $@ $(LINKFLAGS) $(LDFLAGS) -l$(PROJECT) -Wl,-rpath,$(ORIGIN)/../lib
+		-o $@ $(LINKFLAGS) $(LDFLAGS) -l$(PROJECT) \
+		-L$(ORIGIN)/$(LIB_BUILD_DIR)/
 
 $(TEST_CXX_BINS): $(TEST_BIN_DIR)/%.testbin: $(TEST_CXX_BUILD_DIR)/%.o \
 	$(GTEST_OBJ) | $(DYNAMIC_NAME) $(TEST_BIN_DIR)
 	@ echo LD $<
 	$(Q)$(CXX) $(TEST_MAIN_SRC) $< $(GTEST_OBJ) \
-		-o $@ $(LINKFLAGS) $(LDFLAGS) -l$(PROJECT) -Wl,-rpath,$(ORIGIN)/../lib
+		-o $@ $(LINKFLAGS) $(LDFLAGS) -l$(PROJECT) \
+		-L$(ORIGIN)/$(LIB_BUILD_DIR)/
 

Bug#788653: RFS: ktap/0.4-1 [ITP] -- lightweight script-based dynamic tracing tool for Linux

2015-06-13 Thread Azat Khuzhin
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "ktap"

 Package name: ktap
 Version : 0.4-1
 Upstream Author : Jovi Zhangwei 
 URL : http://www.ktap.org/
 License : GPL v2
 Section : devel

It builds those binary packages:

  ktap  - lightweight script-based dynamic tracing tool for Linux

To access further information about this package, please visit the following 
URL:

http://mentors.debian.net/package/ktap


Alternatively, one can download the package with dget using this command:

  dget -x http://mentors.debian.net/debian/pool/main/k/ktap/ktap_0.4-1.dsc

This is more an RC/RFC of the package, since some of patches that required for
this package is not in mainline, and if Jovi (author) will not merge them, I
will bypass it using package patches, you could see non-mainline patches in my
fork [FORK].
Also Cc'd author of the ktap, since there were talks about merging ktap into
the mainline linux kernel repository [MERGE] but seems that this will
not be done (at least in the near future).

Changes since the last upload:

* Initial release (Closes: #740061)

[FORK]: http://github.com/azat/ktap (git/web)
[MERGE]: http://lwn.net/Articles/572788/

Regards,
 Azat Khuzhin


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150613202951.GR29381@azat



Bug#779072: marked as done (RFS: fortune-zh/1.11 [ITA] -- Chinese Data files for fortune)

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sun, 14 Jun 2015 04:04:26 +0800
with message-id 

and subject line fixed in fortune-zh/1.11
has caused the Debian Bug report #779072,
regarding RFS: fortune-zh/1.11 [ITA] -- Chinese Data files for fortune
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 ow...@bugs.debian.org
immediately.)


-- 
779072: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779072
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: wishlist

Dear memtors,

I am looking for a sponsor for my package "fortune-zh":

 * Package name: fortune-zh
   Version : 1.13
   Upstream Author : Yu Guanghui 
 * URL :
http://anonscm.debian.org/cgit/chinese/fortune-zh.git
 * License : GPL
   Section : games

  It builds those arch-indep packages:

fortune-zh - Chinese Data files for fortune

  To access further information about this package, please visit the
following URL:

  http://anonscm.debian.org/cgit/chinese/fortune-zh.git

  Changes since the last upload:

fortune-zh (1.13) unstable; urgency=low

  * Disable data file "shijing"
- fortune-zh: updated
- debian/control: updated
- man/fortune-zh.6: updated
- Makefile: updated

 -- Zhou Mo   Tue, 24 Feb 2015 06:47:51 +

fortune-zh (1.12) unstable; urgency=low

  * fortune-zh:
- handle environment LANG properly.
  * Specify dependency on libc (>=2.1.1) explicitly:
- debian/control: updated.

 -- Zhou Mo   Tue, 24 Feb 2015 01:21:57 +

fortune-zh (1.11) unstable; urgency=low

  * New maintainer.
  * tang300:
- fixed a few characters.
  * Added new manpage fortune-zh(6).
  * debian/source/format:
- Switched to dpkg-source 3.0 (native) format.
  * shijing:
- converted from shijing.gb to UTF-8 encoding.
  * Makefile:
- updated.
- enabled data file "shijing".
  * debian/control:
- update description.
- remove dependency on zh-autoconvert, use iconv instead.
  * fortune-zh:
- remove dependency on zh-zutoconvert, use iconv instead.

 -- Zhou Mo   Mon, 23 Feb 2015 11:41:47 +

Thanks.
--- End Message ---
--- Begin Message ---
This is sponsored (or team uploaded) in fortune-zh/1.11 with necessary
changes committed to the team git repository.

Thanks,
Aron--- End Message ---


Bug#787223: RFS: vbam/1.8.0.1498-1

2015-06-13 Thread James Cowgill
On Fri, 29 May 2015 22:59:45 + (UTC) Sergio benjamim Rocha filho 
 wrote:
> Package: sponsorship-requests
> Severity: wishlist
> 
> Dear mentors,
> 
> I am looking for a sponsor for my package "vbam"

Hi,

I've had a look at this (because I'm interested), however I'm not a DD
so I can't actually sponsor the package for you.

Some of this stuff may be a bit picky... You can ask me if you have any
questions or if you disagree with something :)

general
  * Have you considered maintaining the package as part of the
Debian Games team? 
  * Have you contacted Etienne Millon <>?
He may be interested in this (as the maintainer of the vba
package).

d/control:
  * Why are there 2 GUI frontends to this package? Is there any
advantage of one over the other? Which one is the best / one
which you would recommend?
  * The Vcs-Svn and Vcs-Browser fields in d/control are usually
used for packaging repositories (which contain a debian/
directory), not links to the upstream repositories.
  * You can drop the version on cmake, squeeze already has 2.8.2.
  * vba-common should be Architecture: all.
  * You probably want a versioned dependency from vbam-gtk and vbam
-wx to vbam-common.
  * nasm doesn't seem to be used in the build so you can drop it.
  * The version of vba in the archive has a dependency from vba-gtk
to vba. Does this package need that?
  * The trademark disclaimer probably doesn't need to be in the
description, but you can put it in d/copyright if you want (I
don't know how necessary it is).

d/changelog:
  * Please squash all the changelog entries. You should generally
use one entry per version actually uploaded to Debian.

d/copyright:
  * Need copyright information for files in CMakeScripts/ and data/
  * The files licensed under GPL-2 only are problematic since there
is some GPL-3 files here as well. The files must be replaced or
re-licensed with permission of the author(s). If they aren't
used, then copyright file should say that.

d/patches/gtk.patch:
  * Is this necessary? Can't you just use -DENABLE_GTK=ON?

d/rules:
  * What are the commented lines (starting DEB_BUILD_ARCH_CPU) in
d/rules for? Remove them if they're now obsolete.
  * Remove the stuff about CMAKE_VERBOSE_MAKEFILE, dh always
enables that flag anyway.
  * CMAKE_INSTALL_PREFIX=/usr is also added by dh so you can remove
that as well.

build
  * Please fix the 'dpkg-shlibdeps: warning: package could avoid a
useless dependency' warnings by using --as-needed or preventing
the libraries being linked.
  * Try 'export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed'

lintian (fix all of these)
W: vbam source: dep5-copyright-license-name-not-unique (paragraph at line 124)
W: vbam source: dep5-copyright-license-name-not-unique (paragraph at line 138)
W: vbam source: dep5-copyright-license-name-not-unique (paragraph at line 243)
W: vbam source: missing-license-paragraph-in-dep5-copyright gpl-2+ (paragraph 
at line 169)
W: vbam source: missing-license-paragraph-in-dep5-copyright public-domain 
(paragraph at line 36)
X: vbam-common: package-contains-no-arch-dependent-files

vbam-sdl segfault
I tried running a game with vbam in the vbam-sdl package. When closing
the program it segfaulted. This was the stacktrace. As you can see,
fclose was called with a NULL pointer.

#0  _IO_new_fclose (fp=0x0) at iofclose.c:54
#1  0x00438cbe in SaveConfigFile () at 
/tmp/vbam/vbam-1.8.0.1498/src/common/ConfigManager.cpp:783
#2  0x0042fc6a in main (argc=2, argv=0x7fffe198) at 
/tmp/vbam/vbam-1.8.0.1498/src/sdl/SDL.cpp:1853

Tail of strace:
stat("/home/james/.vbam", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getcwd("/tmp/vbam", 2048)   = 10
stat("vbam.ini", 0x7ffd9bcb3ae0)= -1 ENOENT (No such file or directory)
stat("/home/james/.vbam/vbam.ini", 0x7ffd9bcb3ae0) = -1 ENOENT (No such file or 
directory)
stat("/usr/share/vbam/vbam.ini", 0x7ffd9bcb3ae0) = -1 ENOENT (No such file or 
directory)
stat("/etc/vbam.ini", 0x7ffd9bcb3ae0)   = -1 ENOENT (No such file or directory)
getcwd("/tmp/vbam", 2048)   = 10
stat("vbam.cfg", 0x7ffd9bcb3ae0)= -1 ENOENT (No such file or directory)
stat("/home/james/.vbam/vbam.cfg", 0x7ffd9bcb3ae0) = -1 ENOENT (No such file or 
directory)
stat("/usr/share/vbam/vbam.cfg", 0x7ffd9bcb3ae0) = -1 ENOENT (No such file or 
directory)
stat("/etc/vbam.cfg", {st_mode=S_IFREG|0644, st_size=5821, ...}) = 0
open("/etc/vbam.cfg", O_WRONLY|O_CREAT|O_TRUNC, 0666) = -1 EACCES (Permission 
denied)
--- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0} ---
+++ killed by SIGSEGV (core dumped) +++
Segmentation fault

cppcheck output (possible coding mistakes):
$ cppcheck -j1 --quiet -f . | grep -vF 'cppcheck: error: could not find or open 
any of the paths given.'
[

Re: Avoiding linking with /home/packaging/X/libxx.so

2015-06-13 Thread Jakub Wilk

On Fri, Jun 12, 2015 at 08:11:14AM +, lumin wrote:

hello: hello.o
$(CC) -g -o hello hello.o ../lib/libsharedlib.so <--NOTICE


That's not the unusual way to link to a shared library. You should use 
something like:


$(CC) -g -o hello hello.o -L../lib/ -lsharedlib

(Although it would probably only work if the library had a SONAME.)

* Andrey Rahmatullin , 2015-06-12, 14:31:

SONAMEs, not paths, are added to DT_NEEDED.


Technically, you can put (both relative and absolute) paths in 
DT_NEEDED, not only SONAMEs. The dynamic linker is happy to use such 
DT_NEEDED entries. It's a terrible idea, though. :-)


--
Jakub Wilk


--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150613114845.ga4...@jwilk.net



Bug#788217: RFS: clfft/2.4-1 [ITP Bug#783084] -- OpenCL FFT library

2015-06-13 Thread Bart Martens
reopen 788217
owner 783084 Ghislain Vaillant 
stop

I had overlooked "With his authorization". Reopening and setting Ghislain as
the owner of the ITP.


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150613091733.ga12...@master.debian.org



Bug#788217: marked as done (RFS: clfft/2.4-1 [ITP Bug#783084] -- OpenCL FFT library)

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 09:12:48 +
with message-id <20150613091248.gi2...@master.debian.org>
and subject line RFS: clfft/2.4-1 [ITP Bug#783084] -- OpenCL FFT library
has caused the Debian Bug report #788217,
regarding RFS: clfft/2.4-1 [ITP Bug#783084] -- OpenCL FFT library
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 ow...@bugs.debian.org
immediately.)


-- 
788217: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788217
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: normal [important for RC bugs, wishlist for new packages]

Dear mentors,

I am looking for a sponsor for my package "clfft"

* Package name: clfft
  Version : 2.4-1
  Upstream Author : Kent Knox 
* URL : https://github.com/clMathLibraries/clFFT
* License : Apache version 2
  Section : science

It builds those binary packages:

 libclfft-bin - OpenCL FFT library (executables)
 libclfft-dev - OpenCL FFT library (development files)
 libclfft-doc - OpenCL FFT library (documentation)
 libclfft2  - OpenCL FFT library (shared library)
 libclfft2-dbg - OpenCL FFT library (debugging symbols)

To access further information about this package, please visit the
following URL:

 http://mentors.debian.net/package/clfft


Alternatively, one can download the package with dget using this
command:

 dget -x 
http://mentors.debian.net/debian/pool/main/c/clfft/clfft_2.4-1.dsc


Important notes:

 Packaging was started by Jerome Kieffer, who is the author of the
original ITP. With his authorization, I took over his work and improved
on the quality of the package, based on my work on clBLAS since both
pieces of software share strong similarities.


Best regards,
Ghislain Vaillant
--- End Message ---
--- Begin Message ---
Ghislain,

Jerome Kieffer already recently expressed his intent to package this software,
see ITP 783084.  Can you agree with him who will proceed, possibly you both
together co-maintaining?

Regards,

Bart Martens--- End Message ---


Bug#751352: marked as done (RFS: syncterm/20141022+dfsg-1 [ITP])

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:52:51 +
with message-id <20150613085251.gd2...@master.debian.org>
and subject line closing duplicate rfs
has caused the Debian Bug report #751352,
regarding RFS: syncterm/20141022+dfsg-1 [ITP]
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 ow...@bugs.debian.org
immediately.)


-- 
751352: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751352
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: wishlist

Package: sponsorship-requests
  Severity: whislist

  Dear mentors,

  I am looking for a sponsor for my package "syncterm"

 * Package name: syncterm
   Version : 20140525-1
   Upstream Author : Stephen Hurd 
 * URL : http://syncterm.bbsdev.net
 * License : GPL 2
   Section : comm

  It builds those binary packages:

syncterm   - BBS terminal program from Synchronet
 syncterm-dbg - BBS terminal program from Synchronet

  To access further information about this package, please visit the following
URL:

  http://mentors.debian.net/package/syncterm

  Alternatively, one can download the package with dget using this command:

dget -x
http://mentors.debian.net/debian/pool/main/s/syncterm/syncterm_20140525-1.dsc


  Changes since the last upload:

  * new upstream release
  * debug packages depends
  * debug package should be extra priority (lintian)


  I want to get into debian because this terminal emulator is the best for
support ANSI-BBS console codes. You can see it, finding some screenshoots on
internet.
  It's part of Synchronet BBS, a free BBS system.

  Regards,
   Fernando Toledo




-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.14-1-rt-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---
Continued on 777651. No need to submit new bugs.--- End Message ---


Bug#782752: marked as done (RFS: h5py/2.5.0-1~exp1 -- general-purpose Python interface to hdf5)

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:30 +
with message-id 
and subject line closing RFS: h5py/2.5.0-1~exp1 -- general-purpose Python 
interface to hdf5
has caused the Debian Bug report #782752,
regarding RFS: h5py/2.5.0-1~exp1 -- general-purpose Python interface to hdf5
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 ow...@bugs.debian.org
immediately.)


-- 
782752: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=782752
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: normal


I am looking for a sponsor for the source package "h5py".

It builds the following binary packages:

 python-h5py  -- Python 2 version
 python3-h5py -- Python 3 version
 python-h5py-doc  -- Documentation


This upload includes a new upstream release (the latest at the time of 
writing) and adds a new binary package containing the html documentation 
of the library.


This package can be checked out at:

 https://anonscm.debian.org/cgit/debian-science/packages/h5py.git

This package can be built with:

 gbp buildpackage --git-debian-branch=debian/experimental \
 --git-upstream-branch=upstream/latest


Best regards,

Ghislain
--- End Message ---
--- Begin Message ---
Package h5py version 2.5.0-1~exp1 is in experimental now.
https://packages.qa.debian.org/h5py--- End Message ---


Bug#775441: marked as done (RFS: apulse/0.1.5-1 [ITP])

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:29 +
with message-id 
and subject line closing RFS: apulse/0.1.5-1 [ITP]
has caused the Debian Bug report #775441,
regarding RFS: apulse/0.1.5-1 [ITP]
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 ow...@bugs.debian.org
immediately.)


-- 
775441: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775441
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: sponsorship-requests
Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package "apulse"

 * Package name: apulse
   Version : 0.1.5-1
   Upstream Author : Rinat Ibragimov 
 * URL : https://github.com/i-rinat/apulse
 * License : BSD
   Section : sound

  It builds those binary packages:

apulse - PulseAudio emulation for ALSA
 libapulse  - PulseAudio emulation for ALSA - the libapulse libraries
 libapulse-dev - PulseAudio emulation for ALSA - the libapulse devel 
libraries


  To access further information about this package, please visit the 
following URL:


  http://mentors.debian.net/package/apulse


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/a/apulse/apulse_0.1.5-1.dsc


  More information about hello can be obtained from 
https://github.com/i-rinat/apulse


  Changes since the last upload:

  This is initial upload.


  Regards,
   Mateusz Łukasik
--- End Message ---
--- Begin Message ---
Package apulse has been removed from mentors.--- End Message ---


Bug#775946: marked as done (RFS: objeck-lang-i386/3.3.5-2-1 [ITP] -- Objeck Programming Language)

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:30 +
with message-id 
and subject line closing RFS: objeck-lang-i386/3.3.5-2-1 [ITP] -- Objeck 
Programming Language
has caused the Debian Bug report #775946,
regarding RFS: objeck-lang-i386/3.3.5-2-1 [ITP] -- Objeck Programming Language
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 ow...@bugs.debian.org
immediately.)


-- 
775946: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775946
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
  Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package "objeck-lang-i386"

 * Package name: objeck-lang-i386
   Version : 3.3.5-2-1
   Upstream Author : Randy Hollines 
 * URL : http://www.objeck.org/
 * License : BSD-2-Clause
   Section : devel

  It builds these binary packages:

obc - source code compiler
obr - runtime system
obd - interactive debugger
obu - library inspection tool

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/objeck-lang-i386


  Alternatively, one can download the package with dget using this command:

dget -x
http://mentors.debian.net/debian/pool/main/o/objeck-lang-i386/objeck-lang-i386_3.3.5-2-1.dsc

  More information about objeck-lang can be obtained from
http://www.objeck.org/ and https://github.com/objeck/objeck-lang.

  Changes since the last upload: none

  objeck-lang-i386 (3.3.5-2-1) unstable; urgency=low

  * Initial Release

 -- Randy Hollines   Tue, 20 Jan 2015 08:02:00 -0800

  Regards,
   Randy Hollines
--- End Message ---
--- Begin Message ---
Package objeck-lang-i386 has been removed from mentors.--- End Message ---


Bug#788385: marked as done (RFS: fiona/1.5.1-1)

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:29 +
with message-id 
and subject line closing RFS: fiona/1.5.1-1
has caused the Debian Bug report #788385,
regarding RFS: fiona/1.5.1-1
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 ow...@bugs.debian.org
immediately.)


-- 
788385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: normal [important for RC bugs, wishlist for new packages]
X-Debbugs-CC: pkg-grass-de...@lists.alioth.debian.org

Dear mentors,

I am looking for a sponsor for my package "fiona"

 Package name: fiona
 Version : 1.5.1-1
 Upstream Author : Sean Gillies
 URL : https://github.com/Toblerity/Fiona
 License : BSD-3-Clause
 Section : python

It builds those binary packages:

 python-fiona  - Python API for reading/writing vector geospatial data
 python3-fiona - Python 3 API for reading/writing vector geospatial data
 fiona - Command line tool for reading/writing vector geospatial data
 fiona-doc - Python API for reading/writing vector geospatial data (docs)

To access further information about this package, please visit the
following URL:

http://mentors.debian.net/package/fiona


Alternatively, one can download the package with dget using this command:

  dget -x http://mentors.debian.net/debian/pool/main/f/fiona/fiona_1.5.1-1.dsc

More information about Fiona can be obtained from
https://github.com/Toblerity/Fiona.

Changes since the last upload:

  * Make build reproducible (Closes: #788308)
  * Imported Upstream version 1.5.1


Regards,
 Johan Van de Wauw
--- End Message ---
--- Begin Message ---
Package fiona version 1.5.1-1 is in unstable now.
https://packages.qa.debian.org/fiona--- End Message ---


Bug#787120: marked as done (RFS: par2cmdline/0.6.13-1)

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:28 +
with message-id 
and subject line closing RFS: par2cmdline/0.6.13-1
has caused the Debian Bug report #787120,
regarding RFS: par2cmdline/0.6.13-1
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 ow...@bugs.debian.org
immediately.)


-- 
787120: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787120
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: Vincent Cheng 

Dear mentors,

I am looking for a sponsor for "par2cmdline":
  Package name: par2cmdline
  Version : 0.6.13-1
  Upstream Author : Ike Devolder et al.
  URL : https://github.com/Parchive/par2cmdline
  License : GPL-2+
  Section : utils

It builds a single binary package:
  par2  - PAR 2.0 compatible file verification and repair tool

Mentors URL:
  http://mentors.debian.net/package/par2cmdline

Download:
dget -x 
http://mentors.debian.net/debian/pool/main/p/par2cmdline/par2cmdline_0.6.13-1.dsc

Changes since the last upload:
  * New upstream release:
+ Adds argument of option -b to the manpage. (Closes: #782980)
+ Fixes repair error with nested directories. (Closes: #781129)
+ Fixes failure to find data blocks beyond the point of damage
  after removal of a single byte. (Closes: #785127)
  * Update homepage, watchfile to match renamed github repository.
  * Bump copyright years.


Thanks.


signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Package par2cmdline version 0.6.13-1 is in unstable now.
https://packages.qa.debian.org/par2cmdline--- End Message ---


Bug#776539: marked as done (RFS: scythe/0.994-1 [ITP] -- Bayesian adaptor trimmer for sequencing reads)

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:29 +
with message-id 
and subject line closing RFS: scythe/0.994-1 [ITP] -- Bayesian adaptor trimmer 
for sequencing reads
has caused the Debian Bug report #776539,
regarding RFS: scythe/0.994-1 [ITP] -- Bayesian adaptor trimmer for sequencing 
reads
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 ow...@bugs.debian.org
immediately.)


-- 
776539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776539
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "scythe"

* Package name: scythe
  Version : 0.994-1
  Upstream Author : Vince Buffalo
* URL : https://github.com/vsbuffalo/scythe
* License : Expat
  Section : science

It builds these binary packages:

   scythe - Bayesian adaptor trimmer for sequencing reads

To access further information about this package, please visit the following 
URL:

   http://mentors.debian.net/package/scythe


Alternatively, one can download the package with dget using this command:

   dget -x 
http://mentors.debian.net/debian/pool/main/s/scythe/scythe_0.994-1.dsc


I'm new to Debian packaging/development, and I'd like to start by
packaging a useful piece of software for those using Debian in
computational biology.

Scythe uses a Naïve Bayesian matching algorithm to trim contaminants
from sequencing reads. It is more accurate than other similar packages
due to the probabilistic matching algorithm that it uses, which accounts
for features of common DNA sequencing platforms.

I have previously contributed code to scythe, and I believe I am
sufficiently familiar with its development and code base to maintain
this package.

I've made the package, and uploaded it to mentors.debian.net (see above
dget/webpage links).

Please let me know how I can improve!

Thanks,
Kevin Murray
s...@kdmurray.id.au

I'm an FSF member -- Help us support software freedom!


GPG pubkey: http://www.kdmurray.id.au/static/A4B4EE6A.asc
FPR: 656C 0632 1EAB 2C3F 3837  9767 17C2 8EB1 A4B4 EE6A



signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Package scythe version 0.994-1 is in unstable now.
https://packages.qa.debian.org/scythe--- End Message ---


Bug#774348: marked as done (RFS: hebrew-cal/1.1-2 [ ITP])

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:28 +
with message-id 
and subject line closing RFS: hebrew-cal/1.1-2 [ ITP]
has caused the Debian Bug report #774348,
regarding RFS: hebrew-cal/1.1-2 [ ITP]
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 ow...@bugs.debian.org
immediately.)


-- 
774348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774348
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "hebrew-cal"

* Package name: hebrew-cal
   Version : 1.0
   Upstream Author : avisoftware...@gmail.com
* URL : https://github.com/avi-software/hebrew-cal
* License : GPL
   Section : misc

  It builds those binary packages:

hebrew-cal - Hebrew Calendar

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/hebrew-cal


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/h/hebrew-cal/hebrew-cal_1.0.dsc


  Changes since the last upload:

  [your most recent changelog entry]


  Regards,
   Avi Software
--- End Message ---
--- Begin Message ---
Package hebrew-cal has been removed from mentors.--- End Message ---


Bug#775019: marked as done (RFS: live-f1/0.2.11-davepusey1-1 [ITA])

2015-06-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Jun 2015 08:17:28 +
with message-id 
and subject line closing RFS: live-f1/0.2.11-davepusey1-1 [ITA]
has caused the Debian Bug report #775019,
regarding RFS: live-f1/0.2.11-davepusey1-1 [ITA]
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 ow...@bugs.debian.org
immediately.)


-- 
775019: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775019
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: normal


Dear mentors,

  I am looking for a sponsor for my package "live-f1"

 * Package name: live-f1
   Version : 0.2.11-1
 * URL : https://code.launchpad.net/~davepusey/live-f1/live-f1
 * License : GPL-2
   Section : utils

  It builds those binary packages:

live-f1- Formula 1 Live Timing

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/live-f1


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/l/live-f1/live-f1_0.2.11-1.dsc


  Changes since the last upload:

* New upstream release  (Closes: #576402, #608661, #619839, #750950)
* New maintainer (Closes: #762541)



  Regards,
   Bofu Chen
--- End Message ---
--- Begin Message ---
Package live-f1 has been removed from mentors.--- End Message ---


Bug#788583: RFS: blktool -- tune low-level block device parameters [ITA]

2015-06-13 Thread Azat Khuzhin
On Sat, Jun 13, 2015 at 10:52:02AM +0800, Paul Wise wrote:
> On Sat, Jun 13, 2015 at 6:36 AM, Azat Khuzhin wrote:
> 
> > * QA upload
> > * New maintainer. (Closes: #695127).
> 
> Uploads can either be QA uploads (one-shot only) or uploads by the new
> maintainer but never both. Please pick one and remove the other one.

Hi Paul,

Thanks for pointing out, fixed and uploaded to mentors.

See https://mentors.debian.net/package/blktool

Changes since he last upload:

* Drop "QA upload" from changelog

Cheers,
Azat.


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150613072231.GP29381@azat