Author: Antero Mejr Upstream status: I didn't report upstream because they don't have an issue tracker and PRs require signing the Google CLA. If someone willing to sign the CLA wants to submit the patch, please go ahead. diff --git a/tools/cpp/src/cpp-build/generate_geocoding_data.cc b/tools/cpp/src/cpp-build/generate_geocoding_data.cc index 021cf5c8..5948e140 100644 --- a/tools/cpp/src/cpp-build/generate_geocoding_data.cc +++ b/tools/cpp/src/cpp-build/generate_geocoding_data.cc @@ -88,6 +88,7 @@ class DirEntry { const std::string& name() const { return name_; } DirEntryKinds kind() const { return kind_; } + bool operator<(const DirEntry& d) { return name_ < d.name(); } private: std::string name_; @@ -115,6 +116,7 @@ bool ListDirectory(const string& path, vector* entries) { errno = 0; entry = readdir(dir); if (entry == NULL) { + std::sort(entries->begin(), entries->end()); return errno == 0; } if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) { href='/guix/refs/?id=f6b4d395fd321d43fd548ba832c78320ac3f8d51'>refslogtreecommitdiff
AgeCommit message (Expand)Author
2020-02-23gnu: debootstrap: Update to 1.0.118...The attached patch has been tested by creating arm64, mipsel & amd64 chroots and the amd64 one has been actually run. -- Vincent Legoll From a23b962c21e20c72f425675e6ea6e11cd0f944d0 Mon Sep 17 00:00:00 2001 From: Vincent Legoll <vincent.legoll@gmail.com> Date: Fri, 21 Feb 2020 23:34:40 +0100 Subject: [PATCH] gnu: debootstrap: Update to 1.0.118. * gnu/packages/debian.scm (debootstrap): Update to 1.0.118. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Vincent Legoll
2019-06-05gnu: debootstrap: Workaround for PATH issues....* gnu/packages/debian (debootstrap): [arguments]: Substitute PATH to include $PATH. [description]: Remove obsolete workaround from description. Vagrant Cascadian
2019-06-01gnu: debootstrap: Update to 114....* gnu/packages/debian (debootstrap): Update to 114. Vagrant Cascadian
2019-06-01gnu: debian-archive-keyring: Update to 2019.01....* gnu/packages/debian (debian-archive-keyring): Update to 2019.01. Vagrant Cascadian
2018-12-01gnu: debootstrap: Update to 1.0.111....* gnu/packages/debian.scm (debootstrap): Update to 1.0.111. Efraim Flashner
2018-12-01gnu: debootstrap: Update build....* gnu/packages/debian.scm (debootstrap)[arguments]: Update the substitutes during the custom 'patch-source phase. Add custom 'wrap-executable phase. [inputs]: Remove coreutils, wget. Add tzdata. [propagated-inputs]: Remove binutils, gnupg. Move perl ... [native-inputs]: ... to here. [description]: Add implementation hint. Efraim Flashner