Bug#731709: grub-efi UEFI support based on debian-cd work complete (repos)

2016-07-31 Thread Michal Suchanek
Hello,

On 31 July 2016 at 09:35, adrian15  wrote:
> This new update tries to implement actual support for multiple bootloaders.
> It only enforces grub-legacy not to be an extra bootloader because it's
> current implementation in binary-iso is not compatible (without hacking)
> with multiple bootloaders.
>
>
> * Branch were I added these last improvement / fixes:
> https://github.com/rescatux/live-build/tree/efi_support_based_on_debian_cd_michal
> * Final rebased branched:
> https://github.com/rescatux/live-build/tree/efi_support_based_on_debian_cd_rebased_7

I skimmed through this final rebased branch and it looks generally good.

I would suggest removing the unrelated whitespace changes and
squashing commits that
rewrite new code with commits introducing said code.

I have no idea who can pull this so it can be released in Debian.

Thanks

Michal



Bug#731709: grub-efi UEFI support based on debian-cd work complete (repos)

2016-07-31 Thread adrian15
This new update tries to implement actual support for multiple 
bootloaders. It only enforces grub-legacy not to be an extra bootloader 
because it's current implementation in binary-iso is not compatible 
(without hacking) with multiple bootloaders.



* Branch were I added these last improvement / fixes: 
https://github.com/rescatux/live-build/tree/efi_support_based_on_debian_cd_michal
* Final rebased branched: 
https://github.com/rescatux/live-build/tree/efi_support_based_on_debian_cd_rebased_7



Rescatux 0.40 beta 7 has been built with 
efi_support_based_on_debian_cd_rebased_7 branch
and can be found here: 
http://www.supergrubdisk.org/2016/07/31/rescatux-0-40-beta-7-released/ .


As always feedback is welcome.

El 22/03/16 a las 07:18, Michal Suchanek escribió:

On 21 March 2016 at 23:06, adrian15  wrote:

El 21/03/16 a las 22:19, Michal Suchanek escribió:

So please consider either

1) fixing your current patch so there is no primary or first
bootloader and all installed bootloaders are equal

2) don't pretend you add support for multiple bootloaders when you are
not wiling to do so and just and some option like --bolt-on-grub-efi
which installs grub-efi if image type and filesystem is compatible
with grub-efi and fails the build otherwise

BTW it has been pointed out already that -eltorito-alt-boot is just
separator that starts new boot entry so there are no special
secondary/extra bootloader options. Any bootloader can be
first/second/third/whatever.

Thanks

Michal



--
Support free software. Donate to Super Grub Disk. Apoya el software 
libre. Dona a Super Grub Disk. http://www.supergrubdisk.org/donate/
>From 723661c38b48d0617c5c660ea140edfaef4699ce Mon Sep 17 00:00:00 2001
From: Adrian Gibanel Lopez 
Date: Mon, 18 Jan 2016 03:04:00 +
Subject: [PATCH 01/13] functions/default.sh : Define LB_PRIMARY_BOOTLOADER at
 the Set_defaults function which it's the right place where to do it

---
 functions/defaults.sh | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/functions/defaults.sh b/functions/defaults.sh
index ddf4b19..334984f 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -537,6 +537,8 @@ Set_defaults ()
 		esac
 	fi
 
+	LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
+
 	# Setting checksums
 	case "${LB_MODE}" in
 		progress-linux)
@@ -845,9 +847,6 @@ Check_defaults ()
 		fi
 	fi
 
-
-	LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
-
 	if [ "${LB_PRIMARY_BOOTLOADER}" = "syslinux" ]
 	then
 		# syslinux + fat or ntfs, or extlinux + ext[234] or btrfs
-- 
2.1.4

>From a506c9c03d61f9c09d816a9e24285c599c9bacdf Mon Sep 17 00:00:00 2001
From: Adrian Gibanel Lopez 
Date: Wed, 20 Jan 2016 00:53:53 +0100
Subject: [PATCH 02/13] Remove repeated LB_PRIMARY_BOOTLOADER definition

