hashrat 1.8.12+dfsg-1 MIGRATED to testing

2017-12-18 Thread Debian testing watch
FYI: The status of the hashrat source package
in Debian's testing distribution has changed.

  Previous version: 1.8.11+dfsg-1
  Current version:  1.8.12+dfsg-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
forensics-devel mailing list
forensics-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/forensics-devel


Bug#881783: libesedb: FTBFS on hurd-i386: PATH_MAX undeclared

2017-12-18 Thread Aaron M. Ucko
Hilko Bengen  writes:

> I will accept patches. :-)

That's fair.  I've attached a minimal patch that implements the pathconf
approach, as the fully dynamic approach looked like it would be
relatively involved here.  With this patch, the build succeeds, albeit
skipping most tests (I guess that's typical?):

PASS: test_library.sh
SKIP: test_esedbinfo.sh
SKIP: test_esedbexport.sh
SKIP: test_python_module.sh

Testsuite summary for libesedb 20170121

# TOTAL: 4
# PASS:  1
# SKIP:  3
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0


Thanks!

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
http://www.mit.edu/~amu/ | http://stuff.mit.edu/cgi/finger/?a...@monk.mit.edu

Index: libesedb/libcpath/libcpath_path.c
===
--- libesedb.orig/libcpath/libcpath_path.c
+++ libesedb/libcpath/libcpath_path.c
@@ -450,6 +450,9 @@ int libcpath_path_get_current_working_di
  libcerror_error_t **error )
 {
 	static char *function = "libcpath_path_get_current_working_directory";
+#if !defined(PATH_MAX)  &&  defined _PC_PATH_MAX
+	size_t PATH_MAX = pathconf(".", _PC_PATH_MAX);
+#endif
 
 	if( current_working_directory == NULL )
 	{
___
forensics-devel mailing list
forensics-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/forensics-devel

Bug#882538: jpeg-6b-steg/configure in outguess can be removed

2017-12-18 Thread Hilko Bengen
Control: tag -1 patch

Hi,

the configure file can be removed if the Makefile.in is patched to use
the existing makefile.unix to build the patched JPEG sources.

diff --git a/Makefile.in b/Makefile.in
index c911a5a..88a5717 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -45,7 +45,7 @@ extract: outguess
ln -sf outguess $@
 
 $(JPEGDEP):
-   cd $(JPEGDIR); $(MAKE) libjpeg.a
+   cd $(JPEGDIR); $(MAKE) -f makefile.unix CFLAGS=-DHAVE_STDC_HEADERS 
libjpeg.a
 
 install: all
$(INSTALL_PROG) -m 755 outguess $(install_prefix)$(bindir)

By the way, There *are* a few other packages that embed an old copy of
libjpeg with this specific configure file and without source: Search for
ijg_cv_have_prototypes on codesearch.debian.net.

Cheers,
-Hilko

___
forensics-devel mailing list
forensics-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/forensics-devel


Processed: jpeg-6b-steg/configure in outguess can be removed

2017-12-18 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 patch
Bug #882538 [src:outguess] outguess: missing source for jpeg-6b-steg/configure
Added tag(s) patch.

-- 
882538: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882538
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
forensics-devel mailing list
forensics-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/forensics-devel