Bug#609757: ITP: libmd -- Message Digest functions from BSD systems

2016-02-10 Thread Guillem Jover
Control: reassign -1 wnpp
Control: retitle -1 ITP: libmd -- Message Digest functions from BSD systems
Control: severity -1 wishlist
Control: owner -1 !

Hi!

On Mon, 2011-06-27 at 00:02:51 +0200, Guillem Jover wrote:
> Few reasons, one has been because libmd is more generic than something
> like libsbuf and it's prone to be used more widely than anything in
> freebsd-libs, so it might make sense to promote it to standard or
> higher for example. The other reason is that the licenses in the
> FreeBSD tree are a bit unfortunate so my plan is to use the OpenBSD
> implementation instead.
> 
> Just have to commit my latest changes.

Ok, I'm in the process of releasing libmd upstream, and will proceed
with the upload to Debian. Here's the ITP information:

  * Package name: libmd
  * Version : 0.0.0
  * URL : https://www.hadrons.org/software/libmd/
  * License : BSD-3, BSD-2, ISC, Beerware, PD
  * Description : Message Digest functions from BSD systems

Regards,
Guillem



Bug#802621: samba: FTBFS on kfreebsd-*: UnboundLocalError: local variable 'CTDB_SYSTEM_SRC' referenced before assignment

2016-02-10 Thread Steven Chamberlain
Package: samba
Version: 2:4.2.1+dfsg-1
Followup-For: Bug #802621

Hi!

The FTBFS on kfreebsd since samba 4.2.x is due to a really trivial typo
in an upstream wscript file.  Please find patch for this attached.
Thanks!

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 10.1-0-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- a/ctdb/wscript	2016-02-11 01:24:34.0 +
+++ b/ctdb/wscript	2016-02-11 01:39:24.739728329 +
@@ -306,7 +306,7 @@
 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_aix.c')
 elif sys.platform.startswith('freebsd'):
 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_freebsd.c')
-elif sys.platform == 'kfreebsd':
+elif sys.platform.startswith('gnukfreebsd'):
 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_kfreebsd.c')
 elif sys.platform == 'gnu':
 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_gnu.c')