Import patches-unapplied version 2.319 to ubuntu/wily-proposed

Imported using git-ubuntu import.

Changelog parent: d286b4fed10a132f337d78ff064e6455256c3567

New changelog entries:
  * copy set locale hook from core to desktop-next
  
  [ Sergio Schvezov ]
  * removing debian packaging artifacts from the image
This commit is contained in:
Sebastien Bacher 2015-06-26 10:43:07 +02:00 committed by usd-importer
parent d286b4fed1
commit a1743f9558
3 changed files with 40 additions and 0 deletions

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
livecd-rootfs (2.319) wily; urgency=medium
* copy set locale hook from core to desktop-next
[ Sergio Schvezov ]
* removing debian packaging artifacts from the image
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 26 Jun 2015 10:43:07 +0200
livecd-rootfs (2.318) wily; urgency=medium
* merge lp:~sergiusens/livecd-rootfs/no-walinuxagent to remove all the

View File

@ -0,0 +1,24 @@
#!/bin/sh
#
# removing debian packaging artifacts
set -ex
echo "I: Removing the debian legacy"
PREFIX=binary/boot/filesystem.dir
# dpkg-deb and dpkg purposefully left behind
(cd $PREFIX
chroot . dpkg --purge apt
rm -r \
var/lib/dpkg \
var/log/apt
rm \
usr/bin/dpkg-query \
usr/bin/dpkg-split \
usr/bin/dpkg-divert \
usr/bin/dpkg-trigger \
usr/bin/dpkg-statoverride \
usr/bin/dpkg-maintscript-helper
)

View File

@ -0,0 +1,7 @@
#!/bin/sh
set -e
cat >/etc/default/locale<<EOF
LANG="C.UTF-8"
EOF