Distribution Release: DEFT Linux 6


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Distribution Release: DEFT Linux 6
# 1  
Old 01-12-2011
Distribution Release: DEFT Linux 6

Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Install Deft-Linux in VirtualBox without installer

Hello Girls and Boys, I'm trying to install Deft Linux on my virtual maschine, but the problem is, that this distibution doesn't have an installer on board. Is there another way to install it? Regards Sebi:) ---------- Post updated at 02:27 PM ---------- Previous update was at 01:39 PM... (0 Replies)
Discussion started by: Sebi0815
0 Replies
Login or Register to Ask a Question
Software::Release(3pm)					User Contributed Perl Documentation				    Software::Release(3pm)

NAME
Software::Release - Object representing a release of software. VERSION
version 0.02 SYNOPSIS
use DateTime; use Software::Release; use Software::Release::Change; my $change = Software::Release::Change->new( author => 'gphat', change_id => 'abc1234', date => DateTime->now, description => 'Frozzled the wozjob' ); my $rel = Software::Release->new( version => '0.1', name => 'Angry Anteater', date => DateTime->now, ); $rel->add_to_changes($change); DESCRIPTION
Software::Release is a purely informational collection of objects that you can use to represent a release of software. Its original use- case was to provide a contract between a git log parser and a formatter class that outputs a changelog, but it may be useful to others to create bug trackers, dashboards or whathaveyour. ATTRIBUTES
changes A list of Software::Release::Change objects for this release. date The date this software was released. name The name of this release. version The version of the release, as a string. METHODS
add_to_changes ($change) Add a change to this release's list of changes. has_no_changes Returns true if this release's list of changes is empty. AUTHOR
Cory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Infinity Interactive, Inc. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.12.4 2011-10-19 Software::Release(3pm)