Bug#927073: ITP: golang-github-alecthomas-binary -- general purpose binary encoder/decoder

2019-04-14 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C 

* Package name: golang-github-alecthomas-binary
  Version : 0.0~git20171101.6e8df1b-1
  Upstream Author : Alec Thomas
* URL : https://github.com/alecthomas/binary
* License : Expat
  Programming Lang: Go
  Description : General purpose binary encoder/decoder

This package provides compact binary encoding for Go.
The Go standard library package encoding/binary provides
encoding/decoding of fixed-size Go values or slices of same. This
package extends support to arbitrary, variable-sized values by prefixing
these values with their varint-encoded size, recursively.

This package is a member of gopasspw dependency tree[1]

[1] https://wiki.debian.org/Teams/DebianGoTeam/GopasspwPackaging

Regards
Balu



Bug#927061: ITP: golang-github-muesli-crunchy -- finds common flaws in passwords

2019-04-14 Thread Balasankar C
Package: wnpp



Severity: wishlist



Owner: Balasankar C 







* Package name: golang-github-muesli-crunchy



  Version : 0.1+git20181030.ee5032c-1



  Upstream Author : Christian Muehlhaeuser



* URL : https://github.com/muesli/crunchy



* License : Expat
  Programming Lang: Go



  Description : finds common flaws in passwords

crunchy finds common flaws in passwords. It detects the following flaws:
 - Empty passwords: ErrEmpty
 - Too short passwords: ErrTooShort
 - Too few different characters, like "aabbccdd": ErrTooFewChars
 - Systematic passwords, like "abcdefgh" or "87654321": ErrTooSystematic
 - Passwords from a dictionary / wordlist: ErrDictionary
 - Mangled / reversed passwords, like "p@ssw0rd": ErrMangledDictionary
 - Hashed dictionary words, like "5f4dcc3b5aa765d61d8327deb882cf99"
   (the md5sum of "password"): ErrHashedDictionary
.
System dictionaries from /usr/share/dict will be indexed. If no
dictionaries were found, crunchy only relies on the regular sanity
checks (ErrEmpty, ErrTooShort, ErrTooFewChars and ErrTooSystematic).
.
crunchy uses the WagnerFischer algorithm to find mangled passwords in
your dictionaries.



Bug#926076: This is a dependency of gopasspw

2019-04-01 Thread Balasankar C
Hi,

Both diceware and xkcdpass are Python libraries, while this is a Golang
implementation. It is a member of the dependency tree of gopasspw[0],
and is needed for completing the packaging of gopasspw[1]. gopasspw uses
it as a library, not as an executable, so switching it with either
diceware or xkcdpass is not easy.

[0] https://github.com/gopasspw/gopass/
[1] https://bugs.debian.org/901133

Regards
Balasankar "Balu" C



Bug#926023: ITP: golang-github-jsimonetti-pwscheme -- Golang packages defining different password schemes

2019-03-30 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C 

* Package name: golang-github-jsimonetti-pwscheme
  Version : 0.0~git20160922.7680470-1
  Upstream Author : Jeroen Simonetti
* URL : https://github.com/jsimonetti/pwscheme
* License : MIT (Expat)
  Programming Lang: Go
  Description : Golang packages defining different password schemes


This Golang package provides different password schemes, like Salted
SHA1, Salted SHA256, Crypt with MD5, etc.

Packaging as a dependency of gopasspw[0][1]


[0] https://github.com/gopasspw/gopass/
[1] https://bugs.debian.org/901133

Regards
Balasankar "Balu" C



Bug#923029: ITP: fonts-smc-gayathri -- Gayathri Malayalam font

2019-02-23 Thread Balasankar C
Package: wnpp
Owner: Balasankar C 
Severity: wishlist

* Package name: fonts-smc-gayathri
  Version : Version1.000
  Upstream Author : Swathanthra Malayalam Computing 
* URL : https://gitlab.com/smc/fonts/gayathri
* License : OFL
  Description : Gayathri Malayalam font



Bug#896997: [Pkg-mailman-hackers] Bug#896997: mailman3 - Incorrect permissions for postfix lookup table files on postfix restart

2018-04-26 Thread Balasankar C
Hi,


On 04/27/2018 01:02 AM, Pierre-Elliott Bécue wrote:
> Le vendredi 27 avril 2018 à 00:20:38+0530, Balasankar C a écrit :
>>
>> So I ran the following to fix them.
>>
>> 11. newaliases
>> 12. mailman aliases
> 
> I guess you were running this command as root, hence the db files owned by
> root, hence the need to chmod o+rw.

Yes. All those commands were run as root (since it is the DigitalOcean
default. I didn't bother to create a non-root-but-sudo user before doing
all this)

> 
> mailman aliases should be run as "list".
> 
> Anyway, we have to avoid the first issue to come so that no one follows the
> second path.
> 
> I'll design a fix.

Thanks.

Regards
Balasankar "Balu" C



signature.asc
Description: OpenPGP digital signature


Bug#896997: mailman3 - Incorrect permissions for postfix lookup table files on postfix restart

2018-04-26 Thread Balasankar C
Package: mailman3
Version: 3.1.1-9~bpo9+1
Severity: important

After installing and configuring mailman3-full, I was unable to create
mailing lists using the UI. The logs had the following content

```
Apr 26 17:54:46 2018 (9642) command failure: /usr/sbin/postmap
/var/lib/mailman3/data/postfix_lmtp, 1, Operation not permitted
Apr 26 17:54:47 2018 (9642) command failure: /usr/sbin/postmap
/var/lib/mailman3/data/postfix_domains, 1, Operation not permitted
```

Upon checking, I saw that the files
`/var/lib/mailman3/data/postfix_lmtp.db` and
`/var/lib/mailman3/data/postfix_domains.db` were owned by `root:root`
and others didn't have read/write permission on them. Doing a chmod o+rw
on those two files solved the issue.

---

The exact steps I followed are

0.  Get a droplet in DigitalOcean with Debian 9.4 image
1.  Enable backports repo and run apt-get update
2.  Set hostname
3.  apt-get install postfix (as smarthost)
4.  apt-get install nginx-full
5.  apt-get -t stretch-backports install mailman3-full (answered the
questions positively)
6.  dpkg-reconfigure mailman3-web - For creating database and admin user.
7.  edit /etc/nginx/sites-enabled/mailman3 and change server_name
8.  service nginx reload
9.  Updated /etc/postfix/main.cf as mentioned in
/usr/share/doc/mailman3/README.Debian
10. service postfix restart for it to take effect

After this, while trying to login, I got a 500 error page. Logs of
mailman3-web had the following

```
SMTPRecipientsRefused: {u'': (451, '4.3.0 : Temporary lookup failure')}
```

So I ran the following to fix them.

11. newaliases
12. mailman aliases
13. service mailman3 restart
14. service postfix restart
15. service mailman3-web restart

After this, I was able to login.

