Bug#780511: ITP: libapache-ssllookup-perl -- glue layer between Perl handlers and the mod_ssl public API

2015-03-15 Thread Christopher Hoskin
Package: wnpp
Owner: Christopher Hoskin christopher.hos...@gmail.com
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libapache-ssllookup-perl
  Version : 2.00-04
  Upstream Author : Geoffrey Young ge...@modperlcookbook.org
* URL : https://metacpan.org/release/Apache-SSLLookup
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : glue layer between Perl handlers and the mod_ssl public API

Apache::SSLLookup is a glue layer between Perl handlers and the mod_ssl
public API. Under normal circumstances, you would use $r-subprocess_env() to
glean information about mod_ssl. for example,

$request_is_over_ssl = $r-subprocess_env('HTTPS');

however, this is only possible after mod_ssl runs its fixups - that is, Perl
handlers can only accurately check the subprocess_env table for mod_ssl
information in the PerlResponsePhase or later.

This module allows you to query mod_ssl directly via its public C API at any
point in the request cycle. but without using C, of course.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/E1YX7CO-0004TC-3E@TX100-S3P



Bug#750837: ITP: moarvm -- virtual machine for Rakudo Perl 6 and NQP

2015-03-15 Thread gregor herrmann
On Sun, 15 Mar 2015 11:46:13 +0100, Daniel Dehennin wrote:

 gregor herrmann gre...@debian.org writes:
  I just rework my packaging[1] against the latest MoarVM 2015.02 :
  % git clone git://git.baby-gnu.net/pkg-moarvm.git
  Cloning into 'pkg-moarvm'...
  fatal: remote error: access denied or repository not exported:
  /pkg-moarvm.git
 Sorry, I forgot the git-daemon-export-ok, it's ok now.

Works, thanks!

  P: moarvm source: debian-watch-may-check-gpg-signature
  Can be ignored.
 Sure, it's just pedantic

And nothing we can fix.
 
  W: moarvm: hardening-no-relro usr/bin/moar
  I: moarvm: hardening-no-fortify-functions usr/bin/moar
  W: moarvm: hardening-no-relro usr/lib/moar/libmoar.so
  I: moarvm: hardening-no-fortify-functions usr/lib/moar/libmoar.so
  I: moarvm: extended-description-is-probably-too-short
 
  That's unfortunate and needs investigation.
   
  I think I'll need to patch the build system to use the environment
  variables for *FLAGS for hardening.
 
  Yup, looks like the *FLAGS are ignored.

I looked into this now, see the attached patch series.
(Not perfect but a starting point.)
 
  Maybe you could push the git repo to alioth (to the rakudo team
  maybe?), then it's easier for others to clone/look/help out. What dou
  you think? - No idea how pkg-rakudo works but I assume they are
  welcoming since I know the some guys there :) And you're already a
  project member.
 Yes, that's why I rename my repository to pkg-moarvm like pkg-rakudo.

Excellent!


Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer -  https://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Ry Cooder: The Very Thing That Makes You Rich (Makes Me Poor)
From edf93a0173b295d74cc761f0264f6cf00dd7d29d Mon Sep 17 00:00:00 2001
From: gregor herrmann gre...@debian.org
Date: Sun, 15 Mar 2015 14:48:40 +0100
Subject: [PATCH 1/3] make build verbose

and add build target to phony

NOTE:
maybe NOISY should be guarded by DH_VERBOSE or something
---
 debian/rules | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/rules b/debian/rules
index 800e46a..74b7b31 100755
--- a/debian/rules
+++ b/debian/rules
@@ -43,9 +43,9 @@ override_dh_auto_build:
 		-w release:MoarVM-$(MOAR_VERSION) \
 		-w date:$(MOAR_DATE) \
 		docs/moar.pod
-	dh_auto_build
+	dh_auto_build -- NOISY=1
 
 override_dh_strip:
 	dh_strip --dbg-package=moarvm-dbg
 