---
 scripts/build/binary_hdd | 2 --
 scripts/build/binary_iso | 2 --
 2 files changed, 4 deletions(-)

diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd
index 407901a..b45b2a9 100755
--- a/scripts/build/binary_hdd
+++ b/scripts/build/binary_hdd
@@ -67,8 +67,6 @@ do
 	esac
 done
 
-LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
-
 case ${LB_PRIMARY_BOOTLOADER} in
 		syslinux)
 			case ${LB_BINARY_FILESYSTEM} in
diff --git a/scripts/build/binary_iso b/scripts/build/binary_iso
index d8b1553..67dfc85 100755
--- a/scripts/build/binary_iso
+++ b/scripts/build/binary_iso
@@ -107,8 +107,6 @@ then
 	XORRISO_OPTIONS="${XORRISO_OPTIONS} -V \"${LB_ISO_VOLUME}\""
 fi
 
-LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
-
 # Handle xorriso architecture specific options
 case "${LB_PRIMARY_BOOTLOADER}" in
 	grub)
-- 
2.1.4

>From 06ad8acdc81e6bc2b460954bae57191ddb7d238a Mon Sep 17 00:00:00 2001
From: Adrian Gibanel Lopez 
Date: Mon, 18 Jan 2016 03:07:48 +
Subject: [PATCH 03/13] * Added: functions/bootloaders.sh . It has new
 bootloader functions that are heavily used in efi scenarios where a
 bootloader can act as a primary or a secondary bootloader.

Since the introduction of the new switch:

--bootloaders

you can setup it like this:

--bootloaders=syslinux,grub-efi

.

This means that syslinux is the primary bootloader and grub-efi is the secondary bootloader.

* Added new bootloader functions: Check_Non_Primary_Bootloader and Check_Non_Secondary_Bootloader.

These functions let each one of the bootloaders abort the build because
they cannot perform a role either as a primary bootloader or as a secondary bootloader.

* Added bootloader functions: Check_Primary_Bootloader_Role, Check_Secondary_Bootloader_Role and Check_Any_Bootloader_Role

These functions let bootloaders to force their default role in a single line.
---
 functions/bootloaders.sh | 128 +++
 1 file changed, 128 insertions(+)
 create mode 100644 functions/bootloaders.sh

diff --git a/functions/bootloaders.sh b/functions/bootloaders.sh
new file mode 100644
index 000.

Bug#833057: /usr/bin/extlinux: extlinux --install fails to boot if the rootfs is ext4

2016-07-31 Thread Neil Williams
Package: extlinux
Version: 3:6.03+dfsg-14
Severity: important
File: /usr/bin/extlinux

With vmdebootstrap, I'm trying to maintain extlinux support but the latest 
package
fails to make the image bootable if the rootfs is ext4. ext3 and ext2 work, so 
I'm
going to need to prevent vmdebootstrap images building ext4 if extlinux is used 
until
this is fixed. (Grub works fine with ext2, 3 and 4.)

When building on Jessie, this problem does not occur - only when building the VM
on stretch or sid. (This is a separate bug that syslinux requires the use of 
files
which are not included in the VM and cannot be installed using only the files of
the VM.)

vmdebootstrap --owner neil --verbose --extlinux --roottype ext4  --distribution 
sid --image sid4.img
 - results in an image which just outputs "no such file or directory" for the
   kernel and initrd files (which blatantly do exist in the specified paths if
   the image is mounted using loopback support.)

vmdebootstrap --owner neil --verbose --extlinux --roottype ext3  --distribution 
sid --image sid3.img
 - results in an image which boots normally using
   qemu-system-x86_64 -m 2048 -enable-kvm -drive format=raw,file=sid3.img 

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf, arm64

Kernel: Linux 4.6.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages extlinux depends on:
ii  libc6  2.23-4

Versions of packages extlinux recommends:
ii  syslinux-common  3:6.03+dfsg-14

extlinux suggests no packages.

-- debconf information:
  extlinux/install: false
* extlinux/no-bootloader-integration:
  extlinux/title:



Bug#833057: Downgrading extlinux does not help

