~ubuntu-branches/ubuntu/quantal/libdata-javascript-perl/quantal

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt, Ansgar Burchardt, gregor herrmann
  • Date: 2008-08-24 13:32:37 UTC
  • Revision ID: james.westby@ubuntu.com-20080824133237-ycs6sjki9is82vwh
Tags: 1.13-1
[ Ansgar Burchardt ]
* New upstream release.
* Add myself to Uploaders.
* Refresh debian/rules for debhelper 7
* Convert debian/copyright to proposed machine-readable format
* Remove COPYING (licensing information is now included in JavaScript.pm)
* debian/control: Remove trailing ", " from Depends, remove leading space
  from Description, do not capitalize short description
* Install example.pl in /usr/share/doc/libdata-javascript-perl instead of
  /usr/share/perl5/Data
* Do not install README (includes only a copy of example.pl and its output)

[ gregor herrmann ]
* debian/rules: use make's $(RM) for removing example.pl.
* debian/control: mention module name in long description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Source: libdata-javascript-perl
 
2
Section: perl
 
3
Priority: optional
 
4
Build-Depends: debhelper (>= 7)
 
5
Build-Depends-Indep: perl (>= 5.8.0-7)
 
6
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
 
7
Uploaders: Jaldhar H. Vyas <jaldhar@debian.org>,
 
8
 Ansgar Burchardt <ansgar@43-1.org>
 
9
Standards-Version: 3.8.0
 
10
Homepage: http://search.cpan.org/dist/Data-JavaScript/
 
11
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdata-javascript-perl/
 
12
Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-javascript-perl/
 
13
 
 
14
Package: libdata-javascript-perl
 
15
Architecture: all
 
16
Depends: ${perl:Depends}, ${misc:Depends}
 
17
Description: dump perl data structures into JavaScript code
 
18
 Data::JavaScript is mainly inteded for CGI programming, when a perl script
 
19
 generates a page with client side JavaScript code that needs access to
 
20
 structures created on the server.
 
21
 .
 
22
 It works by creating one line of JavaScript code per datum. Therefore,
 
23
 structures cannot be created anonymously and need to be assigned to
 
24
 variables. However, this format enables dumping large structures.