16. Go to domain and login as admin. Verification mail will be sent - go
check that. (You may want to use the non-HTTPS version of confirmation
URL if you haven't set it)

Note: Without doing the following, I wasn't able to create mailing lists
16. chmod o+wr /var/lib/mailman3/data/postfix_domains.db
17. chmod o+wr /var/lib/mailman3/data/postfix_lmtp.db

All was well after this.

I doubt if restarts were actually necessary in step 14 and if a reload
would've been enough. On our discussion in IRC channel #debian-mailman,
Pierre-Elliott Bécue (peb) assumes this caused the permissions to be borked.

PS: Please rename the issue title as you see fit.


---

Regards
Balasankar "Balu" C



signature.asc
Description: OpenPGP digital signature


Bug#893334: ITP: ruby-statsd -- StatsD client for Ruby

2018-03-17 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@debian.org>
Severity: wishlist

* Package name: ruby-statsd
  Version : 1.4.0
  Upstream Author : Rein Henrichs <re...@reinh.com>
* URL : https://github.com/reinh/statsd
* License : Expat
  Programming Lang: Ruby
  Description : StatsD client for Ruby



signature.asc
Description: OpenPGP digital signature


Bug#893305: ITP: ruby-rollout -- provides feature flags based on Redis

2018-03-17 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@debian.org>
Severity: wishlist

* Package name: ruby-rollout
  Version : 2.4.3
  Upstream Author : James Golick <jamesgol...@gmail.com>
* URL : https://github.com/FetLife/rollout
* License : Expat
  Programming Lang: Ruby
  Description : provides feature flags based on Redis




signature.asc
Description: OpenPGP digital signature


Bug#893127: ITP: ruby-minitest-focus -- provides ability to focus on a few tests easily

2018-03-16 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@debian.org>
Severity: wishlist

* Package name: ruby-minitest-focus
  Version : 1.1.2
  Upstream Author : Ryan Davis
* URL : https://github.com/seattlerb/minitest-focus
* License : Expat
  Programming Lang: Ruby
  Description : provides ability to focus on a few tests easily



signature.asc
Description: OpenPGP digital signature


Bug#888508: gitlab: multiple CVEs from GitLab Security Release: 10.3.4, 10.2.6, and 10.1.6 advisory

2018-03-12 Thread Balasankar C
Hi,

As per the upstream blogpost,
https://about.gitlab.com/2018/01/16/gitlab-10-dot-3-dot-4-released/ ,
the applicability of the CVEs listed at
https://security-tracker.debian.org/tracker/source-package/gitlab to
version of GitLab in Stretch is as follows.

CVE-2018-3710 - Applicable to version in Stretch (8.13.11)
CVE-2017-0927 - Applicable to version in Stretch (8.13.11)
CVE-2017-0926 - Applicable to version in Stretch (8.13.11)
CVE-2017-0925 - Applicable to version in Stretch (8.13.11)
CVE-2017-0923 - Applicable to version in Stretch (8.13.11)
CVE-2017-0918 - Applicable to version in Stretch (8.13.11)
CVE-2017-0916 - Applicable to version in Stretch (8.13.11)
CVE-2017-0915 - Applicable to version in Stretch (8.13.11)

CVE-2017-0914 - Not applicable to version in Stretch (8.13.11)
CVE-2017-0917 - Not applicable to version in Stretch (8.13.11)

Regarding CVE-2017-0923, I will confirm if it is indeed applicable or
not, since the feature was introduced in version 9.1 only
(https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10017) .


Regards
Balasankar C



signature.asc
Description: OpenPGP digital signature


Bug#890391: libjs-jquery-atwho: ReferenceError: Controller is not defined

2018-02-24 Thread Balasankar C
Hi,


On Sun, 25 Feb 2018 14:47:19 +1100 Ben Finney <bign...@debian.org> wrote:
> On 25-Feb-2018, Balasankar C wrote:
> 
> > Note: I have enabled the atwho JS file from cloudflare CDN in it.
> 
> How is that related to the upstream source?

You can ignore that. I just wanted to demo a working copy first so that
we can see how switching to the packaged one broke the test. Hence made
use of the CDN. It was only meant to show "Upstream one works, packaged
one doesn't.". :)

PS: In case you were asking how the CDN is related to upstream, check
this link: https://cdnjs.com/libraries/at.js . It hosts all the versions
of the library in a central location that websites can use via 

Bug#890875: Upload jquery-caret.js to unstable

2018-02-24 Thread Balasankar C
Heya,


On Thu, 22 Feb 2018 10:40:05 +1100 Ben Finney <bign...@debian.org> wrote:
> Control: severity -1 wishlist
> Control: tags -1 + moreinfo
> 
> On 20-Feb-2018, Pirate Praveen wrote:
> 
> > I'd like to upload gitlab 9.5 currently in experimental to unstable.
> 
> (This request is no more severe than “wishlist”, by the definitions of
> the severity levels.)
> 
> Does the package currently in ‘experimental’ work? It should not be
> uploaded to ‘unstable’ unless it serves the need of a dependent
> package like Pagure or GitLab.
> 
> Please see bug#836408 for a request for testing, I have not seen any
> confirmation that the package works as-is.


I imitated the upstream test page (http://ichord.github.io/Caret.js/),
with the packaged JS file and it seems to be working similarly. I think
it is safe to assume the package is fit for unstable (and eventually
testing), where it may undergo more extensive tests and actual usage as
part of GitLab/Pagure packages.

Attaching my test file, in case someone else want to try. It is merely
the source of the upstream test page with the script tag pointing to the
packaged JS.

Regards
Balasankar C
Debian Developer
Title: Caret.js









Caret.js



Textarea




Type something here for fun!!



ContentEditable

Hello, some bold and italic and bold text


iframe body












-> Fork me on GitHub!









signature.asc
Description: OpenPGP digital signature


Bug#890391: libjs-jquery-atwho: ReferenceError: Controller is not defined

2018-02-24 Thread Balasankar C
Heya,

On Fri, 16 Feb 2018 06:10:36 +1100 Ben Finney <bign...@debian.org> wrote:

> What I need is some simple script that I can run in a minimal Debian
> environment, first to show the behaviour in this package and, after
> making changes to the package, then to test whether the behaviour is
> correct.

Attaching an html test file. It uses the libjs-jquery-caret.js package
you have in experimental along with the libjs-query-atwho package in
question.

Testing:
Note: I have enabled the atwho JS file from cloudflare CDN in it.
1. Open your browser and open the console debugger (In Firefox, press
Ctrl-Shift-j)
1. Open the attached file atwho-test.html in browser
2. Try typing `@` to the textbox, and see three names pop up. It means
the CDN one is working
3. Now comment the line which uses CDN and uncomment the one which uses
the packaged one. Save and exit.
4. Refresh the webpage, while keeping an eye on the debugger. You can
see the errors mentioned in this bug report pop up there.
5. Type `@` in the textbox and confirm nothing happens. It means the
packaged one is broken.

Please fix the package.

Regards
Balasankar C
Debian Developer

	
	
		
		
	



signature.asc
Description: OpenPGP digital signature


Bug#869064: ruby-factory-girl-rails: FTBFS: ERROR: Test "ruby2.3" failed: Invalid gemspec in [factory_girl_rails.gemspec]: No such file or directory - git

2018-01-21 Thread Balasankar C
Hi,


On Thu, 20 Jul 2017 09:25:46 +0200 Lucas Nussbaum  wrote:
> Source: ruby-factory-girl-rails
> Version: 4.7.0-1
> Severity: serious
> Tags: buster sid
> User: debian...@lists.debian.org
> Usertags: qa-ftbfs-20170720 qa-ftbfs
> Justification: FTBFS on amd64
> 
> Hi,
> 
> During a rebuild of all packages in sid, your package failed to build on
> amd64.
>

From https://ci.debian.net/packages/r/ruby-factory-girl/unstable/amd64/
, it seems the package has been built correctly for quite some time. To
be honest, I don't see it ever failing in that list, apart from some
tempfails. Also, I wasn't able to reproduce this locally.


Hence, closing this issue.



signature.asc
Description: OpenPGP digital signature


Bug#876439: [Pkg-fonts-devel] Bug#876439: Continue providing Python 2 libraries

2017-10-04 Thread Balasankar C

On Wed, 4 Oct 2017 10:22:22 +0200 Rene Engelhard <r...@debian.org> wrote:

On Wed, Oct 04, 2017 at 04:16:58PM +0800, Yao Wei wrote:
> Hi,
> 
> So, to actually maintain the dependency of fonts building, is it

> advisable to let fonttools depend on python-fonttools instead of
> python3-fonttools?

There's neither. The module is in "fonttools". Which is why I asked

> P.S:
>
> Shouldn't the python modules be split out to python-* and python-* packages?
> That would make the support more clear. Or are they not supposed to be used
> externally?

in my initial report. (But yes, python-fonttools/python3-fonttools would make 
sense,
but then fonttools probably should depends on the python3 thingy and people who 
need
the python2 module can build-depend on python-fonttools. Or does stuff use stuff
from fonttools _and a different_ python version?

Regards,

Rene




If we are splitting out python libraries, we need to have both 
python-fonttools and python3-fonttools packages, at least till Python 
2's EOL (or Python 2 is out of Debian). Even though mostly used as a 
library, fonttools do ship some binaries (like pyftinspect) that can 
remain in fonttools package.


So, I think there should be three packages
1. python-fonttools (Python 2.x libraries)
2. python3-fonttools (Pytohn 3.x libraries)
3. fonttools (Binaries like pyftinspect)

fonttools should depend on python-fonttools. Once when Python 2 is out 
of Debian, we can make python-fonttools use Python 3 and drop 
python3-fonttools.


WDYT?

Regards
Balasankar C



Bug#876439: Continue providing Python 2 libraries

2017-10-04 Thread Balasankar C
Latest upload of fonttools broke many reverse build-dependencies. Please 
don't drop Python 2 support without a prior warning or proper migration 
plan/period.


According to fonttools upstream README[0], fonttools will work with 
Python 2.7, 3.4 or later. With 3.5.1-2 of fonttools package in Debian, 
libraries are no longer provided for Python 2, hence breaking many of 
its reverse dependencies (All fonts-smc-* packages, which I maintain, 
are FTBFS as of now). Because the other main font related package, 
fontforge, doesn't provide Python 3 libraries yet, it is impossible to 
port those reverse dependencies to Python 3 yet.


I know we are aiming for Python-3-only in Buster as Python 2 is EOL in 
2020, but until majority of the packages port to Python 3, it would be 
better to provide both Python 2 and 3 bindings. As far as fonttools is 
concerned, it will work with Python 2 and hence it won't be an issue.


I strongly recommend to consider providing packages for Python 2 also, 
at least for Buster.


[0] 
https://github.com/fonttools/fonttools/blob/master/README.rst#installation


Regards
Balasankar C



Bug#866196: ITP: ruby-asciidoctor-plantuml -- extension for Asciidoctor to enable support for PlantUML diagrams

2017-06-28 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-asciidoctor-plantuml
  Version : 0.0.7
  Upstream Author : Pepijn Van Eeckhoudt
* URL : https://github.com/hsanson/asciidoctor-plantuml
* License : Expat
  Programming Lang: Ruby
  Description : extension for Asciidoctor to enable support for PlantUML 
diagrams

 This package provides asciidoctor-plantuml gem which is an extension for the
 asciidoctor gem that enables users to add PlantUML diagrams to their asciidoc
 documents.



Bug#865876: ITP: ruby-html2text -- convert HTML into plain text

2017-06-25 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-html2text
  Version : 0.2.0
  Upstream Author : Jevon Wright
* URL : https://github.com/soundasleep/html2text_ruby
* License : Expat
  Programming Lang: Ruby
  Description : convert HTML into plain text

This package provides the gem html2text, which can be used to convert HTML
input into a plain text format. It uses Ruby's DOM methods to load HTML from
a string, and then iterates over the resulting DOM to correctly output plain
text.

Required for GitLab 9.2.x



Bug#865289: ITP: ruby-tool -- general purpose Ruby library used by Sinatra 2.0 and Mustermann

2017-06-20 Thread Balasankar C


Hi,

On 21 June 2017 4:05:35 AM IST, Gunnar Wolf <gw...@debian.org> wrote:
>Balasankar C dijo [Tue, Jun 20, 2017 at 03:47:20PM +0530]:
>> Package: wnpp
>> Severity: wishlist
>> Owner: Balasankar C <balasank...@autistici.org>
>> 
>> * Package name: ruby-tool
>>   Version : 0.2.3
>>   Upstream Author : Konstantin Haase
>> * URL : https://github.com/rkh/tool
>> * License : Expat
>>   Programming Lang: Ruby
>>   Description : general purpose Ruby library used by Sinatra 2.0
>and Mustermann
>> 
>> Required for GitLab 9.2.x
>
>Umh, the name 'tool' is as generic as 'general purpose library'. Could
>you provide a description that people would find useful to know
>whether they could use this library (so that it's not _only_ used as a
>dependency)?

To be honest, I did feel the same when I filed this ITP and I spent some time 
thinking of a better description. However, after reading the code, the 
description is probably the best one it can have. This gem basically bundles 
three or four different helper methods that are mainly to be used by Sinatra 
and Mustermann. I don't think I can find a better short description that 
conveys this fact. Maybe change "general purpose library" with "collection of 
helper methods".

What I can do is beef up the extended description to specify what all are the 
methods and clarify that they are mainly used by Sinatra and Mustermann for 
their specific code structure.

As English isn't my best attribute, I'm open to any suggestion you may have. 
Else I will make the changes mentioned above.
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.



Bug#865358: ITP: ruby-omniauth-oauth2-generic -- generic OmniAuth strategy for OAuth2 providers

2017-06-20 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-omniauth-oauth2-generic
  Version : 0.2.2
  Upstream Author : Joe Marty <jma...@iexposure.com>
* URL : https://gitlab.com/satorix/omniauth-oauth2-generic
* License : Expat
  Programming Lang: Ruby
  Description : generic OmniAuth strategy for OAuth2 providers



Bug#865345: ITP: ruby-validates-hostname -- checks for valid hostnames

2017-06-20 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-validates-hostname
  Version : 1.0.7
  Upstream Author : Kim Nørgaard <ja...@jasen.dk>
* URL : https://github.com/KimNorgaard/validates_hostname
* License : Expat
  Programming Lang: Ruby
  Description : checks for valid hostnames

Required for GitLab 9.2.6


Bug#865296: ITP: ruby-po-to-json -- convert gettext PO files to JSON

2017-06-20 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-po-to-json
  Version : 1.0.1
  Upstream Author : Thomas Boerger <tho...@webhippie.de>
* URL : https://github.com/webhippie/po_to_json
* License : Expat
  Programming Lang: Ruby
  Description : convert gettext PO files to JSON

Required for GitLab 9.2.x



Bug#865289: ITP: ruby-tool -- general purpose Ruby library used by Sinatra 2.0 and Mustermann

2017-06-20 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-tool
  Version : 0.2.3
  Upstream Author : Konstantin Haase
* URL : https://github.com/rkh/tool
* License : Expat
  Programming Lang: Ruby
  Description : general purpose Ruby library used by Sinatra 2.0 and 
Mustermann

Required for GitLab 9.2.x



Bug#864996: ITP: ruby-autoparse -- automatic parsing for any given JSON Schema

2017-06-18 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-autoparse
  Version : 0.3.3
  Upstream Author : Bob Aman <boba...@google.com>
* URL : https://github.com/google/autoparse
* License : Apache-2.0
  Programming Lang: Ruby
  Description : automatic parsing for any given JSON Schema

Part of GitLab v9.2.0 packaging.



Bug#861870: Requesting unblock

2017-05-06 Thread Balasankar C
Hi,

On Sat, 6 May 2017 10:43:13 +0200 Tomasz Buchert  wrote:
> 
> Hi,
> in this case I'm going to close my request in #861914, and let you
> take care of it.

I just confirmed that this vulnerability does not apply to the GitLab version we
have in Debian. This is because the SVG rendering feature was introduced in a
later version and this vulnerability applies only to the ones with that feature.
So, I will be reverting the commit I pushed to gitlab source repository in
alioth and once 8.13.11+dfsg1-5 migrates to Testing, all will be well.

Thanks for the report Salvatore and the help Tomasz. It's encouraging to see
others are also looking at this package.

Because of the above reasons, I will be closing this issue.


signature.asc
Description: PGP signature


Bug#861870: Requesting unblock

2017-05-05 Thread Balasankar C
Hi Tomasz,

GitLab package co-maintainer here. We will be uploading the fix to unstable and
requesting an unblock, hopefully by Monday. In the mean time, there is already
an unblock request open[0] for the latest version in unstable, 8.13.11+dfsg1-5.

[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861293

Regards,
Balasankar C


signature.asc
Description: PGP signature


Bug#854658: unblock pre-approval request for gitlab

2017-02-24 Thread Balasankar C
Hi,

On Mon, 20 Feb 2017 18:26:00 + Niels Thykier <ni...@thykier.net> wrote:

> 
> FYI, I have retracted the hint until this issue has been resolved (to
> avoid a possible regression in testing).
> 
> Thanks,
> ~Niels

Latest upload of gitlab (version: 8.13.11+dfsg-4) and gitlab-shell (version
3.6.6-4) fixes the following issues
1. Files that are used in maintainer script are now shipped in /usr/lib/gitlab
and /usr/lib/gitlab-shell
2. Purge doesn't fail due to command not being available, but handles it
graciously.

Should I share the source debdiff of both these uploads to this issue or is a
separate issue necessary for gitlab-shell (The change is exactly the one
mentioned for gitlab. Not using /usr/share/gitlab-shell/doc ) ?

-- 
Balasankar C
http://balasankarc.in



Bug#844349: ITP: fonts-smc-karumbi -- Karumbi Malayalam font

2016-11-14 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: fonts-smc-karumbi
  Version  : 1.0
  Upstream Author  : Swathanthra Malayalam Computing <cont...@smc.org.in>
* URL  : http://smc.org.in/
* License  : OFL-1.1
  Description  : Karumbi Malayalam font

This package provides Karumbi Malayalam font maintained by Swathanthra Malayalam
Computing.
-- 
Balasankar C
http://balasankarc.in



Bug#844346: ITP: fonts-smc-uroob -- Uroob Malayalam font

2016-11-14 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: fonts-smc-uroob
  Version  : 2.0
  Upstream Author  : Swathanthra Malayalam Computing <cont...@smc.org.in>
* URL  : http://smc.org.in/
* License  : OFL-1.1
  Description  : Uroob Malayalam font

This package provides Uroob Malayalam font maintained by Swathanthra Malayalam
Computing.

-- 
Balasankar C
http://balasankarc.in



Bug#844337: ITP: fonts-smc-keraleeyam -- Keraleeyam Malayalam font

2016-11-14 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: fonts-smc-keraleeyam
  Version  : 2.0
  Upstream Author  : Swathanthra Malayalam Computing <cont...@smc.org.in>
* URL  : http://smc.org.in/
* License  : OFL-1.1
  Description  : Keraleeyam Malayalam font

This package provides Keraleeyam Malayalam font maintained by Swathanthra 
Malayalam
Computing.


-- 
Balasankar C
http://balasankarc.in



Bug#844316: ITP: fonts-smc-chilanka -- Chilanka Malayalam font

2016-11-14 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: fonts-smc-chilanka
  Version  : 1.2.0
  Upstream Author  : Swathanthra Malayalam Computing <cont...@smc.org.in>
* URL  : http://smc.org.in/
* License  : OFL-1.1
  Description  : Chilanka Malayalam font

This package provides Chilanka Malayalam font maintained by Swathanthra 
Malayalam
Computing.


-- 
Balasankar C
http://balasankarc.in



Bug#844305: ITP: fonts-smc-manjari -- Manjari Malayalam font

2016-11-14 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: fonts-smc-manjari
  Version  : 1.0.0-alpha
  Upstream Author  : Swathanthra Malayalam Computing <cont...@smc.org.in>
* URL  : http://smc.org.in/
* License  : OFL-1.1
  Description  : Manjari Malayalam font

This package provides Manjari Malayalam font maintained by Swathanthra Malayalam
Computing.


-- 
Balasankar C
http://balasankarc.in



Bug#836536: ruby-concurrent: FTBFS too much often (failed examples)

2016-09-11 Thread Balasankar C
On Sat, 3 Sep 2016 21:49:13 +0200 (CEST) Santiago Vila <sanv...@unex.es> wrote:
>   BTW: I think the "Randomized with seed xxx" above is a bad idea.
> Maintainers often ask bug reporters for "a way to reproduce the error".
> But if the build is based on random variables, this becomes an
> impossible task. Please consider modifying the build system so that
> those random things are always the same.

I believe I have fixed this in the latest upload, in which I specified the
order to run the tests. I tried building it 5 times in a cowbuilder environment
and didn't hit any failures. Please reopen the bug if this problem persists.

Thank you.


-- 
Balasankar C
http://balasankarc.in



Bug#818462: Reducing severity

2016-06-11 Thread Balasankar C


The fix from Cedric that closes this bug (currently pushed to experimental) has 
fix for 
autopkgtest only. He added dependencies for making autopkgtest run. Also, there 
is 
no reference to any other gem in the code of this package.

-- 
Balasankar C
http://balasankarc.in



Bug#820929: ITP: ruby-premailer-rails -- tool to easily create styled HTML emails in Rails

2016-04-13 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: ruby-premailer-rails
  Version: 1.9.2
  Upstream Author   : Philipe Fatio <philipe.fa...@gmail.com>
* URL: https://github.com/fphilipe/premailer-rails
* License   : Expat
  Description   : tool to easily create styled HTML emails in Rails

-- 
Balasankar C
http://balasankarc.in



Bug#820924: ITP: ruby-premailer -- Preflight for HTML e-mail

2016-04-13 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: ruby-premailer
  Version: 1.8.6
  Upstream Author   : Alex Dunae <c...@dunae.ca>
* URL : http://premailer.dialect.ca/
* License: BSD-3-clause
  Description   : Preflight for HTML e-mail

-- 
Balasankar C
http://balasankarc.in



Bug#819084: rexical ships without a gemspec file

2016-04-08 Thread Balasankar C
On Wed, 23 Mar 2016 16:05:26 +0100 Matthias Klose <d...@debian.org> wrote:
> rexical ships without a gemspec file, making it useless to fulfil
dependencies.

Rexical is intended to be used as a Ruby application. The upstream
github repository[1] describes its usage as a binary only, and not as a
library. If you could provide a usecase where rexical is used as a
library, I can try to create a gemspec file for it.

[1] https://github.com/tenderlove/rexical

Balasankar C



Bug#820191: ITP: ruby-seamless-database-pool -- support for master/slave database clusters in ActiveRecord

2016-04-06 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: ruby-seamless-database-pool
  Version: 1.0.17
  Upstream Author   : Brian Durand <bbdur...@gmail.com>
* URL: http://github.com/bdurand/seamless_database_pool
* License   : Expat
  Description   : support for master/slave database clusters in
ActiveRecord



Bug#817201: gnukhata-core-engine: wrong section: should be in utils (not python)

2016-03-13 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Wed, 09 Mar 2016 00:03:23 +0100 Jonas Smedegaard <d...@jones.dk> wrote:

> (yes, hledger is also in wrong section but) similar to ledger it
> should be in section utils.

I am doubtful between 'utils' and 'misc'. From [1], the description of
utils section is :

"Utilities for file/disk manipulation, backup and archive tools,
system monitoring, input systems, etc."

- From what I understood, it consists of tools and utilities that are
commonly used for system management and related tasks.
I think, gnukhata-core-engine should go into 'misc'. What do you say?

[1] https://packages.debian.org/unstable/

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJW5TiyAAoJEJbtq5sua3FxbeYH/2fSwSlapKar7XE0jywisC2I
rw0SaOI1rr4czEuuglRaI4r0SDQjiUBBCpPrO/oCy+h0niDZUXEOAtH6SxPbTFPG
fIUYx+qeDVMyn7ebESKoJctU/j/zCOB363A0NYbQwQhrMbMQBQbc874SxSaXw39W
t8GqlT5oTPkHJd8Ud3CH06APW3H6WWOwEJwpDEKM0r/8v5UblInfWJ+trhS+mr50
blRqeiO3tR3dy0BHtdfkeUwZ/rH+hNlupF4b9e0tp048pifq9kEtvLFx0XQkZ2ea
FSWMO7yZGiovaaUzk9tRqfA9Hafcj+GsTw8F/s/M00iY2sNWXnXDr2UeysrtNYk=
=B5Uz
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#814645: not in stable yet

2016-02-29 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Thu, 25 Feb 2016 13:07:39 +0100 Andreas Beckmann <a...@debian.org>
wrote:
> On 2016-02-25 08:36, Pirate Praveen wrote:
>> ruby-mousetrap-rails is not part of any stable release. So should
>> I really handle this upgrade case?
> 
> Yes. Especially since the fix should be trivial.

Hi,

This may be a silly doubt, but I didn't quite understand the issue
here. Version 1.4.6-4 is in testing, 1.4.6-4 is in unstable. How will
there be an upgrade from testing to sid when both have the same
version? It is not in stable yet, so there is no upgrade path from
stable to testing.


- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJW1STxAAoJEJbtq5sua3FxqR4IAKfgpxCyOnmzX9k8FRlIUPr1
tddFp0CTYVsP3m7I/EH/vfMXXQTzOlAgsUH0EUmhv63AfEbYbCXhEjQz/Jc6JRVg
WA3pqtnUbEQj42iFTtjuqdDGCdbo6Cu0QTdbB8bIG0+zv8uZsQi0jO6QmdFOolhc
BT+Gdv1A3UMYNg0r3HMNwUe75F1q/ovZs8ez5PRhWaXxcBFClBA76NB3XHmvB9rw
nvL7Ymn25kmgk7BB6BhE5FlV5KQpSCcGuVuYHEMVWx+/Vo4d2ps9mU0WGUvAXsRh
teAatybt/N/x+3DFnWnCQSB7NsZqSPnaSGJp6NPivDlQMQHwxYaGtSId5igUHEY=
=od21
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#813186: ITP: ruby-sentry-raven -- client interface for the Sentry error logger

2016-01-30 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-sentry-raven
  Version : 0.15.3
  Upstream Author : Sentry
* URL : https://github.com/getsentry/raven-ruby
* License : Apache-2.0
  Programming Lang: Ruby
  Description : client interface for the Sentry error logger



Bug#812897: RM: ruby-sidetiq -- ROM; Package is no longer maintained by upstream and does not work with latest version of it's dependency, ruby-sidekiq.

2016-01-27 Thread Balasankar C
Package: ftp.debian.org
Severity: normal

The ruby gem sidetiq doesn't work with the latest versions of sidekiq (which is 
a dependency). There exists an alterntaive package, ruby-sidekiq-cron, which is 
actively maintained and may be used for the same purpose.



Bug#810999: ITP: ruby-omniauth-azure-oauth2 -- Windows Azure Active Directory OAuth2 strategy for OmniAuth

2016-01-14 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: ruby-omniauth-azure-oauth2
  Version: 0.0.5
  Upstream Author : Mark Nadig <m...@nadigs.net>
* URL :
https://github.com/KonaTeam/omniauth-azure-oauth2
* License   : Expat
  Description  : Windows Azure Active Directory OAuth2
strategy for OmniAuth

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJWl9v5AAoJEJbtq5sua3Fxn40IAIDkgQUuyNk3Bik0nbd13EoP
/4nqgK80Y/NFHtuEVCBwHrEigECYhcSBpcKCcqItT0fFK3AX1vuNgDQ77dKutvlR
oAbNpUFqK5F8gKRL0aJozTi+GvdFWDvJcVlMMVVDZN5LIx9OLKKGAmoUcYSE5+7T
LD9gsN0ULLpWhX3xtbhmpqZ98xY0DdUxHJASKCujm2ZrRDFG/JzLYiYMpTwSCb3W
aZJMMU6E4X1Swsi5uphm7AGyuDOEayCdvO/T3kIIpl0qLq7pDI4SHF8ItRx0R3UY
hfHxdAaiIlY5z4HubJgyYdEYh8DhMZketvc+lPR+yzFerY6zuAnEKB++I6F+dGY=
=cj7Y
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#810305: ITP: ruby-fog-vsphere -- Module for the 'fog' gem to support VMware vSphere

2016-01-07 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: ruby-fog-vsphere
  Version: 0.4.0
  Upstream Author : J.R. Garcia <j...@vmware.com'>
* URL : https://github.com/fog/fog-vsphere
* License   : Expat
  Description  : Module for the 'fog' gem to support VMware
vSphere

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJWj1JEAAoJEJbtq5sua3FxeaYH/jlV5bTeav/3bsdFOpcj30If
WjL5tC5JDdcWmxe6dK34KevDh4QR+4cFJ4tb2EKZDJUXmE4H0OLwqNMjJCgMmI4O
5W3tPudMUtAQyAiocjlyAPKFM8O0TykfGcDU6byKvT25XnNyY4RTAPV/iz5ZXYsC
0KPEQ5KcRexq5LGvi5aehIrCIjmbAJ55mcUAPWSogZy6gROk1SJlZgouA0oXTQcp
7lNHdPfNk1Fti3Gjlb1F83Ng0+/7taJxZ9Lbs/hEbXTvWIZsG5W/a/twEMKXApJo
4pQrFhgtpJK6e25n3DL3Q3ikMVz8+k7O+q27YdEuynqBLqPz2+DL3wcSbA6wApA=
=97Yf
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#809338: ITP: ruby-concurrent -- modern concurrency tools for Ruby

2015-12-29 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: ruby-concurrent
  Version: 1.0.0
  Upstream Author : Jerry D'Antonio <jerry.danto...@gmail.com>
* URL : http://www.concurrent-ruby.com
* License   : Expat
  Description  : modern concurrency tools for Ruby

-- 
Regards
Balasankar C
http://balasankarc.in



Bug#793522: ruby-rails-assets-highlightjs: please use the highlight.js package to provide javascript part

2015-12-27 Thread Balasankar C
On Tue, 28 Jul 2015 09:32:12 +0200 Andreas Beckmann <a...@debian.org> wrote:
> There is no such package in Debian and I fail to guess which one you
> could have meant instead.

Use the package libjs-highlight.js .

-- 
Regards
Balasankar C
http://balasankarc.in



Bug#808577: ITP: ruby-mime-types-data -- registry for information about MIME media type definitions

2015-12-20 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name : ruby-mime-types-data
  Version : 3.2015.1120
  Upstream Author  : Austin Ziegler <halosta...@gmail.com>
* URL  :
https://github.com/mime-types/mime-types-data/
* License: Expat
  Programming Lang   : Ruby
  Description  : registry for information about MIME media
type definitions


-- 
Regards
Balasankar C
http://balasankarc.in



Bug#807465: ITP: ruby-babosa -- library for creating slugs

2015-12-08 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name : ruby-babosa
  Version : 1.0.2
  Upstream Author  : Norman Clarke <nor...@njclarke.com>
* URL  : http://github.com/norman/babosa
* License: Expat
  Programming Lang   : Ruby
  Description  : library for creating slugs


-- 
Regards
Balasankar C
http://balasankarc.in



Bug#807376: ITP: ruby-rufus-scheduler -- job scheduler for Ruby

2015-12-07 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name : ruby-rufus-scheduler
  Version : 3.1.10
  Upstream Author  : John Mettraux <jmettr...@gmail.com>
* URL  : http://github.com/jmettraux/rufus-scheduler
* License: Expat
  Programming Lang   : Ruby
  Description  : job scheduler for Ruby

-- 
Regards
Balasankar C
http://balasankarc.in



Bug#806937: ITP: ruby-gemojione -- gem to provide EmojiOne

2015-12-03 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name : ruby-gemojione
  Version : 2.1.0
  Upstream Author  : Jonathan Wiesel <jonathanwie...@gmail.com>
* URL  : http://github.com/jonathanwiesel/gemojione
* License: Expat
  Programming Lang   : Ruby
  Description   : gem to provide EmojiOne

-- 
Regards
Balasankar C
http://balasankarc.in



Bug#806573: ITP: vim-autopep8 -- vim plugin to apply autopep8

2015-11-28 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name: vim-autopep8
  Version: 1.0.7
  Upstream Author : tell-k <ffk2...@gmail.com>
* URL : https://github.com/tell-k/vim-autopep8
* License   : Expat
  Programming Lang  : Ruby
  Description : vim plugin to apply autopep8

-- 
Regards
Balasankar C
http://balasankarc.in



Bug#805539: ITP: ruby-rainbow -- colorize printed text on ANSI terminals

2015-11-19 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-rainbow
  Version : 2.0.0
  Upstream Author : Marcin Kulik 
* URL : https://github.com/sickill/rainbow
* License   : Expat
  Programming Lang  : Ruby
  Description : colorize printed text on ANSI terminals


-- 
Regards
Balasankar C
http://balasankarc.in



Bug#805548: ITP: asciiart -- command line tool to turn images into ASCII art

2015-11-19 Thread Balasankar C
Package: wnpp
Owner: Balasankar C <balasank...@autistici.org>
Severity: wishlist

* Package name  : asciiart
  Version  : 0.0.9
  Upstream Author   : nodanaonlyzuul <step...@eastmedia.com>
* URL   :
https://github.com/nodanaonlyzuul/asciiart
* License : Expat
  Programming Lang: Ruby
  Description   : command line tool to turn images into
ASCII art

-- 
Regards
Balasankar C
http://balasankarc.in



Bug#798140: ITP: ruby-minitest-utils -- utilities for Minitest

2015-09-05 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C <balasank...@autistici.org>

* Package name: ruby-minitest-utils
  Version : 0.2.4
  Upstream Author : Nando Vieira <fnando.vie...@gmail.com>
* URL : https://github.com/fnando/minitest-utils/
* License : Expat
  Programming Lang: Ruby
  Description : utilities for Minitest



Bug#797277: ITP: ruby-http-form-data -- utility-belt to build form data request bodies

2015-08-29 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-http-form-data
  Version : 1.0.1
  Upstream Author : Aleksey V Zapparov i...@member.fsf.org
* URL : https://github.com/httprb/form_data.rb
* License : Expat
  Programming Lang: Ruby
  Description : utility-belt to build form data request bodies



Bug#793810: ITP: ruby-celluloid-pool -- actor pool based on Celluloid

2015-07-27 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-celluloid-pool
  Version : 0.20.0
  Upstream Author : Tony Arcieri tony.arci...@gmail.com
* URL : http://github.com/celluloid/celluloid-pool
* License : Expat
  Programming Lang: Ruby
  Description : actor pool based on Celluloid


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#793804: ITP: ruby-celluloid-essentials -- internally used Celluloid tools and superstructural dependencies

2015-07-27 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-celluloid-essentials
  Version : 0.20.1.1
  Upstream Author : Tony Arcieri tony.arci...@gmail.com
* URL : https://github.com/celluloid/celluloid-essentials
* License : Expat
  Programming Lang: Ruby
  Description : internally used Celluloid tools and superstructural 
dependencies


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#793808: ITP: ruby-celluloid-fsm -- Celluloid Finite State Machines

2015-07-27 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-celluloid-fsm
  Version : 0.20.0
  Upstream Author : Tony Arcieri tony.arci...@gmail.com
* URL : https://github.com/celluloid/celluloid-fsm
* License : Expat
  Programming Lang: Ruby
  Description : Celluloid Finite State Machines


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#793812: ITP: ruby-celluloid-extras -- Celluloid expansion, testing, and example classes

2015-07-27 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-celluloid-extras
  Version : 0.20.0
  Upstream Author : Tony Arcieri tony.arci...@gmail.com
* URL : https://github.com/celluloid/celluloid-extras
* License : Expat
  Programming Lang: Ruby
  Description : Celluloid expansion, testing, and example classes


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#793767: ITP: ruby-celluloid-supervision -- Supervision support for Celluloid

2015-07-27 Thread Balasankar C

Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name : ruby-celluloid-supervision
  Version  : 0.20.0
  Upstream Author   : Tony Arcieri tony.arci...@gmail.com
* URL   : 
https://github.com/celluloid/celluloid-supervision

* License : Expat
  Programming Lang : Ruby
  Description : Supervision support for Celluloid

--
Regards
Balasankar C
http://balasankarc.in


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#789837: FTBFS: all tests error with LoadError: cannot load such file -- rubyeventmachine

2015-07-26 Thread Balasankar C
On Wed, 24 Jun 2015 21:05:53 + Chris West \(Faux\)
solo-debianb...@goeswhere.com wrote:
 Package: ruby-vegas Version: 0.1.11-2 Severity: serious Tags: sid
 stretch Justification: fails to build from source (but built
 successfully in the past) User:
 reproducible-bui...@lists.alioth.debian.org
 
 Dear Maintainer,
 
 The package fails to build: all tests give this LoadError:
 
 26 specifications (26 requirements), 0 failures, 0 errors 
 /usr/bin/ruby2.2 /usr/bin/gem2deb-test-runner Running tests for
 ruby2.2 using debian/ruby-tests.rb... 
 RUBYLIB=/ruby-vegas-0.1.11/debian/ruby-vegas/usr/lib/ruby/vendor_ruby:.
 ruby2.2 debian/ruby-tests.rb Vegas::Runner creating an instance 
 basic usage - sets app [ERROR: LoadError] [...] LoadError: cannot
 load such file -- rubyeventmachine 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require': basic usage - sets app 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require' /usr/lib/ruby/vendor_ruby/eventmachine.rb:8:in `top
 (required)' 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require' 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require' /usr/lib/ruby/vendor_ruby/thin.rb:7:in `top
 (required)' 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require' 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require' /usr/lib/ruby/vendor_ruby/rack/handler/thin.rb:1:in `top
 (required)' /ruby-vegas-0.1.11/test/test_helper.rb:24:in `vegas' 
 /ruby-vegas-0.1.11/test/test_vegas_runner.rb:20:in `block (4
 levels) in top (required)' 
 /ruby-vegas-0.1.11/test/test_vegas_runner.rb:23:in `block (3
 levels) in top (required)' 
 /ruby-vegas-0.1.11/test/test_vegas_runner.rb:17:in `block (2
 levels) in top (required)' 
 /ruby-vegas-0.1.11/test/test_vegas_runner.rb:15:in `block in top
 (required)' /ruby-vegas-0.1.11/test/test_vegas_runner.rb:8:in
 `top (required)' 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require' 
 /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
 `require' debian/ruby-tests.rb:2:in `main' [..] 26 specifications
 (0 requirements), 0 failures, 26 errors
 
 -- System Information: Debian Release: stretch/sid APT prefers
 unstable APT policy: (500, 'unstable'), (1, 'experimental') 
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 3.19.0-21-generic (SMP w/8 CPU cores) Locale:
 LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell:
 /bin/sh linked to /bin/dash Init: systemd (via
 /run/systemd/system)
 
 

This bug no longer exists. ruby-vegas builds fine in chroot (sbuild
log attached). Also, a retry on reproducible.debian.net made buildd
also happy.
So, closing this bug.

-- 
Regards
Balasankar C
http://balasankarc.in
sbuild (Debian sbuild) 0.65.2 (24 Mar 2015) on sasalam

╔══╗
║ ruby-vegas 0.1.11-2 (i386)26 ജൂലൈ 2015 15:17 ║
╚══╝

Package: ruby-vegas
Version: 0.1.11-2
Source Version: 0.1.11-2
Distribution: sid
Machine Architecture: i386
Host Architecture: i386
Build Architecture: i386

I: NOTICE: Log filtering will replace 
'build/ruby-vegas-Qw9wud/ruby-vegas-0.1.11' with '«PKGBUILDDIR»'
I: NOTICE: Log filtering will replace 'build/ruby-vegas-Qw9wud' with 
'«BUILDDIR»'
I: NOTICE: Log filtering will replace 
'var/lib/schroot/mount/sid-i386-sbuild-024281f0-24d6-40d4-8476-bec217078be2' 
with '«CHROOT»'

┌──┐
│ Fetch source files   │
└──┘


Local sources
─

/home/balasankarc/packaging/trying/ruby-vegas/ruby-vegas_0.1.11-2.dsc exists in 
/home/balasankarc/packaging/trying/ruby-vegas; copying to chroot

Check architectures
───


Check dependencies
──

Merged Build-Depends: build-essential, fakeroot
Filtered Build-Depends: build-essential, fakeroot
dpkg-deb: building package 'sbuild-build-depends-core-dummy' in 
'/«BUILDDIR»/resolver-jhkADo/apt_archive/sbuild-build-depends-core-dummy.deb'.
OK
Ign file: ./ InRelease
Get:1 file: ./ Release.gpg [299 B]
Get:2 file: ./ Release [2119 B]
Ign file: ./ Translation-en
Reading package lists...
Reading package lists...

┌──┐
│ Install core build dependencies (aptitude-based resolver)│
└──┘

Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  aptitude-common libboost-iostreams1.55.0 libcwidget3 libsigc++-2.0-0c2a
  libsqlite3-0 libxapian22
Suggested packages:
  tasksel debtags apt-xapian-index libcwidget-dev xapian-tools

Bug#793703: ITP: ruby-nenv -- convenient wrapper for Ruby's ENV

2015-07-26 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-nenv
  Version : 0.2.0
  Upstream Author : Cezary Baginski cez...@chronomantic.net
* URL : https://github.com/e2/nenv
* License : Expat
  Programming Lang: Ruby
  Description : convenient wrapper for Ruby's ENV


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#793692: ITP: ruby-rspec-logsplit -- library to provide a logger for each example

2015-07-26 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-rspec-logsplit
  Version : 0.1.3
  Upstream Author : Tim Carey-Smith t...@spork.in
* URL : https://github.com/abstractive/rspec-logsplit
* License : Expat
  Programming Lang: Ruby
  Description : library to provide a logger for each example


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#793578: ITP: ruby-climate-control -- library to easily manage environment variables

2015-07-25 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-climate-control
  Version : 0.0.3
  Upstream Author : Joshua Clayton joshua.clay...@gmail.com
* URL : https://github.com/thoughtbot/climate_control
* License : Expat
  Programming Lang: Ruby
  Description : library to easily manage environment variables


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#739171: ITP: ruby-hipchat -- library to interact with HipChat with Ruby

2015-07-23 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Sun, 16 Feb 2014 14:12:59 +0100 Jonas Genannt
jonas.gena...@capi2name.de wrote:
 Package: wnpp Severity: wishlist Owner: Jonas Genannt
 jonas.gena...@capi2name.de
 
 * Package name: ruby-hipchat Version : 1.0.1 Upstream
 Author : Atlassian * URL :
 https://github.com/hipchat/hipchat-rb * License : Expat 
 Programming Lang: Ruby Description : library to interact with
 HipChat with Ruby
 
 Ruby library to interact with HipChat
 
 For Gitlab, maintained by Ruby PKG Extras
 

Hi,
The gem hipchat is a member of the runtime dependency chain of GitLab.
Are you still working on packaging it? If not, shall I take over this
ITP and package it under Debian Ruby Team ?

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJVsOgEAAoJEJbtq5sua3FxkH4H/jekHS5e6f7FEMSwbjGTbizV
geDM/waMIxh31BXfVWtU4z+Ka1CD+VFQazHnFsNqC4bDueIONfs5bfyKY6YJVczs
adU3uxm8DtVuQMgeRPHLeQ/ZmTqbAVWURwia2dilg3QfJEpH5/sB8Qb6txZDfkQ+
6z6zvSS/oMS7fxVksaSBXKzrTx+4zjrU4CpRto3wkSEkqzNizOxwUaqeTB0c/eyc
z8Bd7mAg52yDeh94qseiSmgxZsmyoUphXofDELWmBb2z/cjbi/yJkIh7eAcn3TMl
lQAgzr5aCfw+kJGVeSJTbfcYL/rlp1av7bOQ4PdgLihqgWDmKr2Qa1SaNrCZppA=
=hGk2
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#791779: FTBFS: uninitialized constant Config (NameError)

2015-07-20 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Wed, 08 Jul 2015 13:26:54 +0200 Christian Hofstaedtler
z...@debian.org wrote:
 Source: ruby-tokyocabinet Version: 1.31-3 Severity: serious 
 Justification: fails to build from source (but built successfully
 in the past)
 
 Dear Maintainer,
 
 your package ruby-tokyocabinet currently FTBFS in unstable.

I couldn't reproduce this bug in a chroot environment (using sbuild).
The package built fine. The build log can be found here -
http://paste.debian.net/284204/

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJVrS+UAAoJEJbtq5sua3Fxa2sIAK9/eJevpEVwLya8oxrQ67nC
C3cDQdMS2FjV5+9C5VnGcQGQ8wfhj1xbskDvdarCzon1N6G5vTV968NR/fUmZ2IO
lyAZcGagYagMFHktYuRJDPHKa3Hk0BCX2AgLDRWzY6fs3DL1t/NgoLvg62N6DrAh
2I4ffnkS66ZVbw/M0axJEcz1bit8OLLule0BdEZJLmXzJFMbraBz2RppLDqGVMa+
T2SmJLsBzlq+MIFrCXr79E3pB1cgw1yVqTYc7PF/1m4Csf/PCXetGXezHtpyMqKd
rThN4VPVj9EeU+bp1+5OkgmKOROGdLAgjCxBgBSZnmwvpzbJlRLDLmN9Is/52ho=
=QJ8t
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#788294: rex,rexical: error when trying to install together

2015-07-18 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Mon, 15 Jun 2015 16:26:40 +0200 Alex Mestiashvili
a...@biotec.tu-dresden.de wrote:
 Hi Balasankar,
 
 Our packages have a name conflict - /usr/bin/rex. Please see the
 initial bug report: 
 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788294
 
 Would you mind renaming the rex from rexical package to something
 else?
 
 rexical seem to be a good name for example.
 
 Alternatively I can consider renaming rex from rex package, but
 because your package is younger in terms of presence in Debian I
 think that it should be easier to rename rexical's rex.

Sure. I'll rename rex to rexical ASAP. Sorry for the delay.

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJVqiX2AAoJEJbtq5sua3FxJU4H/j/KPP554UberoiJICuKSXIg
X1hN1V0X34pkuBAk7KlAfmbEb/8GRRXLBvk8jLSkNvBr+JjPACWjaQXcfHbPhFCs
DH6Ur1OlA3JT+ezGw3M23rKUfotRD3QRP1OwvI/QORScj7VodJkXCHjk12mcgavL
qHwSffwh+2pY7jIGetzQcuQYo3JIEDWLP93P5atCJwWVS/ryrEkemMKONpyzcmQf
goPrPIjQpApzjFLGSK3mOisFCxP/T2ke9rEsCZRSWm4iaUILMz+kP+A4gRHc1PZG
nu8ppS75xVDpQJ+5eq99GpcLI1x0pjdzKICug0RU2JvAIDA8O27qIwSGcw/QLZU=
=aF4I
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#792300: ITP: ruby-devise-two-factor -- Barebones two-factor authentication with Devise

2015-07-13 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-devise-two-factor
  Version : 1.1.0
  Upstream Author : Tinfoil Security, Inc
* URL : https://github.com/tinfoil/devise-two-factor/
* License : Expat
  Programming Lang: Ruby
  Description : Barebones two-factor authentication with Devise


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#792112: ITP: ruby-faker -- easily generate fake data

2015-07-11 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-faker
  Version : 1.4.3
  Upstream Author : Benjamin Curtis benjamin.cur...@gmail.com
* URL : https://github.com/stympy/faker
* License : Expat
  Programming Lang: Ruby
  Description : easily generate fake data


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#720757: ITP: ruby-seed-fu -- solving the problem of inserting and maintaining seed data in a database.

2015-07-11 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Sun, 16 Feb 2014 16:48:41 +0530 akshay pai akshayhpa...@gmail.com
wrote:
 hi, Since i wont be  able to complete the packaging of seed-fu for
 disapora , so i hope that some one else can handle it. Bug#720757:
 ITP: ruby-seed-fu

Ok, I'll take over this ITP.



- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJVoR+SAAoJEJbtq5sua3Fxi/MH/2iAz3w9ndJX8sTajt1P0iEn
amJzuiMTTiXMk57oMzge8032fvaPH3jPMOiTeNtHVIhmQ6hMcKt7v6qvcWaN2jL/
M5vVam+sx/B3eM3mBF5TUXRTjlrLxFVcQ9AwOfuCQCKG6VCq0QxJnxR0yqZjB9jv
f7SX6WEEZwX/ajTMBjukQ/6bZ5B4/m9/4dKwAGDckwX2SP3Vi5vwNwCAnMWHxhI2
P8UqDkP8h5uHFzKstNKGJXcWA9nIyeCM23NEJV52UJxf5Rp7Fyi5Q1pqA2xVsSeF
Qb1wDLdInasSj9oyq+Ay2WIDUpjzfD/gKFJcV6YUzk5mIyklnzC8BmaqK3HXgz8=
=bF53
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#791918: devscripts: [wnpp-check] Ability to query for exact package name

2015-07-10 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi,

On Thu, 9 Jul 2015 17:51:02 + Mattia Rizzolo mat...@mapreri.org
wrote:
 There is not something like coding standards for devscripts, it's
 bore out of random scripts collected into a package. Expecially for
 a script like wnpp-check...
 
 Would you also add something to the --help and the manpage?
 
 I suggest also you to clone the devscripts git repository to easy
 diff your patches (`git diff`, `git format-patch`,...)

I've added the necessary information to the manpage and usage() method
in the script. See the attached patch.

PS : It was generated using git format-patch. Hope that was what you
suggested. :)

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJVn/SaAAoJEJbtq5sua3FxmAcIAKnTCCIAQHPs6yH9YQJYOApo
av/POeCqZ56AqitPh2GaSYq4F2x3Osn/sZqCm6uAXgh+QNqACRuEOnzQeSG9My3p
WmNCOJUgO61fDlAPbUa0kEOrs+t5Co4o2Ag2idwgz0qgTlyflkR7t2Gw8vpbklTE
9OCoPiVAu7k4k7spw3c9gon4ZUvz/DQCp998IHrwi5ss5PL20wr3ZHG2LrvfeY5h
JKijaV9H5LTLB3JON4iW23N2ikHfqnUBIAe0gq1XVsTi/iGJfIKWHRSc67MkzAqQ
tF4vyR75BuF1ckcXnUkniDqj430PvWedTyH2EAaUwjOdlA5KfcA/c4WjFlAMoFQ=
=wLo2
-END PGP SIGNATURE-
From 2ff993d7ec68bfe25b7a6d86aea51e48083023f5 Mon Sep 17 00:00:00 2001
From: Balasankar C balasank...@autistici.org
Date: Fri, 10 Jul 2015 21:07:22 +0530
Subject: [PATCH] Add exact-name-query option to wnpp-check

---
 scripts/wnpp-check.1  |  5 -
 scripts/wnpp-check.sh | 18 +++---
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/scripts/wnpp-check.1 b/scripts/wnpp-check.1
index c04f61b..0b904f7 100644
--- a/scripts/wnpp-check.1
+++ b/scripts/wnpp-check.1
@@ -2,7 +2,7 @@
 .SH NAME
 wnpp-check \- check if a package is being packaged or if this has been requested
 .SH SYNOPSIS
-\fBwnpp-check \fIpackage \fR...
+\fBwnpp-check\fR [\fIOPTIONS\fR] \fIpackage \fR...
 .br
 \fBwnpp-check \-\-help\fR|\fB\-\-version\fR
 .SH DESCRIPTION
@@ -15,6 +15,9 @@ Note that WNPP, and therefore \fBwnpp-check\fR's output, is source
 package based.
 .SH OPTIONS
 .TP
+.BR \-\-exact ,  \-e
+Query for exact match in package name
+.TP
 .BR \-\-help ,  \-h
 Show a summary of options.
 .TP
diff --git a/scripts/wnpp-check.sh b/scripts/wnpp-check.sh
index 02a7186..97b018d 100755
--- a/scripts/wnpp-check.sh
+++ b/scripts/wnpp-check.sh
@@ -10,12 +10,20 @@
 
 set -e
 
-PACKAGES=$@
 CURLORWGET=
 GETCOMMAND=
 
+if [ x$1 = x--exact -o x$1 = x-e ]; then
+shift
+PACKAGES=$@
+EXACT=1
+else
+PACKAGES=$@
+EXACT=0
+fi
 usage () { echo \
-Usage: ${0##*/} package name [...]
+Usage: ${0##*/} [option] package name [...]
+  -e,--exact Query for exact match in package name
   -h,--help  Show this help message
   -v,--version   Show a version message
 
@@ -72,7 +80,11 @@ awk -F' ' '{print ($1 - #$2) http://bugs.debian.org/$2; $3}' $WNPP | sort
 FOUND=0
 for pkg in $PACKAGES
 do
-grep $pkg $WNPP_PACKAGES  FOUND=1
+if [ $EXACT = 1 ]; then
+grep  $pkg$ $WNPP_PACKAGES  FOUND=1
+else
+grep $pkg $WNPP_PACKAGES  FOUND=1
+fi
 done
 
 exit $FOUND
-- 
2.1.4



0x2E6B7171.asc
Description: application/pgp-keys


Bug#791918: devscripts: [wnpp-check] Ability to query for exact package name

2015-07-09 Thread Balasankar C
Package: devscripts
Version: 2.15.5
Severity: wishlist
Tags: patch

Dear Maintainer,

Currently, wnpp-check does a regex match on package names which returns true if
the searched text is found somewhere in the list of packages with ITP/RFP.
Example : `wnpp-check ruby-grape` will return true with an RFP filed on
ruby-grape-entity.
This is because of the use of grep in wnpp-check.

However, there are scenarios where we want wnpp-check to return true only if the
exact package name that we search for is found. That is, `wnpp-check ruby-grape`
should return false. One of such scenario I am facing is when I am checking
which all dependencies of gitlab are packaged. As part of it, I take a list of 
dependencies
and do wnpp-check on them. Based on the result, I generate a progressbar [1].
However, this gives false positives as explained above.

The attached patch is one way to fix the issue. By adding a --exact/-e option
to tackle this scenario. Please use it if it meets the coding standards or be 
kind
enough to add such an option.

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 4.0.0-2-686-pae (SMP w/4 CPU cores)
Locale: LANG=ml_IN, LC_CTYPE=ml_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages devscripts depends on:
ii  dpkg-dev 1.18.1
ii  libc62.19-18
ii  perl 5.20.2-6
ii  python3  3.4.3-4
pn  python3:any  none

Versions of packages devscripts recommends:
ii  at  3.1.16-1
ii  curl7.43.0-1
ii  dctrl-tools 2.24-1
ii  debian-keyring  2015.06.19
ii  dput0.9.6.4
ii  equivs  2.0.9
ii  fakeroot1.20.2-1
ii  file1:5.22+15-2
ii  gnupg   1.4.19-3
ii  libdistro-info-perl 0.14
ii  libencode-locale-perl   1.03-1
ii  libjson-perl2.90-1
ii  liblwp-protocol-https-perl  6.06-2
ii  libsoap-lite-perl   1.11-1
ii  liburi-perl 1.64-1
ii  libwww-perl 6.13-1
ii  lintian 2.5.32
ii  man-db  2.7.0.2-5
ii  patch   2.7.5-1
ii  patchutils  0.3.4-1
ii  python3-debian  0.1.27
ii  python3-magic   1:5.22+15-2
ii  sensible-utils  0.0.9
ii  strace  4.10-2
ii  unzip   6.0-17
ii  wdiff   1.2.2-1
ii  wget1.16.3-3
ii  xz-utils5.1.1alpha+20120614-2.1

Versions of packages devscripts suggests:
ii  bsd-mailx [mailx]8.1.2-0.20150408cvs-1
ii  build-essential  11.7
pn  cvs-buildpackage none
pn  debbindiff   none
pn  devscripts-elnone
ii  gnuplot  4.6.6-2
ii  gpgv 1.4.19-3
ii  libauthen-sasl-perl  2.1600-1
ii  libfile-desktopentry-perl0.12-1
ii  libnet-smtp-ssl-perl 1.01-3
pn  libterm-size-perlnone
ii  libtimedate-perl 2.3000-2
pn  libyaml-syck-perlnone
pn  mutt none
ii  openssh-client [ssh-client]  1:6.7p1-6
ii  svn-buildpackage 0.8.5+nmu1
ii  w3m  0.5.3-22

-- no debconf information
13d12
 PACKAGES=$@
16a16,23
 if [ x$1 = x--exact -o x$1 = x-e ]; then
 shift
 PACKAGES=$@
 EXACT=1
 else
 PACKAGES=$@
 EXACT=0
 fi
75c82,86
 grep $pkg $WNPP_PACKAGES  FOUND=1
---
 if [ $EXACT = 1 ]; then
 grep  $pkg$ $WNPP_PACKAGES  FOUND=1
 else
 grep $pkg $WNPP_PACKAGES  FOUND=1
 fi


Bug#791701: ITP: ruby-omniauth-saml -- a generic SAML strategy for OmniAuth

2015-07-07 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-omniauth-saml
  Version : 1.3.1
  Upstream Author : Practically Green, Inc.
* URL : https://github.com/PracticallyGreen/omniauth-saml/
* License : Expat
  Programming Lang: Ruby
  Description : a generic SAML strategy for OmniAuth


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#651606: put this shiny link in a convenient place

2015-07-06 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Mon, 6 Jul 2015 15:38:36 + Mattia Rizzolo mat...@mapreri.org
wrote:
 control: forwarded -1 http://balasankarc.in/gitlab/
 
 Ok, this may be seen as an abuse of this field, but I really like
 that web page and it gives a really clear glimpse of the status of
 this ITP :)
 
 And thanks to every person that is putting effort in getting this
 beast into the archive!!
 
 
 -- regards, Mattia Rizzolo

First of all, thanks for the good words. :)

I couldn't really understand what you were suggesting. If it was to
host the progress bar at some d.o location, I am sorry - I can't do
that since I'm not a DD yet. But, I would be more than happy to share
the source code for generating this progressbar if some DD wishes to
do that.

The webpage in consideration uses my custom rewrite of gemdeps script
by Cédric Boutillier[2]. The code is available at my GitLab repo[1].
It takes a Gemfile as input (via command line argument) and generates
a csv file output. The python script uses that output to generate the
.html file.

I think Cedric's script it the more complete one as it generates a dot
file which can be used with graphviz to generate a dependency graph as
shown here[3]. Mine was a custom rewrite for GitLab and it just
generates a csv output for generating the webpage.

@Praveen, can you host it in your people.d.o webspace?

[1] https://gitlab.com/balasankarc/gemdeps/
[2] https://gitlab.com/debian-diaspora/gemdeps/
[3] https://people.debian.org/~boutil/gitlab/gitlab_deps20150702.pdf


PS : I am gonna keep this webpage active even if we get a d.o address,
just as a fallback location. I am running a cron script to update it
weekly. :)

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJVmrSVAAoJEJbtq5sua3FxYgUIALWkmIwpv4hxyxtSw3IOcdAg
Tr3iUMTOGUGnA40AxNwjns5FyG1CFOYNuC1lzrjW0QaUI0cGHZARKruIoX2fhwjn
wDVUb3P9VuTm7Ayzsu11yNlaXoaH32z6Nf0S33a5qCnIVI3JAPEC6TuGkCHQa8EO
QKQxUWjFGJ3xal/8KGyFetSFviKTrf7nj9pBhSaLCcH2aWhYtSeGGSEKOYrhxqtN
4pWKt7QaMnMUuKJoo5cJqgZUqTgx+3ZpTXRU1zbm7quCyc4kvw5agVKKWl5hcoAW
LWJ+Budpqs+TiHmrFUZjLtXbOGVsCV29QYztRtmfRrpKvaS5lLUZ47fp6d8rT+Y=
=qJOO
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#651606: put this shiny link in a convenient place

2015-07-06 Thread Balasankar C
On 7 July 2015 1:15:20 am IST, Mattia Rizzolo mat...@mapreri.org wrote:
On Mon, Jul 06, 2015 at 10:32:15PM +0530, Balasankar C wrote:
 I couldn't really understand what you were suggesting. If it was to
 host the progress bar at some d.o location, I am sorry - I can't do
 that since I'm not a DD yet. But, I would be more than happy to share
 the source code for generating this progressbar if some DD wishes to
 do that.

nah, nothing like that.
I'm completly fine with the current location, I just wanted to put the
link in
a more conveniente (at least for me) place, that is, the forwarded
field of
this bug. Look at the top of the bug page, it's now there.

[ strip some tech details about the implementation of that page :) ]
 @Praveen, can you host it in your people.d.o webspace?

I don't see the need for this, really!

 PS : I am gonna keep this webpage active even if we get a d.o
address,
 just as a fallback location. I am running a cron script to update it
 weekly. :)