-.PHONY: override_dh_auto_configure override_dh_auto_build override_dh_strip
+.PHONY: override_dh_auto_configure override_dh_auto_build override_dh_strip build
-- 
2.1.4

From 5f0616fea61b9fd661535c0114ed6e193ad417fb Mon Sep 17 00:00:00 2001
From: gregor herrmann gre...@debian.org
Date: Sun, 15 Mar 2015 14:56:01 +0100
Subject: [PATCH 2/3] add patch buildflags.patch to honour FLAGS

TODO:
- add DEP3 headers
- maybe some fine-tuning, now we have duplicates
- might be good to discuss with upstream
---
 debian/patches/buildflags.patch | 18 ++
 debian/patches/series   |  1 +
 2 files changed, 19 insertions(+)
 create mode 100644 debian/patches/buildflags.patch
 create mode 100644 debian/patches/series

diff --git a/debian/patches/buildflags.patch b/debian/patches/buildflags.patch
new file mode 100644
index 000..ceac91e
--- /dev/null
+++ b/debian/patches/buildflags.patch
@@ -0,0 +1,18 @@
+--- a/build/setup.pm
 b/build/setup.pm
+@@ -269,13 +269,13 @@
+ cc = 'gcc',
+ ld = undef,
+ 
+-ccmiscflags  = '',
++ccmiscflags  = $ENV{CFLAGS} $ENV{CPPFLAGS},
+ ccwarnflags  = '',
+ ccoptiflags  = '-O%s -DNDEBUG',
+ ccdebugflags = '-g%s',
+ ccinstflags  = '-pg',
+ 
+-ldmiscflags  = '',
++ldmiscflags  = $ENV{LDFLAGS},
+ ldoptiflags  = undef,
+ lddebugflags = undef,
+ ldinstflags  = undef,
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..896fdf1
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+buildflags.patch
-- 
2.1.4

From d09339a226612766f5dfbd3a552e6ecccf2a7815 Mon Sep 17 00:00:00 2001
From: gregor herrmann gre...@debian.org
Date: Sun, 15 Mar 2015 15:00:32 +0100
Subject: [PATCH 3/3] debian/rules: drop dpkg buildflags import

happens automatically with dh9

NOTE:
leave DEB_BUILD_MAINT_OPTIONS for now, adds more hardening flags
---
 debian/rules | 4 
 1 file changed, 4 deletions(-)

diff --git a/debian/rules b/debian/rules
index 74b7b31..7058785 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,10 +5,6 @@
 # export DH_VERBOSE=1
 # export DH_OPTIONS=-v
 
-# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
-DPKG_EXPORT_BUILDFLAGS = 1
-include /usr/share/dpkg/default.mk
-
 ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
 CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
 else
-- 
2.1.4



signature.asc

Bug#780525: ITP: xwrited -- display write and wall messages as desktop notifications

2015-03-15 Thread Thomas Koch
Package: wnpp
Severity: wishlist
Owner: Thomas Koch tho...@koch.ro

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

* Package name: xwrited
  Version : 1
  Upstream Author : Guido Berhoerster guido+xwri...@berhoerster.name
* URL : https://code.guido-berhoerster.org/projects/xwrited/
* License : MIT
  Programming Lang: C
  Description : display write and wall messages as desktop notifications
 The xwrited utility displays write(1) and wall(1) messages as desktop
 notifications. A notification daemon compliant to the freedesktop.org
 Desktop Notification Specification draft needs to be running in order
 to display the notifications.
 .
 This utility is useful e.g. to send (forward) broadcast (wall) messages
 to all users from cronjobs or system daemons.
 .
 The xwrited daemon is autostarted for each new X session after the
 installation of this package.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVBbMZAAoJEAf8SJEEK6ZaV34P/jz6BFI1AXuSNsWJ/B995Odi
