File: DOAPChangeSets.pm

package info (click to toggle)
librdf-helper-properties-perl 0.24-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 252 kB
  • ctags: 129
  • sloc: perl: 1,677; makefile: 10
file content (24 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (32)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#line 1
package Module::Install::DOAPChangeSets;

use 5.008;
use parent qw(Module::Install::Base);
use strict;

our $VERSION = '0.206';
our $AUTHOR_ONLY = 1;

sub write_doap_changes {
	my $self = shift;
	$self->admin->write_doap_changes(@_) if $self->is_admin;
}

sub write_doap_changes_xml {
	my $self = shift;
	$self->admin->write_doap_changes_xml(@_) if $self->is_admin;
}

1;

__END__
#line 84