umh, if I were you I'd run that more often, maybe even daily. It
doesn't sound
like something resource heavy, and I like to see up-to-date web pages
:)


-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540
.''`.
more about me:  http://mapreri.org : :'
 :
Launchpad user: https://launchpad.net/~mapreri `.
`'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia `-

Ah. Ok. I misinterpreted your mail.
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

Bug#791406: ITP: ruby-unicorn-worker-killer -- library to kill unicorn workers by memory and request counts

2015-07-04 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-unicorn-worker-killer
  Version : 0.4.2
  Upstream Author : Kazuki Ohta kazuki.o...@gmail.com
* URL : https://github.com/kzk/unicorn-worker-killer
* License : GPL-2+ or Ruby
  Programming Lang: Ruby
  Description : library to kill unicorn workers by memory and request counts


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#791359: ITP: ruby-rqrcode-rails3 -- render QR codes with Rails 3

2015-07-03 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-rqrcode-rails3
  Version : 0.1.5
  Upstream Author : Sam Vincent sam.vinc...@mac.com
* URL : https://github.com/samvincent/rqrcode-rails3
* License : Expat
  Programming Lang: Ruby
  Description : render QR codes with Rails 3


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790971: ITP: ruby-redis-actionpack -- Redis session store for ActionPack

2015-07-03 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-redis-actionpack
  Version : 4.0.0
  Upstream Author : Luca Guidi m...@lucaguidi.com