SGlWBKKC1mGjwQzhVkeLQQWJeSb8dVhY2ALuYsmHz0wK7cppYIGYCXx8Ja+YmQHc
F1AtqRP0z6SgJgUKc6LNqcgAfnkkV3LEVdA/Zwn/CtZSN9bHpFEbIckERnEDfV9w
yRb3Yvvw4z4zvRnQVdRz9plmqA7hhyzxjM06XnIX4gNw1WlFdThNFaQyXuJpgcUh
jd6LPVGBPMa13LHJYjt1REw5WBOTOyd8fu4317vPrsFkM+nEfxTD9gbvaF6Qptkq
NpyGh59uJNmYwgVlYvNFn2gjKo1beo4xcJBmogkBbQGOQTnSAfvCuG6X6Dz8RngI
05pOhJQKBDCv21U7X83p24W3U4BIdxzVqHoK9uTtEA1EpjLg7kKJVJ4vnbSNVa5B
1aAG2iR4xtHCk66g3f9qgyJz5HK8aL7F7W8wsZj26zxyHoW9Z6iSsOQbKp7l86si
CXg6x0tOlYEr8n0+aXVFf6ifHT4UCGfPD3LSxFEbX5su4Z1sS5dS6SIS3gDvlP14
kV/4WzB2QR9zACvYlweF07CpZPXs+3zikkJfobA/6LLhRDPsHXKbtVa0OZdq6Jt1
PTmajM1kBUMLtEya0/oOYaqbDjsHAD7k8KSYhpG03dyWAfM6OjtyUtXzOuqug16a
ubnKNNZ3w8zReG5WwpEp
=w3Ec
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150315162814.3846.35705.reportbug@x121e



Bug#719330: Going forward with jmol in debian

2015-03-15 Thread Julien Puydt

Hi,

we need the new jmol for the sagemath packaging effort ; unfortunately, 
none of us has any clue how to package java code.


From looking at the sources, upstream is using the classical ant 
builder, so I guess on the other hand the debian java team would find it 
pretty easy to help on the matter.


So which way do we go ? Can someone take care of the matter within the 
debichem team, or should we ask the debian java team to take over ?


Thanks,

Snark on #debian-science


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5505426f.6000...@laposte.net



Bug#777671: firejail packaging

2015-03-15 Thread GCS
Hi Reiner,

On Sat, Mar 14, 2015 at 9:24 PM, Reiner Herrmann rei...@reiner-h.de wrote:
 While packaging it, I sent a few patches upstream, which is the reason
 why I intended to wait for a new upstream release before submitting it, so
 that those patches can be dropped.
 But there's no problem only later removing it from the package when
upstream releases a new version. The package needs to go through our
NEW queue anyway which needs time. Newer versions can be uploaded
meanwhile.

 But since you are interested in the package, I uploaded my current state.
 Woule you be interested in reviewing it and sponsoring an upload?
 Sure. Generally it's good. Only a few nitpicks:
- extra line at the end of copyright,
- also an extra line at the end of rules,
- rules file format may be noted on the second line with '# -*- makefile -*-',
- you may add DH_VERBOSE option (uncommented ATM) to rules,
- it's a small package and probably not worth it, but you may add
'--parallel' to 'dh $@' in rules,
- in control, I'd not start the long description with the package name
as it's already known,
- I don't see why you install README, the description part is already
in control, plus the download, build and install part is not relevant
for the users (they can do and maybe already did it with apt-get
install),
- patches needs to be updated with newer releases, that's why I prefer
removing extra files in rules and no patching / while nothing wrong
with your way,
- the use of GPL 2.0 (dot+zero) in copyright, as it's noted 2 or 3
everywhere including the second line of the package COPYING file, in
its Wiki[1] or on the GNU license page[2]; only the filenames may
contain that ending.

If you change any of these, I can wait or if you want, upload it as is.

Regards,
Laszlo/GCS
[1] http://en.wikipedia.org/wiki/GNU_General_Public_License
[2] http://www.gnu.org/licenses/gpl-2.0.html


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAKjSHr0DU4Em=oj-v58fdajr9fsvgffgkgszfknxzjmu86r...@mail.gmail.com



Bug#780513: ITP: gst-rtsp-server1.0 - GStreamer based RTSP server library

2015-03-15 Thread Sebastian Dröge
Package: wnpp
Severity: normal

Package name: gst-rtsp-server1.0
Version: 1.4.5
Upstream Author: GStreamer Project
URL: http://gstreamer.freedesktop.org
License: LGPLv2.1+

I'm planning to package gst-rtsp-server1.0 as part of the pkg-gstreamer
team. A package should go to the NEW queue some time later today.


signature.asc
Description: This is a digitally signed message part


Bug#750837: ITP: moarvm -- virtual machine for Rakudo Perl 6 and NQP

2015-03-15 Thread Daniel Dehennin
gregor herrmann gre...@debian.org writes:


[...]

  Yup, looks like the *FLAGS are ignored.

 I looked into this now, see the attached patch series.
 (Not perfect but a starting point.)

Thanks, I'll look at them just after my brewing meeting ;-)

  Maybe you could push the git repo to alioth (to the rakudo team
  maybe?), then it's easier for others to clone/look/help out. What dou
  you think? - No idea how pkg-rakudo works but I assume they are
  welcoming since I know the some guys there :) And you're already a
  project member.
 Yes, that's why I rename my repository to pkg-moarvm like pkg-rakudo.

 Excellent!

But it seems I can't create a new repository on alioth, I'll wait for an
admin to create the empty “pkg-moarvm.git” bare repository and then I'll
push here.

Regards.

NB: I'm not sure about keeping all the Cc: on all mails.

-- 
Daniel Dehennin
Récupérer ma clef GPG: gpg --recv-keys 0xCC1E9E5B7A6FE2DF
Fingerprint: 3E69 014E 5C23 50E8 9ED6  2AAD CC1E 9E5B 7A6F E2DF


signature.asc
Description: PGP signature


Bug#777671: firejail packaging

2015-03-15 Thread Reiner Herrmann
Hi Laszlo,

thank you for your review.
I just reworked most of your suggestions into the package.

On 03/15/2015 10:25 AM, László Böszörményi (GCS) wrote:
 - extra line at the end of copyright,
Done

 - also an extra line at the end of rules,
Done

 - rules file format may be noted on the second line with '# -*- makefile -*-',
I left this still out, because I think it should be clear that
it is a Makefile (especially with #!/usr/bin/make at the top).

 - you may add DH_VERBOSE option (uncommented ATM) to rules,
Done

 - it's a small package and probably not worth it, but you may add
 '--parallel' to 'dh $@' in rules,
Done

 - in control, I'd not start the long description with the package name
 as it's already known,
I also left the long description as it is. I checked several other
packages, and starting it with the package name seems to be the normal case?

 - I don't see why you install README, the description part is already
 in control, plus the download, build and install part is not relevant
 for the users (they can do and maybe already did it with apt-get
 install),
You're right, the README doesn't make much sense now. I've removed
it from the package.

 - patches needs to be updated with newer releases, that's why I prefer
 removing extra files in rules and no patching / while nothing wrong
 with your way,
I didn't think of it at first, but I also agree that it's better to
remove them in rules than to keep updating patches.

 - the use of GPL 2.0 (dot+zero) in copyright, as it's noted 2 or 3
 everywhere including the second line of the package COPYING file, in
 its Wiki[1] or on the GNU license page[2]; only the filenames may
 contain that ending.
Done

I also now let the bash-completion script be installed by debhelper instead
of the upstream Makefile.

 If you change any of these, I can wait or if you want, upload it as is.

Can you please redownload it again (same place), review and then upload it?

Thank you!

Regards,
 Reiner



signature.asc
Description: OpenPGP digital signature


Bug#719330: [Debichem-devel] Bug#776662: Going forward with jmol in debian

2015-03-15 Thread Tobias Hansen
Am 15.03.2015 um 12:40 schrieb Michael Banck:
 Hi,
 
 On Sun, Mar 15, 2015 at 09:27:27AM +0100, Julien Puydt wrote:
 we need the new jmol for the sagemath packaging effort ;
 unfortunately, none of us has any clue how to package java code.

 From looking at the sources, upstream is using the classical ant
 builder, so I guess on the other hand the debian java team would
 find it pretty easy to help on the matter.

 So which way do we go ? Can someone take care of the matter within
 the debichem team, or should we ask the debian java team to take
 over ?
 
 The problem is not building jmol - the problem is packaging the
 additional requirements since the last version that is in Debian.
 
 I believe the main issue was jmolspec or something (sorry I am on crappy
 internet right now and cannot check), which was a mess to package by
 itself.
 
 One alternative (if sagemath does not require it) would be to come up
 with a way to hack out that additional feature, if that is possible.
 
 I am not to keen on moving jmol packaging over to the java team, as e.g.
 the cdk package is lingering along there as well.  I am more than happy
 to add people who are interested in helping with jmol packaging to the
 debichem team, though.
 

Although sagemath installs JSpecView itself, I don't think it needs a
viewer for spectral data in the JCAMP-DX format since it uses jmol
only as a viewer for its 3d plots. If the package doesn't secretly
provide other functionality as well it's quite possible that sagemath
can work with a jmol version without that.

Sagemath does however use jsmol.

Best,
Tobias


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/55058079.6010...@debian.org



Bug#780516: ITP: toulbar2 -- An exact optimization solver for Graphical Models.

2015-03-15 Thread Thomas Schiex

Package: wnpp
Severity: wishlist
Owner: Thomas Schiex empnes...@gmail.com

* Package name: toulbar2
  Version : 0.9.8
  Upstream Author : Simon de Givry simon.degi...@toulouse.inra.fr
* URL : https://mulcyber.toulouse.inra.fr/projects/toulbar2/
* License : GPL
  Programming Lang: C++
  Description : An exact optimization solver for Graphical Models.

Toulbar2 is an exact combinatorial optimization tool for problems
defined as Graphical Models such as Cost Function Networks, Markov
Random Fields, Weighted Constraint Satisfaction Problems and Bayesian
Nets. It includes many recent state of the art algorithms, has won
several optimization competitions and used to solve different real
life scientific problems.

This software is a scientific optimization software. It is unique in
its capabilities, although it is related to software such as OpenGM2
(http://hci.iwr.uni-heidelberg.de/opengm2/) or daoopt
(https://github.com/lotten/daoopt). It has been used to tackled
different real life optimization problems especially in scientific
areas such as genetics and computation protein design. 

As the most active developpers of toulbar2, we intend to maintain and
package it. We do not need co-maintainers and don't know if a sponsor
is needed.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150315130329.16651.86855.reportbug@pustule



Processed: ITP: fonts-sil-javanese -- Javanese smart Unicode fonts

2015-03-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 owner 780482 slamet badwi slamet.ba...@gmail.com
Bug #780482 [wnpp] ITP: fonts-sil-javanese -- Javanese smart Unicode fonts
Owner recorded as slamet badwi slamet.ba...@gmail.com.
 stop
Stopping processing here.

Please contact me if you need assistance.
-- 
780482: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780482
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142640165130387.transcr...@bugs.debian.org



Processed: dyfi: block ITP 779708 by RFS 780096

2015-03-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 779708 by 780096
Bug #779708 [wnpp] ITP: dyfi -- Client for updating dynamic hostname mappings 
for dy.fi
779708 was not blocked by any bugs.
779708 was not blocking any bugs.
Added blocking bug(s) of 779708: 780096
 stop
Stopping processing here.

Please contact me if you need assistance.
-- 
779708: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779708
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142640185930963.transcr...@bugs.debian.org



Bug#750837: ITP: moarvm -- virtual machine for Rakudo Perl 6 and NQP

2015-03-15 Thread Daniel Dehennin
gregor herrmann gre...@debian.org writes:

 I just rework my packaging[1] against the latest MoarVM 2015.02 :

 % git clone git://git.baby-gnu.net/pkg-moarvm.git
 Cloning into 'pkg-moarvm'...
 fatal: remote error: access denied or repository not exported:
 /pkg-moarvm.git

Sorry, I forgot the git-daemon-export-ok, it's ok now.

 Actually, lintian says:
 W: moarvm source: empty-short-license-in-dep5-copyright (paragraph at 
 line 50)

 Should be easy to fix by providing a short license name.
 (Can be other if there is nothing ready-to-use.)

Great, I was wondering what to use in that case.


 P: moarvm source: debian-watch-may-check-gpg-signature

 Can be ignored.

Sure, it's just pedantic

 W: moarvm: hardening-no-relro usr/bin/moar
 I: moarvm: hardening-no-fortify-functions usr/bin/moar
 W: moarvm: hardening-no-relro usr/lib/moar/libmoar.so
 I: moarvm: hardening-no-fortify-functions usr/lib/moar/libmoar.so
 I: moarvm: extended-description-is-probably-too-short

 That's unfortunate and needs investigation.
  
 I think I'll need to patch the build system to use the environment
 variables for *FLAGS for hardening.

 Yup, looks like the *FLAGS are ignored.

 I wonder if I should have a -dfsg branch to remove the 3rdparty
 libatomic_ops and libtommath since I build against the Debian ones.

 If they are dfsg-free they can stay in the source package, as long as
 they are not used. No need for the additional hassle of repackaging.

Ok, I was not sure about source files duplication.

 Maybe you could push the git repo to alioth (to the rakudo team
 maybe?), then it's easier for others to clone/look/help out. What dou
 you think? - No idea how pkg-rakudo works but I assume they are
 welcoming since I know the some guys there :) And you're already a
 project member.

Yes, that's why I rename my repository to pkg-moarvm like pkg-rakudo.

Regards.
-- 
Daniel Dehennin
Récupérer ma clef GPG: gpg --recv-keys 0xCC1E9E5B7A6FE2DF
Fingerprint: 3E69 014E 5C23 50E8 9ED6  2AAD CC1E 9E5B 7A6F E2DF


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87pp8ay1vu@hati.baby-gnu.org



Processed: ITP: c -- Compile and execute C scripts in one go!

2015-03-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 owner 779904 Ryan Jacobs ryan.mjac...@gmail.com
Bug #779904 [wnpp] ITP: c -- Compile and execute C scripts in one go!
Owner recorded as Ryan Jacobs ryan.mjac...@gmail.com.
 stop
Stopping processing here.

Please contact me if you need assistance.
-- 
779904: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779904
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142640164130352.transcr...@bugs.debian.org



Processed: node-bluebird: block ITP 779305 by RFS 779667

2015-03-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 779305 by 779667
Bug #779305 [wnpp] ITP: node-bluebird -- Full featured Promises/A+
779305 was blocked by: 780342 780312 780357
779305 was blocking: 779306
Added blocking bug(s) of 779305: 779667
 stop
Stopping processing here.

Please contact me if you need assistance.
-- 
779305: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779305
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142640186131054.transcr...@bugs.debian.org



Bug#719330: [Debichem-devel] Bug#776662: Going forward with jmol in debian

2015-03-15 Thread Michael Banck
Hi,

On Sun, Mar 15, 2015 at 09:27:27AM +0100, Julien Puydt wrote:
 we need the new jmol for the sagemath packaging effort ;
 unfortunately, none of us has any clue how to package java code.
 
 From looking at the sources, upstream is using the classical ant
 builder, so I guess on the other hand the debian java team would
 find it pretty easy to help on the matter.
 
 So which way do we go ? Can someone take care of the matter within
 the debichem team, or should we ask the debian java team to take
 over ?

The problem is not building jmol - the problem is packaging the
additional requirements since the last version that is in Debian.

I believe the main issue was jmolspec or something (sorry I am on crappy
internet right now and cannot check), which was a mess to package by
itself.

One alternative (if sagemath does not require it) would be to come up
with a way to hack out that additional feature, if that is possible.

I am not to keen on moving jmol packaging over to the java team, as e.g.
the cdk package is lingering along there as well.  I am more than happy
to add people who are interested in helping with jmol packaging to the
debichem team, though.


Michael


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150315114024.gk22...@raptor.chemicalconnection.dyndns.org



Bug#780540: ITP: mraa -- userspace I/O library

2015-03-15 Thread Tom Ingleby
Package: wnpp
Severity: wishlist

mraa (libmraa) is library for interacting with userspace I/O on
GNU/Linux platforms. The library abstracts platform quirks away from the
end user. Currently interfaces supported include GPIO/PWM/I2C/SPI.

mraa is licensed under MIT
Source is available at https://github.com/intel-iot-devkit/mraa

Cheers,
Tom


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150315205606.ga24...@tyr.ewsting.org



Bug#780549: O: foiltex -- collection of LaTeX files for making foils and slides

2015-03-15 Thread Atsuhito Kohda
Package: wnpp
Severity: normal

I've retired from Debian so
I intend to orphan the foiltex package.

The package description is:
 foiltex is a set of LaTeX style files that makes it easy to prepare
 material for video or overhead projection, such as transparencies,
 slides, and computer-projected presentations.
 .
 It allows the user to manipulate the text typeface and size for
 display and create header and footer material, and includes special
 environments for scientific and mathematical presentations.

Best regards,   Mon Mar 16 2015

-- 
 Debian Developer - much more I18N of Debian
 Atsuhito Kohda kohda AT debian.org
 Department of Math., Univ. of Tokushima


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150316001005.5817.29959.report...@mac-deb.pm.tokushima-u.ac.jp



Bug#780548: ITP: frobby -- Computations with monomial ideals

2015-03-15 Thread Torrance, Douglas
Package: wnpp
Severity: wishlist
Owner: Doug Torrance dtorra...@monmouthcollege.edu

* Package name: frobby
  Version : 0.9.0
  Upstream Author : Bjarke Hammersholt Roune bjarke.ro...@gmail.com
* URL : http://www.broune.com/frobby/
* License : GPL-2+
  Programming Lang: C++
  Description : Computations with monomial ideals

Frobby is a software system and project for computations with monomial ideals.
Frobby is free software and it is intended as a vehicle for computational and
mathematical research on monomial ideals.

The current functionality includes Euler characteristic, Hilbert series,
maximal standard monomials, combinatorial optimization on monomial ideals,
primary decomposition, irreducible decomposition, Alexander dual, associated
primes, minimization and intersection of monomial ideals as well as the
computation of Frobenius problems (using 4ti2) with very large numbers. Frobby
is also able to translate between formats that can be used with several
different computer systems, such as Macaulay 2, Monos, 4ti2, CoCoA4 and
Singular. Thus Frobby can be used with any of those systems.

I intend to maintain this package as part of the Debian Science project.

--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150316003211.30653.40351.reportbug@cayke



Bug#780561: ITP: libsqon0 -- Structured Query Object Notation - C API

2015-03-15 Thread David McMackins
Package: wnpp
Severity: wishlist
Owner: David McMackins cont...@mcmackins.org

* Package name: libsqon0
  Version : 0.0.1
  Upstream Author : Delwink, LLC da...@delwink.com
* URL : http://www.delwink.com/software/libsqon.html
* License : (AGPLv3)
  Programming Lang: (C)
  Description : Structured Query Object Notation - C API

Provides an API for interacting with SQL databases and getting results
in JSON
format. Currently supports MySQL, but support for other databases is planned
for future iterations.

This package will be useful to future Delwink software which will be
submitted
to Debian using this package. It will be helpful to those testing Delwink
software that is in development using this library.

As the author of the software, I intend on maintaining it myself, though
I may
make use of a co-maintainer if they are willing to build for other
architectures (not amd64). I would also maintain the corresponding
libsqon-dev
package for header files.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/55064698.7030...@mcmackins.org



Bug#780556: O: ptex-jtex -- ASCII jTeX with pTeX

2015-03-15 Thread Atsuhito Kohda
Package: wnpp
Severity: normal

I've retired from Debian so
I intend to orphan the ptex-jtex package.

The package description is:
 ASCII jTeX is Japanese TeX, designed by ASCII corporation.
 .
 In this version, 'jtex' and 'jlatex' are renamed as 'ajtex' and 'ajlatex',
 respectively. And these programs are compiled with a recent ptex, which is
 included in texlive-binaries package.  Note ajlatex is of latex209 version.
 .
 Note ptex in texlive-binaries needs to use option --kanji=euc for a file
 in EUC-JP encoding, so please add --kanji=euc for ajtex/ajlatex commands.

Best regards,   Mon Mar 16 2015

-- 
 Debian Developer - much more I18N of Debian
 Atsuhito Kohda kohda AT debian.org
 Department of Math., Univ. of Tokushima


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150316012547.6411.93563.report...@mac-deb.pm.tokushima-u.ac.jp



Processed: your mail

2015-03-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unarchive 439888
Bug #439888 {Done: Lucas Nussbaum lu...@debian.org} [wnpp] RFP: macaulay2 -- 
Software system for algebraic geometry research
Unarchived Bug 439888
 reopen 439888
Bug #439888 {Done: Lucas Nussbaum lu...@debian.org} [wnpp] RFP: macaulay2 -- 
Software system for algebraic geometry research
Bug reopened
Ignoring request to alter fixed versions of bug #439888 to the same values 
previously set
 retitle 439888 ITP: macaulay2 -- Software system for algebraic geometry 
 research
Bug #439888 [wnpp] RFP: macaulay2 -- Software system for algebraic geometry 
research
Changed Bug title to 'ITP: macaulay2 -- Software system for algebraic geometry 
research' from 'RFP: macaulay2 -- Software system for algebraic geometry 
research'
 owner 439888 !
Bug #439888 [wnpp] ITP: macaulay2 -- Software system for algebraic geometry 
research
Owner changed from gur...@phys.ethz.ch to Torrance, Douglas 
dtorra...@monmouthcollege.edu.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
439888: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439888
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142647088510700.transcr...@bugs.debian.org



Bug#780558: O: mathematica-fonts -- installer for Mathematica fonts

2015-03-15 Thread Atsuhito Kohda
Package: wnpp
Severity: normal

I've retired from Debian so
I intend to orphan the mathematica-fonts package.

The package description is:
 This package downloads Mathematica fonts from http://support.wolfram.com/
 and installs them, because the license prohibits their distribution.
 Please note that it may fail if the web site no longer offers them for
 download.
 .
 This package will currently only install AFM, TTF, and Type1 fonts.

Best regards,   Mon Mar 16 2015

-- 
 Debian Developer - much more I18N of Debian
 Atsuhito Kohda kohda AT debian.org
 Department of Math., Univ. of Tokushima


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150316015501.7655.80816.report...@mac-deb.pm.tokushima-u.ac.jp



Bug#780557: O: imgtex -- provides yet another math-on-the-web solution

2015-03-15 Thread Atsuhito Kohda
Package: wnpp
Severity: normal

I've retired from Debian so
I intend to orphan the imgtex package.

The package description is:
 imgTeX uses dvipng and FastCGI to embed LaTeX equations within HTML code.
 It runs very fast and renders high quality math equations.
 .
 Home page of imgTeX http://www.eaflux.com/imgtex/

Best regards,   Mon Mar 16 2015

-- 
 Debian Developer - much more I18N of Debian
 Atsuhito Kohda kohda AT debian.org
 Department of Math., Univ. of Tokushima


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150316015218.7484.96474.report...@mac-deb.pm.tokushima-u.ac.jp