2016-07-31 Thread Neil Williams
It's odd but verifiable - downgrading extlinux to the version in jessie
(3:6.03+dfsg-5+deb8u1) does not fix the problem. Building a new image
with the same options fails in exactly the same way. However, building
on jessie itself, does work.

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgpvdD9dFvCCj.pgp
Description: OpenPGP digital signature


Bug#731709: grub-efi UEFI support based on debian-cd work complete (repos)

2016-07-31 Thread adrian15
1) I'm glad Michal finally agrees with the overall implementation of 
multi bootloaders support.


2)

I have squashed some commits were it made sense.
I have fixed some commits descriptions.
I have removed a whitespace.

Here's the new rebased branch:

https://github.com/rescatux/live-build/tree/efi_support_based_on_debian_cd_rebased_9

git diff betweenefi_support_based_on_debian_cd_rebased_7 and 
efi_support_based_on_debian_cd_rebased_9 shows only a whitespace as a 
difference, so I have not even bothered to test this new branch.


3) wCPO from debian-live irc is willing to pull it.

Is there anyone else than can provide feedback on this patch / branch?

Either by:

* Installing live-build with this applied patch
* Building your iso and check if it boots in both BIOS and UEFI mode.
* Check non usual UEFI machines.

I suspect it's fine to wait for one week for feedback.
After that time I'll try to request a proper pull / insertion into 
Debian's live-build repo and probably into live-build package binaries.


adrian15

El 31/07/16 a las 10:12, Michal Suchanek escribió:

Hello,

On 31 July 2016 at 09:35, adrian15  wrote:

This new update tries to implement actual support for multiple bootloaders.
It only enforces grub-legacy not to be an extra bootloader because it's
current implementation in binary-iso is not compatible (without hacking)
with multiple bootloaders.


* Branch were I added these last improvement / fixes:
https://github.com/rescatux/live-build/tree/efi_support_based_on_debian_cd_michal
* Final rebased branched:
https://github.com/rescatux/live-build/tree/efi_support_based_on_debian_cd_rebased_7


I skimmed through this final rebased branch and it looks generally good.

I would suggest removing the unrelated whitespace changes and
squashing commits that
rewrite new code with commits introducing said code.

I have no idea who can pull this so it can be released in Debian.

Thanks

Michal



--
Support free software. Donate to Super Grub Disk. Apoya el software 
libre. Dona a Super Grub Disk. http://www.supergrubdisk.org/donate/
>From 01a9df8ce325c5df9762f0db86128614b4d3476c Mon Sep 17 00:00:00 2001
From: Adrian Gibanel Lopez 
Date: Mon, 18 Jan 2016 03:04:00 +
Subject: [PATCH 01/10] functions/default.sh : Define LB_PRIMARY_BOOTLOADER at
 the Set_defaults function which it's the right place where to do it

---
 functions/defaults.sh | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/functions/defaults.sh b/functions/defaults.sh
index ddf4b19..334984f 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -537,6 +537,8 @@ Set_defaults ()
 		esac
 	fi
 
+	LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
+
 	# Setting checksums
 	case "${LB_MODE}" in
 		progress-linux)
@@ -845,9 +847,6 @@ Check_defaults ()
 		fi
 	fi
 
-
-	LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
-
 	if [ "${LB_PRIMARY_BOOTLOADER}" = "syslinux" ]
 	then
 		# syslinux + fat or ntfs, or extlinux + ext[234] or btrfs
-- 
2.1.4

>From 0624064d44ed811aec5c43fabfd7b928688ed8e1 Mon Sep 17 00:00:00 2001
From: Adrian Gibanel Lopez 
Date: Wed, 20 Jan 2016 00:53:53 +0100
Subject: [PATCH 02/10] Remove repeated LB_PRIMARY_BOOTLOADER definition

---
 scripts/build/binary_hdd | 2 --
 scripts/build/binary_iso | 2 --
 2 files changed, 4 deletions(-)

diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd
index 407901a..b45b2a9 100755
--- a/scripts/build/binary_hdd
+++ b/scripts/build/binary_hdd
@@ -67,8 +67,6 @@ do
 	esac
 done
 
-LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
-
 case ${LB_PRIMARY_BOOTLOADER} in
 		syslinux)
 			case ${LB_BINARY_FILESYSTEM} in
diff --git a/scripts/build/binary_iso b/scripts/build/binary_iso
index d8b1553..67dfc85 100755
--- a/scripts/build/binary_iso
+++ b/scripts/build/binary_iso
@@ -107,8 +107,6 @@ then
 	XORRISO_OPTIONS="${XORRISO_OPTIONS} -V \"${LB_ISO_VOLUME}\""
 fi
 
-LB_PRIMARY_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }')
-
 # Handle xorriso architecture specific options
 case "${LB_PRIMARY_BOOTLOADER}" in
 	grub)
-- 
2.1.4

>From 9d1a983cc8fe12966d1a2c24a6ee0cfb419b3ce5 Mon Sep 17 00:00:00 2001
From: Adrian Gibanel Lopez 
Date: Mon, 18 Jan 2016 03:07:48 +
Subject: [PATCH 03/10] Added new multi bootloader helper functions * Added:
 functions/bootloaders.sh . This file adds bootloader functions that are
 heavily used in efi scenarios where a bootloader can act as a first or an
 extra bootloader.

Since the introduction of the new switch:

--bootloaders

you can setup it like this:

--bootloaders=syslinux,grub-efi

.

This means that syslinux is the first bootloader and grub-efi is the extra bootloader.

* Added new bootloader functions: Check_Non_First_Bootloader and Check_Non_Extra_Bootloader.

These functions let each one of the bootloaders abort the build because
they cannot perform a role either as a first bootloader or as an extra bootloader.

* Adde

Bug#832291: marked as done (bogofilter-{bdb, sqlite, tokyocabinet}: copyright file missing after upgrade (policy 12.5))

2016-07-31 Thread Debian Bug Tracking System
Your message dated Sun, 31 Jul 2016 18:33:48 +
with message-id 
and subject line Bug#832291: fixed in bogofilter 1.2.4+dfsg1-7
has caused the Debian Bug report #832291,
regarding bogofilter-{bdb, sqlite, tokyocabinet}: copyright file missing after 
upgrade (policy 12.5)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
832291: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832291
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bogofilter-bdb,bogofilter-sqlite,bogofilter-tokyocabinet
Version: 1.2.4+dfsg1-6
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

a test with piuparts revealed that your package misses the copyright
file after an upgrade, which is a violation of Policy 12.5:
https://www.debian.org/doc/debian-policy/ch-docs.html#s-copyrightfile

After the upgrade /usr/share/doc/$PACKAGE/ is just an empty directory.

This was observed on the following upgrade paths:

jessie -> stretch

>From the attached log (scroll to the bottom...):

1m18.5s ERROR: WARN: Inadequate results from running adequate!
  bogofilter-bdb: missing-copyright-file /usr/share/doc/bogofilter-bdb/copyright

  MISSING COPYRIGHT FILE: /usr/share/doc/bogofilter-bdb/copyright
  # ls -lad /usr/share/doc/bogofilter-bdb
  drwxr-xr-x 2 root root 40 Jun 10 11:52 /usr/share/doc/bogofilter-bdb
  # ls -la /usr/share/doc/bogofilter-bdb/
  total 0
  drwxr-xr-x   2 root root   40 Jun 10 11:52 .
  drwxr-xr-x 109 root root 2300 Jun 10 11:52 ..


Additional info may be available here:
https://wiki.debian.org/MissingCopyrightFile

Note that dpkg intentionally does not replace directories with symlinks
and vice versa, you need the maintainer scripts to do this.
See in particular the end of point 4 in
https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-unpackphase

It is recommended to use the dpkg-maintscript-helper commands
'dir_to_symlink' and 'symlink_to_dir' (available since dpkg 1.17.14)
to perform the conversion, ideally using d/$PACKAGE.maintscript.
Do not forget to add 'Pre-Depends: ${misc:Pre-Depends}' in d/control.
See dpkg-maintscript-helper(1) and dh_installdeb(1) for details.


cheers,

Andreas