* URL : https://github.com/redis-store/redis-actionpack
* License : Expat
  Programming Lang: Ruby
  Description : Redis session store for ActionPack


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



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 balasank...@autistici.org

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


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790714: ITP: ruby-underscore-rails -- library to use underscore.js with Rails

2015-06-30 Thread Balasankar C

Package: wnpp
Owner: Balasankar C balasank...@autistici.org
Severity: wishlist

* Package name  : ruby-underscore-rails
  Version: 1.8.2
  Upstream Author: Robin Wenglewski ro...@wenglewski.de
* URL : 
https://github.com/rweng/underscore-rails

* License   : Expat
  Programming Lang   : Ruby
  Description  : library to use underscore.js with Rails


--
Regards
Balasankar C
http://balasankarc.in


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790645: ITP: ruby-rack-oauth2 -- Rack interface for OAuth 2.0

2015-06-30 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-rack-oauth2
  Version : 1.2.0
  Upstream Author : Nov Matake n...@matake.jp
* URL : https://github.com/nov/rack-oauth2
* License : Expat
  Programming Lang: Ruby
  Description : Rack interface for OAuth 2.0


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790662: ITP: ruby-jquery-scrollto-rails -- library to use jQuery scrollTo with Rails

2015-06-30 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-jquery-scrollto-rails
  Version : 1.4.3
  Upstream Author : John Colvin colvin.j...@gmail.com
