diff options
author | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2021-02-20 16:02:15 -0800 |
---|---|---|
committer | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2021-02-20 16:02:15 -0800 |
commit | 5d8d4fbbcb5c5de9370711c19bb3510210989a98 (patch) | |
tree | d0754921833f413b7eb93fb6bb1b1c8a22fb0498 /libs/ibrdtn | |
parent | d651082447b4392399a40ea1ae11d0bce4bfe83a (diff) |
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset:
find -L package/feeds/packages/ -name patches | \
sed 's/patches$/refresh/' | sort | xargs make
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Diffstat (limited to 'libs/ibrdtn')
4 files changed, 0 insertions, 12 deletions
diff --git a/libs/ibrdtn/patches/010-Add-operator-to-Bundle-block_elem.patch b/libs/ibrdtn/patches/010-Add-operator-to-Bundle-block_elem.patch index fe535089a..1fcec0b97 100644 --- a/libs/ibrdtn/patches/010-Add-operator-to-Bundle-block_elem.patch +++ b/libs/ibrdtn/patches/010-Add-operator-to-Bundle-block_elem.patch @@ -9,8 +9,6 @@ the algorithm implemenetations. ibrdtn/data/Bundle.h | 3 +++ 1 file changed, 3 insertions(+) -diff --git a/ibrdtn/data/Bundle.h b/ibrdtn/data/Bundle.h -index 036a2a6fb..9bbc066d7 100644 --- a/ibrdtn/data/Bundle.h +++ b/ibrdtn/data/Bundle.h @@ -69,6 +69,9 @@ namespace dtn diff --git a/libs/ibrdtn/patches/020-Use-const-iterator-in-const-function-of-MemoryBundle.patch b/libs/ibrdtn/patches/020-Use-const-iterator-in-const-function-of-MemoryBundle.patch index d1e2c588d..d585f3b75 100644 --- a/libs/ibrdtn/patches/020-Use-const-iterator-in-const-function-of-MemoryBundle.patch +++ b/libs/ibrdtn/patches/020-Use-const-iterator-in-const-function-of-MemoryBundle.patch @@ -7,8 +7,6 @@ Subject: [PATCH] Use const iterator in const function of MemoryBundleSet ibrdtn/data/MemoryBundleSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -diff --git a/ibrdtn/data/MemoryBundleSet.cpp b/ibrdtn/data/MemoryBundleSet.cpp -index 987342e6d..b67fdd393 100644 --- a/ibrdtn/data/MemoryBundleSet.cpp +++ b/ibrdtn/data/MemoryBundleSet.cpp @@ -134,7 +134,7 @@ namespace dtn diff --git a/libs/ibrdtn/patches/030-Use-std-streamoff-instead-of-std-streampos.patch b/libs/ibrdtn/patches/030-Use-std-streamoff-instead-of-std-streampos.patch index 0e29a132e..8c9ac77fd 100644 --- a/libs/ibrdtn/patches/030-Use-std-streamoff-instead-of-std-streampos.patch +++ b/libs/ibrdtn/patches/030-Use-std-streamoff-instead-of-std-streampos.patch @@ -8,8 +8,6 @@ Subject: [PATCH] Use std::streamoff instead of std::streampos ibrdtn/data/Dictionary.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) -diff --git a/ibrdtn/data/BundleMerger.cpp b/ibrdtn/data/BundleMerger.cpp -index 1cd20c522..b71a0849b 100644 --- a/ibrdtn/data/BundleMerger.cpp +++ b/ibrdtn/data/BundleMerger.cpp @@ -119,7 +119,7 @@ namespace dtn @@ -21,8 +19,6 @@ index 1cd20c522..b71a0849b 100644 const dtn::data::PayloadBlock &p = obj.find<dtn::data::PayloadBlock>(); const Length plength = p.getLength(); -diff --git a/ibrdtn/data/Dictionary.cpp b/ibrdtn/data/Dictionary.cpp -index 6299e66f3..208f90488 100644 --- a/ibrdtn/data/Dictionary.cpp +++ b/ibrdtn/data/Dictionary.cpp @@ -154,11 +154,11 @@ namespace dtn diff --git a/libs/ibrdtn/patches/040-Add-operator-to-BundleID-and-MetaBundle.patch b/libs/ibrdtn/patches/040-Add-operator-to-BundleID-and-MetaBundle.patch index df9f27f1a..2f5611111 100644 --- a/libs/ibrdtn/patches/040-Add-operator-to-BundleID-and-MetaBundle.patch +++ b/libs/ibrdtn/patches/040-Add-operator-to-BundleID-and-MetaBundle.patch @@ -11,8 +11,6 @@ Signed-off-by: Rosen Penev <rosenp@gmail.com> ibrdtn/data/Bundle.h | 2 ++ 2 files changed, 12 insertions(+) -diff --git a/ibrdtn/data/Bundle.cpp b/ibrdtn/data/Bundle.cpp -index f515860..943544e 100644 --- a/ibrdtn/data/Bundle.cpp +++ b/ibrdtn/data/Bundle.cpp @@ -71,11 +71,21 @@ namespace dtn @@ -37,8 +35,6 @@ index f515860..943544e 100644 bool Bundle::operator!=(const Bundle& other) const { return (const PrimaryBlock&)(*this) != (const PrimaryBlock&)other; -diff --git a/ibrdtn/data/Bundle.h b/ibrdtn/data/Bundle.h -index 9bbc066..6a4ea47 100644 --- a/ibrdtn/data/Bundle.h +++ b/ibrdtn/data/Bundle.h @@ -97,7 +97,9 @@ namespace dtn |