Bug#1068954: bookworm-pu: package libnvme/1.3-1+deb12u1

2024-04-14 Thread Daniel Baumann

Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu

Hi,

when scanning ("nvme list") some buggy NVMe ssds that don't like blocks 
of less than 4096 bytes send to them, a buffer overflow happens.


Upstream fixed this in libnvme 1.7, I've cherry-picked this for 
bookworm, attached is the full diff for review. Please let me know if I 
can upload it to bookworm-pu.


Regards,
Danieldiff --git a/debian/changelog b/debian/changelog
index 2666b0a..d7cef38 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libnvme (1.3-1+deb12u1) bookworm; urgency=medium
+
+  * Uploading to bookworm.
+  * Cherry-picking upstream commits to fix buffer overflow during scanning
+devices that do not support sub-4k reads (Closes: #1054631).
+
+ -- Daniel Baumann   Sun, 14 Apr 2024 08:57:21 +0200
+
 libnvme (1.3-1) sid; urgency=medium
 
   * Uploading to sid.
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..f31922e
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+upstream/0001-alloc-helper.patch
+upstream/0002-aligned-payloads.patch
diff --git a/debian/patches/upstream/0001-alloc-helper.patch b/debian/patches/upstream/0001-alloc-helper.patch
new file mode 100644
index 000..deafcae
--- /dev/null
+++ b/debian/patches/upstream/0001-alloc-helper.patch
@@ -0,0 +1,52 @@
+commit a2b8e52e46cfd888ac5a48d8ce632bd70a5caa93
+Author: Tomas Bzatek 
+Date:   Tue Oct 10 18:16:24 2023 +0200
+
+util: Introduce alloc helper with alignment support
+
+Similar to nvme-cli an alloc helper is needed for a couple
+of ioctls sent out during tree scan.
+
+Signed-off-by: Tomas Bzatek 
+
+diff --git a/src/nvme/private.h b/src/nvme/private.h
+index 6fb9784a..ee9d738b 100644
+--- a/src/nvme/private.h
 b/src/nvme/private.h
+@@ -182,6 +182,8 @@ nvme_ctrl_t __nvme_lookup_ctrl(nvme_subsystem_t s, const char *transport,
+ 			   const char *host_iface, const char *trsvcid,
+ 			   const char *subsysnqn, nvme_ctrl_t p);
+ 
++void *__nvme_alloc(size_t len);
++
+ #if (LOG_FUNCNAME == 1)
+ #define __nvme_log_func __func__
+ #else
+diff --git a/src/nvme/util.c b/src/nvme/util.c
+index 8fe094d5..20679685 100644
+--- a/src/nvme/util.c
 b/src/nvme/util.c
+@@ -7,6 +7,7 @@
+  * 	Chaitanya Kulkarni 
+  */
+ 
++#include 
+ #include 
+ #include 
+ #include 
+@@ -1058,3 +1059,15 @@ bool nvme_iface_primary_addr_matches(const struct ifaddrs *iface_list, const cha
+ }
+ 
+ #endif /* HAVE_NETDB */
++
++void *__nvme_alloc(size_t len)
++{
++	size_t _len = round_up(len, 0x1000);
++	void *p;
++
++	if (posix_memalign((void *), getpagesize(), _len))
++		return NULL;
++
++	memset(p, 0, _len);
++	return p;
++}
diff --git a/debian/patches/upstream/0002-aligned-payloads.patch b/debian/patches/upstream/0002-aligned-payloads.patch
new file mode 100644
index 000..8c514d0
--- /dev/null
+++ b/debian/patches/upstream/0002-aligned-payloads.patch
@@ -0,0 +1,60 @@
+commit 68c6ffb11d40a427fc1fd70ac2ac97fd01952913
+Author: Tomas Bzatek 
+Date:   Tue Oct 10 18:18:38 2023 +0200
+
+tree: Allocate aligned payloads for ns scan
+
+libnvme is actually doing some namespace identification
+during tree scan, leading to stack smash on some systems.
+
+Signed-off-by: Tomas Bzatek 
+
+diff --git a/src/nvme/tree.c b/src/nvme/tree.c
+index 00cf96f7..5636aa18 100644
+--- a/src/nvme/tree.c
 b/src/nvme/tree.c
+@@ -2404,26 +2404,33 @@ static void nvme_ns_parse_descriptors(struct nvme_ns *n,
+ 
+ static int nvme_ns_init(struct nvme_ns *n)
+ {
+-	struct nvme_id_ns ns = { };
+-	uint8_t buffer[NVME_IDENTIFY_DATA_SIZE] = { };
+-	struct nvme_ns_id_desc *descs = (void *)buffer;
++	struct nvme_id_ns *ns;
++	struct nvme_ns_id_desc *descs;
+ 	uint8_t flbas;
+ 	int ret;
+ 
+-	ret = nvme_ns_identify(n, );
+-	if (ret)
++	ns = __nvme_alloc(sizeof(*ns));
++	if (!ns)
++		return 0;
++	ret = nvme_ns_identify(n, ns);
++	if (ret) {
++		free(ns);
+ 		return ret;
++	}
+ 
+-	nvme_id_ns_flbas_to_lbaf_inuse(ns.flbas, );
+-	n->lba_shift = ns.lbaf[flbas].ds;
++	nvme_id_ns_flbas_to_lbaf_inuse(ns->flbas, );
++	n->lba_shift = ns->lbaf[flbas].ds;
+ 	n->lba_size = 1 << n->lba_shift;
+-	n->lba_count = le64_to_cpu(ns.nsze);
+-	n->lba_util = le64_to_cpu(ns.nuse);
+-	n->meta_size = le16_to_cpu(ns.lbaf[flbas].ms);
++	n->lba_count = le64_to_cpu(ns->nsze);
++	n->lba_util = le64_to_cpu(ns->nuse);
++	n->meta_size = le16_to_cpu(ns->lbaf[flbas].ms);
+ 
+-	if (!nvme_ns_identify_descs(n, descs))
++	descs = __nvme_alloc(NVME_IDENTIFY_DATA_SIZE);
++	if (descs && !nvme_ns_identify_descs(n, descs))
+ 		nvme_ns_parse_descriptors(n, descs);
+ 
++	free(ns);
++	free(descs);
+ 	return 0;
+ }
+ 


Bug#934650: buster-pu: package open-infrastructure-compute-tools/20190301-lts2-1~deb10u1

2019-08-23 Thread Daniel Baumann
On 8/13/19 7:13 PM, Adam D. Barratt wrote:
> Please go ahead.

done.

Regards,
Daniel



Bug#932193: buster-pu: package netdata/1.12.0-1+deb10u1

2019-08-22 Thread Daniel Baumann
On 8/20/19 10:22 PM, Adam D. Barratt wrote:
> Please go ahead.

done.

Regards,
Daniel



Bug#934650: buster-pu: package open-infrastructure-compute-tools/20190301-lts2-1~deb10u1

2019-08-12 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

Hi,

unfortunatlly I did a rebase error when preparing the upload for buster,
so one necessary 'case' statement got removed that shouldn't.

The effect of the missing 'case' statement is that when containers are
started, they will be automatically shutdown after the systemd unit
timeout is reached when calling 'systemd-nspawn --keep-unit [...]' the
second time (which should be only called once, the second time the
script is executed it should be noop for systemd-nspawn).

Since I'm upstream for this, I've released a new version and attached
the full diff (upstream+debian).

Thanks,
Daniel
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 330e383..251daf1 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,10 @@
+2019-08-13	Daniel Baumann 
+
+	* Releasing version 20190301-lts2.
+
+	[ Daniel Baumann ]
+	* Restoring case statement that got lost when excluding limit container command for buster to fix container start, thanks to Nik Lutz .
+
 2019-03-02	Daniel Baumann 
 
 	* Releasing version 20190301-lts1.
diff --git a/VERSION.txt b/VERSION.txt
index 7182ca9..0583a76 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1 +1 @@
-20190301-lts1
+20190301-lts2
diff --git a/debian/changelog b/debian/changelog
index 2845317..3f3d26c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+open-infrastructure-compute-tools (20190301-lts2-1~deb10u1) buster; urgency=medium
+
+  * Uploading to buster.
+  * Merging upstream version 20190301-lts2:
+- Restoring case statement that got lost when excluding limit container
+  command for buster to fix container start, thanks to Nik Lutz
+  .
+
+ -- Daniel Baumann   Tue, 13 Aug 2019 00:47:36 +0200
+
 open-infrastructure-compute-tools (20190301-lts1-2) unstable; urgency=medium
 
   * Uploading to sid.
diff --git a/lib/container/start b/lib/container/start
index 82f9314..e1a5fb6 100755
--- a/lib/container/start
+++ b/lib/container/start
@@ -408,8 +408,15 @@ case "${SYSTEMCTL}" in
 		;;
 esac
 
-# Run
-${SETARCH} systemd-nspawn --keep-unit ${BIND} ${BIND_RO} ${BOOT} ${CAPABILITY} ${DIRECTORY} ${DROP_CAPABILITY} ${MACHINE} ${NETWORK_VETH_EXTRA} ${LINK_JOURNAL} ${REGISTER}
+case "${START}" in
+	true)
+		;;
+
+	*)
+		# Run
+		${SETARCH} systemd-nspawn --keep-unit ${BIND} ${BIND_RO} ${BOOT} ${CAPABILITY} ${DIRECTORY} ${DROP_CAPABILITY} ${MACHINE} ${NETWORK_VETH_EXTRA} ${LINK_JOURNAL} ${REGISTER}
+		;;
+esac
 
 # Post hooks
 for FILE in "${HOOKS}/post-${COMMAND}".* "${HOOKS}/${NAME}.post-${COMMAND}"


Bug#932193: buster-pu: package netdata/1.12.0-1+deb10u1

2019-07-16 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

Hi,

attached is the diff for netdata with cherry-picked patches from later
Debian uploads to disable spying on users and a couple of other
important things.

Thanks,
Daniel
diff --git a/debian/changelog b/debian/changelog
index b2d9488..360d5e6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,21 @@
+netdata (1.12.0-1+deb10u1) buster; urgency=medium
+
+  [ Lennart Weller ]
+  * Add patch to remove Google Analytics from generated docs
+
+  [ Daniel Baumann ]
+  * Removing currently usless depends on bash as it's still an essential
+package.
+  * Adding missing GPL-3-only license stanza in copyright file.
+  * Opting out by default from sending anonymous statistics (phone home).
+  * Downgrading nodejs depends in netdata-plugins-nodejs to recommends as
+not all architectures have nodejs at the moment.
+
+  [ Federico Ceratto ]
+  * Add patch to remove Sign In button
+
+ -- Daniel Baumann   Tue, 16 Jul 2019 15:41:56 +0200
+
 netdata (1.12.0-1) unstable; urgency=medium
 
   * Merging upstream version 1.12.0.
diff --git a/debian/control b/debian/control
index 15ab266..c93e7ff 100644
--- a/debian/control
+++ b/debian/control
@@ -97,7 +97,6 @@ Section: net
 Architecture: all
 Multi-Arch: foreign
 Depends:
- bash,
  netdata-core (>= ${source:Version}) | netdata-core-no-sse (>= ${source:Version}),
  ${misc:Depends},
 Suggests:
@@ -120,8 +119,9 @@ Architecture: all
 Multi-Arch: foreign
 Depends:
  netdata-core (>= ${source:Version}) | netdata-core-no-sse (>= ${source:Version}),
- nodejs,
  ${misc:Depends},
+Recommends:
+ nodejs,
 Provides:
  netdata-plugins,
 Enhances:
diff --git a/debian/copyright b/debian/copyright
index 8c73f0a..2abec45 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -183,7 +183,7 @@ Files:
  collectors/python.d.plugin/python_modules/third_party/boinc_client.py
 Copyright: 2013 Rodrigo Silva (MestreLion) 
2017 Austin S. Hemmelgarn
-License: GPL-3.0
+License: GPL-3
 
 Files:
  collectors/python.d.plugin/python_modules/third_party/mcrcon.py
@@ -246,6 +246,21 @@ License: LGPL-2.1
  General Public License, version 2, can be found in
  /usr/share/common-licenses/LGPL-2.
 
+License: GPL-3
+ 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, version 3 of the License.
+ .
+ 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, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public
+ License version 3 can be found in /usr/share/common-licenses/GPL-3.
+
 License: GPL-3+
  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
diff --git a/debian/patches/debian/0009-remove-googleanalytics.patch b/debian/patches/debian/0009-remove-googleanalytics.patch
new file mode 100644
index 000..aa6f0e9
--- /dev/null
+++ b/debian/patches/debian/0009-remove-googleanalytics.patch
@@ -0,0 +1,11 @@
+Author: Lennart Weller 
+Subject: Remove googleanalytics
+
+diff -Naurp netdata.orig/docs/generator/custom/themes/material/partials/footer.html netdata/docs/generator/custom/themes/material/partials/footer.html
+--- netdata.orig/docs/generator/custom/themes/material/partials/footer.html
 netdata/docs/generator/custom/themes/material/partials/footer.html
+@@ -51,4 +51,3 @@
+ 
+   
+ 
+-!function(e,a,t,n,o,c,i){e.GoogleAnalyticsObject=o,e.ga=e.ga||function(){(e.ga.q=e.ga.q||[]).push(arguments)},e.ga.l=1*new Date,c=a.createElement(t),i=a.getElementsByTagName(t)[0],c.async=1,c.src="<a  rel="nofollow" href="https://www.google-analytics.com/analytics.js",i.parentNode.insertBefore">https://www.google-analytics.com/analytics.js",i.parentNode.insertBefore</a>(c,i)}(window,document,"script",0,"ga"),ga("create","UA-64295674-3",""),ga("set","anonymizeIp",!0),ga("send","pageview","/doc"+window.location.pathname);var links=document.getElementsByTagName("a");if(Array.prototype.map.call(links,function(a){a.host!=document.location.host&&a.addEventListener("click",function(){var e=a.getAttribute("data-md-action")||"follow";ga("send","event","outbound",e,a.href)})}),document.forms.search){var query=document.forms.search.query;query.addEventListener("blur",function(){if(this.va

Bug#931084: unblock: netdata/1.12.2-2

2019-06-25 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package netdata.

First, I'm sorry.. I'm terribly late with this and there's no excuse for
that.

Second, I seem to have miscalculated the
'last-possible-point-in-time-to-upload-to-unstable-and-migrate-to-testing-before-full-freeze'
by one hour on 2019-02-27. so netdata 1.12.2-2 which was supposed to be
the one for buster just didn't make it in time into testing before the
freeze on 2019-03-12. If I didn't make that mistake, netdata 1.12-2-2
would have migrated on its own.

Now, netdata 1.12.0-1..1.12.2-2 fixes two important things:

a) the web frontend as well as the documentation has been fixed to not
   spy on its users (via googleanalytics).