* URL : https://github.com/JohnColvin/jquery-scrollto-rails
* License : Expat
  Programming Lang: Ruby
  Description : library to use jQuery scrollTo with Rails


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790476: ITP: ruby-torquebox-no-op -- emulate TorqueBox APIs outside of TorqueBox

2015-06-29 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-torquebox-no-op
  Version : 3.1.2
  Upstream Author : The TorqueBox Team torquebox-...@torquebox.org
* URL : http://torquebox.org/
* License : CC0
  Programming Lang: Ruby
  Description : emulate TorqueBox APIs outside of TorqueBox


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790419: ITP: ruby-delayed-job-active-record -- ActiveRecord backend for DelayedJob

2015-06-29 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-delayed-job-active-record
  Version : 4.0.3
  Upstream Author : Tobias Lütke t...@shopify.com
* URL : https://github.com/collectiveidea/delayed_job_active_record
* License : Expat
  Programming Lang: Ruby
  Description : ActiveRecord backend for DelayedJob


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



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

2015-06-29 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-omniauth-kerberos
  Version : 0.3.0
  Upstream Author : Jan Graichen jan.graic...@altimos.de
* URL : https://github.com/jgraichen/omniauth-kerberos
* License : Expat
  Programming Lang: Ruby
  Description : OmniAuth strategy for Kerberos


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790373: ITP: ruby-logger-application -- add logging support to Ruby applications

