~ubuntu-branches/ubuntu/natty/liburi-perl/natty

« back to all changes in this revision

Viewing changes to URI/mms.pm

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Hornburg (Racke)
  • Date: 2005-04-07 21:30:51 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050407213051-p5tx197ayyr0u93p
Tags: 1.35-1
* new upstream release (Closes: #303588, thanks to Chip Salzenberg
  <chip@debian.org> for the report)
* changed Build-Depends into Build-Depends-Indep (Closes: #274195, thanks
  to Stephen Quinney <stephen@jadevine.org.uk> for the report)
* point to license files under /usr/share/common-licenses
* removed some cruft from debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package URI::mms;
 
2
 
 
3
require URI::http;
 
4
@ISA=qw(URI::http);
 
5
 
 
6
sub default_port { 1755 }
 
7
 
 
8
1;