bogofilter-bdb_1.2.4+dfsg1-6.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: bogofilter
Source-Version: 1.2.4+dfsg1-7

We believe that the bug you reported is fixed in the latest version of
bogofilter, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 832...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Herbert Parentes Fortes Neto  (supplier of updated bogofilter 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 28 Jul 2016 10:47:54 -0300
Source: bogofilter
Binary: bogofilter bogofilter-bdb bogofilter-sqlite bogofilter-tokyocabinet 
bogofilter-common
Architecture: source amd64 all
Version: 1.2.4+dfsg1-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Herbert Parentes Fortes Neto 
Description:
 bogofilter - fast Bayesian spam filter (dummy package)
 bogofilter-bdb - fast Bayesian spam filter (Berkeley DB)
 bogofilter-common - fast Bayesian spam filter (common files)
 bogofilter-sqlite - fast Bayesian spam filter (sqlite)
 bogofilter-tokyocabinet - fast Bayesian spam filter (tokyocabinet)
Closes: 832291
Changes:
 bogofilter (1.2.4+dfsg1-7) unstable; urgency=medium
 .
   * QA upload. (Closes: #832291). Thanks Andreas Beckmann.
   * debian/copyright:
   - updated my email address.
   * debian/control:
   - Pre-Depends: ${misc:Pre-Depends} added  to bogofilter and
bogofilter-{bdb, sqlite, tokyocabinet}
   * debian/bogofilter.links removed:
   - Not necessary. dh_installdocs is taking care of it.
   * debian/bogofilter.preinst (created):
 debian/bogofilter-bdb.preinst:
 debian/bogofilter-sqlite.preinst:
 debian/bogofilter-tokyocabinet.preinst:
   - using the script from https://wiki.debian.org/MissingCopyrightFile
Checksums-Sha1:
 0fca212e4c1f0349be8d059a3565f3c6dce88f16 2278 bogofilter_1.2.4+dfsg1-7.dsc
 418d6e256549583461c5b91936dc57b55fc6e0b5 19036 
bogofilter_1.2.4+dfsg

bogofilter_1.2.4+dfsg1-7_amd64.changes ACCEPTED into unstable

2016-07-31 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 28 Jul 2016 10:47:54 -0300
Source: bogofilter
Binary: bogofilter bogofilter-bdb bogofilter-sqlite bogofilter-tokyocabinet 
bogofilter-common
Architecture: source amd64 all
Version: 1.2.4+dfsg1-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Herbert Parentes Fortes Neto 
Description:
 bogofilter - fast Bayesian spam filter (dummy package)
 bogofilter-bdb - fast Bayesian spam filter (Berkeley DB)
 bogofilter-common - fast Bayesian spam filter (common files)
 bogofilter-sqlite - fast Bayesian spam filter (sqlite)
 bogofilter-tokyocabinet - fast Bayesian spam filter (tokyocabinet)
Closes: 832291
Changes:
 bogofilter (1.2.4+dfsg1-7) unstable; urgency=medium
 .
   * QA upload. (Closes: #832291). Thanks Andreas Beckmann.
   * debian/copyright:
   - updated my email address.
   * debian/control:
   - Pre-Depends: ${misc:Pre-Depends} added  to bogofilter and
bogofilter-{bdb, sqlite, tokyocabinet}
   * debian/bogofilter.links removed:
   - Not necessary. dh_installdocs is taking care of it.
   * debian/bogofilter.preinst (created):
 debian/bogofilter-bdb.preinst:
 debian/bogofilter-sqlite.preinst:
 debian/bogofilter-tokyocabinet.preinst:
   - using the script from https://wiki.debian.org/MissingCopyrightFile
Checksums-Sha1:
 0fca212e4c1f0349be8d059a3565f3c6dce88f16 2278 bogofilter_1.2.4+dfsg1-7.dsc
 418d6e256549583461c5b91936dc57b55fc6e0b5 19036 
bogofilter_1.2.4+dfsg1-7.debian.tar.xz
 24ab2dbe938f5be91e314577397d70d239a02935 695196 
bogofilter-bdb-dbgsym_1.2.4+dfsg1-7_amd64.deb
 153bf19b6fb6eeebc09b9cee5d36d888650ac2d9 136134 
bogofilter-bdb_1.2.4+dfsg1-7_amd64.deb
 2a95c92beefb858bec9157233157981abf079c19 212510 
bogofilter-common_1.2.4+dfsg1-7_all.deb
 88a60f2f4cc4e9e3cefe28a91795b10c815a03f2 464234 
bogofilter-sqlite-dbgsym_1.2.4+dfsg1-7_amd64.deb
 55daf7d8f550250ea4991f01ac845523316b63b5 120490 
bogofilter-sqlite_1.2.4+dfsg1-7_amd64.deb
 6ccc86b84eccc418ff2c925f1e2c23a3906fedf5 460222 
bogofilter-tokyocabinet-dbgsym_1.2.4+dfsg1-7_amd64.deb
 8d4174244a4b57c15bb32ecf9ff93b8c0f84f29b 118800 
bogofilter-tokyocabinet_1.2.4+dfsg1-7_amd64.deb
 cfe111893304dc5b60b1106a05b89e99d0254d6d 1318 bogofilter_1.2.4+dfsg1-7_all.deb
Checksums-Sha256:
 5f4c47d92551428157659d5c8d269c13a2aca23f3f354b5bf598a4f1f8629c18 2278 
bogofilter_1.2.4+dfsg1-7.dsc
 62b0603e1d2e2c4c5ba904fcd6e2d02a17216b33f80f4a2914c1b2cc02f5b312 19036 
bogofilter_1.2.4+dfsg1-7.debian.tar.xz
 6233ff4c6a2fc9c6e0d054e369e78f160be82b534db1f9cb9e893fa6f2dd177b 695196 
bogofilter-bdb-dbgsym_1.2.4+dfsg1-7_amd64.deb
 ce35138a51e508b7d36d94bb758bb369ac8b8de69674660d9f6a5cfe7e6a4a55 136134 
bogofilter-bdb_1.2.4+dfsg1-7_amd64.deb
 2ecb9d70f754daa32c6d9d6ec631ef841887e0ed8da8b997d82b7677c368f199 212510 
bogofilter-common_1.2.4+dfsg1-7_all.deb
 4125ebc344f17bdde5d3758755bd78acde51114bee73d488ae498a3ac8056f2a 464234 
bogofilter-sqlite-dbgsym_1.2.4+dfsg1-7_amd64.deb
 1464cf1ff87ee7d65ba6c0a09c2c82d81daf1885e76c7c9e905db603f08c1318 120490 
bogofilter-sqlite_1.2.4+dfsg1-7_amd64.deb
 7414a73e93ae953e97d73ee34213952bd2d4a2726e767d8264bc8e247f30d6da 460222 
bogofilter-tokyocabinet-dbgsym_1.2.4+dfsg1-7_amd64.deb
 6c05633edf13bcbb7a3b61bdb7da077b53eefc7ad309a0ebd8851638f5282fb5 118800 
bogofilter-tokyocabinet_1.2.4+dfsg1-7_amd64.deb
 bf5cfd7258881be8d744532698b94dabb7e99bbfd5254d06fea6638e9da6b5ed 1318 
bogofilter_1.2.4+dfsg1-7_all.deb
Files:
 3640a269ab5970bd5e50bb90edfbaa82 2278 mail optional 
bogofilter_1.2.4+dfsg1-7.dsc
 6a0ef3ae800d3d49fbc54f44411c8a7f 19036 mail optional 
bogofilter_1.2.4+dfsg1-7.debian.tar.xz
 0c0cf74143b7a32d188b33a101a83756 695196 debug extra 
bogofilter-bdb-dbgsym_1.2.4+dfsg1-7_amd64.deb
 69dc50a4b92a9891bd0e740e79196075 136134 mail optional 
bogofilter-bdb_1.2.4+dfsg1-7_amd64.deb
 f1879d417a1fe1177250c52e8ed6a272 212510 mail optional 
bogofilter-common_1.2.4+dfsg1-7_all.deb
 b6da71b628d2ab1a0a4d2220ffdc3ba3 464234 debug extra 
bogofilter-sqlite-dbgsym_1.2.4+dfsg1-7_amd64.deb
 176be871f820b1ee286acd17d79a34ea 120490 mail extra 
bogofilter-sqlite_1.2.4+dfsg1-7_amd64.deb
 8b324afb8fce63bd22ddd5193a6d5c0c 460222 debug extra 
bogofilter-tokyocabinet-dbgsym_1.2.4+dfsg1-7_amd64.deb
 28dc8cd476beac696c278e4e6e4499e8 118800 mail extra 
bogofilter-tokyocabinet_1.2.4+dfsg1-7_amd64.deb
 0da3c3077976b1f9de4e028d99372dd2 1318 mail optional 
bogofilter_1.2.4+dfsg1-7_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXmidxAAoJEFUlbyisYGEaCr8P/2nWPjXH2BLlyFRQnMFFWiQQ
IKFHh82f+2UnsXmWz3IxhiOd2RbYwlQDoSJQ+OtSf66ML92aRvw9YBq96w77mS8k
qeJaK+a1hQ/HYqqiGKmN9p3KgMFCul2Mkmkl6u3+N4uR/yZmt7BwRYK9IQuqh7ua
QJT8UPZu0REhxseG5N/KTfY85uzdm31dv1M0Tq7giZudxq4/72L/dnXY+uXhcAGt
L2sm/jky/rdCDCASqA/xC8IxxkgX6T5dPl+hrCYPm6rBdsiZcc+nl1cXh6KGAkHX
nnjmOVC7JV6m77jdBdBkil6HImmwbv/kMgFxjkuSIXa3RgUhLYu40mCNYV2/G9/J
d2TTeJ4giq2XsmL2yFOQaeg8A9A6ZzOz/B0vprFXsLDQ0Pb8UlLQzHPKni8Nj9Zj
FV0S4ofWir0T2vsQp0LS2tcQd8m31lb7v4guy8EFmDdXr/vb6

Twitter Connector

2016-07-31 Thread Twitter Connector
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
http://www.w3.org/1999/xhtml";>



BuckGet.com


http://buckget.com/wp-login.php?action=wordpress_social_authenticate&mode=login&provider=Twitter&redirect_to=http%3A%2F%2Fbuckget.com%2Fwp-login.php%3Faction%3Dregister";>Click
 here to connect with Twitter
http://buckget.com/wp-login.php?action=wordpress_social_authenticate&mode=login&provider=Twitter&redirect_to=http%3A%2F%2Fbuckget.com%2Fwp-login.php%3Faction%3Dregister";>http://buckget.com/follow_us_in_twitter.gif"; alt="Click here to connect 
with Twitter" class="aligncenter" />



Processed: bts

2016-07-31 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> clone 832998 -1
Bug #832998 [src:live-build] live-build: please expose SOURCE_DATE_EPOCH when 
running chroot commands
Bug 832998 cloned as bug 833118
> reassign -1 open-infrastructure-system-build
Bug #833118 [src:live-build] live-build: please expose SOURCE_DATE_EPOCH when 
running chroot commands
Bug reassigned from package 'src:live-build' to 
'open-infrastructure-system-build'.
No longer marked as found in versions live-build/1:20151215.
Ignoring request to alter fixed versions of bug #833118 to the same values 
previously set
> retitle -1 please expose SOURCE_DATE_EPOCH when running chroot commands
Bug #833118 [open-infrastructure-system-build] live-build: please expose 
SOURCE_DATE_EPOCH when running chroot commands
Changed Bug title to 'please expose SOURCE_DATE_EPOCH when running chroot 
commands' from 'live-build: please expose SOURCE_DATE_EPOCH when running chroot 
commands'.
> severity -1 normal
Bug #833118 [open-infrastructure-system-build] please expose SOURCE_DATE_EPOCH 
when running chroot commands
Severity set to 'normal' from 'wishlist'
> tag -1 pending
Bug #833118 [open-infrastructure-system-build] please expose SOURCE_DATE_EPOCH 
when running chroot commands
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
832998: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832998
833118: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833118
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems