Compare commits

...

4 Commits

Author SHA1 Message Date
Albert Hopkins 4f4cfb9ace kde: Updates
A flag needed to be added to package.use
2015-03-09 11:16:49 +00:00
Albert Hopkins e53c2116da virtual-appliance 0.9.1
Probably the last to not require systemd.
2015-03-01 20:15:35 +00:00
Albert Hopkins c82d5c781d teamplayer: set USE_TZ to False
Although the documentation says it defaults to False, it seems to be getting
set to True in my deployments.  This explicitely sets it to false and also
sets the TIMEZONE to UTC.
2015-03-01 11:45:06 +00:00
Albert Hopkins 82162dfffa Fix package.* files installation to work with new stage3's
The new (2015-02) stage3 tarballs use package.* directories instead of
files, causing the files to fail to be copied over.  This change instead
copies them to the directories, creating them if they don't already exist.
2015-02-28 22:20:50 +00:00
3 changed files with 8 additions and 5 deletions

View File

@ -173,10 +173,11 @@ endif
$(inroot) eselect profile set 1 $(inroot) eselect profile set 1
cp configs/locale.gen $(CHROOT)/etc/locale.gen cp configs/locale.gen $(CHROOT)/etc/locale.gen
$(inroot) locale-gen $(inroot) locale-gen
mkdir -p $(CHROOT)/etc/portage for f in $(PACKAGE_FILES); do \
ifdef PACKAGE_FILES base=`basename $$f` ; \
cp $(PACKAGE_FILES) $(CHROOT)/etc/portage/ mkdir -p $(CHROOT)/etc/portage/$$base; \
endif cp $$f $(CHROOT)/etc/portage/$$base/virtual-appliance-$$base; \
done
touch compile_options touch compile_options
base_system: mounts compile_options base_system: mounts compile_options

View File

@ -44,6 +44,7 @@ net-print/cups dbus
dev-python/PyQt4 X dbus declarative sql svg webkit dev-python/PyQt4 X dbus declarative sql svg webkit
sys-fs/udev hwdb gudev sys-fs/udev hwdb gudev
virtual/udev hwdb gudev virtual/udev hwdb gudev
app-crypt/qca openssl
app-crypt/pinentry qt4 app-crypt/pinentry qt4
dev-libs/boost threads dev-libs/boost threads
sys-libs/zlib minizip sys-libs/zlib minizip

View File

@ -11,7 +11,8 @@ import os
DEBUG = False DEBUG = False
TEMPLATE_DEBUG = DEBUG TEMPLATE_DEBUG = DEBUG
TIME_ZONE = 'America/New_York' TIME_ZONE = 'UTC'
USE_TZ = False
# Language code for this installation. All choices can be found here: # Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html # http://www.i18nguy.com/unicode/language-identifiers.html