diff options
author | 2012-06-01 22:20:36 -0700 | |
---|---|---|
committer | 2012-06-02 22:01:27 +0100 | |
commit | a3bb614a9fe39b0cbc597197e7428f70a6b99e8c (patch) | |
tree | 4ce2fbe7b7dde4b17ac13a7a236d85ce7c8dcefc /paludis/repositories | |
parent | d4661a13032a90c7be9a03b5c9ad11845f8cc2f6 (diff) | |
download | paludis-a3bb614a9fe39b0cbc597197e7428f70a6b99e8c.tar.gz paludis-a3bb614a9fe39b0cbc597197e7428f70a6b99e8c.tar.xz |
docs, configure.ac: libarchive[>=3.0]
Version 3.0 of libarchive fixes both xattr issues and GNU tar
support, so we now hard-dep on it. As a result, we can rip
out the code for creating paxballs. However, we'll keep unpaxinate
and the other machinery for extracting them so as not to break
old pbins.
Diffstat (limited to 'paludis/repositories')
-rw-r--r-- | paludis/repositories/e/e_repository.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/paludis/repositories/e/e_repository.cc b/paludis/repositories/e/e_repository.cc index 94a3ebc13..2b7a16a61 100644 --- a/paludis/repositories/e/e_repository.cc +++ b/paludis/repositories/e/e_repository.cc @@ -136,11 +136,7 @@ typedef std::map<FSPath, std::string, FSPathComparator> EAPIForFileMap; namespace { -#ifdef LIBARCHIVE_DOES_GNUTAR const std::string pbin_tar_extension = ".tar"; -#else - const std::string pbin_tar_extension = ".pax"; -#endif std::shared_ptr<FSPathSequence> get_master_locations( const std::shared_ptr<const ERepositorySequence> & r) |