ubuntustudio-live/ 0000775 0000000 0000000 00000000000 12314363211 011451 5 ustar ubuntustudio-live/livedvd/ 0000775 0000000 0000000 00000000000 12314363211 013106 5 ustar ubuntustudio-live/livedvd/ubiquity/ 0000775 0000000 0000000 00000000000 12314363211 014761 5 ustar ubuntustudio-live/livedvd/ubiquity/gtk/ 0000775 0000000 0000000 00000000000 12314363211 015546 5 ustar ubuntustudio-live/livedvd/ubiquity/gtk/ubuntustudio-packages.ui 0000664 0000000 0000000 00000003446 12314363211 022442 0 ustar
ubuntustudio-live/livedvd/ubiquity/target-config/ 0000775 0000000 0000000 00000000000 12314363211 017512 5 ustar ubuntustudio-live/livedvd/ubiquity/target-config/48ubuntustudio_maybe_ubiquity 0000775 0000000 0000000 00000001117 12314363211 025476 0 ustar #!/bin/sh
PREREQ=""
DESCRIPTION="Preparing for maybe-ubiquity mode..."
. /scripts/casper-functions
prereqs()
{
echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
esac
log_begin_msg "$DESCRIPTION"
#should cover both maybe-ubiquity and only-ubiquity and automatic-ubiquity modes
if grep "ubiquity" /proc/cmdline >/dev/null; then
mkdir -p /root/home/$USERNAME/.config
cp -R /root/etc/xdg/xdg-ubuntustudio/xfce4 /root/home/$USERNAME/.config
chroot /root chown -R $USERNAME:$USERNAME /home/$USERNAME/.config
fi
log_end_msg
ubuntustudio-live/livedvd/ubiquity/plugins/ 0000775 0000000 0000000 00000000000 12314613555 016453 5 ustar ubuntustudio-live/livedvd/ubiquity/plugins/ubuntustudio-packages.py 0000664 0000000 0000000 00000030526 12314613555 023361 0 ustar # -*- coding: utf-8; Mode: Python; indent-tabs-mode: nil; tab-width: 4 -*-
# Copyright (C) 2011 Stephane Graber
# Author: Stephane Graber
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import os, apt, apt_pkg
from gi.repository import Gtk as gtk
from ubiquity.plugin import *
from ubiquity import i18n
from ubiquity import misc
from ubiquity import install_misc
import debconf
NAME = 'ubuntustudio-packages'
BEFORE = 'partman'
# AFTER = 'ubuntustudio-addon'
WEIGHT = 10
OEM = False
class PackagesModel(gtk.TreeStore):
(
COLUMN_INSTALLED,
COLUMN_NAME,
COLUMN_DESCRIPTION
) = list(range(3))
def __init__(self):
gtk.TreeStore.__init__(self, bool, str, str)
with misc.raised_privileges():
self.populate_tree()
def populate_tree(self):
src_pkg = "ubuntustudio-meta"
package_blacklist = ['unity-2d', 'ubuntustudio-recording', 'ubuntustudio-generation', 'ubuntustudio-font-meta', 'ubuntustudio-desktop']
relation_blacklist = ['Depends']
# Initialize APT
apt_pkg.init_config()
apt_pkg.init_system()
cache = apt_pkg.Cache(apt.progress.base.OpProgress())
try:
srcpkgrecords=apt_pkg.SourceRecords()
srcpkgrecords.lookup(src_pkg)
except SystemError:
# Probably on a system without deb-src entries
binaries=[]
for p in apt.Cache():
if p.candidate:
if p.candidate.source_name == src_pkg:
binaries.append(p.name)
srcpkgrecords=type("SourceRecords", (object, ), {'binaries':binaries})()
pkgrecords=apt_pkg.PackageRecords(cache)
ubiquity_blacklist=install_misc.query_recorded_removed()[1]
ubiquity_whitelist=install_misc.query_recorded_installed()
processed = []
for pkg in sorted(cache.packages, key=lambda package: package.name):
if pkg.name in srcpkgrecords.binaries and not pkg.name in processed:
if pkg.name in package_blacklist:
continue
else:
pkgrecords.lookup(pkg.version_list[0].file_list[0])
piter=self.append(None,(True,pkg.name,pkgrecords.short_desc))
for dep_type in pkg.version_list[0].depends_list:
if dep_type in relation_blacklist:
continue
for bin_pkg in sorted(pkg.version_list[0].depends_list[dep_type], key=lambda package: package[0].target_pkg.name):
if bin_pkg[0].target_pkg.name in package_blacklist:
continue
# Don't list inter meta package dependencies unless it's a meta package we don't list
# if bin_pkg[0].target_pkg.name in (set(srcpkgrecords.binaries) - set(meta_blacklist)):
# continue
try:
pkgrecords.lookup(bin_pkg[0].target_pkg.version_list[0].file_list[0])
except IndexError:
continue
if (bin_pkg[0].target_pkg.current_state == apt_pkg.CURSTATE_INSTALLED and bin_pkg[0].target_pkg.name not in ubiquity_blacklist) or bin_pkg[0].target_pkg.name in ubiquity_whitelist:
self.append(piter,(True,bin_pkg[0].target_pkg.name,pkgrecords.short_desc))
else:
self.append(piter,(False,bin_pkg[0].target_pkg.name,pkgrecords.short_desc))
processed.append(pkg.name)
class PageBase(PluginUI):
pass
class PageGtk(PageBase):
plugin_title = 'ubiquity/text/ubuntustudio-packages_heading_label'
removed_packages = set()
removed_packages_recursive = set()
installed_packages = set()
def __init__(self, controller, *args, **kwargs):
self.controller = controller
try:
builder = gtk.Builder()
builder.add_from_file(os.path.join(os.environ['UBIQUITY_GLADE'],
'ubuntustudio-packages.ui'))
builder.connect_signals(self)
self.controller.add_builder(builder)
self.page = builder.get_object('ubuntustudio-packages_window')
# Load required objects
self.description = builder.get_object('description')
self.tvPackages = builder.get_object('tvPackages')
self.tvPackagesModel = PackagesModel()
# Configure treeview
self.tvPackages.set_model(self.tvPackagesModel)
self.tvPackages.set_headers_visible(True)
# Installed checkbox
column = gtk.TreeViewColumn("Installed")
cell = gtk.CellRendererToggle()
cell.connect("toggled", self.on_toggled, self.tvPackagesModel)
column.pack_start(cell, False)
column.add_attribute(cell, "active", self.tvPackagesModel.COLUMN_INSTALLED)
self.tvPackages.append_column(column)
# Package name label
column = gtk.TreeViewColumn("Name")
cell = gtk.CellRendererText()
column.pack_start(cell, False)
column.add_attribute(cell, "text", self.tvPackagesModel.COLUMN_NAME)
self.tvPackages.append_column(column)
# Package description label
column = gtk.TreeViewColumn("Description")
cell = gtk.CellRendererText()
column.pack_start(cell, False)
column.add_attribute(cell, "text", self.tvPackagesModel.COLUMN_DESCRIPTION)
self.tvPackages.append_column(column)
except Exception as e:
self.debug('Could not create ubuntustudio-packages page: %s', e)
self.page = None
self.plugin_widgets = self.page
def on_toggled(self, toggle, path, model):
piter = model.get_iter_from_string(path)
install_state = not model.get_value(piter, model.COLUMN_INSTALLED)
self.toggle(model, piter, install_state)
def toggle(self, model, piter, install_state):
if model.get_value(piter, model.COLUMN_INSTALLED) != install_state:
model.set_value(piter, model.COLUMN_INSTALLED,install_state)
self.set_state(model, piter, install_state)
# Check if we are a meta package
if model.iter_has_child(piter) == True:
if install_state == True:
# If we select a meta, select all children
for i in range(model.iter_n_children(piter)):
child = model.iter_nth_child(piter, i)
if model.get_value(child, model.COLUMN_INSTALLED) != install_state:
self.toggle(model, child, install_state)
else:
# If we unselect a meta, unselect all children unless they appear multiple times
for i in range(model.iter_n_children(piter)):
child = model.iter_nth_child(piter, i)
if self.get_number_occurrence(piter, model, model.get_value(child, model.COLUMN_NAME)) == 1:
if model.get_value(child, model.COLUMN_INSTALLED) != install_state:
self.toggle(model, child, install_state)
else:
# Check if all siblings share the same state, if so, apply to parent
parent=model.iter_parent(piter)
name=model.get_value(piter, model.COLUMN_NAME)
score=0
for i in range(model.iter_n_children(parent)):
child = model.iter_nth_child(parent, i)
if model.get_value(child, model.COLUMN_INSTALLED) == install_state:
score += 1
if score == model.iter_n_children(parent):
# All siblings share the same state, apply to parent
if model.get_value(parent, model.COLUMN_INSTALLED) != install_state:
model.set_value(parent, model.COLUMN_INSTALLED,install_state)
self.set_state(model, parent, install_state)
else:
# Some siblings have a different state, unselect parent
if model.get_value(parent, model.COLUMN_INSTALLED) != False:
model.set_value(parent, model.COLUMN_INSTALLED,False)
self.set_state(model, parent, False)
# Get all identical package in other meta and switch state
root = model.iter_parent(parent)
for meta_index in range(model.iter_n_children(root)):
meta = model.iter_nth_child(root, meta_index)
for package_index in range(model.iter_n_children(meta)):
package = model.iter_nth_child(meta, package_index)
if model.get_value(package, model.COLUMN_NAME) == name:
if model.get_value(package, model.COLUMN_INSTALLED) != install_state:
self.toggle(model, package, install_state)
def get_number_occurrence(self, piter, model, name):
count = 0
root = model.iter_parent(piter)
for meta_index in range(model.iter_n_children(root)):
meta = model.iter_nth_child(root, meta_index)
for package_index in range(model.iter_n_children(meta)):
package = model.iter_nth_child(meta, package_index)
if model.get_value(package, model.COLUMN_NAME) == name:
count += 1
return count
def set_state(self, model, piter, install_state):
name = model.get_value(piter, model.COLUMN_NAME)
if install_state == False:
if name in self.installed_packages:
self.installed_packages.remove(name)
else:
self.removed_packages_recursive.add(name)
else:
if name in self.removed_packages_recursive:
self.removed_packages_recursive.remove(name)
else:
self.installed_packages.add(name)
def plugin_translate(self, lang):
self.description.set_markup(self.controller.get_string('ubuntustudio-packages_description_label', lang))
self.tvPackages.get_columns()[0].set_title(self.controller.get_string('ubuntustudio-packages_column_installed_title', lang))
self.tvPackages.get_columns()[1].set_title(self.controller.get_string('ubuntustudio-packages_column_name_title', lang))
self.tvPackages.get_columns()[2].set_title(self.controller.get_string('ubuntustudio-packages_column_description_title', lang))
class Page(Plugin):
def Prepare(self):
with misc.raised_privileges():
self.ui.removed_packages=install_misc.query_recorded_removed()[0]
self.ui.removed_packages_recursive=install_misc.query_recorded_removed()[1]
self.ui.installed_packages=install_misc.query_recorded_installed()
pass
def ok_handler(self):
with misc.raised_privileges():
if os.path.exists('/var/lib/ubiquity/apt-removed'):
os.remove('/var/lib/ubiquity/apt-removed')
if os.path.exists('/var/lib/ubiquity/apt-installed'):
os.remove('/var/lib/ubiquity/apt-installed')
try:
if self.db.get('oem-config/enable') == 'true':
# Ensure that we always have the required packages for OEM
self.ui.installed_packages.add('oem-config-gtk')
self.ui.installed_packages.add('oem-config-slideshow-ubuntu')
except debconf.DebconfError:
pass
install_misc.record_removed(self.ui.removed_packages,False)
install_misc.record_removed(self.ui.removed_packages_recursive,True)
install_misc.record_installed(self.ui.installed_packages)
Plugin.ok_handler(self)
ubuntustudio-live/AUTHORS 0000664 0000000 0000000 00000001652 12314363211 012525 0 ustar Copyright (applies if no explicit header in the file):
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Authors:
Copyright (c) 2010-2012 Jonathan Carter
Copyright (c) 2010-2012 Stéphane Graber
Copyright (c) 2014 Kaj Ailomaa
ubuntustudio-live/COPYING 0000664 0000000 0000000 00000043110 12314363211 012503 0 ustar GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.
ubuntustudio-live/debian/ 0000775 0000000 0000000 00000000000 12314613631 012677 5 ustar ubuntustudio-live/debian/install 0000664 0000000 0000000 00000000207 12314363211 014263 0 ustar livedvd/ubiquity/gtk/ usr/share/ubiquity/
livedvd/ubiquity/plugins/ usr/lib/ubiquity/
livedvd/ubiquity/target-config usr/lib/ubiquity/
ubuntustudio-live/debian/templates 0000664 0000000 0000000 00000001071 12314363211 014613 0 ustar Template: ubiquity/text/ubuntustudio-packages_heading_label
Type: text
_Description: Ubuntu Studio installation options
Template: ubiquity/text/ubuntustudio-packages_description_label
Type: text
_Description: Installed multimedia packages (untick to remove):
Template: ubiquity/text/ubuntustudio-packages_column_installed_title
Type: text
_Description: Installed
Template: ubiquity/text/ubuntustudio-packages_column_name_title
Type: text
_Description: Name
Template: ubiquity/text/ubuntustudio-packages_column_description_title
Type: text
_Description: Description
ubuntustudio-live/debian/copyright 0000664 0000000 0000000 00000005556 12314363211 014641 0 ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: ubuntustudio-live
Upstream-Contact: Ubuntu Studio Developers
2010-2012, Stéphane Graber
2014, Kaj Ailomaa
License: GPL-2+
This program is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later
version.
.
This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License for more
details.
.
You should have received a copy of the GNU General Public
License along with this package; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
Files: livecd/langpacks/po/* debian/real-po/*
Copyright: 2012-2012 Rosetta Contributors and Canonical Ltd.
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
.
* Neither the name of the nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
ubuntustudio-live/debian/po/ 0000775 0000000 0000000 00000000000 12314363211 013311 5 ustar ubuntustudio-live/debian/po/templates.pot 0000664 0000000 0000000 00000002066 12314363211 016037 0 ustar # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ubuntustudio-live\n"
"Report-Msgid-Bugs-To: ubuntustudio-live@packages.debian.org\n"
"POT-Creation-Date: 2014-03-15 12:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: text
#. Description
#: ../templates:1001
msgid "Ubuntu Studio installation options"
msgstr ""
#. Type: text
#. Description
#: ../templates:2001
msgid "Installed multimedia packages (untick to remove):"
msgstr ""
#. Type: text
#. Description
#: ../templates:3001
msgid "Installed"
msgstr ""
#. Type: text
#. Description
#: ../templates:4001
msgid "Name"
msgstr ""
#. Type: text
#. Description
#: ../templates:5001
msgid "Description"
msgstr ""
ubuntustudio-live/debian/po/POTFILES.in 0000664 0000000 0000000 00000000044 12314363211 015064 0 ustar [type: gettext/rfc822deb] templates
ubuntustudio-live/debian/source/ 0000775 0000000 0000000 00000000000 12314363211 014173 5 ustar ubuntustudio-live/debian/source/format 0000664 0000000 0000000 00000000015 12314363211 015402 0 ustar 3.0 (native)
ubuntustudio-live/debian/changelog 0000664 0000000 0000000 00000041615 12314613631 014560 0 ustar ubuntustudio-live (1.2) trusty; urgency=low
* Again, a fix for the package selection plugin (lp: #1297219)
* Removed ubuntustudio-desktop as an option in the package selection
plugin.
-- Kaj Ailomaa Wed, 26 Mar 2014 18:57:16 +0100
ubuntustudio-live (1.1) trusty; urgency=low
* Fix for the ubiquity package selection plugin (lp: #1297219)
-- Kaj Ailomaa Tue, 25 Mar 2014 12:01:32 +0100
ubuntustudio-live (1) trusty; urgency=low
* ubuntustudio-fied this package
* removed superfluous conflicts in debian/control
* removed superfluous dependencies in debian/control
* added ubiquity-slideshow-ubuntustudio as dependency in debian/control
* removed superfluous dependency to im-switch
-- Kaj Ailomaa Sat, 15 Mar 2014 12:55:16 +0100
edubuntu-live (13.09.2) saucy; urgency=low
* Unset LANGUAGE before opening the session as otherwise gtk
applications will look at it instead of the other locale variables.
-- Stéphane Graber Thu, 26 Sep 2013 11:35:34 -0400
edubuntu-live (13.09.1) saucy; urgency=low
* Drop conflict against unity-lens-shopping as this was breaking the
dash, instead replace this with a gsettings key in edubuntu-artwork
(LP: #1220572).
-- Stéphane Graber Wed, 25 Sep 2013 11:39:20 -0400
edubuntu-live (13.08.3) saucy; urgency=low
* Remove ubiqtuiy as depencency, remove now obsolete maintainer script
to disable Ubituity SSO plugin.
-- Jonathan Carter Mon, 02 Sep 2013 14:44:10 +0200
edubuntu-live (13.08.2) saucy; urgency=low
* Add ubiquity as dependency.
-- Jonathan Carter Sun, 01 Sep 2013 17:10:41 +0200
edubuntu-live (13.08.1) saucy; urgency=low
* Disable Ubiquity SSO plugin.
-- Jonathan Carter Thu, 29 Aug 2013 18:57:40 +0200
edubuntu-live (13.03.1) raring; urgency=low
* Revert to pre-raring version of the plugins and templates as
edubuntu-server isn't quite there yet.
The code is identical to that in Edubuntu 12.10 with the exception of
/ltsp/i386.img being changed to /casper/ltsp.squashfs.
(LP: #1154601)
-- Stéphane Graber Wed, 13 Mar 2013 11:14:11 -0400
edubuntu-live (12.11.1) raring; urgency=low
* Initial release for raring, not fully functional yet.
- Rename and re-arrange the installer steps to have:
+ edu-target: Installation type selection
+ edu-domain: Domain integration
+ edu-packages: Package selection
- The code included in this release covers the standalone workstations
and ltsp server use cases.
Selecting domain integration will only install the required packages
without doing any actual configuration at this point.
- Edubuntu Server configuration is included in this package however the
required squashfs and ubiquity changes aren't in the archive yet so the
option won't be shown in the installer.
* Add a dependency on ldap-utils, required for domain integration.
* Update Debian standards, README and AUTHORS
* Switch to cleaner debian/copyright
* Re-generate translations
-- Stéphane Graber Sun, 11 Nov 2012 16:57:02 -0500
edubuntu-live (12.10.11) quantal; urgency=low
* Update translations from Launchpad.
-- Stéphane Graber Tue, 09 Oct 2012 14:24:15 -0400
edubuntu-live (12.10.9) quantal; urgency=low
* Rebuild hoping that Launchpad won't strip the translations this time.
* Update translations.
* Change default session for LTSP from Unity to gnome-fallback.
This is done as Unity isn't usable since unity-2d was deprecated.
gnome-classic doesn't seem to be really reliable either, so
gnome-fallback will be used as the default for now.
It's still possible to change the desktop environment at login time on the
thin client and for all thin clients in /var/lib/tftpboot/*/i386/lts.conf
(LP: #1055635)
* Also add a Conflict against unity-lens-shopping as it's considered
inappropriate for Edubuntu's target audience. (LP: #1055705)
-- Stéphane Graber Mon, 24 Sep 2012 13:47:21 -0400
edubuntu-live (12.10.8) quantal; urgency=low
* Remove casper hook as edubuntu-artwork now overrides the unity launchers,
so adding ltsp-live is now done in there rather than through casper.
* Refresh edubuntu-live translations.
* Refresh langpack-installer translations.
-- Stéphane Graber Thu, 20 Sep 2012 12:40:52 -0400
edubuntu-live (12.10.7) quantal; urgency=low
* Drop X-Ubuntu-Use-Langpack flag as we want the translations to be
included in the binary package instead of the langpacks.
-- Stéphane Graber Mon, 17 Sep 2012 10:28:10 -0400
edubuntu-live (12.10.6) quantal; urgency=low
* Run langpack installer under sudo as it's installing packages.
-- Stéphane Graber Wed, 05 Sep 2012 15:01:03 -0400
edubuntu-live (12.10.5) quantal; urgency=low
* Now that all our langpacks have been moved to the DVD pool, introduce
edubuntu-langpack-installer that will be started at session open time
and offer the user to install the langpacks from the media.
-- Stéphane Graber Mon, 27 Aug 2012 15:04:47 -0400
edubuntu-live (12.10.4) quantal; urgency=low
* Revert last change (hardcoding 192.168.0.1) as the new LTSP has been
uploaded to the archive.
-- Stéphane Graber Wed, 01 Aug 2012 15:39:58 -0400
edubuntu-live (12.10.3) quantal; urgency=low
* Use 192.168.0.1 as the listen address for LTSP instead of 192.168.0.254,
the later was removed from any LTSP script and the standard is now
192.168.0.1. This fixes the connection failure on LTSP post-install.
* Hardcode LDM_SERVER to 192.168.0.1 to workaround bug in ltsp leading
to bad ssh_known_hosts being generated (ldm expects an entry for "server").
-- Stéphane Graber Wed, 25 Jul 2012 15:27:41 -0400
edubuntu-live (12.10.2) quantal; urgency=low
* Hide LTSP section in installer when no LTSP chroot is present on the
media.
-- Stéphane Graber Wed, 04 Jul 2012 18:02:23 -0400
edubuntu-live (12.10.1) quantal; urgency=low
* Port to Python 3:
- Use "except Exception as e" syntax rather than the old-style "except
Exception, e".
- Handle range() returning an iterator.
- Call subprocess with universal_newlines=True when expecting to read
text.
- Port to python-apt 0.8 API.
- Fix a file handle leak.
* Send nmcli stderr to /dev/null rather than to a pipe that we never read
from.
-- Colin Watson Mon, 07 May 2012 00:13:49 +0100
edubuntu-live (12.04.1) precise; urgency=low
* Update translations.
-- Stéphane Graber Thu, 12 Apr 2012 15:34:35 +0200
edubuntu-live (12.03.3) precise; urgency=low
* Fix epoptes hook to only remove the certificate and not the directory.
(LP: #967809)
* Fix broken translation template (will need later translation update)
(LP: #967448)
-- Stéphane Graber Thu, 29 Mar 2012 11:37:42 -0400
edubuntu-live (12.03.2) precise; urgency=low
* Update translations.
-- Stéphane Graber Thu, 22 Mar 2012 14:37:13 -0400
edubuntu-live (12.03.1) precise; urgency=low
* Update installer hook for epoptes.
* Remove current casper code for italc, sabayon and nanny as we don't
ship these anymore.
-- Stéphane Graber Mon, 12 Mar 2012 19:09:20 -0400
edubuntu-live (12.01.1) precise; urgency=low
* Rework the installer text a little to make it clearer what LTSP
and the gnome-session-fallback session are.
* Update LTSP installer step to be a bit more consistent with LTSP-Live.
-- Stéphane Graber Mon, 23 Jan 2012 15:56:32 -0500
edubuntu-live (11.12.1) precise; urgency=low
* Update edubuntu packages:
- Don't crash on UTF-8 characters (LP: #872727)
- Sort the package list
- Don't show duplicats
- Don't show dependencies on meta packages
- Add edubuntu-fonts to the meta package blacklist
-- Stéphane Graber Fri, 16 Dec 2011 10:42:28 -0500
edubuntu-live (11.10.2) oneiric; urgency=low
* Fix edubuntu-packages crashing when oem-config/enable isn't set.
-- Stéphane Graber Tue, 11 Oct 2011 09:24:15 +0100
edubuntu-live (11.10.1) oneiric; urgency=low
* Hardcode oem-config-gtk and oem-config-slideshow-ubuntu for OEM installs.
-- Stéphane Graber Mon, 10 Oct 2011 18:16:36 +0100
edubuntu-live (11.09.2) oneiric; urgency=low
* Update translations.
-- Stéphane Graber Thu, 29 Sep 2011 12:34:52 -0400
edubuntu-live (11.09.1) oneiric; urgency=low
* Update translations.
-- Stéphane Graber Thu, 15 Sep 2011 16:56:51 -0400
edubuntu-live (11.08.7) oneiric; urgency=low
* Fix LTSP opening user session in the wrong langauge (LP: #838268)
* Fix LTSP not booting when gnome session fallback is selected (LP: #838265)
-- Stéphane Graber Wed, 31 Aug 2011 13:50:06 -0400
edubuntu-live (11.08.6) oneiric; urgency=low
* Configure LTSP language on target system.
-- Stéphane Graber Tue, 30 Aug 2011 14:00:36 -0400
edubuntu-live (11.08.5) oneiric; urgency=low
* Add LTSP-Live launcher to unity (LP: #835027)
-- Stéphane Graber Fri, 26 Aug 2011 16:52:40 -0400
edubuntu-live (11.08.4) oneiric; urgency=low
* Fix path to lightdm-set-defaults
-- Stéphane Graber Mon, 22 Aug 2011 11:25:07 -0400
edubuntu-live (11.08.3) oneiric; urgency=low
* Update ubiquity steps to use pygi
* Update ubiquity hook to use ligthdm-set-defaults
* Update translations
-- Stéphane Graber Fri, 19 Aug 2011 10:47:37 -0700
edubuntu-live (11.08.2) oneiric; urgency=low
* Fix translation of the package selection step.
-- Stéphane Graber Tue, 09 Aug 2011 13:21:58 -0400
edubuntu-live (11.08.1) oneiric; urgency=low
* Update translations
-- Stéphane Graber Mon, 01 Aug 2011 10:07:37 -0400
edubuntu-live (11.07.3) oneiric; urgency=low
* Apparently the po => real-po symlink never actually got uploaded.
Upload it this time.
-- Stéphane Graber Mon, 11 Jul 2011 14:08:32 +0200
edubuntu-live (11.07.2) oneiric; urgency=low
* Add fallback code for the detailed package selection step.
When deb-src entries don't exist, generate the same list from the
binary packages instead (slower). (LP: #806428)
-- Stéphane Graber Wed, 06 Jul 2011 15:08:48 +0200
edubuntu-live (11.07.1) oneiric; urgency=low
* Fix typo in icon name (fallback.png instead of fallback.jpg)
-- Stéphane Graber Tue, 05 Jul 2011 11:41:03 +0200
edubuntu-live (11.06.2) oneiric; urgency=low
* Switch to unity by default and offer fallback as an installer choice.
* Bump standard to 3.9.2
* Update po template
-- Stéphane Graber Mon, 04 Jul 2011 00:26:24 +0200
edubuntu-live (11.06.1) oneiric; urgency=low
* Do the same symlink trick for debian/po as ubiquity does.
-- Stéphane Graber Tue, 21 Jun 2011 13:13:42 -0400
edubuntu-live (11.05.3) oneiric; urgency=low
* Now that our temporary default session is gnome-fallback
update ubiquity hook to set it as default session for LTSP.
-- Stéphane Graber Wed, 01 Jun 2011 13:49:11 -0400
edubuntu-live (11.05.2) oneiric; urgency=low
* When installing with classic desktop,
make sure LTSP also uses it. (LP: #770323)
-- Stéphane Graber Mon, 30 May 2011 16:22:05 -0400
edubuntu-live (11.05.1) oneiric; urgency=low
[ Colin Watson ]
* Add debconf translation infrastructure.
[ Stephane Graber ]
* Add some missing strings into debian/templates
* Remove markup from the translatable strings
* Update translation template
-- Stéphane Graber Tue, 17 May 2011 11:19:34 -0400
edubuntu-live (11.04.1) natty; urgency=low
* Fix casper script to run only at boot time and use the right path. (LP: #760673)
-- Stéphane Graber Thu, 14 Apr 2011 09:57:53 -0400
edubuntu-live (11.03.4) natty; urgency=low
* Update Unity description in installer
-- Jonathan Carter Tue, 29 Mar 2011 10:17:33 -0400
edubuntu-live (11.03.3) natty; urgency=low
* Create tftpboot directory for lts.conf creation
-- Jonathan Carter Mon, 28 Mar 2011 11:29:04 -0400
edubuntu-live (11.03.2) natty; urgency=low
* Set default LDM theme to edubuntu
* Update LDM screenshot in Ubiquity
-- Jonathan Carter Thu, 24 Mar 2011 15:43:45 -0400
edubuntu-live (11.03.1) natty; urgency=low
* Add a depends on im-switch to avoid shipping im-config
-- Stéphane Graber Thu, 03 Mar 2011 23:34:04 -0500
edubuntu-live (11.02.3) natty; urgency=low
* Add new installer step (package choice).
-- Stéphane Graber Tue, 22 Feb 2011 16:52:31 -0500
edubuntu-live (11.02.2) natty; urgency=low
* Properly disable sabayon.
-- Stéphane Graber Sat, 19 Feb 2011 21:32:46 -0500
edubuntu-live (11.02.1) natty; urgency=low
* Make the unity option of the installer, set unity as default gnome session.
-- Stéphane Graber Sat, 19 Feb 2011 17:14:47 -0500
edubuntu-live (10.12.3) natty; urgency=low
* Disable iTalc, Nanny and sabayon for Live
* Add ubiquity italc script (LP: #714864)
-- Stéphane Graber Mon, 07 Feb 2011 17:18:25 -0500
edubuntu-live (10.12.2) natty; urgency=low
* Hide iTalc menu in live sessions
-- Jonathan Carter Mon, 13 Dec 2010 14:52:32 -0500
edubuntu-live (10.12.1) natty; urgency=low
* Copy resolv.conf and sources.list from host before building ltsp
client image
-- Jonathan Carter Mon, 13 Dec 2010 14:20:34 -0500
edubuntu-live (10.11.4) natty; urgency=low
* Add qt3-assistant to conflicts
-- Jonathan Carter Mon, 22 Nov 2010 15:59:18 -0500
edubuntu-live (10.11.3) natty; urgency=low
* Replace qcad-docs with qcad-doc in conflicts
-- Jonathan Carter Wed, 17 Nov 2010 12:56:21 -0500
edubuntu-live (10.11.2) natty; urgency=low
* Add qcad-docs to conflicts to avoid qt3-assistant from being installed
-- Jonathan Carter Tue, 16 Nov 2010 11:01:25 -0500
edubuntu-live (10.11.1) natty; urgency=low
* Add hal, virtuoso-minimal, kubuntu-debug-installer and icoutils
as conflicts as per LP: #650615
* Update standards version to 3.9.1
-- Jonathan Carter Thu, 04 Nov 2010 23:02:05 -0400
edubuntu-live (10.11) natty; urgency=low
* Remove ubiquity-slideshow
-- Jonathan Carter Thu, 04 Nov 2010 13:57:50 -0400
edubuntu-live (10.10.10) maverick; urgency=low
* Fix typo in Sabayon slide
* Revert slideshow timeout to 90s
-- Jonathan Carter Wed, 15 Sep 2010 13:14:43 -0400
edubuntu-live (10.10.9) maverick; urgency=low
* Minor fixes, expansion of administration slide
-- Jonathan Carter Mon, 13 Sep 2010 14:13:13 -0400
edubuntu-live (10.10.8) maverick; urgency=low
* Fix slideshow background colour to #424242 in css
* Fix slideshow hight to 476px in slideshow.conf
* Update slideshow background image to latest version
-- Jonathan Carter Thu, 09 Sep 2010 10:37:22 -0400
edubuntu-live (10.10.7) maverick; urgency=low
* Fix error in ubiquity plugin, we want to touch
/target/etc/edubuntu_ltsp_install not /etc/edubuntu_ltsp_install
-- Stéphane Graber Tue, 07 Sep 2010 23:59:24 -0400
edubuntu-live (10.10.6) maverick; urgency=low
* When installing LTSP, touch /etc/edubuntu_ltsp_install
so ltsp-server's postinst can detect it
-- Stéphane Graber Tue, 07 Sep 2010 19:15:17 -0400
edubuntu-live (10.10.5) maverick; urgency=low
* Add the ubiquity plugin and remove the old scripts.
* Change slideshow height to 466
-- Stéphane Graber Tue, 07 Sep 2010 19:06:48 -0400
edubuntu-live (10.10.4) maverick; urgency=low
* Update ubiquity-slideshow
-- Jonathan Carter Mon, 06 Sep 2010 20:32:23 -0400
edubuntu-live (10.10.3) maverick; urgency=low
* Update ubiquity-slideshow delay
-- Jonathan Carter Sun, 05 Sep 2010 20:18:06 -0400
edubuntu-live (10.10.2) maverick; urgency=low
* Update ubiquity-slideshow
-- Jonathan Carter Sun, 05 Sep 2010 20:12:55 -0400
edubuntu-live (10.10.1) maverick; urgency=low
* Initial release (Closes: LP: #605056)
-- Jonathan Carter Tue, 06 Jul 2010 11:19:32 -0400
ubuntustudio-live/debian/compat 0000664 0000000 0000000 00000000002 12314363211 014071 0 ustar 7
ubuntustudio-live/debian/rules 0000775 0000000 0000000 00000000671 12314363211 013757 0 ustar #!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
ubuntustudio-live/debian/control 0000664 0000000 0000000 00000001447 12314363211 014304 0 ustar Source: ubuntustudio-live
Section: x11
Priority: optional
Maintainer: Ubuntu Studio Dev team
Build-Depends: debhelper (>= 7.0.50~)
Standards-Version: 3.9.4.0
Homepage: http://www.ubuntustudio.org
Package: ubuntustudio-live
Architecture: all
Depends: gir1.2-gtk-3.0,
ubiquity-slideshow-ubuntustudio,
python3,
python3-apt,
${misc:Depends}
Conflicts: mythbuntu-live-autostart,
ubiquity-slideshow-kubuntu,
ubiquity-slideshow-ubuntu,
ubiquity-slideshow-xubuntu,
ubiquity-slideshow-edubuntu,
ubiquity-slideshow-gnome,
ubiquity-slideshow-lubuntu
Description: Ubuntu Studio live media support
Provides helper scripts and plugins required
for any Ubuntu Studio live media.