Re: [Tails-dev] MAC spoofing: current status? [Was [RFC] Design (and prototype) for MAC spoofing in Tails]

2013-12-15 Thread intrigeri
Hi,

anonym wrote (03 Dec 2013 00:33:43 GMT) :
 Definitely. I'll return to this post in a few days (when I have more
 time on my hands) with more affirmative answers + proper bugs/tasks. See
 this post more as a heads up.

Ping?

Cheers!
-- 
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc
___
tails-dev mailing list
tails-dev@boum.org
https://mailman.boum.org/listinfo/tails-dev


[Tails-dev] Please review'n'merge bugfix/use-our-own-sqlite

2013-12-15 Thread intrigeri
Hi,

Mike Homey has made his last Iceweasel package use some in-tree
libraries instead of the system one, and hence has removed some of
these libraries from mozilla.d.n's squeeze-backports repository.

Too bad we need these libraries at ISO build time. So, I've imported
the .deb's we need (sqlite, nss, nspr) into our own APT repository.
This will be useless once we base our own Iceweasel on the last
official one that was out today (WIP), but this fixes the Tails ISO
build for the time being.

Please review'n'merge bugfix/use-our-own-sqlite (sic) into stable,
devel and experimental. I've not done a full build yet, but at least
it goes further than the stage at which it used to fail.

Cheers,
-- 
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc
___
tails-dev mailing list
tails-dev@boum.org
https://mailman.boum.org/listinfo/tails-dev


Re: [Tails-dev] Please review'n'merge bugfix/tor-0.2.4-is-stable [Was: Build broken, stay tuned (or try bugfix/tor-0.2.4-is-stable)]

2013-12-15 Thread bertagaz
On Fri, Dec 13, 2013 at 11:50:06PM +0100, intrigeri wrote:
 Hi,
 
 intrigeri wrote (13 Dec 2013 13:38:02 GMT) :
  all our branches currently fail to build since deb.tpo's
  tor-0.2.4.x-squeeze APT source was deprecated, as Tor 0.2.4.x was
  declared stable.
 
 = please review bugfix/tor-0.2.4-is-stable and merge it into stable
 and devel. No ticket.

This has been merged together with the bugfix/use-our-own-sqlite which
contained it.

bert.
___
tails-dev mailing list
tails-dev@boum.org
https://mailman.boum.org/listinfo/tails-dev


Re: [Tails-dev] Please review'n'merge bugfix/use-our-own-sqlite

2013-12-15 Thread bertagaz
On Sun, Dec 15, 2013 at 04:31:17PM +0100, intrigeri wrote:
 Hi,
 
 Mike Homey has made his last Iceweasel package use some in-tree
 libraries instead of the system one, and hence has removed some of
 these libraries from mozilla.d.n's squeeze-backports repository.
 
 Too bad we need these libraries at ISO build time. So, I've imported
 the .deb's we need (sqlite, nss, nspr) into our own APT repository.
 This will be useless once we base our own Iceweasel on the last
 official one that was out today (WIP), but this fixes the Tails ISO
 build for the time being.
 
 Please review'n'merge bugfix/use-our-own-sqlite (sic) into stable,
 devel and experimental. I've not done a full build yet, but at least
 it goes further than the stage at which it used to fail.

You were right, with this branch the build works again. Merged in Git and
APT.

bert.
___
tails-dev mailing list
tails-dev@boum.org
https://mailman.boum.org/listinfo/tails-dev


Re: [Tails-dev] Persistence: display nicer paths

2013-12-15 Thread intrigeri
Hi,

intrigeri wrote (22 Nov 2013 21:21:44 GMT) :
 Andres Gomez Ramirez wrote (21 Nov 2013 16:03:58 GMT) :
 Ok no problem, attached is the patch for Persistence: display nicer paths
 feature - https://labs.riseup.net/code/issues/5311.

 Cool, thanks. I'm very happy to see someone else than me starting to
 touch our Perl code in non-trivial ways :)

 Here's an initial review.

 First, it seems to me that this patch is based on an older,
 pre-split-to-tails-perl5lib, version of tails-persistence-setup.
 First thing is then to rebase it on top of the current master branch.
 Sorry for the bad timing :/

 +has 'partition_file' =
 +lazy_build rw Str,
 +documentation = q{The persistent partition file, e.g. /dev/sdb1.};

 This attribute's name seems unclear to me. First, it should be
 persistence_partition_* for consistency with other similar attributes.
 For the rest of the name, I have no particularly awesome proposal,
 perhaps simply persistence_partition_device_file, to match
 udisks' wording?

 Also, this attribute should have the NoGetopt metaclass, since it is
 not suitable to be set on the command-line.

 +sub _build_partition_file {
 +my $self = shift;
 +
 +my $device_file = $self-get_device_property($self-device, 
 'DeviceFile');
 +my $partition_number =
  $self-get_device_property($self-persistence_partition,
  'PartitionNumber');
 +
 +$device_file.$partition_number;

 This naming scheme is not correct for all kinds of supported devices,
 e.g. SD cards plugged into a reader wired via SDIO. See commit
 83637f4e for details. Doesn't $self-persistence_partition have
 a DeviceFile property that we could use instead of manually appending
 the partition number this way? If it has, let's simply use it. Else,
 using the info from commit 83637f4e should be good enough.

 Also, DeviceFilePresentation might be nicer in some cases that we
 might want to support in the future, so I would pick that one
 personally instead of DeviceFile, if it is supported by
 Squeeze's udisks.

  has 'persistence_partition_size' = required ro Int;
 -
 +has 'partition_file' = required ro Str;

 The two empty lines between attributes and constructors was there on
 purpose. I'm not pretending the whole codebase is consistent, but I'm
 trying to have two empty lines before each =head1. Refraining from
 doing unrelated whitespace changes in a patch is generally a good
 thing, anyway.

 I can't wait to see the second iteration! :)

Ping?

(No big emergency, as this is material for 0.23, that should freeze
in February.)

Cheers,
-- 
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc
___
tails-dev mailing list
tails-dev@boum.org
https://mailman.boum.org/listinfo/tails-dev