Bug#790835: ITP: ruby-select2-rails -- jQuery based replacement for select boxes

2015-07-02 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

package: wnpp
severity: wishlist
owner: Pirate Praveen 

https://rubygems.org/gems/select2-rails
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVlOU0AAoJEM4fnGdFEsIqy4EP/RZtonEJVlt5bAthqG/tW10/
DB/GiSTC2nNIW6yZqbEt4XGLXxFSYt8fvhJgVI5t6imRsoIWuYhl3wzzktg96ety
Q8NdFVLKPQWGfrr7U0/gfuY5PIkZzy//aRhzd3Q3No63pxcSO+DL0ANNiFdBcaG9
XYGDtzRL4VL0xM0j/Wu2//p/KF0V5y/yJaRO3p49eIWUopjx1qU+deg7olqBpmGo
BQdIkahId31aQZG8JNGSMl5V8ijLCDkSlnAPWFYKpMW/k+uwu5rsej0NT18qTYVJ
tSfbygVmmjBJAiUYPfI3Uu9zcUz/b6npsaFdhu1I8kOiBAgrwJIYTq1FdB+4qeZM
KmbYHKYF0TY/+DlmYkObI810ROOAXhMFUESFiefdIxv0v+DBJYdQcptH3sYCC5qC
sJ+SKaLfNmxlxexzaEFRAf8aU5W4WJ2g5x7ALMSsD5qnIhbTImXJS58Y+KC2l1yD
SQ/t7rIPTVH7GyTuwE9iX3fNy4OP3397EVfH9457usRWdXErRchNBR2Y3jx/dM2e
O00AXYmKaylL3lnwI0iXItDQWSrfPGUvdkXICOWWzxASxEMBVWoQzyYA7OJOlpMB
Hu9/bC+9Tr4SNVarZalZ4P7CZGy5dzklyfkkV7vBXURihJuqnTmHOOpZzz0gbkd8
uR616sa3EX3rE5Kw4yNH
=KIrq
-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/5594e534.7030...@debian.org



Bug#790836: ITP: ruby-html-pipeline -- GitHub HTML processing filters and utilities

2015-07-02 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

package: wnpp
severity:wishlist
owner: Prate Praveen 

https://rubygems.org/gems/html-pipeline
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVlO7GAAoJEM4fnGdFEsIq7N4QAJSkgoNwqVKIvfCXyykxwOet
8YSP7GlT7IfOe5YY5LY4WcAaljKlFLc04QGVQ87FeBZVjwES1nxFjYuNNDynkkQR
TPUZuxp8Y4tQZhN3BA6OFOgJBuFLHuMmmA6lhjAw6UmOUwNKJXLyRi7UNvcCGgOT
kBiYddhgy/PaPpOnU/nfuiUb8khXBBXviml5LrenzCImlrAv5jceFo9HM8Z7w6ue
A9VSZdo18F1Rl+ecgG8TyvivSoannmaMY2eRxZn5Ma4DYqnJ7+8eodqIHoBr3Fso
kZn9d/OhNQs0Bdn83AbJ6ItbNarFJDRT8RatvXf7dbLG/ecdEoC2kzZFcz6dJEBJ
vCwIE9YrK/trFRnqhQSxz6JRXJzp75Pv4+oB0XZ6kpQyM6+WaYGk5Ulq00bOlEgw
fDwmOl/YkYmtjjhzmP+BUUlWNFyOaPz9/S0vYsCiTNy/5dn/Lj4+w02xXShPyOq0
9WtLRgExcBFpY72y22y6744Wcc986CTTzBjL8Ft0MXI9gPPFAsbEg1nd6c3ytfZ4
FctjWAJykDu1gFt3oDj6nU2C9WlGLqZnY1qptB52xZy9okSD7IJiFaWX9MeUOo8Y
rZC2+F2dohfE0PFgYBNhCwXpv9a0WYHyNmD4Pa/zrcUiJbxwiM0Yk8gDKu9zZa+R
Lc6kBLy7B+GzEZ0ROBYl
=pSAg
-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/5594eec7.9000...@debian.org



Bug#790837: ITP: golang-github-jacobsa-fuse -- writing and mounting user-space file systems from Go

2015-07-02 Thread Michael Stapelberg
Package: wnpp
Severity: wishlist
Owner: Michael Stapelberg 

* Package name: golang-github-jacobsa-fuse
  Version : 0.0~git20150625-1
  Upstream Author : Aaron Jacobs
* URL : https://github.com/jacobsa/fuse
* License : Apache-2.0
  Programming Lang: Go
  Description : writing and mounting user-space file systems from Go

 This package allows for writing and mounting user-space file systems from Go.
 It is a wrapper around bazil.org/fuse, which does the heavy lifting. It does
 not make use of the bazil.org/fuse/fs sub-package, which allows for something
 like an object-orientend representation of files and directories, and contains
 a decent amount of canned behavior.
 .
 The chief improvements and/or differences from the bazil.org packages are:
 .
  * No surprises in the form of magic/default behaviors. You must provide an
implementation for every method in the interface. Embed a
fuseutil.NotImplementedFileSystem struct to have default implementations
that return ENOSYS.
 .
  * Every method, struct, and field is thoroughly documented. This may help you
get your bearings in the world of FUSE, the Linux VFS, traditional file
system implementations, etc., all of which tend to be very poorly
documented.
 .
  * Support for arbitrary offsets in directory entries returned by ReadDir.
(The bazil.org package assumes that offsets must be counts of bytes.)
 .
 The very large disadvantage over using the bazil.org packages is that many
 features have not yet been exposed.

This is a dependency of gcsfuse, a fuse file system for Google Cloud Storage.


-- 
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/20150702080859.50D8060382B@x200



Bug#790846: ITP:ruby-task-list -- GitHub-flavored-Markdown TaskList components

2015-07-02 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

package: wnpp
severity:wishlist
owner: Prate Praveen 

https://rubygems.org/gems/task_list
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVlRiMAAoJEM4fnGdFEsIqmUEP/3xeja19mYLvei7TyKSASMOe
2FkA3wA5ySVCgngf8ijv/r0Fj0FlYS79rG7jSUgTsdMhkqKNEL3inhhASXppLgrL
p4rRjnZmA2EMe8kVt7pqvydrASrxX9GGO5qirSxOsgsQFPjnRz+zJSibgYCBnopD
t3mdWuz+w3zSy+KEcyCQwE31CdQXMHzaEBV8iKu27RgUNBpkmwYO2nMM3Brh3DQ1
N/5loTU27lifVrZnZB8bls+isV3lxIllVgUM/HP/3WCA/5QArcZ8fZDfX1OOPM7u
rSlt0mA6Muc2QSug6UKLcRWcZDeVq/HeytEBzzToGrNslbwKRlNX1vRNCRFbkpyH
FRWhWVf9McLuDXSfuUfuLIwS/bZEf/iXXpMSDhWzwOrE+OnJ4W02sAxUKH3bKuLT
2jcNh79nqy50hCjUIy/nkOHfcvriE15C4oqpjz2uVVCaCYkmXxJ1cuRimLTmnAm7
hP1pjaSRDfHLfjiBcqrnzfuosPFyM5OyhIUoeGUbPcKBubLgGxjHBV0/ZtZdyhHR
Ge7s9bGtj6C68ZyElDjTHcfUlZiniqdUnKYYLf+GRZYz1gx1dwzVv3czSqS8pl9Q
uJaHegJUaGQUKehXcEdIU9Sj500HBeRFynlT7qYo0aYTh/rHELk0zzCSNPYD6X7R
ZAT4sR/K6xECrENQFeF7
=Ap0k
-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/5595188c.8070...@debian.org



Bug#703065: Package blocked by unclear rules

2015-07-02 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On Mon, 28 Jul 2014 11:22:10 -0400 Zed Pobre  wrote:
> This software is fully packaged.  I continue to maintain a Debian 
> branch for it that is publicly accessible at:
> 
> https://github.com/AZed/mousetrap
> 
> It was blocked by the FTP team because the upstream repository 
> contains a unit test with a minified version of node.js in it. 
> Despite the fact that node.js is not used anywhere in the final
> code and is not installed on end-user systems, this is apparently a
> fatal flaw.
> 
> I requested advice on how to resolve this issue and received none.
> If someone wishes to make this process a little bit less of a black
> box, I'm still willing to maintain the package.

Just remove the minified version of javascript from the source.


see
http://anonscm.debian.org/cgit/pkg-javascript/libjs-jsxc.git/tree/debian
/gbp.conf
for an example.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVlRvkAAoJEM4fnGdFEsIqa6sP/2xSCM1c+LubnkOMfBcWZHnM
pFCYVr2NYdrR8I8XJORFLeuh/JRWhST4MxNAjzLg8UYPL4OPTj3zVw7mE77XjP7r
LmzGRAadQXn2/dw4Ebmz4O996IndwtUK4+QgRum7T22UO2Hypxw+XO6KhykvJXgM
CuTgoVkCpsWQ+F/5yxXnC/qKo5P6DiY79jUPGDnyk9wGc2FlDYD7KnL4DcpmmFF7
Mw/urg9VdIGbLydi0poRaFmm+oCgKDwaQw1GV83W2/crn+kfieeaKE1j6rp0xw5T
s8JjNL5ICO6wxVW8g+iH7P9utJlkR7/BiQU9yTjyBafgczqMKCJzWEapiGiP+EHW
/pV1JU8EipN55ALrBzu7mmJP9arFDIbPex8qYHGBfRaPXzyE2nuB7xujPdwbOf0m
+RgdtS2agSp8/ZcnRmHpQq+8KxRIsyG9N5DaZsU5VotRzQ9+2lMR4qB+LQ6Ki8T2
b6YsdyiJsxpcbYn3zSGrQl4a+/AQzm+OFyrFyoswBYxuST5FN5p62IPBqLnAxuXK
4iKwHT71y6ROzp3m7XatPV20W5RanGmWBHSxal5wpcV9fs8MujfMLn37iQ1LjQL1
tp5TKxVPbGDlT3tMxHiucjE/6FaQIMTMP5pSQwOJRer8kS4/kXWFoGLfZOfZaQKt
IXUgvhi2wD6xRl8zCQDg
=m59j
-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/55951be4.3090...@debian.org



Bug#790850: ITP: ruby-mousetrap-rails -- integrate Mousetrap with Rails asset pipeline

2015-07-02 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

package: wnpp
severity:wishlist
owner: Prate Praveen 

https://rubygems.org/gems/mousetrap-rails
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVlR3KAAoJEM4fnGdFEsIq7igP/imi9IeNRxwsWk6HyfvB6gb1
PJd8UUshrYVy2NOujn1iwcTYOZT5VhAT6BYnf3zEdgfRxzYh5ui3azeaWTuSZIMl
ZYZ6bjOLG60S+uE3fZLY3h7SnBDIdjH3JanA8+EmokqD0LU6FnylDd5SPcv1jiBG
X1UFK+g+UILdMfsy7dx/tudNyO62YB+xokKxP/i9jh91wiwyeeKdwJUB1AjyDtb+
RGG3RSqmxUIBlDJb4NvazUmrGgWQObMT4UNWj6/U14Msq3CdIXtqfsYTwa9La9mx
wULk+2SQ/6D+gTkc2ieAn7VqNFKWzLSxdtEjqBlnTTlqeaeWSGL23LWsHJkkWXl4
nJo6Am+/HAOCdNa4MJdTYC0ZlHKSax4lbxX6gXawNY60K5DR6C3c4eCWIjSIyMPB
+YP6BNrVs4mJ5vZgMwNyRr9oRkljanRY/N/JkNdGeCHvHFCxCHV/4QcYLJF5c+vs
0jS/vLCUNvTy96837+I/eJ0bKPWtofMuzytbe5VrTaJo3Qr5pLBP+FEAb9GVkr6/
YPWt7kCxOt/w89Of/p3FpeVtfQ/kBRQFvy4hQPEWh8kEbcfFYlvDn5h/rYKQ4/NL
TZhcLKHPOno1LkspJwBJZMSKTsEWPtdBU4WN8NRrj48SpEyJfM527+4F46Lr/aWO
oajlNFy5fGCeqLVe2nJ0
=aP0G
-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/55951dcb@debian.org



Bug#703065: mousetrap-rails embeds mousetrap.js

2015-07-02 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi Zed,

if you wish, I could package libjs-mousetrap from the sources of
mousetrap-rails ruby gem.

Praveen
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVlSGRAAoJEM4fnGdFEsIqyn8P/A0MSwSEwrmkJuIoah26yEsG
nWDJ5glioHMzp7bsA8OpRHX7kULkXcFiLuXqzFbCQoXyOb7npcnzfYgN057pV1iW
QshjHY7Tz6+m1zw9t0xXu6L8sOcjQmjfreHFyu5pKQQt1Jl0mYOx6FKNrUEy1Iqn
r3iGt00dCNJ+mq+yzQ5qhCJP1GN/UVoFA9Fldp3lfnoEvf8CqasF1xe3PPqjb6si
QpGUf2nAryca6bqVniqNMSqrMkt2PAieTzh1zpef1sK60FBEUNjOtRxMhpddC+oT
9eUmVr44g0x6KBjNdB0Z31/EfjgM7WLU7p6k1SpM5Ay/NfTSuBdLo7LGWC0vBK7r
GxqKbkm+aAllx6n2dZ2rTHI7K2eCiXvMDOwOFPoy8PsgLcECLidreV1WDpRZbFcW
G9gm5eLb4Yt4tcX6SH8suI+mza8v527a4oybEPvgd3U471yMYLSYzv137yq7fYFd
8MARwtRoKCem0MkWEmaO7dIhtsD6XiRcaYvfpL3A+1KtmLLtHkkBJpl12rDBhT52
sGrbeABQVo4yThUgKdu7aVO8v7tzJL3+wN4dwZc+4YqaCivZcaqmIsr+7NNUXWyH
Pp7aGtNopZxn/imqh+OWy948gf9CxnGmHSjNspSQDRUS4JMh4jxD+OK/O0PosHgy
XXXRrFQd90WwfA/Yh4T9
=aQm9
-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/55952191.2090...@debian.org



Processed: there is an itp for libjs-mousetrap

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

> block 790850 by 703065
Bug #790850 [wnpp] ITP: ruby-mousetrap-rails -- integrate Mousetrap with Rails 
asset pipeline
790850 was not blocked by any bugs.
790850 was not blocking any bugs.
Added blocking bug(s) of 790850: 703065
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
790850: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790850
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.14358369653259.transcr...@bugs.debian.org



Bug#790853: ITP: ruby-jquery-turbolinks -- jQuery plugin for drop-in fix binded events problem caused by Turbolinks

2015-07-02 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

package: wnpp
severity:wishlist
owner: Prate Praveen 

https://rubygems.org/gems/jquery-turbolinks
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJVlSK4AAoJEM4fnGdFEsIqIw0QAKLfZLA00NWDZCxCankNh9JY
Uf9UfmAnutZNqzTpG/TYLI3UKB5eN6hwLp91Hc2Ary2zjUdYtj65gXjFU2p9nAKF
ghUvyDum2y2tUyYh0MNK3bUwr9s+1OGfaPGnQwsqLQhBV9t52EfTo+dIKgCKYksv
Aj5CJzAOpI1evjuFVbxnnVlRAjEdLR03qaDy6v0YV7BfMLC80cjO7Cqp+22XG2Db
78o3bGLRl/KEB58mxDxAf8DdCmnETmAEfSO6+GeFhhdjpQ+xUohxV0SfY2hG1UFL
7w3KayQ9/cBabxCF/CyIcYkYQPCWAJmllcmDGgxzUXfiJiUvCFYLuIM0wNpztYBd
3WkWEhWlvIfOfHTdhARdBPetWEMSXm8+WCJQldHe3fIwi21NHUx7XIy8bbRiXu+2
W86+D2bMaLzidWNSWOTbX9Ly4zBpwDsFYueLAJA+YzNdOWg8VY76aVJ41xcQopEi
1RP9Oabhm0+Bj53gYNvTyk6OJ+1nQYWvJ0W6qJL7vmmR4Cn5yTNKingNvYk4eSQz
vtY98v/4DFCgrsnjkkWq67LuGhffIXigS7LnDpsN3fzy4syVbopcaUaGaOMn0CY8
Pz5rOb3ZPAzUwR7kau13uhPzyz1Sav/nHGAgRnb8qtQ6bENCjOX5auiw9MtLlDW2
4ptRuP1prsRqpayzhjNP
=Fc4o
-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/559522b9.80...@debian.org



Bug#790858: Fwd: ITP: ruby-rails-assets-jeresig--jquery.hotkeys

2015-07-02 Thread Syam G Krishnan
package: wnpp
Severity: wishlist
Owner: 'Syam G Krishnan' 

*Package Name : ruby-rails-assets-jeresig--jquery.hotkeys
 Version : 2.1.2
 Upstream Author : John Resig (Author name/s of the Gem).
*URL :  https://github.com/jeresig/jquery.hotkeys (Link to the git
repo of the Gem)
*License : Expat or GPL-2
*Description :  lets you watch for keyboard events anywhere in your
code supporting almost any key combination.


-- 
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/CAFtkABjG2-dt765ACbTR5h0dvr+pMG=5xgp2o5700g+dcye...@mail.gmail.com



Bug#790485: ITP: ruby-omniauth-kerberos -- OmniAuth strategy for Kerberos

2015-07-02 Thread Guido Günther
On Tue, Jun 30, 2015 at 12:01:48AM +0530, Balasankar C wrote:
> Package: wnpp
> Severity: wishlist
> Owner: Balasankar C 
> 
> * Package name: ruby-omniauth-kerberos
>   Version : 0.3.0
>   Upstream Author : Jan Graichen 
> * URL : https://github.com/jgraichen/omniauth-kerberos
> * License : Expat
>   Programming Lang: Ruby
>   Description : OmniAuth strategy for Kerberos

Isn't this more like

OmniAuth strategy to authenticate using a Kerberos server.

it seems to be more like using Kerberos not being for Kerberos?
Cheers,
 -- Guido


-- 
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/20150702134300.ga21...@bogon.m.sigxcpu.org



Bug#790872: ITP: python-easywebdav -- a straight-forward WebDAV client

2015-07-02 Thread IOhannes m zmoelnig
Package: wnpp
Severity: wishlist
Owner: IOhannes m zmoelnig 

* Package name: python-easywebdav
  Version : 1.2.0
  Upstream Author : Amnon Grossman 
* URL : https://github.com/amnong/easywebdav
* License : ISC
  Programming Lang: Python
  Description : a straight-forward WebDAV client

EasyWebDAV is an easy to use WebDAV client implementation for python.
It features:
- Basic authentication
- Creating directories, removing directories and files
- Uploading and downloading files
- Directory listing
- Support for client side SSL certificates


This package is a prerequisite for "deken" (ITP:#788075).
I intend to maintain this package under the python-modules-team umbrella (which
I am about to join).


-- 
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/20150702143738.13974.94265.report...@umlautq.umlaeute.mur.at



Bug#790873: ITP: notmuch-addrlookup - Adress lookup tool for Notmuch

2015-07-02 Thread Sophie Brun

Package: wnpp
Severity: normal
X-Debbugs-Cc: debian-de...@lists.debian.org

Package name :  notmuch-addrlookup
Version : 5
Upstream Author : Adrian Perez de Castro 
URL : https://github.com/aperezdc/notmuch-addrlookup-c
License : MIT

Description: notmuch-addrlookup is a tool for Notmuch database to output
the names and e-mail addresses of the people you have exchanged e-mails
with, most used ones first. This works neatly as address completer for
the Notmuch Emacs interface.


--
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/55954f0f.8020...@freexian.com



Bug#790876: ITP: ruby-devise-token-authenticatable -- token based authentication for devise

2015-07-02 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C 

* Package name: ruby-devise-token-authenticatable
  Version : 0.4.0
  Upstream Author : Sebastian Oelke 
* URL : https://github.com/baschtl/devise-token_authenticatable
* License : Expat
  Programming Lang: Ruby
  Description : token based authentication for devise


-- 
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/20150702150324.21140.1842.reportbug@sasalam



Bug#790653: marked as done (ITP: writeboost -- utility to manage mappings of dm-writeboost devices)

2015-07-02 Thread Debian Bug Tracking System
Your message dated Thu, 02 Jul 2015 16:00:43 +
with message-id 
and subject line Bug#790653: fixed in writeboost 1.20150630-1
has caused the Debian Bug report #790653,
regarding ITP: writeboost -- utility to manage mappings of dm-writeboost devices
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.)


-- 
790653: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790653
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

   Package name: writeboost
Version: 1.20150630
Upstream Author: Dmitry Smirnov 
License: GPL-2+
URL: https://gitlab.com/onlyjob/writeboost
Vcs-Browser: http://anonscm.debian.org/cgit/collab-maint/writeboost.git
Description: utility to manage mappings of dm-writeboost devices
 Writeboost is a utility to activate dm-writeboost device mappings.
 .
 dm-writeboost is an OS-level IO controller that builds logs from in-coming
 writes (data and metadata) and then writes the logs sequentially similar
 to log-structured filesystem. As a further extension, dm-writeboost
 supports read-caching which also writes data sequentially.

-- 
All the best,
 Dmitry Smirnov.


signature.asc
Description: This is a digitally signed message part.
--- End Message ---
--- Begin Message ---
Source: writeboost
Source-Version: 1.20150630-1

We believe that the bug you reported is fixed in the latest version of
writeboost, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 790...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dmitry Smirnov  (supplier of updated writeboost package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jul 2015 11:06:44 +1000
Source: writeboost
Binary: writeboost
Architecture: source all
Version: 1.20150630-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry Smirnov 
Changed-By: Dmitry Smirnov 
Description:
 writeboost - utility to manage mappings of dm-writeboost devices
Closes: 790653
Changes:
 writeboost (1.20150630-1) unstable; urgency=low
 .
   * Initial release (Closes: #790653).
Checksums-Sha1:
 97e7f6838d91e954ac7541d6f1056219b4dcc7ff 1900 writeboost_1.20150630-1.dsc
 1c0e228a08d8746647494b43c2ad6c580d0c3fd3 4290 writeboost_1.20150630.orig.tar.gz
 e589c1f0f1f99930c034e15560f303a1654d7692 1948 
writeboost_1.20150630-1.debian.tar.xz
 f909543add2b9801307f906fd34ff6d77bc799a8 9062 writeboost_1.20150630-1_all.deb
Checksums-Sha256:
 a62495b9aa2bfb99ad1e7b7eadd40541c6ca53f1a3cb75b43b3737ee8075aa38 1900 
writeboost_1.20150630-1.dsc
 83ea66589b0505885dca9af085dd4b57ace95dd0c3e5206cfa1d1c8cdd3228f4 4290 
writeboost_1.20150630.orig.tar.gz
 b415ecb45c46a0cc62a7909d8dde90a671e8c94afa9604058cbd655d110b4aef 1948 
writeboost_1.20150630-1.debian.tar.xz
 55fd4cc34907d2affe6ba8d1a85b451f5d5869b1c8bbef2e2fd3e54c429121c0 9062 
writeboost_1.20150630-1_all.deb
Files:
 2fdeae591e4de414af2de713b08c9f21 1900 utils optional 
writeboost_1.20150630-1.dsc
 06a41e9984735eae44d5a125712e6de0 4290 utils optional 
writeboost_1.20150630.orig.tar.gz
 7f8555e86bf78ba7efaca6c826ee6b2e 1948 utils optional 
writeboost_1.20150630-1.debian.tar.xz
 3124d0cb2e874398204461bfd601a763 9062 utils optional 
writeboost_1.20150630-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVlI7jAAoJEFK2u9lTlo0blFYP/iVqCn//oHXvpZJXh0GsXozD
pGScGRd38Coi/CylNMqzdHYqTCPkjF8sJWepZ96Cbn6kvMwZxPhPdDqF74oOP3sr
7XAsshz0BEKam44iJCI+v/FruqOhnZ0OFskVkOLmc3F0Lai8+tVFu4nELA74QtJK
46w0zYShAUg9CD6KSVSnXmEX2Imq8W7OGIC+e///RCmwsrGSIVZNFkMZ5GFp60/C
jYpUOHPLegdYBSyPI9G386I+6DFrJ4FyRDQ0vr6Scn8LjY7dD0YWK6qDvNjhrCVp
g9b/F+esVH2ywsheNJ5tSzHuZPt6qSu4XCnjzNYmHBmdXixYxt5zbPh+sUl1jcof
BFSr41nOZQRtkVmEOXZA4k/HOgwvCL1VtK2fiHPdu9ZE1wvr6BYIpWgiXieUtAXC
AZ9aFyhWkpxJZE7Ay2TYEMoByjxN7d4TEvDqW7PC8k6l0qg4SaXmtUJ73brTkTmm
u/JFn7Ppods6FIgfebM1+pEKGZSRyXwIsHh/8iyYHHUn2u+1L7G5qyPWW6rlKWkc
hxRpyx8rmbmXmtlip6Fj5qhd+9xI+WE9964i79tHqQkMxPMfY5YKkgoIZrr7w9ro
lXCKoIq/txQz3fkBVK36z0Z13zl/8ZImG4HA4U7p1lkG3kTzSpkCoQxfnigyZqLW
WoNm4RUbU+SCOFk60p+b
=aPLe
-END PGP SIGNATURE End Message ---


Bug#787854: marked as done (ITP: dm-writeboost -- log-structured caching for Linux)

2015-07-02 Thread Debian Bug Tracking System
Your message dated Thu, 02 Jul 2015 16:00:28 +
with message-id 
and subject line Bug#787854: fixed in dm-writeboost 2.0.0-1
has caused the Debian Bug report #787854,
regarding ITP: dm-writeboost -- log-structured caching for Linux
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.)


-- 
787854: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787854
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

   Package name: dm-writeboost
Version: 1.0.1
Upstream Author: Akira Hayakawa 
License: GPL
URL: https://github.com/akiradeveloper/dm-writeboost
Vcs-Browser: http://anonscm.debian.org/cgit/collab-maint/dm-writeboost.git
Description: log-structured caching for Linux
 dm-writeboost is an OS-level IO controller that builds logs from in-coming
 writes (data and metadata) and then writes the logs sequentially similar
 to log-structured filesystem. As a further extension, dm-writeboost
 supports read-caching which also writes data sequentially.
 .
 This package provides DKMS kernel module for Linux Kernel 3.10+.

---

dm-writeboost highlights the following features:

 Durable: Any power failure can't break consistency because each log consists
 of data, metadata and the checksum of the log itself.

 Lifetime: Other caching software separates data and metadata (e.g. dm-cache)
 and therefore submits writes to SSD too frequently. dm-writeboost, on the
 other hand, submits only one writes for hundreds data and metadata so the SSD
 lives longer since SSD's liftime depends how many writes are submitted.

 Fast: Since the sequential write is the best I/O pattern for every SSD and
 the code base is optimized for in-coming random writes, the write performance
 is the best of all caching drivers including dm-cache and bcache.

-- 
Regards,
 Dmitry Smirnov.


signature.asc
Description: This is a digitally signed message part.
--- End Message ---
--- Begin Message ---
Source: dm-writeboost
Source-Version: 2.0.0-1

We believe that the bug you reported is fixed in the latest version of
dm-writeboost, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 787...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dmitry Smirnov  (supplier of updated dm-writeboost package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 16 Jun 2015 19:00:34 +1000
Source: dm-writeboost
Binary: dm-writeboost-dkms
Architecture: source all
Version: 2.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry Smirnov 
Changed-By: Dmitry Smirnov 
Description:
 dm-writeboost-dkms - log-structured caching for Linux
Closes: 787854
Changes:
 dm-writeboost (2.0.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #787854).
Checksums-Sha1:
 70cc6546527c5bd1caa41e49483db3f3ae8ffd64 1907 dm-writeboost_2.0.0-1.dsc
 d8d132750f89b4139ab4486853b2295535cb3c61 35510 dm-writeboost_2.0.0.orig.tar.gz
 074f356ff0e723255a4f5872f7772152899f5386 2084 
dm-writeboost_2.0.0-1.debian.tar.xz
 5c0406752be78603a6387e3f8521a8f2f5b012f8 27884 
dm-writeboost-dkms_2.0.0-1_all.deb
Checksums-Sha256:
 8eb40edbd0e53d3e2b6f69659c6ce5e45626db4c3876366f73e728dfc1fc581f 1907 
dm-writeboost_2.0.0-1.dsc
 7b92f09c2ea743720623317a646dc126a9d66d542d02ca15fac7e0eee16e29d0 35510 
dm-writeboost_2.0.0.orig.tar.gz
 75864d174c3f666a702be48a8f2e93fe14c3ef867dc27144afc9a2d729e20450 2084 
dm-writeboost_2.0.0-1.debian.tar.xz
 9659b888d80aa44f6dd270f93fea4d4e9334cd2d9659c67c517e54288ce4aebd 27884 
dm-writeboost-dkms_2.0.0-1_all.deb
Files:
 65058143dc78f0752c242416aeed1691 1907 kernel optional dm-writeboost_2.0.0-1.dsc
 c3494d248b36d76e091bee21059af2a3 35510 kernel optional 
dm-writeboost_2.0.0.orig.tar.gz
 21fab6bbdd84155f45d3ffeb961c62a0 2084 kernel optional 
dm-writeboost_2.0.0-1.debian.tar.xz
 22c47a141ee75c06a200d224dbb4c901 27884 kernel optional 
dm-writeboost-dkms_2.0.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVkqRqAAoJEFK2u9lTlo0bb+QP/0ZQ3OtMWHhAlfb453d+nBRk
KicFN19UKs6/XdxjYl1WrNb1EveuE+hjPD4JlKksHYSx/5p1zvTdYvZXjj4+tVSu
t0llBrsU6hsLqxgmOD78LmG1oiLuw+sT8hP/

Processed: ITP: notmuch-addrlookup - Adress lookup tool for Notmuch

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

> owner 790873 Sophie Brun 
Bug #790873 [wnpp] ITP: notmuch-addrlookup - Adress lookup tool for Notmuch
Owner recorded as Sophie Brun .
> stop
Stopping processing here.

Please contact me if you need assistance.
-- 
790873: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790873
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.14358540694645.transcr...@bugs.debian.org



Bug#742272: packages

2015-07-02 Thread Michal Humpula
Hi Aron, Mike, ...

would it be please possible to provide links to download packaged 0.9.0.1 
version? I would like to use the ocserv, so it would save me some time to go 
trough packaging it myself.

Or even better yet, push it to official debian repositories?:)

Cheers and Thanks
Michal


-- 
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/1468291.vpapd9FYKt@amonsul



Bug#790897: ITP: rla-es -- hunspell-es-pe

2015-07-02 Thread Jonas Smedegaard
Package: wnpp
Severity: wishlist
Owner: Jonas Smedegaard 

* Package name: rla-es
  Version : 0.8
  Upstream Author : Santiago Bosio 
* URL : https://github.com/sbosio/rla-es/wiki
* License : GPL-3+
  Programming Lang: data
  Description : Spanish (Peru) dictionary for hunspell

 This is a Spanish (Peru) dictionary for use with the hunspell
 spellchecker.

...and similar to above also for Argentina, Bolivia, Chile, Colombia,
Costa Rica, Cuba, Dominican Republic, Ecuador, Guatemala, Honduras,
Mexico, Nicaragua, Panama, Puerto Rico, Paraguay, El Salvador, Uruguay
and Venezuela.  Might also include aspell dictionaries for all of above.

Package will be packaged in the Sugar team (but if others want to help
maintain without getting involved with Sugar, they are quite welcome to
take over).


-- 
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/20150702183856.19110.84593.report...@auryn.jones.dk



Bug#790898: ITP: python-macholib -- Python module for Mach-O header analysis and editing

2015-07-02 Thread IOhannes m zmoelnig
Package: wnpp
Severity: wishlist
Owner: IOhannes m zmoelnig 

* Package name: python-macholib
  Version : 1.7
  Upstream Author : Ronald Oussoren 
* URL : http://bitbucket.org/ronaldoussoren/macholib
* License : MIT
  Programming Lang: Python
  Description : Python module for Mach-O header analysis and editing

python-macholib can be used to analyze and edit Mach-O headers, the executable
format used by Mac OS X.
It's typically used as a dependency analysis tool, and also to rewrite dylib
references in Mach-O headers to be @executable_path relative.
Though this tool targets a platform specific file format, it is pure Python code
that is platform and endian independent.


This package is a prerequisite for "deken" (ITP:#788075).
I intend to maintain this package under the python-modules-team umbrella (which
I am about to join).

mgfsdr
IOhannes


-- 
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/20150702185300.3135.42051.report...@umlautq.umlaeute.mur.at



Bug#790902: ITP: geronimo-ejb-3.2-spec -- Apache Geronimo EJB 3.2 API

2015-07-02 Thread Emmanuel Bourg
Package: wnpp
Severity: wishlist
Owner: Emmanuel Bourg 

* Package name: geronimo-ejb-3.2-spec
  Version : 1.0-alpha-1
  Upstream Author : The Apache Software Foundation
* URL : http://geronimo.apache.org
* License : Apache-2.0
  Programming Lang: Java
  Description : Apache Geronimo EJB 3.2 API

Apache Geronimo is an open source server runtime that integrates the best
open source projects to create Java/OSGi server runtimes that meet the needs
of enterprise developers and system administrators. Our most popular
distribution is a fully certified Java EE 6 application server runtime.

This package contains the EJB 3.2 API.


-- 
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/20150702202837.29503.88785.report...@icare.ariane-software.com



Bug#790904: ITP: python-altgraph -- Python graph (network) package

2015-07-02 Thread IOhannes m zmoelnig
Package: wnpp
Severity: wishlist
Owner: IOhannes m zmoelnig 

* Package name: python-altgraph
  Version : 0.12
  Upstream Author : Ronald Oussoren 
* URL : http://packages.python.org/altgraph
* License : MIT
  Programming Lang: Python
  Description : Python graph (network) package

 altgraph is a fork of graphlib: a graph (network) package for constructing
 graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with
 graphviz output.
 .
 altgraph includes some additional usage of Python 2.6+ features and
 enhancements related to modulegraph and macholib.




This package is a prerequisite for "python-macholib" (ITP:#790898).
I intend to maintain this package under the python-modules-team umbrella.

mgfdsar
IOhannes


-- 
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/20150702204300.23102.66290.report...@umlautq.umlaeute.mur.at



Bug#790922: RFP: watermarking -- implementation of several different watermarking algorithms

2015-07-02 Thread Christoph Anton Mitterer
Package: wnpp
Severity: wishlist

* Package name: watermarking
  Version : 0.5
  Upstream Author : Peter Meerwald 
* URL : http://www.cosy.sbg.ac.at/~pmeerw/Watermarking/
* License : see below
  Programming Lang: C
  Description : implementation of several different watermarking algorithms

This is a set of tools for robust digital watermarking of images in the 
spatial-,
DCT-, and wavelet domain, implementing several algorithms:
Bruyndonckx, Corvi, Cox, Dugad, Fridrich, Kim, Koch, Kundur, Wang, Xia, Xie,
Zhu, Piva/Fotopoulos


The license seems to be something like public domain, according to the PDF 
manual:
>My license is called "I-don’t-care" license: (1) You can do with the accompa-
>nying software whatever you want, but don’t blame me if it doesn’t work or it
>causes damage. (2) If you think my work is useful, tell me and tell others, but
>you are not obliged to do so. I suggest not to remove information contained in
>this other documentation file.


Cheers,
Chris.


-- 
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/20150703031406.558.33374.report...@heisenberg.scientia.net



Bug#790926: ITP: rdp-classifier -- extensible sequence classifier for fungal lsu, bacterial and archaeal 16s

2015-07-02 Thread Andreas Tille
Package: wnpp
Severity: wishlist
Owner: Andreas Tille 

* Package name: rdp-classifier
  Version : 2.10.2
  Upstream Author : Michigan State University Board of Trustees 

* URL : https://github.com/rdpstaff/classifier
* License : GPL
  Programming Lang: Java
  Description : extensible sequence classifier for fungal lsu, bacterial 
and archaeal 16s
 The RDP Classifier is a naive Bayesian classifier which was developed
 to provide rapid taxonomic placement based on rRNA sequence data. The
 RDP Classifier can rapidly and accurately classify bacterial and
 archaeal 16s rRNA sequences, and Fungal LSU sequences. It provides
 taxonomic assignments from domain to genus, with confidence estimates
 for each assignment. The RDP Classifier likely can be adapted to
 additional phylogenetically coherent bacterial taxonomies.


This package is maintained by the Debian Med team at
   Vcs-Svn: 
svn://anonscm.debian.org/debian-med/trunk/packages/rdp-classifier/trunk/


-- 
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/20150703034839.3298.52853.report...@mail.an3as.eu