b) opt-out to send telemetry to upstream

Preferably, netdata 1.12.2-2 could be allowed to migrate to testing. If
that's not possible, both should be fixed through stable updates for
buster r1 which I'd like to avoid the extra-work for everyone.

Would you mind allow netdata to migrate at this point?

(debdiff of debian/ is attached)

Regards,
Daniel
diff -Naurp debian_1.12.0-1/changelog debian_1.12.2-2/changelog
--- debian_1.12.0-1/changelog	2019-06-25 20:27:42.597478366 +0200
+++ debian_1.12.2-2/changelog	2019-06-25 20:28:01.646098056 +0200
@@ -1,3 +1,47 @@
+netdata (1.12.2-2) unstable; urgency=medium
+
+  [ Federico Ceratto ]
+  * Add patch to remove Sign In button
+
+  [ Daniel Baumann ]
+  * When disabling the 'Sign In' button on the right side, only turn it
+off in the javascript and keep the html unmodified.
+  * Sorting patch series.
+
+ -- Daniel Baumann   Sat, 02 Mar 2019 16:46:44 +0100
+
+netdata (1.12.2-1) unstable; urgency=medium
+
+  * Merging upstream version 1.12.2.
+
+ -- Daniel Baumann   Thu, 28 Feb 2019 22:18:45 +0100
+
+netdata (1.12.1-2) unstable; urgency=medium
+
+  * Downgrading nodejs depends in netdata-plugins-nodejs to recommends as
+not all architectures have nodejs at the moment.
+
+ -- Daniel Baumann   Wed, 27 Feb 2019 22:09:05 +0100
+
+netdata (1.12.1-1) unstable; urgency=medium
+
+  [ Lennart Weller ]
+  * Add patch to remove Google Analytics from generated docs
+
+  [ Daniel Baumann ]
+  * Rediffing remove-googleanalytics.patch.
+  * Opting out by default from sending anonymous statistics (Closes: #923114).
+  * Merging upstream version 1.12.1.
+  * Refreshing remove-googleanalytics.patch for new upstream version.
+  * Updating lintian overrides.
+  * Removing currently usless depends on bash as it's still an essential
+package.
+  * Adding missing GPL-3-only license stanza in copyright file.
+  * Debranding license references in copyright.
+  * Updating TODO file.
+
+ -- Daniel Baumann   Sun, 24 Feb 2019 21:32:56 +0100
+
 netdata (1.12.0-1) unstable; urgency=medium
 
   * Merging upstream version 1.12.0.
diff -Naurp debian_1.12.0-1/control debian_1.12.2-2/control
--- debian_1.12.0-1/control	2019-06-25 20:27:42.597478366 +0200
+++ debian_1.12.2-2/control	2019-06-25 20:28:01.646098056 +0200
@@ -97,7 +97,6 @@ Section: net
 Architecture: all
 Multi-Arch: foreign
 Depends:
- bash,
  netdata-core (>= ${source:Version}) | netdata-core-no-sse (>= ${source:Version}),
  ${misc:Depends},
 Suggests:
@@ -120,8 +119,9 @@ Architecture: all
 Multi-Arch: foreign
 Depends:
  netdata-core (>= ${source:Version}) | netdata-core-no-sse (>= ${source:Version}),
- nodejs,
  ${misc:Depends},
+Recommends:
+ nodejs,
 Provides:
  netdata-plugins,
 Enhances:
diff -Naurp debian_1.12.0-1/copyright debian_1.12.2-2/copyright
--- debian_1.12.0-1/copyright	2019-06-25 20:27:42.597478366 +0200
+++ debian_1.12.2-2/copyright	2019-06-25 20:28:01.650098186 +0200
@@ -183,7 +183,7 @@ Files:
  collectors/python.d.plugin/python_modules/third_party/boinc_client.py
 Copyright: 2013 Rodrigo Silva (MestreLion) 
2017 Austin S. Hemmelgarn
-License: GPL-3.0
+License: GPL-3
 
 Files:
  collectors/python.d.plugin/python_modules/third_party/mcrcon.py
@@ -224,8 +224,8 @@ License: LGPL-3+
  You should have received a copy of the GNU Lesser General Public
  License along with this library;  If not, see <http://www.gnu.org/licenses/>.
  .
- On Debian systems, the complete text of the GNU Lesser General Public
- License version 3 can be found in /usr/share/common-licenses/LGPL-3.
+ The complete text of the GNU Lesser General Public License version 3
+ can be found in /usr/share/common-licenses/LGPL-3.
 
 License: LGPL-2.1
  This program is free software; you can redistribute it and/or modify
@@ -242,9 +242,23 @@ License: LGPL-2.1
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  .
- On Debian GNU/Linux systems, the complete text of the GNU Library
- General Public License, version 2, can be found in
- /usr/share/common-licenses/LGPL-2.
+ The complete text of the GNU Library General Public License, version 2,
+ can be found in /usr/sha

Bug#908474: stretch-pu: package zutils/1.5-5

2018-09-10 Thread Daniel Baumann
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: pu
Tags: stretch
Severity: normal

Hi,

a buffer underrun has been fixed in zutils 1.7-3 (sid), here's an
updated package for stretch:


https://people.debian.org/~daniel/packages/zutils/1.5-5+deb9u1/zutils_1.5-5+deb9u1.dsc

The debdiff is attached.

Regards,
Daniel
diff -Nru zutils-1.5/debian/changelog zutils-1.5/debian/changelog
--- zutils-1.5/debian/changelog	2017-01-26 16:41:26.0 +
+++ zutils-1.5/debian/changelog	2018-09-10 08:55:58.0 +
@@ -1,3 +1,11 @@
+zutils (1.5-5+deb9u1) stretch; urgency=medium
+
+  * Uploading to stretch.
+  * Adding patch from upstream to fix a buffer overrun in zcat
+[CVE-2018-1000637] (Closes: #902936).
+
+ -- Daniel Baumann   Mon, 10 Sep 2018 10:55:58 +0200
+
 zutils (1.5-5) unstable; urgency=low
 
   * Uploading to sid.
diff -Nru zutils-1.5/debian/patches/series zutils-1.5/debian/patches/series
--- zutils-1.5/debian/patches/series	2017-01-26 16:41:26.0 +
+++ zutils-1.5/debian/patches/series	2018-09-10 08:55:15.0 +
@@ -1,2 +1,3 @@
 debian/0001-build.patch
 debian/0002-zupdate.patch
+upstream/0001-zcat-buffer-overrun.patch
diff -Nru zutils-1.5/debian/patches/upstream/0001-zcat-buffer-overrun.patch zutils-1.5/debian/patches/upstream/0001-zcat-buffer-overrun.patch
--- zutils-1.5/debian/patches/upstream/0001-zcat-buffer-overrun.patch	1970-01-01 00:00:00.0 +
+++ zutils-1.5/debian/patches/upstream/0001-zcat-buffer-overrun.patch	2018-09-10 08:55:58.0 +
@@ -0,0 +1,18 @@
+Author: Antonio Diaz-Diaz 
+Description: zcat.cc: Fixed a buffer overrun on outbuf when '-v' is used [CVE-2018-1000637] (Closes: #902936).
+
+diff -Naurp zutils.orig/zcat.cc zutils/zcat.cc
+--- zutils.orig/zcat.cc
 zutils/zcat.cc
+@@ -229,8 +229,9 @@ int cat( int infd, const int format_inde
+   enum { buffer_size = 4096 };
+   // buffer with space for sentinel newline at the end
+   uint8_t * const inbuf = new uint8_t[buffer_size+1];
+-  // buffer with space for character quoting and 255-digit line number
+-  uint8_t * const outbuf = new uint8_t[(4*buffer_size)+256];
++  // buffer with space for character quoting, 255-digit line number and
++  // worst case flushing respect to inbuf.
++  uint8_t * const outbuf = new uint8_t[(5*buffer_size)+256];
+   int retval = 0;
+   Children children;
+   if( !set_data_feeder( , children, format_index ) ) retval = 1;


Bug#775770: unblock live-config/4.0.4-1

2015-01-24 Thread Daniel Baumann
On 01/22/15 14:30, Jonathan Wiltshire wrote:
   * Adding dbus to recommends for systemd backend.
 
 Why?

autologin requires dbus.

   * Temporarily running components without set -e.
 
 Why temporarily?

if users ship their own subscripts that exit non-zero, live-config stops
at that point. we need to adress this in a better way at some later point.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54c3d5be.1000...@progress-technologies.net



Bug#775770: unblock live-config/4.0.4-1

2015-01-19 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock live-config/4.0.4-1.

Changes since 4.0.2-1 (jessie) are:

  * Adding dbus to recommends for systemd backend.
  * Temporarily running components without set -e.
  * [man:ja] Fix a typo in po header.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54bd53bb.9050...@progress-technologies.net



Bug#775772: unblock live-boot/4.0.2-1

2015-01-19 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock live-boot/4.0.2-1.

Changes since 4.0.1-1 (jessie) are:

  * Dropping usage of /etc/fstab.d since util-linux removed it
  * Fix spelling of unknown
  * Suppress annoying but harmless warning about unknown module

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
diff -Naurp live-boot.orig/VERSION live-boot/VERSION
--- live-boot.orig/VERSION	2014-10-25 14:26:50.0 +0200
+++ live-boot/VERSION	2014-12-10 10:36:26.0 +0100
@@ -1 +1 @@
-4.0.1-1
+4.0.2-1
diff -Naurp live-boot.orig/components/3020-swap live-boot/components/3020-swap
--- live-boot.orig/components/3020-swap	2014-10-25 14:20:59.0 +0200
+++ live-boot/components/3020-swap	2014-12-10 10:36:26.0 +0100
@@ -48,15 +48,15 @@ Swap ()
 	done
 
 	# Remove all auto swap entries
-	if grep -qs swap swap /root/etc/fstab.d/swap
+	if grep -qs swap swap /root/etc/fstab
 	then
-		grep -v swap swap /root/etc/fstab.d/swap  /root/etc/fstab.d/swap.tmp
-		mv /root/etc/fstab.d/swap.tmp /root/etc/fstab.d/swap
+		grep -v swap swap /root/etc/fstab  /root/etc/fstab.tmp
+		mv /root/etc/fstab.tmp /root/etc/fstab
 	fi
 
 	# Add new swap entries
 	for _DEVICE in ${_SWAP_DEVICES}
 	do
-		echo ${_DEVICE} swap swap defaults 0 0  /root/etc/fstab.d/swap
+		echo ${_DEVICE} swap swap defaults 0 0  /root/etc/fstab
 	done
 }
diff -Naurp live-boot.orig/components/9990-fstab.sh live-boot/components/9990-fstab.sh
--- live-boot.orig/components/9990-fstab.sh	2014-10-25 14:20:59.0 +0200
+++ live-boot/components/9990-fstab.sh	2014-12-10 10:36:26.0 +0100
@@ -15,14 +15,14 @@ Fstab ()
 
 	log_begin_msg Configuring fstab
 
-	if ! grep -qs  ^${UNIONTYPE} /root/etc/fstab.d/live
+	if ! grep -qs  ^${UNIONTYPE} /root/etc/fstab
 	then
-		echo ${UNIONTYPE} / ${UNIONTYPE} rw 0 0  /root/etc/fstab.d/live
+		echo ${UNIONTYPE} / ${UNIONTYPE} rw 0 0  /root/etc/fstab
 	fi
 
-	if ! grep -qs ^tmpfs /tmp /root/etc/fstab.d/live
+	if ! grep -qs ^tmpfs /tmp /root/etc/fstab
 	then
-		echo tmpfs /tmp tmpfs nosuid,nodev 0 0  /root/etc/fstab.d/live
+		echo tmpfs /tmp tmpfs nosuid,nodev 0 0  /root/etc/fstab
 	fi
 
 	log_end_msg
diff -Naurp live-boot.orig/components/9990-misc-helpers.sh live-boot/components/9990-misc-helpers.sh
--- live-boot.orig/components/9990-misc-helpers.sh	2014-10-25 14:26:50.0 +0200
+++ live-boot/components/9990-misc-helpers.sh	2014-12-10 10:36:26.0 +0100
@@ -426,7 +426,7 @@ is_supported_fs ()
 		return 0
 	else
 		# Then try to add support for it the gentle way using the initramfs capabilities
-		modprobe ${fstype}
+		modprobe -q -b ${fstype}
 		if grep -q ${fstype} /proc/filesystems
 		then
 			return 0
@@ -1415,7 +1415,7 @@ get_custom_mounts ()
 	union|bind)
 		;;
 	*)
-		log_warning_msg Skipping custom mount with unkown option: ${opt}
+		log_warning_msg Skipping custom mount with unknown option: ${opt}
 		continue 2
 		;;
 esac
diff -Naurp live-boot.orig/debian/changelog live-boot/debian/changelog
--- live-boot.orig/debian/changelog	2014-10-25 14:27:37.0 +0200
+++ live-boot/debian/changelog	2014-12-10 10:36:26.0 +0100
@@ -1,3 +1,15 @@
+live-boot (4.0.2-1) unstable; urgency=low
+
+  [ Daniel Baumann ]
+  * Dropping usage of /etc/fstab.d since util-linux removed it, thanks to
+Evgeni Golov evgeni+...@golov.de for reporting it.
+
+  [ Jan Blunck ]
+  * Fix spelling of unknown
+  * Suppress annoying but harmless warning about unknown module
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Wed, 10 Dec 2014 10:36:04 +0100
+
 live-boot (4.0.1-1) unstable; urgency=low
 
   [ victory ]
diff -Naurp live-boot.orig/manpages/en/live-boot.7 live-boot/manpages/en/live-boot.7
--- live-boot.orig/manpages/en/live-boot.7	2014-10-25 14:26:50.0 +0200
+++ live-boot/manpages/en/live-boot.7	2014-12-10 10:36:26.0 +0100
@@ -1,4 +1,4 @@
-.TH LIVE\-BOOT 7 2014\-10\-25 4.0.1-1 Live Systems Project
+.TH LIVE\-BOOT 7 2014\-12\-10 4.0.2-1 Live Systems Project
 
 .SH NAME
 \fBlive\-boot\fR \- System Boot Components
diff -Naurp live-boot.orig/manpages/en/persistence.conf.5 live-boot/manpages/en/persistence.conf.5
--- live-boot.orig/manpages/en/persistence.conf.5	2014-10-25 14:26:50.0 +0200
+++ live-boot/manpages/en/persistence.conf.5	2014-12-10 10:36:26.0 +0100
@@ -1,4 +1,4 @@
-.TH LIVE\-BOOT conf 2014\-10\-25 4.0.1-1 Live Systems Project
+.TH LIVE\-BOOT conf 2014\-12\-10 4.0.2-1 Live Systems Project
 
 .SH NAME
 \fBpersistence.conf\fR \- Configuration file for persistence media in
diff -Naurp live-boot.orig/manpages/es/live-boot.es.7 live-boot/manpages/es/live-boot.es.7
--- live-boot.orig/manpages/es/live-boot.es.7	2014-10-25 14:26:50.0 +0200
+++ live-boot/manpages/es/live-boot.es.7	2014-12-10 10:36:26.0 +0100

Bug#775770: unblock live-config/4.0.4-1

2015-01-19 Thread Daniel Baumann
diff attached.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
diff -Naurp live-config.orig/VERSION live-config/VERSION
--- live-config.orig/VERSION	2014-10-25 14:47:14.0 +0200
+++ live-config/VERSION	2015-01-04 21:56:26.0 +0100
@@ -1 +1 @@
-4.0.2-1
+4.0.4-1
diff -Naurp live-config.orig/components/0010-debconf live-config/components/0010-debconf
--- live-config.orig/components/0010-debconf	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0010-debconf	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0020-hostname live-config/components/0020-hostname
--- live-config.orig/components/0020-hostname	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0020-hostname	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0030-live-debconfig_passwd live-config/components/0030-live-debconfig_passwd
--- live-config.orig/components/0030-live-debconfig_passwd	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0030-live-debconfig_passwd	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0030-user-setup live-config/components/0030-user-setup
--- live-config.orig/components/0030-user-setup	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0030-user-setup	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0040-sudo live-config/components/0040-sudo
--- live-config.orig/components/0040-sudo	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0040-sudo	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0050-locales live-config/components/0050-locales
--- live-config.orig/components/0050-locales	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0050-locales	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0060-locales-all live-config/components/0060-locales-all
--- live-config.orig/components/0060-locales-all	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0060-locales-all	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0070-tzdata live-config/components/0070-tzdata
--- live-config.orig/components/0070-tzdata	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0070-tzdata	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0080-gdm3 live-config/components/0080-gdm3
--- live-config.orig/components/0080-gdm3	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0080-gdm3	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0090-kdm live-config/components/0090-kdm
--- live-config.orig/components/0090-kdm	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0090-kdm	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0100-lightdm live-config/components/0100-lightdm
--- live-config.orig/components/0100-lightdm	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0100-lightdm	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0110-lxdm live-config/components/0110-lxdm
--- live-config.orig/components/0110-lxdm	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0110-lxdm	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions; see COPYING for details.
 
 
-set -e
+#set -e
 
 Cmdline ()
 {
diff -Naurp live-config.orig/components/0120-nodm live-config/components/0120-nodm
--- live-config.orig/components/0120-nodm	2014-10-25 14:21:10.0 +0200
+++ live-config/components/0120-nodm	2015-01-04 21:56:26.0 +0100
@@ -8,7 +8,7 @@
 ## under certain conditions

Bug#775769: unblock syslinux/3:6.03+dfsg-5

2015-01-19 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock syslinux/3:6.03+dfsg-5.

Changes since 3:6.03+dfsg-4 (jessie) are:

  * Moving source lintian-overrides to newer location.
  * Correcting comment in Italian debonf translation file.
  * Adding initial Spanish debconf translations from Manuel 'Venturi'
Porras Peralta vent...@openmailbox.org (Closes: #773600).

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
diff -Naurp syslinux.orig/debian/changelog syslinux/debian/changelog
--- syslinux.orig/debian/changelog	2014-12-06 13:16:48.0 +0100
+++ syslinux/debian/changelog	2015-01-07 07:49:34.0 +0100
@@ -1,3 +1,12 @@
+syslinux (3:6.03+dfsg-5) unstable; urgency=low
+
+  * Moving source lintian-overrides to newer location.
+  * Correcting comment in Italian debonf translation file.
+  * Adding initial Spanish debconf translations from Manuel 'Venturi'
+Porras Peralta vent...@openmailbox.org (Closes: #773600).
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Wed, 07 Jan 2015 07:49:26 +0100
+
 syslinux (3:6.03+dfsg-4) unstable; urgency=low
 
   * Adding initial Brazilian Portuguese debconf translations from Jos de
diff -Naurp syslinux.orig/debian/po/es.po syslinux/debian/po/es.po
--- syslinux.orig/debian/po/es.po	1970-01-01 01:00:00.0 +0100
+++ syslinux/debian/po/es.po	2015-01-07 07:47:56.0 +0100
@@ -0,0 +1,48 @@
+# Spanish debconf translations for the syslinux package
+# Copyright (C) Manuel Venturi Porras Peralta vent...@openmailbox.org
+# This file is distributed under the same license as the syslinux package.
+#
+msgid 
+msgstr 
+Project-Id-Version: syslinux\n
+Report-Msgid-Bugs-To: sysli...@packages.debian.org\n
+POT-Creation-Date: 2014-08-24 00:12+0200\n
+PO-Revision-Date: 2014-11-23 22:41+0100\n
+Last-Translator: Manuel \Venturi\ Porras Peralta venturi@openmailbox.
+org\n
+Language-Team: Español; Castellano debian-l10n-span...@lists.debian.org\n
+Language: es\n
+MIME-Version: 1.0\n
+Content-Type: text/plain; charset=UTF-8\n
+Content-Transfer-Encoding: 8bit\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+
+#. Type: title
+#. Description
+#: ../extlinux.templates:1001
+msgid EXTLINUX
+msgstr EXTLINUX
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid No bootloader integration code anymore
+msgstr Ya no hay código de integración del gestor de arranque
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid The extlinux package does not ship bootloader integration anymore.
+msgstr 
+El paquete extlinux ya no incluye la integración del gestor de arranque.
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid 
+If you are upgrading to this version of EXTLINUX your system will not boot 
+any longer if EXTLINUX was the only configured bootloader. Please install 
+GRUB.
+msgstr 
+Si está actualizando a esta versión de EXTLINUX, el sistema ya no iniciará 
+si EXTLINUX era el único gestor de arranque configurado. Instale GRUB.
diff -Naurp syslinux.orig/debian/po/it.po syslinux/debian/po/it.po
--- syslinux.orig/debian/po/it.po	2014-11-11 20:04:42.0 +0100
+++ syslinux/debian/po/it.po	2014-12-07 22:02:31.0 +0100
@@ -1,4 +1,4 @@
-# German debconf translations for the syslinux package
+# Italian debconf translations for the syslinux package
 # Copyright (C) 2014 Beatrice Torracca beatri...@libero.it
 # This file is distributed under the same license as the syslinux package.
 #
diff -Naurp syslinux.orig/debian/source/lintian-overrides syslinux/debian/source/lintian-overrides
--- syslinux.orig/debian/source/lintian-overrides	1970-01-01 01:00:00.0 +0100
+++ syslinux/debian/source/lintian-overrides	2014-12-07 20:51:56.0 +0100
@@ -0,0 +1 @@
+syslinux source: source-is-missing
diff -Naurp syslinux.orig/debian/source.lintian-overrides syslinux/debian/source.lintian-overrides
--- syslinux.orig/debian/source.lintian-overrides	2014-11-11 18:47:26.0 +0100
+++ syslinux/debian/source.lintian-overrides	1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-syslinux source: source-is-missing


Bug#772458: unblock: lxc/1:1.0.6-5

2014-12-07 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock lxc/1:1.0.6-5.

Changes since 1:1.0.6-3 (jessie) are:

  * Mounting /sys read-only in lxc-debian to prevent (one way of)
escaping containers (Closes: #770901).
  * Adding patch from lxc 1.0.7 to make lxc-debian work with systemd
(Closes: #766216).
  * Adding patch from lxc 1.0.7 to make lxc-debian handle switch of
initsystem better.
  * Marking -t option in lxc-create manpage as required (Closes:
#768778).

Regards,
Daniel

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
diff --git a/debian/changelog b/debian/changelog
index 5e5f7ea..4b82738 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,20 @@
+lxc (1:1.0.6-5) unstable; urgency=low
+
+  * Mounting /sys read-only in lxc-debian to prevent (one way of) escaping
+containers (Closes: #770901).
+  * Adding patch from lxc 1.0.7 to make lxc-debian work with systemd
+(Closes: #766216).
+  * Adding patch from lxc 1.0.7 to make lxc-debian handle switch of
+initsystem better.
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Sat, 06 Dec 2014 13:00:36 +0100
+
+lxc (1:1.0.6-4) unstable; urgency=low
+
+  * Marking -t option in lxc-create manpage as required (Closes: #768778).
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Tue, 11 Nov 2014 19:57:58 +0100
+
 lxc (1:1.0.6-3) unstable; urgency=low
 
   * Preserving setuid on lxc-user-nic (Closes: #764815).
diff --git a/debian/patches/0013-lxc-create-manpage.patch b/debian/patches/0013-lxc-create-manpage.patch
new file mode 100644
index 000..42ca95f
--- /dev/null
+++ b/debian/patches/0013-lxc-create-manpage.patch
@@ -0,0 +1,16 @@
+Author: Daniel Baumann m...@daniel-baumann.ch
+Description: Marking -t option in lxc-create manpage as required (Closes: #768778),
+ see https://github.com/lxc/lxc/issues/355.
+
+diff -Naurp lxc.orig/doc/lxc-create.sgml.in lxc/doc/lxc-create.sgml.in
+--- lxc.orig/doc/lxc-create.sgml.in
 lxc/doc/lxc-create.sgml.in
+@@ -51,7 +51,7 @@ Foundation, Inc., 51 Franklin Street, Fi
+   commandlxc-create/command
+   arg choice=req-n replaceablename/replaceable/arg
+   arg choice=opt-f replaceableconfig_file/replaceable/arg
+-  arg choice=opt-t replaceabletemplate/replaceable/arg
++  arg choice=req-t replaceabletemplate/replaceable/arg
+   arg choice=opt-B replaceablebackingstore/replaceable/arg
+   arg choice=opt-- replaceabletemplate-options/replaceable/arg
+ /cmdsynopsis
diff --git a/debian/patches/0014-lxc-debian-sysfs.patch b/debian/patches/0014-lxc-debian-sysfs.patch
new file mode 100644
index 000..eaaac66
--- /dev/null
+++ b/debian/patches/0014-lxc-debian-sysfs.patch
@@ -0,0 +1,15 @@
+Author: Daniel Baumann m...@daniel-baumann.ch
+Description: Mount /sys read-only in lxc-debian to prevent (one way of) escaping containers (Closes: #770901).
+
+diff -Naurp lxc.orig/config/templates/debian.common.conf.in lxc/config/templates/debian.common.conf.in
+--- lxc.orig/config/templates/debian.common.conf.in
 lxc/config/templates/debian.common.conf.in
+@@ -3,7 +3,7 @@ lxc.pivotdir = lxc_putold
+ 
+ # Default mount entries
+ lxc.mount.entry = proc proc proc nodev,noexec,nosuid 0 0
+-lxc.mount.entry = sysfs sys sysfs defaults 0 0
++lxc.mount.entry = sysfs sys sysfs ro 0 0
+ 
+ # Default console settings
+ lxc.tty = 4
diff --git a/debian/patches/0015-lxc-debian-systemd.patch b/debian/patches/0015-lxc-debian-systemd.patch
new file mode 100644
index 000..d2c0f16
--- /dev/null
+++ b/debian/patches/0015-lxc-debian-systemd.patch
@@ -0,0 +1,58 @@
+Author: Antonio Terceiro terce...@debian.org
+Description: lxc-debian: support systemd as PID 1
+ Containers with systemd need a somewhat special setup, which I borrowed
+ and adapted from lxc-fedora. These changes are required so that Debian 8
+ (jessie) containers work properly, and are a no-op for previous Debian
+ versions.
+
+diff -Naurp lxc.orig/templates/lxc-debian.in lxc/templates/lxc-debian.in
+--- lxc.orig/templates/lxc-debian.in
 lxc/templates/lxc-debian.in
+@@ -159,6 +159,38 @@ EOF
+ return 0
+ }
+ 
++configure_debian_systemd()
++{
++path=$1
++rootfs=$2
++init=$(chroot ${rootfs} dpkg-query --search /sbin/init | cut -d : -f 1)
++if [ $init != systemd-sysv ]; then
++   # systemd is not PID 1
++   return
++fi
++
++echo 'lxc.autodev = 1'  $path/config
++echo 'lxc.kmsg = 0'  $path/config
++
++# This function has been copied and adapted from lxc-fedora
++rm -f ${rootfs}/etc/systemd/system/default.target
++touch ${rootfs}/etc/fstab
++chroot ${rootfs} ln -s /dev/null /etc/systemd/system/udev.service
++chroot ${rootfs} ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
++# Make systemd honor SIGPWR
++chroot ${rootfs} ln -s

Bug#772459: unblock: syslinux/3:6.03+dfsg-4

2014-12-07 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock syslinux/3:6.03+dfsg-4.

Changes since 3:6.03+dfsg-2 (jessie) are:

  * Adding initial Brazilian Portuguese debconf translations from Jos de
Figueiredo deb.gnuli...@gmail.com (Closes: #771783).
  * Adding initial Italian debconf translation from Beatrice Torracca
beatri...@libero.it (Closes: #768585).

Regards,
Daniel

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
diff --git a/debian/changelog b/debian/changelog
index 0211ef1..e6ad496 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+syslinux (3:6.03+dfsg-4) unstable; urgency=low
+
+  * Adding initial Brazilian Portuguese debconf translations from Jos de
+Figueiredo deb.gnuli...@gmail.com (Closes: #771783).
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Sat, 06 Dec 2014 13:16:42 +0100
+
+syslinux (3:6.03+dfsg-3) unstable; urgency=low
+
+  * Adding initial Italian debconf translation from Beatrice Torracca
+beatri...@libero.it (Closes: #768585).
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Tue, 11 Nov 2014 20:05:41 +0100
+
 syslinux (3:6.03+dfsg-2) unstable; urgency=low
 
   * Adding initial Danish debconf translations from Joe Hansen
diff --git a/debian/po/it.po b/debian/po/it.po
new file mode 100644
index 000..3f8ffea
--- /dev/null
+++ b/debian/po/it.po
@@ -0,0 +1,47 @@
+# German debconf translations for the syslinux package
+# Copyright (C) 2014 Beatrice Torracca beatri...@libero.it
+# This file is distributed under the same license as the syslinux package.
+#
+msgid 
+msgstr 
+Project-Id-Version: syslinux\n
+Report-Msgid-Bugs-To: sysli...@packages.debian.org\n
+POT-Creation-Date: 2014-08-24 00:12+0200\n
+PO-Revision-Date: 2014-10-26 13:09+0200\n
+Last-Translator: Beatrice Torracca beatri...@libero.it\n
+Language-Team: Italian debian-l10n-ital...@lists.debian.org\n
+Language: it\n
+MIME-Version: 1.0\n
+Content-Type: text/plain; charset=UTF-8\n
+Content-Transfer-Encoding: 8bit\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+
+#. Type: title
+#. Description
+#: ../extlinux.templates:1001
+msgid EXTLINUX
+msgstr EXTLINUX
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid No bootloader integration code anymore
+msgstr Codice di integrazione con bootloader non più presente
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid The extlinux package does not ship bootloader integration anymore.
+msgstr 
+Il pacchetto extlinux non fornisce più l'integrazione con il bootloader.
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid 
+If you are upgrading to this version of EXTLINUX your system will not boot 
+any longer if EXTLINUX was the only configured bootloader. Please install 
+GRUB.
+msgstr 
+Se si sta aggiornando a questa versione di EXTLINUX, il sistema non si 
+avvierà più se EXTLINUX era l'unico bootloader configurato. Installare GRUB.
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
new file mode 100644
index 000..ba58179
--- /dev/null
+++ b/debian/po/pt_BR.po
@@ -0,0 +1,49 @@
+# Brazilian Portuguese debconf translations for the syslinux package
+# Copyright (C) 2014 José de Figueiredo deb.gnuli...@gmail.com
+# This file is distributed under the same license as the syslinux package.
+#
+msgid 
+msgstr 
+Project-Id-Version: syslinux\n
+Report-Msgid-Bugs-To: sysli...@packages.debian.org\n
+POT-Creation-Date: 2014-08-24 00:12+0200\n
+PO-Revision-Date: 2014-11-23 23:53-0200\n
+Last-Translator: José de Figueiredo deb.gnuli...@gmail.com\n
+Language-Team: Brazilian Portuguese debian-l10n-portuguese@lists.debian.
+org\n
+Language: pt_BR\n
+MIME-Version: 1.0\n
+Content-Type: text/plain; charset=UTF-8\n
+Content-Transfer-Encoding: 8bit\n
+
+#. Type: title
+#. Description
+#: ../extlinux.templates:1001
+msgid EXTLINUX
+msgstr EXTLINUX
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid No bootloader integration code anymore
+msgstr Sem código de integração com o carregador de inicialização
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid The extlinux package does not ship bootloader integration anymore.
+msgstr 
+O pacote extlinux não fornece mais integração com o carregador de 
+inicialização (\bootloader\).
+
+#. Type: note
+#. Description
+#: ../extlinux.templates:2001
+msgid 
+If you are upgrading to this version of EXTLINUX your system will not boot 
+any longer if EXTLINUX was the only configured bootloader. Please install 
+GRUB.
+msgstr 
+Se você está atualizando para esta versão do EXTLINUX, seu sistema não vai 
+mais inicializar caso o EXTLINUX seja o único carregador de inicialização. 
+Por favor, instale o GRUB.


Bug#772460: unblock: zutils/1.3-4

2014-12-07 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock zutils/1.3-4

Changes since 1.3-2 (jessie) are:

  * Using libc0.1-dev for Built-Using on kfreebsd (Closes: #769563).
  * Adding Built-Using field (Closes: #769344).

Regards,
Daniel

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/

diff --git a/debian/changelog b/debian/changelog
index 0b2deea..5edea6f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+zutils (1.3-4) unstable; urgency=low
+
+  * Using libc0.1-dev for Built-Using on kfreebsd (Closes: #769563).
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Sat, 15 Nov 2014 07:27:58 +0100
+
+zutils (1.3-3) unstable; urgency=low
+
+  * Adding Built-Using field (Closes: #769344).
+
+ -- Daniel Baumann m...@daniel-baumann.ch  Thu, 13 Nov 2014 07:42:55 +0100
+
 zutils (1.3-2) unstable; urgency=low
 
   * Updating to standards version 3.9.6.
diff --git a/debian/control b/debian/control
index 3c338bb..05ca9e9 100644
--- a/debian/control
+++ b/debian/control
@@ -25,6 +25,8 @@ Enhances:
  gzip,
  lzip,
  xz-utils,
+Built-Using:
+ ${built-using},
 Description: utilities for dealing with compressed files transparently
  Zutils is a collection of utilities for dealing with any combination of
  compressed and non-compressed files transparently. Currently the supported
diff --git a/debian/rules b/debian/rules
index 0f2d166..2ec5912 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,7 @@
 #!/usr/bin/make -f
 
+DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
+
 %:
 	dh ${@} --parallel
 
@@ -15,5 +17,12 @@ override_dh_auto_install:
 override_dh_builddeb:
 	dh_builddeb -- -Zxz
 
+override_dh_gencontrol:
+ifeq (kfreebsd,$(DEB_HOST_ARCH_OS))
+	dh_gencontrol -- -Vbuilt-using=glibc (= $$(dpkg-query --show --showformat='$${source:Version}' libc0.1-dev))
+else
+	dh_gencontrol -- -Vbuilt-using=glibc (= $$(dpkg-query --show --showformat='$${source:Version}' libc6-dev))
+endif
+
 override_dh_strip:
 	dh_strip --dbg-package=zutils-dbg


Re: isolinux: isohybrid dropped, breaking debian-installer builds

2014-09-12 Thread Daniel Baumann
retitle 759189 please use syslinux-utils instead of isolinux
reassign 759189 debian-installer
forcemerge 759189 751731
thanks

given that:

  * the original bug is in debian-installer which needed to be updated
for newer syslinux (and which has happened in git and which progress
of an uploaded can be tracked through it's original bug report at
#751731)

  * there's nothing that can be done in the syslinux package regarding
this bug report anyway (i.e. the bug 'goes' away without doing
anything at all in the syslinux package)

  * syslinux = 3:6.03~pre19+dfsg-1 has migrated to testing regardless

  * there was repeatedly not given any purpose to what #759189 filed
against syslinux would be good for

i'm reassigning and merging this bug with #751731 again. feel free to
close it if you like to keep only #751731 open though.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54129148.6090...@progress-technologies.net



Re: Bug#759189: isolinux: isohybrid dropped, breaking debian-installer builds

2014-08-28 Thread Daniel Baumann
On 08/28/2014 07:45 PM, Cyril Brulebois wrote:
 I already did, multiple times. Your disagreeing with how we've been
 dealing with disruptive changes in Debian for years isn't an excuse to
 break stuff in testing in addition to unstable.

again: debian-installer is the only rdepends there ever was. it had 10
weeks to update, there was more than one ping about it.

 Not sure why keeping the transitional depends until rdeps are updated
 was, or is, an issue.

please explain which problem gets solved by keeping this bug open.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53ff6d03.8000...@progress-technologies.net



Re: Upcoming oldstable point release (6.0.10)

2014-06-12 Thread Daniel Baumann
On 06/11/2014 09:09 PM, Adam D. Barratt wrote:
 The next (and final) point release for squeeze (6.0.10)

just to be sure: does this mean that squeeze will move to
archive.debian.org soon-ish after that?

since there's squeeze-lts, i guess it doesn't.

however, we need to know because in the final point release we switch
the sources.list to archive.d.o. if squeeze is kept around (for the
life-time of squeeze-lts rather than just a couple of weeks), we'll have
to do a live-specific 6.0.10b or so once the move to archive.d.o has
happened.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53994eee.6010...@progress-technologies.net



syslinux 6.x to unstable on 2014-05-17

2014-05-03 Thread Daniel Baumann
now that the last revision of syslinux left NEW i would like to upload
syslinux 6.x to unstable in two weeks (2104-04-17).

however, syslinux 6.x has a few incompatible changes:

  * upstream: with the addition of efi support, syslinux modules are
now stored in a different location, e.g:

  /usr/lib/syslinux/vesamenu.c32 -
  /usr/lib/syslinux/modules/bios/vesamenu.c32

  * upstream: since syslinux 5.x, some bootloaders need additional
loader files (ldlinux.*) to be copied to the medium.

for syslinux/extlinux this is already handled automatically,
for the 'manual' bootloaders (isolinux/pxelinux), this needs to
be done manually.

  * upstream: since syslinux 5.x, modules have dependencies, e.g:

  using vesamenu.c32, you also need libutil.c32 and libcom32.c32

for more information, see:
http://www.syslinux.org/wiki/index.php/Library_modules

  * debian: with the addition of efi support, syslinux bootloaders
are packaged separately, e.g.:

isolinux.bin is in isolinux, pxelinux is in pxelinux, etc.

packages re-using the syslinux bootloaders should depend on
these individual bootloader packages.

the following packages are affected, i've send patches accordingly:

  * debian-cd: #746746
  * debian-installer: #746743
  * ipxe: #746747
  * libguestfs: #746748
  * refit: #746749
  * unetbootin: #746751

  * live-build: will do myself
  * syslinux-themes-debian: is orphaned; will take care of that

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5364ad01.3020...@progress-technologies.net



Bug#709440: RM: lxc [sparc] -- RoM; FTBFS

2013-05-23 Thread Daniel Baumann
Package: release.debian.org

please remove lxc sparc binaries from testing.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/519df193.7080...@progress-technologies.net



Re: Wheezy point release planning

2013-05-12 Thread Daniel Baumann
On 05/12/2013 08:56 PM, Adam D. Barratt wrote:
 Would that work for everyone?

yes.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5190777c.1040...@progress-technologies.net



Re: Bug#701936: btrfs can't fsck /run/rootdev on boot

2013-03-06 Thread Daniel Baumann
On 03/06/2013 09:05 PM, Roger Leigh wrote:
 1) checkroot.sh creates an invalid /run/rootdev

afaic, this is the only real problem.

 2) fsck.btrfs fails to fsck a mounted filesystem
 
 fsck.btrfs won't check a mounted filesystem, even if mounted
 read-only.  We need to be able to do this, since we are running
 fsck from the rootfs.  We do this for all other filesystem types.

the common workaround that e.g. other distributions do is to do this in
initramfs. probably debian should do that for all filesystems in future too.

 3) fsck.btrfs does not support the standard fsck options

easy fixable, but hasn't much to do with the current remaining problem
in sid.

 4) fsck.btrfs error codes
 
 I haven't tested this due to point (2) above

me neither, but that's easy fixable too and hasn't much to do with the
current remaining problem in sid.

 • systems with a btrfs root filesystem are currently *unbootable*
   without using fastboot to skip fsck

*iff* sysvinit is used.

 • even if the checkroot script is fixed, fsck.btrfs remains
   broken and all the unbootable systems remain unbootable

the current package works fine on systems with systemd (not yet fixed
points 3 and 4 from above are not breaking it).

 I would recommend that this be immediately reverted in unstable.

i disagree.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5137a401.2090...@progress-technologies.net



Re: Bug#701936: btrfs can't fsck /run/rootdev on boot

2013-03-06 Thread Daniel Baumann
On 03/06/2013 09:51 PM, Roger Leigh wrote:
 3) fsck.btrfs does not support the standard fsck options

 easy fixable, but hasn't much to do with the current remaining problem
 in sid.
 
 Yes, it does.

no, it does not.

even if fsck.btrfs ignores all required options, it still fails because
of sysvinits /run/rootdev.

 4) fsck.btrfs error codes

 I haven't tested this due to point (2) above

 me neither, but that's easy fixable too and hasn't much to do with the
 current remaining problem in sid.
 
 Yes, it does.

no, it does not.

even if fsck.btrfs returns equal values, it still fails because of
sysvinits /run/rootdev.

 You broke booting with the default init system for all people using a
 btrfs rootfs.

if people are using unstable, yes.

keep in mind that eventhough it is not desirable nor intended, bugs do
happen. also in unstable.

unrelated to that, i would appreciate if you could calm down your tone a
bit, it is more productive that way, thank you.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5137b7f1.5080...@progress-technologies.net



Bug#700798: unblock: live-tools/3.0.18-1

2013-03-01 Thread Daniel Baumann
retitle 700798 live-tools/3.0.19-1
tag 700798 - moreinfo
thanks

see live-tools 3.0.19-1.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51306d7c.9040...@progress-technologies.net



Bug#700797: marked as done (unblock: live-config/3.0.21-1)

2013-03-01 Thread Daniel Baumann
On 03/01/2013 08:24 PM, Debian Bug Tracking System wrote:
 is there particular logic behind the changes

case is faster.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5131061a.8040...@progress-technologies.net



Bug#700796: unblock: live-boot/3.0.1-1

2013-03-01 Thread Daniel Baumann
On 03/01/2013 08:45 PM, Adam D. Barratt wrote:
 That would be the script which just got removed from live-tools and is
 now in neither package? Is that an issue?

no.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51310696.9040...@progress-technologies.net



Re: 6.0.7 planning

2013-02-10 Thread Daniel Baumann

all of them fine by me.

--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5117de1f.6020...@progress-technologies.net



Re: Broken syslinux in sid

2013-02-03 Thread Daniel Baumann

reassign 699382 syslinux-themes-debian
thanks

On 02/03/2013 09:00 PM, Cyril Brulebois wrote:

I really don't see how this could be a bug in syslinux-themes-debian


because it has absolutely nothing to do with syslinux, see 
http://live.debian.net/gitweb/?p=live-build.git;a=commitdiff;h=1ef2dfea2b2b6685254b4a531d3eee501d103de6


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/510ed83c.10...@progress-technologies.net



Re: Broken syslinux in sid

2013-02-03 Thread Daniel Baumann

On 02/03/2013 10:44 PM, Cyril Brulebois wrote:

Now please explain how exactly syslinux-themes-debian is involved
here.


it's a bug in your config, you need more files present on the media, as 
the link to the corresponding commit in live-build shows.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/510edc70.2030...@progress-technologies.net



Re: Broken syslinux in sid

2013-02-03 Thread Daniel Baumann

On 02/03/2013 10:58 PM, Cyril Brulebois wrote:

I'm going to re-upload testing's version with an epoch to unbreak
everything.


if you disagree with the maintainer, please follow the proper way 
(CTTE), thanks.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/510edf33.9000...@progress-technologies.net



Re: Bug#687292: unblock: nvidia-graphics-drivers-legacy-96xx/96.43.23-2

2012-11-21 Thread Daniel Baumann

On 11/20/2012 03:17 PM, Mark Lila wrote:

can we get it in wheezy now too  :)


please consider migrating it, then newer version in current sid works 
well for me and is a big improvment over the one in testing. we're 
making good use of them in debian-live with some unofficial images (that 
include non-free drivers/firmware).


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50ad3fed.5050...@progress-technologies.net



Bug#688485: marked as done (unblock: syslinux-themes-debian/12-1.1)

2012-10-01 Thread Daniel Baumann

On 10/01/2012 05:19 PM, Mehdi Dogguy wrote:

I don't quite understand why syslinux-themes-debian should have heavy
changes because of live-build.


first, because live-build expects the theme packages to be structured in 
a certain way. syslinux-themes-debian has not been updated yet to 
reflect these changes in live-build.


second, because just switching the splash screen is not enough for 
making the wheezy theme work well for the new artwork.



Do you intend to do heavy changes in syslinux as well?


syslinux does not create live-specific syslinux configuration files 
based on the theme package like live-build does.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5069b7ce.1020...@progress-technologies.net



Re: Squeeze point release (6.0.6)

2012-09-24 Thread Daniel Baumann

On 09/23/2012 06:40 PM, Adam D. Barratt wrote:

Any comment from -live?


29th is fine.

--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/506063d4.6050...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-4

2012-08-23 Thread Daniel Baumann

On 08/23/2012 12:47 AM, Cyril Brulebois wrote:

I so wish we only had this single package to review. However, that's not
the case, so please be patient.


i actually haven't seen the messages on this bug from the 14th and 18th 
of august until now. if people would cc bug submitters, that would 
surely help. anyhow, a ping after a months doesn't seem inpatient to me, 
but no problem, take your time.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5035d55d.7050...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-4

2012-08-22 Thread Daniel Baumann
ping.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5034843b.9020...@progress-technologies.net



Bug#683400: freeze-exception for live-debconfig

2012-08-02 Thread Daniel Baumann
On 08/01/2012 04:36 PM, Philipp Kern wrote:
 What do you expect us to do

ftp-masters told me to ask the release-team to tell ftp-master that they
are allowed to process my package and (accept or reject) it for
unstable, or not.

i suggest you either give them the permission to do so, or not (which
would be kind of weird, but anyway).

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/501ac29f.1020...@progress-technologies.net



Bug#683400: freeze-exception for live-debconfig

2012-08-02 Thread Daniel Baumann
On 08/02/2012 08:32 PM, Philipp Kern wrote:
 Thanks for not giving any further information.

let me re-iterate: ftp-master told me to do ask the release-team to give
permission to ftp-master to process the package in NEW for unstable.
that's excately what i did.

wouldn't it make sense that ftp-masters and release-team do talk to each
other if the one or other team needs more information for this, instead
of having me in between? there's nothing that i can do about it on
either side/team anyway.

 If this is not intended for wheezy and if other
 -live components will not use or rely on it, that's ok.

it is intended for wheezy, but other live-* packages can make use of it,
but do not rely on it. lxc on the other hand relies on it.

 That said, it seems that communication with you is very hard, given your
 uncooperativeness.

'uncooperativeness'? please elaborate.

 We're also wary in which state -live is in given [1] and
 your reply[2].

live-installer requires working d-i, d-i currently is still too fragile.
but as said, we'll get there in time.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/501ad1ae.2020...@progress-technologies.net



Bug#683400: freeze-exception for live-debconfig

2012-08-02 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

reassign 683400 ftp.debian.org
retitle 683400 please reject live-debconf from NEW
thanks

On 08/02/2012 09:54 PM, Philipp Kern wrote:
 They were in Cc, but you seem to be unable to summarize past 
 discussions, too.

honestly, i'm not sure how/if i can summarize it in public, it was a
private discussion between me, ftp-master, and eventually dam and dpl.

 You also seem to be unable to describe your changes to the existing
 packages that you want to do except for handwaiving.

i've taken out the standalone preseeding backend stuff from
src:live-config into src:live-debconfig.

 I don't see how we could handle this request, so I'm tagging it
 moreinfo now, even if it might as well be closed unless there's
 more useful input.

ok, let's close it then (or rather, reassign to ftp-masters.. so they
can reject live-debconfig 3 from NEW, and i'll re-upload it as version
4 for jessie, that they then can process without problems anytime soon.

 How would lxc depend on something live-*'ish?

for container configuration; the generic name for this was rejected by
ftp-master, bottom line is they think it's live-* stuff (eventhough it
is not), so it needed to use a package name out of the debian-live
namespace.

 Please elaborate. What timeframe are you assuming?

we'll be having alpha1 out in a couple of days, so we have a baseline
of what still needs work. i expect one week (plus one week for safety)
until live-{build,boot,config,tools} is good enough for wheezy, and
after that, another week (plus one week for safety) for live-installer
and debian-installer-launcher. that would be somewhen arround end of
august. for live-manual i don't know about Bens plans, but should be
somewhat similar i think.

 As for uncooperativeness it doesn't help that you ignore half of
 the mails.

i'm not aware to not have answered (or even ignored) any mails send to
this bug report, did i?

 Maybe you need everything spelt out instead of blindly assuming 
 that you'd somehow get what questions we're aiming at.

i appreciate if you formulate questions in a direct, unambiguous and
an easy understandable way, yes.

 I should not assume malice, I guess.

i prefer if you don't.

- -- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlAa34AACgkQ+C5cwEsrK55M0gCdFpHpq+wbvYIejYicoe5ip5HH
/hMAniIFMUW4V9xC0MEjCC2sZOFpFVHo
=bBtk
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/501adf81.3010...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-31 Thread Daniel Baumann
On 07/31/2012 11:07 AM, Bernd Zeimetz wrote:
 so yet again you managed to make a mess of open-vm-tools short time
 before a release.

i didn't. please read the whole thread carefully, thank you.

 +  * Switching to xz compression.
 
 Why?

smaller package size.

 Is this really release critical?

this is part of the -2 upload before the freeze (as everything else
except the last dkms ftbfs fix), it's a regular maintainer upload.

 +  * Loading modules through kmod instead of initscript.
 
 The initscript way was always ugly, but it is known to work. Why change
 it short before the release?

because it's better and less error prone.

 I doubt its well tested enough.

it is.

 +  * Adding sleep during restart in initscript.
 
 Why one second?

because it sometimes fails to restart if there's no sleep.

 Is it enough?

yes.

 Is there a proper way instead of sleeping?

to the best of my knowledge, this is the proper way these days on how do
deal with these sort of things in sysvinit initscripts.

 +  * Removing old dpkg trigger for update-initramfs.
 
 See above. How can you be sure it was well enough tested?

dpkg dropped support for update-initramfs triggers in debian/*triggers,
the trigger file therefore is entirely useless. you need to call
update-initramfs in postinst manually, like the package already does
since a long time.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5017d0c3.4060...@progress-technologies.net



Bug#683400: freeze-exception for live-debconfig

2012-07-31 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

On 07/31/2012 02:51 PM, Luca Falavigna wrote:
 I checked with Release Team, and they prefer to have written
 communication for upload approvals, so they asked if you could send a
 request to debian-release@lists.d.o anyway.

done hereby (not sure if opening a freeze-exception bug is that accurate
for this sort of request, but i didn't found anything more suitable, and
bts is preferable over plain mails on the list).

live-debconfig contains the stand-alone parts from live-config that's
needed for 'build-time' configuration of systems, including live systems
and lxc systems.

it was split out from live-config due to popular demand, see ftp-masters
thread for the history why it was in src:live-config in the first place
rather than it's own src package (beginning of june).

live-debconfig however is in NEW now since some days, and i need to know
if ftp-masters will process the package so that it can go to unstable
first, and eventually and if RM agrees, go to wheezy. if not, i will
need to stuff the contend back into src:live-config.

ftp-masters however say, that they need RM consent to even let it to
unstable first (which actually confuses me a bit, since other completely
new packages, e.g. crtools, were processed just fine and are now in
unstable).

at debconf, luk said that he agrees to have the package in unstable
first, and then go from there and see, if it can go to wheezy at a later
point (which is ok, since we'll need a few
translation/documentation-update uploads of that package anyway before
we consider asking for an unblock).

so.. does the release-team allow ftp-master to process that package?

unrelated to that, but similar: we'll intend to upload another new
package, live-examples, that will carry the configuration trees for
live-build for the official debian-live images for wheezy (see e.g.
http://live.debian.net/gitweb/?p=config-gnome-desktop.git). do you
need/want a seperate request for that too in order to allow ftp-masters
to process the package (in advance, or afterwards?), or should i just
upload the package normally?

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5017d9b5.90...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-31 Thread Daniel Baumann
On 07/31/2012 10:59 AM, Julien Cristau wrote:
 This still doesn't explain why the change is necessary, and what was
 wrong with the old code.  And if it is, which I would be willing to
 believe if given some sort of explanation, it seems to be missing a
 package dependency on kmod.

for the 'why' part i've think i covered in my response to Bernd a few
minutes ago, if you need more, feel free to ask.

regarding the kmod depends.. kmod is like linux kernel packages, there
should be no depends against it as it will otherwise mean that kmod
(which is quasi-essential, it's being pulled in during debootstrap)
would be hard-enforced upon chroots and lxc systems, where you don't or
can't use kernel modules anyway (within the chroot/container). having
said that, kmod should be in recommends.

do you want me to upload that right now already, or would you prefere
waiting until (if at all) open-vm-tools migrate?

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5017df94.6020...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-31 Thread Daniel Baumann
On 07/31/2012 03:40 PM, Julien Cristau wrote:
 Based on what?

tests on my computer.

 If the system is under load, what guarantees that it won't take
 more time?

as often there are no guarantees, but i tested it under quite some cpu
and IO load, and it worked for me.

regarding testing migration.. even if it wouldn't help in 100% of all
cases, it's better to have it safer in most cases, the current testing
package does not have a sleep at all.

 Nope.  The proper way is for stop to not return until it's
 actually stopped.

it does that. but again, it's safer in some cases to have the sleep,
just to be on the safe side.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5017e18c.1030...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-31 Thread Daniel Baumann
On 07/31/2012 03:41 PM, Julien Cristau wrote:
 Which is particularly important for this package because...?  And using
 the -9 option (which is recommended against by the xz documentation)
 because...?

i'm definitely not going to re-iterate what all the people said about
using xz compression, feel free to watch the debconf talk and look at
the various threads on the debian mailinglists should you require more
information why and how it's beneficial to use xz in debian.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5017e1fe.3060...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-31 Thread Daniel Baumann
On 08/01/2012 12:29 AM, Philipp Kern wrote:
 I don't think that's agreed upon. If anything default options
 should be used.

i don't think so, see debconf bofh.

the bottom line is that -9 compresses better than -6, and that -9 is
not a problem on amd64 and i386, see debconf talk for more information.

open-vm-tools are only built on amd64 and i386 anyway, architectures
which are both considered to be 'fast' architectures.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50189901.7020...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-31 Thread Daniel Baumann
On 08/01/2012 01:42 AM, Bernd Zeimetz wrote:
 tests on my computer.
 
 As it was already explained to you before the release of Squeeze, this is far
 far far away from proper testing for a package like open-vm-tools. It should
 be tested on current (and maybe even older) ESX instalations. Ballooning,
 live-migrations, snapshots with quiesce option and all the other nice features
 need to work before it should be released as stable.

i don't see the connection to adding a 'sleep 1' for safety, anyhow..

 regarding testing migration.. even if it wouldn't help in 100% of all 
 cases, it's better to have it safer in most cases, the current testing 
 package does not have a sleep at all.
 
 Why not add a proper way to handle it instead of a broken workaround?

..please do share your knowledge of the proper way then and help
making debian better (bug report plus patch would be appreciated).

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50189a46.3050...@progress-technologies.net



Bug#683296: unblock: fuse/2.9.0-5

2012-07-30 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

2.9.0-4 would have migrated if there was no udeb block, 2.9.0-5 contains
fix for FTBFS on kfreebsd.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016b119.7000...@progress-technologies.net



Bug#683295: unblock: dmidecode/2.11+20120326-2

2012-07-30 Thread Daniel Baumann
Package: release.debian.org

please remove the udeb block.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016b09a.8010...@progress-technologies.net



Bug#683297: unblock: gfxboot/4.5.0-3

2012-07-30 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

4.5.0-3 fixes syslinux paths as used in debian (#682974).

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016b17f.4090...@progress-technologies.net



Bug#683298: unblock: ntfs-3g/1:2012.1.15AR.5-4

2012-07-30 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

1:2012.1.15AR.5-3 would have migrated if there was no udeb block,
1:2012.1.15AR.5-4 contains l10n updates.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016b1cf.2050...@progress-technologies.net



Bug#683300: unblock: tftpd-hpa/5.2-4

2012-07-30 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

5.2-4 contains a documentation update.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016b2a4.1040...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

2:8.8.0+2012.05.21-724730-2 would have migrated in time,
2:8.8.0+2012.05.21-724730-3 fixes the FTBFS of the dkms module.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016b26c.8000...@progress-technologies.net



Bug#683301: unblock: vsftpd/3.0.0-4

2012-07-30 Thread Daniel Baumann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

3.0.0-3 would have migrated in time, 3.0.0-4 fixes a syntax error in the
init script.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016b2f7.4070...@progress-technologies.net



Bug#683300: unblock: tftpd-hpa/5.2-4

2012-07-30 Thread Daniel Baumann
On 07/30/2012 07:39 PM, Adam D. Barratt wrote:
 s/your're/you're/

fixed in git, thanks.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016c7a9.2010...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
On 07/30/2012 08:08 PM, Julien Cristau wrote:
 2:8.8.0+2012.05.21-724730-2 would have migrated in time, 
 2:8.8.0+2012.05.21-724730-3 fixes the FTBFS of the dkms module.
 
 See the existing requests for clarification of the changes.

i don't understand what you're talking about. let me repeat:

2:8.8.0+2012.05.21-724730-2 would have migrated in time,
2:8.8.0+2012.05.21-724730-3 fixes the ftbfs for good.

you only need to look at the diff of 2:8.8.0+2012.05.21-724730-3.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016dd59.7010...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
On 07/30/2012 09:18 PM, Julien Cristau wrote:
 I don't care that 2:8.8.0+2012.05.21-724730-2 would have 
 migrated, since it didn't.  I'm looking at the diff between 
 testing and sid.

ok, good to know.

so the rational is then, contra common sense, to not fix RC bugs in
sid before a package has migrated, leaving everyone unsatisfied for
longer time, but creating less work for the release team and
increasing chances for the unblock.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016df8f.9050...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
On 07/30/2012 09:27 PM, Julien Cristau wrote:
 No, the idea is to not make unnecessary changes the day before the 
 freeze.

there is no unnecessary change in 2:8.8.0+2012.05.21-724730-2.

apart from that: if you don't want people to upload stuff right before
the freeze, then don't announce the freeze.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016e405.9030...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
On 07/30/2012 09:47 PM, Julien Cristau wrote:
 Great, then explaining the changes should be straightforward.

as i've read, other people on debian-release@lists.debian.org did that
already to the full extend.

 I don't mind people uploading stuff right before the freeze as long
 as they don't mind that stuff not getting in.

so we're back to the point: the rational is to not fix bugs in sid
right away.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016e649.7070...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
On 07/30/2012 10:02 PM, Julien Cristau wrote:
 And as you've no doubt read I'm not satisfied with that explanation, so
 please try again.

again, i see not where i could add anything else that other people
already said.

 Or if you prefer, I can remove the package from
 wheezy, that works just as well as far as I'm concerned, but I thought
 I'd give it a chance.

feel free to do so if you think that this is what in the users interest,
after all it's your call, not mine.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5016e972.2090...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
On 07/31/2012 12:44 AM, Neil McGovern wrote:
 You failing to either do the work in time for a freeze that has
 been advertised more than a year in advance,

i uploaded in time, before the freeze.

 and then failing to justify your random uploads

there are no random uploads.

 is absolutely, 100% NOT the fault of the release team, it is
 yours.

unfortunately, i can neither unblock open-vm-tools [...]-3 nor review
[...]-3 for you, this is a task of the release team. there's nothing i
can do about it except asking you to unblock said version, which i did.

if you're not able or willing to unblock it, that's fine, i accept
that. the responsibility and consequence of this decision hower is
yours, not mine.

 I will not allow you to try and lay the blame at anyone's feet but
 your own for this.

i've objectively and neutraly stated that, apparently, it's a fact
that it's better not to fix rc bugs in sid right away in such
situations, but instead to wait for the previous already unblocked
package to migrate first in order to lessen the burden on the
release-team.

this fact was new to me, i've learned it now, and next freeze i'll do
wait in such situations until the package has migrated.

if that is 'lay the blame at anyone [elses] feet', then i'm very
sorry, but you do need a reality check.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50171dc3.9010...@progress-technologies.net



Bug#683299: unblock: open-vm-tools/2:8.8.0+2012.05.21-724730-3

2012-07-30 Thread Daniel Baumann
On 07/31/2012 01:50 AM, Daniel Baumann wrote:
 there's nothing i can do about it except asking you to unblock said version, 
 which i did.

almost.. in addition to what the other people on the thread[0] already
said.. here are the individual git commits as patches attached,
constituting the complete diff between wheezy and sid.

the actual diff for anything that wasn't unblocked/freeze-exempted
before already, is patch 8 only (and patch 9 for the changelog entry).

[0] http://lists.debian.org/debian-release/2012/07/msg01706.html

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
From 6f78a73d8539424ba635c4e5d7c572b81c06e4c3 Mon Sep 17 00:00:00 2001
From: Daniel Baumann daniel.baum...@progress-technologies.net
Date: Sat, 30 Jun 2012 02:42:40 +0200
Subject: [PATCH 1/9] Switching to xz compression.

---
 debian/rules  |2 +-
 debian/source/options |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/rules b/debian/rules
index f699ed5..c9b8c95 100755
--- a/debian/rules
+++ b/debian/rules
@@ -47,7 +47,7 @@ override_dh_auto_install:
 	mv debian/open-vm-tools/usr/lib/open-vm-tools/plugins/vmusr debian/open-vm-toolbox/usr/lib/open-vm-tools/plugins
 
 override_dh_builddeb:
-	dh_builddeb -- -Zgzip -z9
+	dh_builddeb -- -Zxz -z9
 
 override_dh_fixperms:
 	dh_fixperms -Xsbin/mount.vmhgfs
diff --git a/debian/source/options b/debian/source/options
index d053b65..22a4de9 100644
--- a/debian/source/options
+++ b/debian/source/options
@@ -1,2 +1,2 @@
-compression = gzip
+compression = xz
 compression-level = 9
-- 
1.7.10.4

From 1c91cfeedd6fc2b80050b1293e59d3dc343672eb Mon Sep 17 00:00:00 2001
From: Daniel Baumann daniel.baum...@progress-technologies.net
Date: Sat, 30 Jun 2012 02:45:02 +0200
Subject: [PATCH 2/9] Loading modules through kmod instead of initscript.

---
 debian/local/open-vm-tools.kmod |2 ++
 debian/open-vm-tools.init   |   10 --
 debian/rules|1 +
 3 files changed, 3 insertions(+), 10 deletions(-)
 create mode 100644 debian/local/open-vm-tools.kmod

diff --git a/debian/local/open-vm-tools.kmod b/debian/local/open-vm-tools.kmod
new file mode 100644
index 000..99d11ad
--- /dev/null
+++ b/debian/local/open-vm-tools.kmod
@@ -0,0 +1,2 @@
+vmhgfs
+vmsync
diff --git a/debian/open-vm-tools.init b/debian/open-vm-tools.init
index 51bc146..22d73ad 100644
--- a/debian/open-vm-tools.init
+++ b/debian/open-vm-tools.init
@@ -27,11 +27,6 @@ case ${1} in
 		# Check if we're running inside VMWare
 		exit_if_not_in_vm
 
-		log_daemon_msg Loading open-vm-tools modules
-		log_progress_msg vmhgfs; modprobe vmhgfs
-		log_progress_msg vmsync; modprobe vmsync
-		log_end_msg 0
-
 		log_daemon_msg Starting open-vm daemon vmtoolsd
 		/usr/bin/vmtoolsd --background /var/run/vmtoolsd.pid
 		log_end_msg 0
@@ -49,11 +44,6 @@ case ${1} in
 		fi
 
 		log_end_msg 0
-
-		log_daemon_msg Removing open-vm-tools modules
-		log_progress_msg vmhgfs; modprobe -r vmhgfs
-		log_progress_msg vmsync; modprobe -r vmsync
-		log_end_msg 0
 		;;
 
 	force-reload|restart)
diff --git a/debian/rules b/debian/rules
index c9b8c95..fa4d044 100755
--- a/debian/rules
+++ b/debian/rules
@@ -22,6 +22,7 @@ override_dh_auto_install:
 	install -D -m 0755 debian/local/vmxnet.hook debian/open-vm-tools/usr/share/initramfs-tools/hooks/vmxnet
 	install -D -m 0644 debian/local/xautostart.conf debian/open-vm-toolbox/etc/vmware-tools/xautostart.conf
 	install -D -m 0644 debian/local/tools.conf debian/open-vm-tools/etc/vmware-tools/tools.conf
+	install -D -m 0644 debian/local/open-vm-tools.kmod debian/open-vm-tools/lib/modules-load.d/open-vm-tools.conf
 
 	# open-vm-tools-dev
 	mkdir -p debian/open-vm-tools-dev/usr/share/doc/open-vm-tools
-- 
1.7.10.4

From d3f74fd765b6a6320d92e3b699d957a3b46a033c Mon Sep 17 00:00:00 2001
From: Daniel Baumann daniel.baum...@progress-technologies.net
Date: Sat, 30 Jun 2012 04:54:11 +0200
Subject: [PATCH 3/9] Adding sleep during restart in initscript.

---
 debian/open-vm-tools.init |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/open-vm-tools.init b/debian/open-vm-tools.init
index 22d73ad..706eb7c 100644
--- a/debian/open-vm-tools.init
+++ b/debian/open-vm-tools.init
@@ -47,7 +47,9 @@ case ${1} in
 		;;
 
 	force-reload|restart)
-		${0} stop; ${0} start
+		${0} stop
+		sleep 1
+		${0} start
 		;;
 
 	*)
-- 
1.7.10.4

From d1dd753db76334a896b91ac312c34470448dc252 Mon Sep 17 00:00:00 2001
From: Daniel Baumann daniel.baum...@progress-technologies.net
Date: Sat, 30 Jun 2012 03:43:42 +0200
Subject: [PATCH 4/9] Removing old dpkg trigger for update-initramfs.

---
 debian/open-vm-tools.triggers |1 -
 1 file changed, 1 deletion(-)
 delete mode 100644 debian/open-vm-tools.triggers

diff --git a/debian/open-vm-tools.triggers b/debian/open-vm-tools.triggers
deleted file mode 100644
index 6c9f454

Rebuild attempts for btfs-tools, fuse, and ntfs-3g on some architectures needed

2012-06-09 Thread Daniel Baumann
as far as i can see there seemed to be a (temporary?) problem on some
architectures with the debhelper version installed on the buildds at the
time the btrfs-tools, fuse, and ntfs-3g packages were built. they fail
with something like:

[...]
dh_builddeb: dpkg-deb -z1 -Zxz -Sextreme -Zxz -z9 --build
debian/btrfs-tools-udeb ../btrfs-tools-udeb_0.19+20120328-2_ia64.udeb
returned exit code 2
[...]

hence, please schedule these three packages for another build on the
affected architectures.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fd31b2e.2080...@progress-technologies.net



RM: lxapperance 0.5.1-2

2012-06-06 Thread Daniel Baumann
please remove lxappearance 0.5.1-2 from testing so that 0.5.2-1 can migrate.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fcf91ea.8000...@progress-technologies.net



Re: installer location on mirrors

2012-05-22 Thread Daniel Baumann
On 05/21/2012 11:22 PM, Joerg Jaspert wrote:
 Thats not a new thing - and still we dont have any such image in Debian.

non-free is not part of the official debian, yet we have non-free
archive areas, so that's not an argument.

some derivatives are building d-i images with firmware udebs from
non-free included. debian should provide this on the archive level too
(read: non-free udeb Packages/Sources indicies), regardless if the
official debian images are using it yet or ever.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fbb41da.4080...@progress-technologies.net



Re: installer location on mirrors

2012-05-22 Thread Daniel Baumann

On 05/22/2012 10:44 AM, Holger Levsen wrote:

/me likes 
http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/
even though I know it's not Debian ;-)


right, but these images do not use non-free udebs, they just contain 
non-free debs in pool/ on the medium.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fbb6683.80...@progress-technologies.net



Re: installer location on mirrors

2012-05-22 Thread Daniel Baumann

On 05/22/2012 12:52 PM, Joerg Jaspert wrote:

And both of you just miss the point.


i don't think so (for my part, that is).


We are NOT talking about udebs.
We are NOT talking about whatever debian-cd creates.

We are talking about the installer images. Those that fall out of the
debian-installer source.


exactely, which, as i said, have non-free parts included in some 
derivatives.


e.g.: 
http://ftp.debian.org/debian/dists/sid/main/installer-amd64/current/images/netboot/netboot.tar.gz


(for system where the nic needs firmware, the netboot initrd already 
needs to contain it in order to work).



But the link to debian-cd created images answers the question in a
different way: It won't have installer images in contrib/non-free. The
only non-free stuff we would be likely to add - is added by debian-cd in
an extra set of cd images.


for derivatives that choose to support users with d-i+non-free-udebs 
images, they can today store them in 
dists/$codename/non-free/installer-$arch/[...].


with your proposal, it's effectively impossible for derivatives to store 
their d-i+non-free-udebs images in a reasonable location within the archive.


therefore my request to account for non-free within the archive for the 
new installer images location *eventhough* official debian does not yet 
or ever use it.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fbb84e2.1070...@progress-technologies.net



Re: Squeeze point release (6.0.5)

2012-04-27 Thread Daniel Baumann
On 04/27/2012 09:59 PM, Neil McGovern wrote:
 press says OK :)

fine for me too.


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f9b13a6.6050...@progress-technologies.net



Re: Planning for final lenny point release (5.0.10)

2012-02-26 Thread Daniel Baumann
On 02/25/2012 10:40 AM, Adam D. Barratt wrote:
 Daniel?  We really need to get dates sorted...

sorry for the late answer, haven't been much arround the last days;
anyhow, any date is fine.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f4b23a3.6040...@progress-technologies.net



Re: Planning for next squeeze point release (6.0.4)

2012-01-10 Thread Daniel Baumann
On 01/10/2012 10:33 PM, Adam D. Barratt wrote:
 The 28th would be preferable for me.  Would that still work for everyone
 else?

2011-01-28 (and the day afterwards) is fine, yes.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f0cb00e.50...@progress-technologies.net



Re: Planning for next squeeze point release (6.0.4)

2011-12-16 Thread Daniel Baumann
On 12/15/2011 11:19 PM, Adam D. Barratt wrote:
 (and to which you appear to have ignored the response, at least
 publicly)

that response was a non-sequitur.

 That mail says you'd like to know the rough estimated date for
 planning purposes, [...]

exactely..

 The purpose of the initial co-ordination mails is precisely to narrow
 that rough estimated date to an exact date

..which is why we want to be cc'ed, it's as simple as that.

 (Actually, in both of those cases fixes generally get worked on and
 uploaded throughout the cycle rather than just towards the end, which is
 arguably a better workflow for all involved.)

you should know by now that -live works a bit different wrt/ releases
due to the fact, that it has to adapt to all changes *after* everyone
(-kernel, -boot, -release, -ftp) has done them.

 Then I suspect you haven't read the above.  Hopefully it does some good
 for someone, in any case.

it is always a good thing to allege the other one is not reading stuff
if the initial problem solely lies in the own ignorance of the issue; or
not.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4eeb03af.1080...@progress-technologies.net



Re: Planning for next squeeze point release (6.0.4)

2011-12-15 Thread Daniel Baumann
On 12/13/2011 12:07 AM, Adam D. Barratt wrote:
 Yep, it's that time again.  Based on a bi-monthly schedule, 6.0.4 would
 be due around mid-January.

again and again, you forget to cc debian-live. this is going on for too
long already, fix this, finally, i'm getting sick of it.

 As an opening gambit, I'd propose we look at one of the following
 Saturdays in January: 14th, 21st, 28th.

21st and 28th (with the respective day after the actual release day, to
do the live images) are fine for me.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4eea69a3.1050...@progress-technologies.net



Re: Planning for next squeeze point release (6.0.4)

2011-12-15 Thread Daniel Baumann
On 12/15/2011 10:50 PM, Adam D. Barratt wrote:
 For the record, I did not forget.  I was under the impression that what
 you'd previously requested, and what we had agreed, was that you wished
 to be copied on the mails announcing the dates of the point releases,

no; i said it numerous times already, the last time was:

  http://lists.debian.org/debian-live/2011/09/msg00036.html

nothing changed before that, nothing changed since that, and i have
nothing more to add to that.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4eea6e3a.9060...@progress-technologies.net



hint for lxc required

2011-10-13 Thread Daniel Baumann
Hi,

please add a hint for lxc 0.7.5-3.

Regards,
Daniel

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e96b68f.3070...@progress-technologies.net



Re: hint for lxc required

2011-10-13 Thread Daniel Baumann
On 10/13/2011 12:09 PM, Adam D. Barratt wrote:
 It doesn't need a hint, it needs the FTBFS fixing - see
 https://buildd.debian.org/status/package.php?p=lxc

i already requested the removal of those archs some time ago, see #640351.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e96bbc4.1010...@progress-technologies.net



Re: Upcoming Point Releases

2011-09-08 Thread Daniel Baumann

On 09/07/2011 09:30 PM, Philipp Kern wrote:

we finally got target dates for the next point releases of both Lenny
and Squeeze.  Lenny should get 5.0.9 on October 1st; Squeeze will follow
on October 8th with 6.0.3.


again, you forgot debian-live@l.d.o.

--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e689870.9080...@progress-technologies.net



Re: Point release schedule

2011-09-05 Thread Daniel Baumann

On 09/04/2011 06:14 PM, Philipp Kern wrote:

so apparently September is a very bad month to get CDs done.  I'm hereby
proposing the following with the hope that we can do it that way:

  * Lenny: October 1st
  * Squeeze: October 8th


you forgot, once again, to cc d-live@l.d.o.


Can we do that, pretty please?  :)


works for mee too.

--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e648829.7010...@progress-technologies.net



Re: Point release schedule

2011-09-05 Thread Daniel Baumann

On 09/05/2011 11:25 AM, Philipp Kern wrote:

That said, we saw that discussed on #d-live for the 6.0.1 point release and you
basically said that point releases are a no brainer and started only once the
mirrors are updated.  Furthermore you said this is usually on the next day
anyway.


you concluded wrong then, i suggest you re-read the logs.

to reiterate: while it's not important for us at which exact day and 
time the point release happens (since we can only start building it once 
the mirrors already have it), we sure would like to know in advance the 
rough estimated date (hence the request to be CC'ed for *informational 
purpose*) so that we can make plans, e.g. for fixing things in lb stable 
branch like we always do.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e64972f.8060...@progress-technologies.net



Re: linux-2.6: Aufs apparently silently dropped, breaking debian-live

2011-05-29 Thread Daniel Baumann

On 05/25/2011 12:54 AM, Daniel Baumann wrote:

i hereby request that:

* the release team overwrites the maintainers 'decision' to downgrade
#627837 from severity serious to important by marking #627837 RC
by restoring the severity to serious

* the release team makes sure that 2.6.39 does *not* migrate to
testing before #627837 has been fixed.


ping.

linux-2.6 has aged 7 of 10 days already.. remeber that should the broken 
kernel migrate to testing, this will basically mean we can stop doing 
debian-live work within debian for about as long as it takes until the 
fixed version of the kernel enters testing again (which can, by 
experience, be quite long).


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4de27fe5.7030...@progress-technologies.net



Re: linux-2.6: Aufs apparently silently dropped, breaking debian-live

2011-05-29 Thread Daniel Baumann
On 05/29/2011 08:18 PM, Julien Cristau wrote:
 Then work with the kernel team to resolve this, and make sure what you
 need is ready in the future when a new kernel is released, instead of
 making others chase external patches for you.

it has always been ready, that's not the problem.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4de29013.8040...@progress-technologies.net



Re: Bug#627837: linux-2.6: Aufs apparently silently dropped, breaking debian-live

2011-05-29 Thread Daniel Baumann
On 05/29/2011 09:53 PM, Julien Cristau wrote:
 Maybe it was ready in your mind, but it wasn't in debian-kernel svn or
 mailing list (and as far as I can tell the kernel maintainers even
 checked aufs git before the .39 upload, and didn't find any recent
 changes there).  So yeah, that's exactly the problem.

no; aufs.git was up2date. in time. way before.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4de2a6b3.3060...@progress-technologies.net



Re: Bug#627837: linux-2.6: Aufs apparently silently dropped, breaking debian-live

2011-05-29 Thread Daniel Baumann
On 05/29/2011 10:04 PM, Daniel Baumann wrote:
 no; aufs.git was up2date. in time. way before.

oh.. and before you ask.. 'way before' means 'at least 2011-04-18, but
possibly even earlier' (yes, that really is a month before .39 was
released).

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4de2a9a8.4060...@progress-technologies.net



Re: linux-2.6: Aufs apparently silently dropped, breaking debian-live

2011-05-29 Thread Daniel Baumann
On 05/29/2011 10:34 PM, Julien Cristau wrote:
 The maintainers have already made that call, and I don't see a reason to
 override their decision.

so no change after squeeze, the release team gives a shit about breaking
debian-live, sigh. but don't worry, from now on, i will not care anymore
either.

bye, have fun.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4de2b823.8040...@progress-technologies.net



Re: Bug#627837: linux-2.6: Aufs apparently silently dropped, breaking debian-live

2011-05-29 Thread Daniel Baumann
On 05/30/2011 04:16 AM, Ben Hutchings wrote:
 Is there a new canonical repository for aufs?

it always was http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-standalone.git,
like referenced from aufs.sf.net.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4de32075.7050...@progress-technologies.net



Re: linux-2.6: Aufs apparently silently dropped, breaking debian-live

2011-05-24 Thread Daniel Baumann

to prevent further severity ping-pong..

Given that:

  * 2.6.39 without aufs nor unionmount is not usable in *any* way for
debian-live and thus debian-live being completely broken

  * 2.6.38 has aufs and is in testing

  * debian-live being a part of debian where we should not release
without

i hereby request that:

  * the release team overwrites the maintainers 'decision' to downgrade
#627837 from severity serious to important by marking #627837 RC
by restoring the severity to serious

  * the release team makes sure that 2.6.39 does *not* migrate to
testing before #627837 has been fixed.

Regards,
Daniel

--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ddc3732.8030...@progress-technologies.net



Re: Uploading linux-2.6 2.6.37-1 to unstable

2011-02-10 Thread Daniel Baumann
On 02/08/2011 04:16 PM, Ben Hutchings wrote:
 AUFS will be included for use in Debian Live if there is a version
 compatible with 2.6.37.

is available, see upstreams repository at
http://git.c3sl.ufpr.br/gitweb?p=aufs/aufs2-2.6.git

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d539d64.7020...@progress-technologies.net



Bug#611780: unblock: live-build/2.0.12-1

2011-02-01 Thread Daniel Baumann
Package: release.debian.org

live-build (2.0.12-1) unstable; urgency=low

  [ Daniel Baumann ]
  * Removing l10n support for 2.0 branch.
  * Correcting outdated program variable.
  * Updating help function in lb for live-build.
  * Updating man function for newer live-build versions (Closes:
#608477).
  * Marking xresprobe in standard-x11 list as lenny only (Closes:
#608566).
  * Updating year in copyright.
  * Removing headers in copyright file.
  * Updating year in manpage, hooks, script and template files.

  [ Luigi Capriotti ]
  * Support for newer grub-common package.

  [ Daniel Baumann ]
  * Simplyfing grub-mkimage legacy handling for lenny in lb_binary_iso.
  * Adding ubuntu lucid for grub-mkimage legacy handling in
lb_binary_iso.
  * Adding missing netinst udeb include files for ubuntu.

  [ Cody A.W. Somerville ]
  * Adding missing debian-cd data files for Ubuntu releases for some
architectures.

  [ Daniel Baumann ]
  * Adding support for Ubuntu jaunty and natty, thanks to Cody A.W.
Somerville cody.somervi...@canonical.com.

  [ Philip Newborough ]
  * Update example path in 'all_binary_debian-installer-banner.sh'
example hook.

  [ Daniel Baumann ]
  * Account for the + character in packages for l-b.cgi
  * Updating includes for squeeze.
  * Updating syslinux theme for squeeze.
  * Removing wheezy splash.

 -- Daniel Baumann dan...@debian.org  Tue, 01 Feb 2011 22:32:56 +0100

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d48fa5c.20...@debian.org



Bug#611781: unblock: live-boot/2.0.15-1

2011-02-01 Thread Daniel Baumann
Package: release.debian.org

live-boot (2.0.15-1) unstable; urgency=low

  [ Daniel Baumann ]
  * Adding live-system script from live-tools.
  * Updating year in copyright.

  [ Marco Amadori ]
  * Adjust copyright entry in live-snapshot.

 -- Daniel Baumann dan...@debian.org  Tue, 01 Feb 2011 22:49:03 +0100

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d48fa88.3090...@debian.org



Bug#611782: unblock: syslinux-themes-debian/5-1

2011-02-01 Thread Daniel Baumann
Package: release.debian.org

syslinux-themes-debian (5-1) unstable; urgency=low

  * Including os-prober configuration file.
  * Updating squeeze theme (Closes: #603552).

 -- Daniel Baumann dan...@debian.org  Tue, 01 Feb 2011 23:00:55 +0100

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d48fac2.7030...@debian.org



Bug#611064: unblock: live-config/2.0.15-1

2011-01-25 Thread Daniel Baumann
Package: release.debian.org

live-config (2.0.15-1) unstable; urgency=low

  * Removing systemd support for 2.0 branch (Closes: #608326).
  * Tightening grep call for live user in /etc/passwd to not fail with
false-positives.
  * Removing headers in copyright file.
  * Updating year in copyright.
  * Updating year in manpage, examples and script files.
  * Correcting hostname typo in manpages.
  * Adding Italian manpage translation from skizzhg skiz...@gmx.com.

 -- Daniel Baumann dan...@debian.org  Tue, 25 Jan 2011 08:16:12 +0100

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d3e8307.3020...@debian.org



Bug#611059: unblock: live-manual/1:2.0.2-1

2011-01-24 Thread Daniel Baumann
Package: release.debian.org

live-manual (1:2.0.2-1) unstable; urgency=low

  [ Ben Armstrong ]
  * Fixing missing paren in Reporting bugs chapter.

  [ Carlo Stemberger ]
  * Proof-reading user_examples, Italian translation.
  * Conforming the style of user_example, Italian translation.
  * Fixing the fuzzy/zombie bug: the problem was the § character.
  * Unfuzzy live-manual.ssm.po, Italian translation.

  [ Ben Armstrong ]
  * Adding name tags to chapters to eliminate numeric filenames in HTML
multipage output.
  * Removing 'under heavy construction' from index, as we are now done.
  * Updating languages for commit 7f75631.

 -- Daniel Baumann dan...@debian.org  Tue, 25 Jan 2011 07:15:55 +0100

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d3e7912.6030...@debian.org



Re: Release Update: timings, status and awesomeness

2011-01-19 Thread Daniel Baumann
On 01/19/2011 10:24 AM, Holger Levsen wrote:
 I do understand you being annoyed (or unhappy or whatever) about this... 

the meaning of 'coordinate on a release date' is to *find* a suitable
date *in advance*, not declare one and expect others to adapt.

true, on the one hand, ignoring debian-live for that is pretty impolite,
on the other hand, more importantly, it would be nice to know, once and
for all, by an authoritative answer of the release-team if debian-live
is not anymore part of the release and that this is the reason why we
are ignored, or if the release-team just has imperfect workflows that
constantly 'forgets' about debian-live. that way, we can either stop
care ourselfs, or help improving their workflow.

also, i asked this more than once already, but never got any answer at all.

 But let me focus on the productive side now: does this release date work for 
 debian-live?

i'm supposed to stay for a couple of days abroad visiting a friend and
will have to rescedule, not sure how much the fees are for that.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d36bb8f.40...@debian.org



Re: Release Update: timings, status and awesomeness

2011-01-19 Thread Daniel Baumann
On 01/19/2011 03:39 PM, Philipp Kern wrote:
 well, we mainly follow [0].  The goal of this release is also to improve the
 documentation, as this was mainly copied from the Lenny point release notes.

lenny point releases do get communicated to live (see ml archives of
-live@).

but point releases (where -live builds *after* the publication of the
image, just as -cd does) are different from initial releases (where -cd
and -live are published *at the same time* as the release itself).

 There are various teams with whom this has to be coordinated in the end.  That
 also was one the points of the announcement to d-d-a.  It's true that the
 announcement actually says core teams, but in fact that did mean ftp-masters
 and maybe a few pings on IRC.  To that extent -live was likely forgotten
 in the process.[1]

has -cd been contacted in that process? if so, then -live shall be too.

tip for the next time: if 'core' team means ftp-master for you, just
write ftp-master in the first place.

 So what's still missing for Debian live?  I do see these bugs you / the
 live team filed with RC severity:

my vac ended on monday, and apart from #603974 which is a d-i bug, they
are fixed and i'm finishing the testing i started yesterday and
uploading then. but that's not what this mail is about..

 #603974 was reopened, I guess because the fix was incomplete?  There's no
 update to the bug report since Dec 26, 2010, so I don't know what the status 
 of
 this is.

d-i people need to comment as they know best about the changes that has
broken it.

 Did I miss critical issues?

#607225 (we don't even have an error handling for that case), #608042
(lacking progress bar, user sitts 20min in front of the machine and
thinks it's hanging, but then magically continues).

both are regressions in d-i and need d-i people to comment.

 Do you have any public pointers for this?

see various bts logs of my reported bugs where the release team things
that basically most live related bugs that are filled with serious can
be defered.

 Although I wonder if -live could just be handled by -cd during release, 
 anyway.

if -cd team handles the testing during the release process and handles
all support afterwards for the live images that they have build and
which we don't had any control over it, i'm fine by that.

 [0] http://wiki.debian.org/Teams/ReleaseTeam/ReleaseCheckList

wiki.d.o seems down, therefore could not check.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d372fb9.6000...@debian.org



Re: Release Update: timings, status and awesomeness

2011-01-18 Thread Daniel Baumann
On 01/18/2011 08:36 PM, Neil McGovern wrote:
 we now have a target date of the weekend of 5th
 and 6th February for the release. We have checked with core teams, and
 this seems to be acceptable for everyone.

neither Ben or me, nor the list have been contacted wrt/ debian-live.

is this the usual 'we completely forgot debian-live, it's so new we
couldn't possibly know that it's actually really existing', or, do you
don't consider live images part of the release anymore?

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d360726.7080...@debian.org



Bug#607939: unblock: live-build/2.0.11-1

2010-12-24 Thread Daniel Baumann
Package: release.debian.org

live-build (2.0.11-1) unstable; urgency=low

  [ Daniel Baumann ]
  * Disabling inclusion of GUI installer images on ubuntu.
  * Updating losetup-lukshome example hook to use blkid where available,
thanks to Clint Adams cl...@gnu.org (Closes: #607108).

  [ Cody A.W. Somerville ]
  * Fixing numbering of live kernels and initrd files when using
syslinux.

  [ Daniel Baumann ]
  * Removing unmaintained package lists (Closes: #598100).

 -- Daniel Baumann dan...@debian.org  Fri, 24 Dec 2010 18:49:26 +0100

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d14e09f.2040...@debian.org



Bug#607940: unblock: live-boot/2.0.14-1

2010-12-24 Thread Daniel Baumann
Package: release.debian.org

live-boot (2.0.14-1) unstable; urgency=low

  [ Steven Shiau ]
  * Removing the duplicated the in the live-boot.init script.

  [ Daniel Baumann ]
  * Correcting live hook to include mtdblock for syslinux memdisk usage,
thanks to Michael Prokop m...@grml.org.
  * Supporting /dev/mtdblock0 as valid device name (for memdisk boot),
thanks to Michael Prokop m...@grml.org.

 -- Daniel Baumann dan...@debian.org  Fri, 24 Dec 2010 18:51:57 +0100

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d14e0ca.6080...@debian.org



Bug#607941: unblock: live-manual/1:2.0.1-1

2010-12-24 Thread Daniel Baumann
Package: release.debian.org

live-manual (1:2.0.1-1) unstable; urgency=low

  [ Ben Armstrong ]
  * Fixing missing blank line which broke code block in Languages and
tasks section.
  * Removing accidentally committed build.log.
  * Adding more substance to installer customization chapter, plus
numerous spelling and formatting fixes.

  [ skizzhg ]
  * Updating user_customization-packages.ssi.po, italian translation.

  [ Ben Armstrong ]
  * Adding subsection on customizing installer contents.

  [ skizzhg ]
  * Translating fuzzy after new content update and proofreading, italian
translation.

  [ Ben Armstrong ]
  * Adding cleanup of sisu output mode to strip nav bars.
  * Adding specific instructions to make standard and live installers
coexist.

  [ Carlo Stemberger ]
  * Proof-reading user_basics translation in Italian.

  [ Ben Armstrong ]
  * Fixing path to auto script examples in Example 3.

  [ Carlo Stemberger ]
  * Fixing some little typos in user_basics.

  [ skizzhg ]
  * Adding user_customization-runtime.ssi.po, first italian translation.

  [ Ben Armstrong ]
  * Fixing consistent reference to config/ subdirectory in Overview of
tools.

  [ Lillo Sciascia ]
  * Proofreading user_customization-installer.ssi.po, italian
translation.

  [ skizzhg ]
  * Adding user_overview.ssi.po, first italian translation.

  [ Lillo Sciascia ]
  * Beginnig additional string user_overview.ssi.po, italian
translation.

  [ skizzhg ]
  * Translating fuzzy after new content update, italian translation.

  [ Ben Armstrong ]
  * More html content fixes: removal of remaining tables, unwanted toc
entries.

  [ skizzhg ]
  * Translating fuzzy and proofreading, user_customization-
packages.ssi.po, italian translation.
  [ Ben Armstrong ]
  * Unhiding top-level headings in 'single page' html output; removing
empty Development heading.

  [ Carlo Stemberger ]
  * Proof-reading and continuing translation of user_examples, in
Italian.

  [ Ben Armstrong ]
  * Fixing several inconsistent font style usages throughout the manual,
mostly 'config/' and 'lb config'.

  [ Daniel Baumann ]
  * Updating example dhcpd.conf for pxe for squeeze.
  * Adding reference to syslinux wiki for setting up a pxe server.
  * Unfuzzy an Italian translation string.

  [ Carlo Stemberger ]
  * Proof-reading project_coding-style, Italian translation.
  * Proof-reading manual/en/project_coding-style.ssi.

  [ Ben Armstrong ]
  * Fixing Metadata/Manifest removal to also apply to toc sidebar in
multi page view.

  [ Lillo Sciascia ]
  * Translating additional string project_procedures.ssi.po, italian
translation.
  * Translating additional string  user_basics.ssi.po, italian
translation.
  * Proof-reading user_customization-packages.ssi.po, italian
translation.
  * Translating additional string user_installation.ssi.po, italian
translation.
  * Translating other strig user_examples.ssi.po, italian translation.
  * Proof-reading user_customization-packages.ssi.po, italian
translation.
  * Proof reading user_customization-packages.ssi.po

  [ skizzhg ]
  * Proofreading user_customization-packages.ssi.po, italian translation

  [ Lillo Sciascia ]
  * Correcting a date, live-manual.ssm.po, italian translation.
  * Proofreading user_examples.ssi.po, italian translation.

  [ skizzhg ]
  * Proofreading user_customization-binary.ssi.po user_examples.ssi.po,
italian translation

  [ Ben Armstrong ]
  * Fixing style and content of VNC kiosk example.
  * Fixing netbooting section to clarify and use consistent font styles.
  * Adding tip about APT pinning with negative priority as alternative
to disabling recommends.
  * Updating translation strings for basics, package customization and
examples.

  [ skizzhg ]
  * Reverting translation of announcement template.
  * Translating fuzzy after new content update, italian translation.

  [ Ben Armstrong ]
  * Fixing error in VNC kiosk config; update example to tested, minimal
configuration.

  [ skizzhg ]
  * Translating fuzzy after new content update, italian translation..

  [ Ben Armstrong ]
  * Fixing missing command prompts in examples throught the manual and
other misc. errors nearby.
  * Adding Ben Armstrong to Uploaders.
  * Fixing one more missing prompt in Procedures, and adding header tag.

  [ skizzhg ]
  * Translating fuzzy after new content update, italian translation.

  [ Ben Armstrong ]
  * Fixing badly wrapped (by po4a) code blocks throughout manual by
indenting every line by one.
  * Adding new nokogiri build dependency in About manual.

  [ skizzhg ]
  * Proofreading, homogeneity of internal links between pages, italian
translation.

  [ Ben Armstrong ]
  * Expanding and correcting Reporting bugs chapter.

  [ skizzhg ]
  * Updating italian translation after updates of reporting bugs

  [ Daniel Baumann ]
  * Sorting language list in top index page alphabetically and removing
the bold markings

Re: Bug#606327: vmmemctl missing in squeeze

2010-12-18 Thread Daniel Baumann

On 12/18/2010 03:29 PM, Julien Cristau wrote:

What's up with this?


i have an initial version ready for experimental, which needs further 
testing and fixes though.


--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d0cd1a5.1070...@debian.org



Bug#607047: unblock: live-manual/2.0.0-1

2010-12-14 Thread Daniel Baumann

Package: release.debian.org

live-manual (1:2.0.0-1) unstable; urgency=medium

  [ Daniel Baumann ]
  * Bumping build-depends on sisu.

  [ Ben Armstrong ]
  * Fixing misc. spelling and other.
  * Clarifying specific package to install after build.
  * Restructuring languages material into runtime section, with some
additional new material.
  * Removing i18n chapter, now made redundant by section in runtime
chapter.

  [ Daniel Baumann ]
  * Enabling Italian translation with initial translations from Carlo
Stemberger carlo.stember...@gmail.com, Lillo Sciascia
lilloscias...@gmail.com and skizzhg skiz...@gmx.com.

  [ Ben Armstrong ]
  * Adding localization example.

  [ Carlo Stemberger ]
  * Correcting italian plural.
  * Changing git in Git.
  * Clarifying the way to write messages.
  * Clarifying a sentence.

  [ Ben Armstrong ]
  * Fixing: no longer include deleted internationalization chapter.

  [ Daniel Baumann ]
  * Adding links to build.log and manual-trace on topleve index page.

  [ Carlo Stemberger ]
  * Updating italian translation of about_manual.ssi.po.

  [ Ben Armstrong ]
  * Fixing two typos that broke build: one internal link, one encoding
in .po file.
  * Fixing broken header reference tag in po file.

  [ Carlo Stemberger ]
  * Fixing 2 typos: special chars forgotten.
  * Improving Italian translation.
  * Changing git in Git.
  * Fixing a little typo.
  * Beginning user_examples.ssi.po Italian translation.

  [ Ben Armstrong ]
  * Fixing typo: lb config, not lb_config.
  * Fixing output filename for manual key to match source filename.
  * Fixing text of link to tutorial 2 to match heading.
  * Clarifying procedures for applying patches and submitting
translations.
  * Catching up language strings for about manual, user basics, etc.

  [ Carlo Stemberger ]
  * Updating about_manual.ssi.po translation in Italian.
  * Continuing user_examples.ssi.po translation in Italian: tutorial 2
completed.

  [ Lillo Sciascia ]
  * Adding live-manual.ssm.po user_basics.ssi.po, first italian
translation.

  [ Carlo Stemberger ]
  * Clarifying translator workflow in about_manual.

  [ Ben Armstrong ]
  * Fixing usage: checkout is a noun, use 'check out' instead.
  * Undoing unnecessary formatting workaround.
  * Adding section on boot-time hooks.

  [ skizzhg ]
  * Adding project_bugs.ssi.po, first italian translation.
  * Correcting headers e some typos in live-manual.ssm.po, italian
translation.
  * Correcting nested double-quotes in project_bugs.ssi.po, italian
translation

  [ Daniel Baumann ]
  * Bumping build-depends on sisu to 2.7.9 which fixes cropping issues.

  [ Ben Armstrong ]
  * Fixing numerous broken internal links in Italian po file.
  * Updating translated manual from fixed po file.
  * Adding more complete explanation of usage of includes.

  [ Carlo Stemberger ]
  * Proof-reading Italian translation of live-manual.ssm
  * Updating about_manual, Italian translation.

  [ Ben Armstrong ]
  * Adding substance to binary local includes and binary includes
sections.

  [ Carlo Stemberger ]
  * Translating links in about_manual, in Italian.

  [ skizzhg ]
  * Adding project_coding-style.ssi.po, first italian translation.

  [ Daniel Baumann ]
  * Don't translate :license: sisu instruction in italian po file.
  * Fixing up fuzzy strings in Italian.
  * Fixing up fuzzy strings in French.

  [ Ben Armstrong ]
  * Adding debug levels 1 and 2 for debugging po4a issues.
  * Removing no longer needed message about pending 'Other' material.
  * Fixing missing continuation character in l10n example.
  * Removing remaining out of date material, allowing #597057 to be
finally closed.
  * Removing .pot and .po files that are no longer used and also contain
no translations.

  [ Daniel Baumann ]
  * Correcting language list on main html index page.
  * Using accents in Romanian link on main html index page.

  [ Carlo Stemberger ]
  * Translating user_installation in Italian.
  * Fixing a little typo in user_installation.

  [ skizzhg ]
  * Adding project_procedures.ssi.po, first italian translation.

  [ Carlo Stemberger ]
  * Beginning proof-reading of user_basics, in Italian: First steps
completed.

  [ skizzhg ]
  * Adding user_customization-overview.ssi.po, first italian
translation.
  * Proof-reading of user_basics.ssi.po, italian translation.

  [ Lillo Sciascia ]
  * Adding user_managing_a_configuratio.ssi.po, first italian
translation.
  * Adding user_customization-binary.ssi.po, first italian translation.
  * Adding user_customization-contents.ssi.po, first italian
translation.
  * Adding user_customization-installer.ssi.po, first italian
translation.

  [ Daniel Baumann ]
  * Updating virtual packages lists explenation.

  [ Ben Armstrong ]
  * Fixing missing link to Persistence section.
  * Fixing missing instructions to build live-config from source; unify
with live-boot section.
  * Fixing reduplication

Bug#607059: unblock: live-build/2.0.10-1

2010-12-14 Thread Daniel Baumann

Package: release.debian.org

live-build (2.0.10-1) unstable; urgency=low

  [ Ben Armstrong ]
  * Adding '--includes none' documentation in help and man page.

  [ Daniel Baumann ]
  * Marking afio in rescue list as sid and lenny only.
  * Adding debian-installer-launcher in prebuilt images.

  [ Ben Armstrong ]
  * Fixing numerous spelling and other minor details in lb_config man
page.
  * Adding *-desktop virtual package lists files (just comments for doc
purposes).

  [ Daniel Baumann ]
  * Adding debian-cd data for ubuntu releases.
  * Removing old ubuntu release (jaunty).
  * Applying patch from Cody A.W. Somerville
cody.somervi...@canonical.com to update kernel packages for ubuntu
in lb_binary_debian-installer.
  * Removing last live-helper remains in internal variables.
  * Removing old and outdated FAQ.
  * Mentioning Richard in authors file.
  * Updating credits file.
  * Removing unused name header in package lists.
  * Unfuzzying German manpage translations.
  * Marking ntop as lenny and sid only in rescue list.
  * Marking tob as lenny and sid only in rescue list.

 -- Daniel Baumann dan...@debian.org  Tue, 14 Dec 2010 13:05:39 +0100

--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d07643c.9030...@debian.org



Re: Bug#606327: vmmemctl missing in squeeze

2010-12-09 Thread Daniel Baumann

On 12/09/2010 12:54 PM, Mehdi Dogguy wrote:

Yes. Go ahead. If you want to apply some backported fixes, please let us
know
first.


for clarity sake, it's not about 'backporting' fixes, it's about 
completely replacing the existing open-vm-tools upstream version with 
another one.


--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d00c604.2010...@debian.org



Re: Bug#606327: vmmemctl missing in squeeze

2010-12-08 Thread Daniel Baumann

On 12/08/2010 10:14 PM, Mehdi Dogguy wrote:

Could you please provide a reasonable fix for
this bug?


the correct fix is to upload open-vm-tools 8.4.2-261024. will you accept 
this new-old upstream release for squeeze?


--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d000b67.3050...@debian.org



  1   2   3   4   >