Custom Query (619 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 619)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Owner Reporter Resolution Summary
#784 jwrober@… jwrober@… fixed DTD Syntax Doc: Needs an intro to XML DTD Syntax
Description

The doc is designed to explain in detail the ALFS DTD, but gives no real information on how an XML DTD is written.

#843 alfs-log@… archaic@… fixed problems with chowning the package dir
Description

Chown --recursive in addinguser.xml is at best unnecessary and at worst, can be dangerous. The reasoning is since the defacto standard in at least the 5.0-3 and current testing profiles is to copy the tarballs, and the umask is set to 022, it will not matter if the packages dir is chowned since user lfs only needs 755 on the dir and 644 on the tarballs (which will happen with umask 022). Now in a copy itself, it doesn't really matter (but doesn't add any value, either). But if you mount --bind your sources then either 2 things will happen. One, if you keep sources on RO media (like a CD) the build will die. Two, if the sources are on one of the host dirs, you are effectively modifying the host, which can cause unnecessary problems and should probably be avoided. The last problem is that in creatingtoolsdir.xml, the comment about mount --bind refers to a umount command which isn't in the profile anywhere.

#1025 alfs-log@… lfs@… worksforme Extraction Fail
Description

Hi, i had Problems with nALFS on 2 Packages "expect" and "bzip2".

bunzip2 -dc /tools/packages-6.1-testing-4532/bzip2-1.0.2.tar.bz2 | tar x

tar: This does not look like a tar archive tar: Skipping to next header tar: Archive contains obsolescent base-64 headers tar: Read 9728 bytes from - tar: Error exit delayed from previous errors

tar xjf /tools/packages-6.1-testing-4532/bzip2-1.0.2.tar.bz2 -> WORK

tar (GNU tar) 1.14.91 bzip2, a block-sorting file compressor. Version 1.0.2, 30-Dec-2001. gzip 1.3.5

My patch is now static int unpack_archive(const char *archive) {

char *decompressor = NULL; char *unpacker = NULL; char *command = NULL; int status = -1;

+ compression_type_e comp = get_compression_type(archive); + archive_format_e arch = get_archive_format (archive); + if (arch == ARCHIVE_TAR) { + const char *cmd = NULL; + if (comp == COMPRESS_GZ ) cmd = "tar xzf %s"; + if (comp == COMPRESS_BZ2) cmd = "tar xjf %s"; + if (cmd != NULL) { + Nprint_h("Unpacking tar x?f %s..", archive); + status = execute_command(cmd, archive); + return status; + } + } + decompressor = alloc_decompress_command(comp); + unpacker = alloc_unpack_command (arch);

  • decompressor = alloc_decompress_command(get_compression_type(archive));
  • unpacker = alloc_unpack_command (get_archive_format (archive));
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.