2015-06-28 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-logger-application
  Version : 0.0.2
  Upstream Author : Hiroshi SHIBATA h...@ruby-lang.org
* URL : https://github.com/ruby/logger-application
* License : BSD-2-clause
  Programming Lang: Ruby
  Description : add logging support to Ruby applications


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#789738: ruby-crass: ftbfs when locales-all is installed but not locales

2015-06-27 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Tue, 23 Jun 2015 23:52:09 + Mattia Rizzolo mat...@mapreri.org
wrote:
 
 I've cloned+reassigned this bug to ruby-crass too since it's
 affected by the same issue.
Can I add a Build-Conflicts:locales-all and close this issue? Or,
should I wait for some other solution?

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCgAGBQJVjlHYAAoJEJbtq5sua3FxJqwIAJO2MFqgqjaYthdTOGiOdzaT
YvEq1DStIfze4oJ3GFI04+x4t2n6SM7K1SwuqHITZPQ+wQjZU6jRid/Nskrc+uew
Q5AYODc/lbz3oIZa3SMPyAXQfg1/FAJAX587e4ZMTo1LTexTTc+r8f+1QtDwKdWg
3JRwVHebY2W1XL499X4B7uU4Vea1+BPqqsKmme1WvPDJIPFaUYs1Ca8sE5Q3fmD/
hiLRrdbvkaSxArm3RonSIQg8uCMr2lRkDqiXRfTGytkezYqrKFDQHXGQm6bY7Zpw
pEK3vxwHlo+PxESQ4vbY8cv5NoBWq1RDAH/XG6jTQ8KyifwzNPyaZLQ2SwLGiPA=
=jA3R
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#788633: ITP: ruby-rotp -- Ruby library for generating and verifying one time passwords

2015-06-13 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-rotp
  Version : 2.1.0
  Upstream Author : Mark Percival m...@mdp.im
* URL : https://github.com/mdp/rotp
* License : Expat
  Programming Lang: Ruby
  Description : Ruby library for generating and verifying one time passwords


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788428: ITP: ruby-devise-lastseenable -- make devise update last_seen flag on user authentication check

2015-06-11 Thread Balasankar C

Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name  : ruby-devise-lastseenable
  Version   : 0.0.5
  Upstream Author   : Chris Burkhart christ...@christide.com
* URL   : https://github.com/ctide/devise_lastseenable
* License   : Expat
  Programming Lang  : Ruby
  Description 	: make devise update last_seen flag on user 
authentication check


--
Regards
Balasankar C
http://balasankarc.in


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786900: ITP: ruby-delayed-job -- Database-backed asynchronous priority queue system

2015-05-26 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-delayed-job
  Version : 4.0.6
  Upstream Author : Tobias Lütke t...@shopify.com
* URL : https://github.com/collectiveidea/delayed_job
* License : Expat
  Programming Lang: Ruby
  Description : Database-backed asynchronous priority queue system


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786914: ITP: ruby-get-process-mem -- Get memory usage of a process in Ruby

2015-05-26 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-get-process-mem
  Version : 0.2.0
  Upstream Author : Richard Schneeman richard.schneeman+...@gmail.com
* URL : https://github.com/schneems/get_process_mem
* License : Expat
  Programming Lang: Ruby
  Description : Get memory usage of a process in Ruby


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786521: gem2deb: Extract License information from gem

2015-05-22 Thread Balasankar C
Package: gem2deb
Version: 0.16
Severity: wishlist

Dear Maintainer,

Can we somehow extract the license infromation from the gem and then generate
debian/copyright file using that information? Atleast, use that information to
generate a template license instead of using GPL-2+ by default.

If that isn't possible (or feasible), can we use MIT as the template license
(This is purely based on personal experience - Most of the gems I've seen are
MIT licensed)


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.16.0-4-686-pae (SMP w/4 CPU cores)
Locale: LANG=ml_IN, LC_CTYPE=ml_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gem2deb depends on:
ii  build-essential  11.7
ii  debhelper9.20150507
ii  devscripts   2.15.4
ii  gem2deb-test-runner  0.16
ii  perl 5.20.2-4
ii  python3-debian   0.1.27
ii  ruby 1:2.1.5+z
ii  ruby-all-dev 1:2.1.5+z
ii  ruby-setup   3.4.1-9

Versions of packages gem2deb recommends:
ii  apt-file  2.5.4

gem2deb suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786522: gem2deb: Fill homepage field in copyright template

2015-05-22 Thread Balasankar C
Package: gem2deb
Version: 0.16
Severity: wishlist

Dear Maintainer,

gem2deb already fills the homepage field in debian/control file using 

%=homepage ? homepage : 'FIXME'%

Can we use the same for debian/copyright file also?

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.16.0-4-686-pae (SMP w/4 CPU cores)
Locale: LANG=ml_IN, LC_CTYPE=ml_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gem2deb depends on:
ii  build-essential  11.7
ii  debhelper9.20150507
ii  devscripts   2.15.4
ii  gem2deb-test-runner  0.16
ii  perl 5.20.2-4
ii  python3-debian   0.1.27
ii  ruby 1:2.1.5+z
ii  ruby-all-dev 1:2.1.5+z
ii  ruby-setup   3.4.1-9

Versions of packages gem2deb recommends:
ii  apt-file  2.5.4

gem2deb suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786410: ITP: ruby-mono-logger -- Lock-free logger for Ruby

2015-05-21 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-mono-logger
  Version : 1.1.0
  Upstream Author : Steve Klabnik st...@steveklabnik.com
* URL : https://github.com/steveklabnik/mono_logger/
* License : Expat
  Programming Lang: Ruby
  Description : Lock-free logger for Ruby


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#786040: ITP: ruby-browser -- browser detection for Ruby

2015-05-20 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-browser
  Version : 0.8.0
  Upstream Author : Nando Vieira fnando.vie...@gmail.com
* URL : https://github.com/fnando/browser
* License : Expat
  Programming Lang: Ruby
  Description : browser detection for Ruby


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#785734: ITP: ruby-timfel-krb5-auth -- Kerberos binding for Ruby

2015-05-19 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-timfel-krb5-auth
  Version : 0.8.3
  Upstream Author : Tim Felgentreff timfelgentr...@gmail.com
* URL : https://github.com/timfel/krb5-auth
* License : LGPL-2.1+
  Description : Kerberos binding for Ruby


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#785635: ITP: ruby-omniauth-multipassword -- OmniAuth strategy to authenticate using different passwort strategies

2015-05-18 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-omniauth-multipassword
  Version : 0.4.2
  Upstream Author : Jan Graichen jgraic...@altimos.de
* URL : https://github.com/jgraichen/omniauth-multipassword
* License : Expat
  Programming Lang: Ruby
  Description : OmniAuth strategy to authenticate using different passwort 
strategies


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#761180: Status info

2015-05-17 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi,
May I know what is the status of this bug? I require version 2.1.2 of
libjs-raphael for packaging the ruby gem 'raphael-rails' as part of
GitLab packaging. So, updating this would be a great help.

- -- 
Regards
Balasankar C
http://balasankarc.in
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCgAGBQJVWMURAAoJEJbtq5sua3FxYnsIALMZhsEm125WKJHHT6WS7SoM
neHSEHGkJv29w9CV1t1EQHMUoV8+VECHWjAE/gMiK3kpobLw2Po7gaOCroScTxEW
Tdrai7WIL+J18iO0ah6xIEabuB/gW0hJRL/4ptZLi5e3O8r33qupQ9ztVeq+MaR2
wHWIp8P0Rx/Qq4lNlTW/pzolHf1CuK1Y65VLhcom+Lv+IWmER+A1gg6GwSfjMQF4
n+NfTo4aaIK8WOTgyoL/92flwCJbA5GWcOHu0HdsL2ITbFMQsewNPU7BBh6W9T5A
LUU9iU2YepnUhLk3dRPVVXr5ndSMGljA0oTbpI8nuRXnGWCs5QhHljg/nuaVVWM=
=PAXM
-END PGP SIGNATURE-


0x2E6B7171.asc
Description: application/pgp-keys


Bug#785550: ITP: ruby-attr-required -- Provide attr_required and attr_optional

2015-05-17 Thread Balasankar C
Package: wnpp
Severity: wishlist
Owner: Balasankar C balasank...@autistici.org

* Package name: ruby-attr-required
  Version : 1.0.0
  Upstream Author : Nov Matake n...@matake.jp
* URL : https://github.com/nov/attr_required/
* License : Expat
  Programming Lang: Ruby
  Description : Provide attr_required and attr_optional


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



  1   2   >