* [meta-oe][PATCH] librsync: new package @ 2019-12-09 14:46 Bartosz Golaszewski 2019-12-09 14:53 ` Stefano Babic 0 siblings, 1 reply; 11+ messages in thread From: Bartosz Golaszewski @ 2019-12-09 14:46 UTC (permalink / raw) To: Khem Raj, Armin Kuster, openembedded-devel; +Cc: Bartosz Golaszewski From: Bartosz Golaszewski <bgolaszewski@baylibre.com> rdiff is a popular tool for calculating binary delta patches. It's provided by the librsync package (unrelated to rsync already available in poky). This recipe adds new packages for librsync and rdiff. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> --- .../recipes-support/librsync/librsync_2.2.1.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 meta-oe/recipes-support/librsync/librsync_2.2.1.bb diff --git a/meta-oe/recipes-support/librsync/librsync_2.2.1.bb b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb new file mode 100644 index 000000000..9d224767c --- /dev/null +++ b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb @@ -0,0 +1,18 @@ +SUMMARY = "Remote delta-compression library." +AUTHOR = "Martin Pool, Andrew Tridgell, Donovan Baarda, Adam Schubert" + +LICENSE = "LGPLv2.1+" +LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" + +SRC_URI = "git://github.com/librsync/librsync.git" +SRCREV = "5917692418657dc78c9cbde3a8db4c85f25b9c8d" +S = "${WORKDIR}/git" + +DEPENDS = "popt" + +inherit cmake + +BBCLASSEXTEND = "native nativesdk" + +PACKAGES =+ "rdiff" +FILES_rdiff = "/usr/bin/rdiff" -- 2.23.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 14:46 [meta-oe][PATCH] librsync: new package Bartosz Golaszewski @ 2019-12-09 14:53 ` Stefano Babic 2019-12-09 15:00 ` Bartosz Golaszewski ` (2 more replies) 0 siblings, 3 replies; 11+ messages in thread From: Stefano Babic @ 2019-12-09 14:53 UTC (permalink / raw) To: Bartosz Golaszewski, Khem Raj, Armin Kuster, openembedded-devel Cc: Bartosz Golaszewski Hi Bartosz, On 09/12/19 15:46, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski <bgolaszewski@baylibre.com> > > rdiff is a popular tool for calculating binary delta patches. It's > provided by the librsync package (unrelated to rsync already available > in poky). > Nice, I added it (really, 2.1) to my public layer, but this definetely belongs to OE: https://github.com/sbabic/meta-swupdate/blob/master/recipes-support/librsync/librsync_2.1.0.bb > This recipe adds new packages for librsync and rdiff. > > Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> > --- > .../recipes-support/librsync/librsync_2.2.1.bb | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > create mode 100644 meta-oe/recipes-support/librsync/librsync_2.2.1.bb > > diff --git a/meta-oe/recipes-support/librsync/librsync_2.2.1.bb b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb > new file mode 100644 > index 000000000..9d224767c > --- /dev/null > +++ b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb > @@ -0,0 +1,18 @@ > +SUMMARY = "Remote delta-compression library." > +AUTHOR = "Martin Pool, Andrew Tridgell, Donovan Baarda, Adam Schubert" > + > +LICENSE = "LGPLv2.1+" > +LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" > + > +SRC_URI = "git://github.com/librsync/librsync.git" > +SRCREV = "5917692418657dc78c9cbde3a8db4c85f25b9c8d" > +S = "${WORKDIR}/git" > + > +DEPENDS = "popt" Don't you have any depends from zlib / bzip ? cmake tests it, if you do not add it, build will be fine but without support. > + > +inherit cmake > + > +BBCLASSEXTEND = "native nativesdk" > + > +PACKAGES =+ "rdiff" > +FILES_rdiff = "/usr/bin/rdiff" > Best regards, Stefano -- ===================================================================== DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 14:53 ` Stefano Babic @ 2019-12-09 15:00 ` Bartosz Golaszewski 2019-12-09 15:12 ` Adrian Bunk [not found] ` <CAMpxmJXDQh1vi7Eo-ZZZsyZ82n_X+n+-R2aGaxrYK1-TZ-5VbQ@mail.gmail.com> 2019-12-09 15:14 ` Adrian Bunk 2 siblings, 1 reply; 11+ messages in thread From: Bartosz Golaszewski @ 2019-12-09 15:00 UTC (permalink / raw) Cc: openembedded-devel pon., 9 gru 2019 o 15:53 Stefano Babic <sbabic@denx.de> napisał(a): > > Hi Bartosz, > > On 09/12/19 15:46, Bartosz Golaszewski wrote: > > From: Bartosz Golaszewski <bgolaszewski@baylibre.com> > > > > rdiff is a popular tool for calculating binary delta patches. It's > > provided by the librsync package (unrelated to rsync already available > > in poky). > > > > Nice, I added it (really, 2.1) to my public layer, but this definetely > belongs to OE: > > https://github.com/sbabic/meta-swupdate/blob/master/recipes-support/librsync/librsync_2.1.0.bb > Ha! Somehow it didn't pop up in google search. If you want you can send your own patch instead of this one. We probably have the same idea for updates - I'm using it in my binary-delta update module for mender. > > > This recipe adds new packages for librsync and rdiff. > > > > Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> > > --- > > .../recipes-support/librsync/librsync_2.2.1.bb | 18 ++++++++++++++++++ > > 1 file changed, 18 insertions(+) > > create mode 100644 meta-oe/recipes-support/librsync/librsync_2.2.1.bb > > > > diff --git a/meta-oe/recipes-support/librsync/librsync_2.2.1.bb b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb > > new file mode 100644 > > index 000000000..9d224767c > > --- /dev/null > > +++ b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb > > @@ -0,0 +1,18 @@ > > +SUMMARY = "Remote delta-compression library." > > +AUTHOR = "Martin Pool, Andrew Tridgell, Donovan Baarda, Adam Schubert" > > + > > +LICENSE = "LGPLv2.1+" > > +LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" > > + > > +SRC_URI = "git://github.com/librsync/librsync.git" > > +SRCREV = "5917692418657dc78c9cbde3a8db4c85f25b9c8d" > > +S = "${WORKDIR}/git" > > + > > +DEPENDS = "popt" > > Don't you have any depends from zlib / bzip ? cmake tests it, if you do > not add it, build will be fine but without support. > Sure - it probably should become a PACKAGECONFIG option. Bartosz > > + > > +inherit cmake > > + > > +BBCLASSEXTEND = "native nativesdk" > > + > > +PACKAGES =+ "rdiff" > > +FILES_rdiff = "/usr/bin/rdiff" > > > > Best regards, > Stefano > > -- > ===================================================================== > DENX Software Engineering GmbH, Managing Director: Wolfgang Denk > HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany > Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de > ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 15:00 ` Bartosz Golaszewski @ 2019-12-09 15:12 ` Adrian Bunk 0 siblings, 0 replies; 11+ messages in thread From: Adrian Bunk @ 2019-12-09 15:12 UTC (permalink / raw) To: Bartosz Golaszewski; +Cc: openembedded-devel On Mon, Dec 09, 2019 at 04:00:49PM +0100, Bartosz Golaszewski wrote: > pon., 9 gru 2019 o 15:53 Stefano Babic <sbabic@denx.de> napisał(a): > > > > Hi Bartosz, > > > > On 09/12/19 15:46, Bartosz Golaszewski wrote: > > > From: Bartosz Golaszewski <bgolaszewski@baylibre.com> > > > > > > rdiff is a popular tool for calculating binary delta patches. It's > > > provided by the librsync package (unrelated to rsync already available > > > in poky). > > > > > > > Nice, I added it (really, 2.1) to my public layer, but this definetely > > belongs to OE: > > > > https://github.com/sbabic/meta-swupdate/blob/master/recipes-support/librsync/librsync_2.1.0.bb > > Ha! Somehow it didn't pop up in google search. >... Better than Google is http://layers.openembedded.org/layerindex/branch/master/recipes/?q=librsync cu Adrian ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <CAMpxmJXDQh1vi7Eo-ZZZsyZ82n_X+n+-R2aGaxrYK1-TZ-5VbQ@mail.gmail.com>]
* Re: [meta-oe][PATCH] librsync: new package [not found] ` <CAMpxmJXDQh1vi7Eo-ZZZsyZ82n_X+n+-R2aGaxrYK1-TZ-5VbQ@mail.gmail.com> @ 2019-12-09 15:06 ` Stefano Babic 0 siblings, 0 replies; 11+ messages in thread From: Stefano Babic @ 2019-12-09 15:06 UTC (permalink / raw) To: Bartosz Golaszewski, Stefano Babic; +Cc: openembeded-devel Hi Bartosz, On 09/12/19 15:56, Bartosz Golaszewski wrote: > pon., 9 gru 2019 o 15:53 Stefano Babic <sbabic@denx.de> napisał(a): >> >> Hi Bartosz, >> >> On 09/12/19 15:46, Bartosz Golaszewski wrote: >>> From: Bartosz Golaszewski <bgolaszewski@baylibre.com> >>> >>> rdiff is a popular tool for calculating binary delta patches. It's >>> provided by the librsync package (unrelated to rsync already available >>> in poky). >>> >> >> Nice, I added it (really, 2.1) to my public layer, but this definetely >> belongs to OE: >> >> https://github.com/sbabic/meta-swupdate/blob/master/recipes-support/librsync/librsync_2.1.0.bb >> > > Ha! Somehow it didn't pop up in google search. If you want you can > send your own patch instead of this one. I am fine with yours, too ;-) > > We probably have the same idea for updates - I'm using it in my > binary-delta update module for mender. Exactly the same idea: I am using it for binary-delta update in SWUpdate ;-) > >> >>> This recipe adds new packages for librsync and rdiff. >>> >>> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> >>> --- >>> .../recipes-support/librsync/librsync_2.2.1.bb | 18 ++++++++++++++++++ >>> 1 file changed, 18 insertions(+) >>> create mode 100644 meta-oe/recipes-support/librsync/librsync_2.2.1.bb >>> >>> diff --git a/meta-oe/recipes-support/librsync/librsync_2.2.1.bb b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb >>> new file mode 100644 >>> index 000000000..9d224767c >>> --- /dev/null >>> +++ b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb >>> @@ -0,0 +1,18 @@ >>> +SUMMARY = "Remote delta-compression library." >>> +AUTHOR = "Martin Pool, Andrew Tridgell, Donovan Baarda, Adam Schubert" >>> + >>> +LICENSE = "LGPLv2.1+" >>> +LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" >>> + >>> +SRC_URI = "git://github.com/librsync/librsync.git" >>> +SRCREV = "5917692418657dc78c9cbde3a8db4c85f25b9c8d" >>> +S = "${WORKDIR}/git" >>> + >>> +DEPENDS = "popt" >> >> Don't you have any depends from zlib / bzip ? cmake tests it, if you do >> not add it, build will be fine but without support. >> > > Sure - it probably should become a PACKAGECONFIG option. Well, anyway the library without compression support loses most of its meaning... But a PACKAGECONFIG with default as on for both compression libraries is fine. Best regards, Stefano -- ===================================================================== DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 14:53 ` Stefano Babic 2019-12-09 15:00 ` Bartosz Golaszewski [not found] ` <CAMpxmJXDQh1vi7Eo-ZZZsyZ82n_X+n+-R2aGaxrYK1-TZ-5VbQ@mail.gmail.com> @ 2019-12-09 15:14 ` Adrian Bunk 2019-12-09 15:22 ` Stefano Babic 2 siblings, 1 reply; 11+ messages in thread From: Adrian Bunk @ 2019-12-09 15:14 UTC (permalink / raw) To: Stefano Babic; +Cc: Bartosz Golaszewski, openembedded-devel On Mon, Dec 09, 2019 at 03:53:33PM +0100, Stefano Babic wrote: >... > Don't you have any depends from zlib / bzip ? cmake tests it, if you do > not add it, build will be fine but without support. >... Is it also working for you? https://github.com/librsync/librsync/blob/master/CMakeLists.txt#L53-L57 https://github.com/librsync/librsync/issues/8 cu Adrian ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 15:14 ` Adrian Bunk @ 2019-12-09 15:22 ` Stefano Babic 2019-12-09 15:33 ` Bartosz Golaszewski 0 siblings, 1 reply; 11+ messages in thread From: Stefano Babic @ 2019-12-09 15:22 UTC (permalink / raw) To: Adrian Bunk, Stefano Babic; +Cc: Bartosz Golaszewski, openembedded-devel On 09/12/19 16:14, Adrian Bunk wrote: > On Mon, Dec 09, 2019 at 03:53:33PM +0100, Stefano Babic wrote: >> ... >> Don't you have any depends from zlib / bzip ? cmake tests it, if you do >> not add it, build will be fine but without support. >> ... > > Is it also working for you? > https://github.com/librsync/librsync/blob/master/CMakeLists.txt#L53-L57 > https://github.com/librsync/librsync/issues/8 Oh, good catch, I was not aware of it. I guess not, because I saw the dependencies when I wrote the recipe, but I *never* set ENABLE_COMPRESSION.. Stefano -- ===================================================================== DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 15:22 ` Stefano Babic @ 2019-12-09 15:33 ` Bartosz Golaszewski 2019-12-09 16:23 ` Stefano Babic 0 siblings, 1 reply; 11+ messages in thread From: Bartosz Golaszewski @ 2019-12-09 15:33 UTC (permalink / raw) To: Stefano Babic; +Cc: Bartosz Golaszewski, openembedded-devel, Adrian Bunk pon., 9 gru 2019 o 16:22 Stefano Babic <sbabic@denx.de> napisał(a): > > On 09/12/19 16:14, Adrian Bunk wrote: > > On Mon, Dec 09, 2019 at 03:53:33PM +0100, Stefano Babic wrote: > >> ... > >> Don't you have any depends from zlib / bzip ? cmake tests it, if you do > >> not add it, build will be fine but without support. > >> ... > > > > Is it also working for you? > > https://github.com/librsync/librsync/blob/master/CMakeLists.txt#L53-L57 > > https://github.com/librsync/librsync/issues/8 > > Oh, good catch, I was not aware of it. I guess not, because I saw the > dependencies when I wrote the recipe, but I *never* set ENABLE_COMPRESSION.. > Is this really something that needs to be provided by rdiff? We can just pipe the output to a compressor of your choice. Bart > Stefano > > > -- > ===================================================================== > DENX Software Engineering GmbH, Managing Director: Wolfgang Denk > HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany > Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de > ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 15:33 ` Bartosz Golaszewski @ 2019-12-09 16:23 ` Stefano Babic 2019-12-09 16:30 ` Bartosz Golaszewski 0 siblings, 1 reply; 11+ messages in thread From: Stefano Babic @ 2019-12-09 16:23 UTC (permalink / raw) To: Bartosz Golaszewski, Stefano Babic Cc: Bartosz Golaszewski, openembedded-devel, Adrian Bunk On 09/12/19 16:33, Bartosz Golaszewski wrote: > pon., 9 gru 2019 o 16:22 Stefano Babic <sbabic@denx.de> napisał(a): >> >> On 09/12/19 16:14, Adrian Bunk wrote: >>> On Mon, Dec 09, 2019 at 03:53:33PM +0100, Stefano Babic wrote: >>>> ... >>>> Don't you have any depends from zlib / bzip ? cmake tests it, if you do >>>> not add it, build will be fine but without support. >>>> ... >>> >>> Is it also working for you? >>> https://github.com/librsync/librsync/blob/master/CMakeLists.txt#L53-L57 >>> https://github.com/librsync/librsync/issues/8 >> >> Oh, good catch, I was not aware of it. I guess not, because I saw the >> dependencies when I wrote the recipe, but I *never* set ENABLE_COMPRESSION.. >> > > Is this really something that needs to be provided by rdiff? We can > just pipe the output to a compressor of your choice. Yes, I realized that it is not required by librsync - I already compress the output of rdiff to generate the delta, no need to integrate it. Sorry for noise. What about to put the binary "rdiff" into a separate "bin" package ? I have rescue system where footprint is an issue, and rdiff is not required on target. Regards, Stefano -- ===================================================================== DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 16:23 ` Stefano Babic @ 2019-12-09 16:30 ` Bartosz Golaszewski 2019-12-09 16:38 ` Stefano Babic 0 siblings, 1 reply; 11+ messages in thread From: Bartosz Golaszewski @ 2019-12-09 16:30 UTC (permalink / raw) To: Stefano Babic; +Cc: Bartosz Golaszewski, openembedded-devel, Adrian Bunk pon., 9 gru 2019 o 17:23 Stefano Babic <sbabic@denx.de> napisał(a): > > On 09/12/19 16:33, Bartosz Golaszewski wrote: > > pon., 9 gru 2019 o 16:22 Stefano Babic <sbabic@denx.de> napisał(a): > >> > >> On 09/12/19 16:14, Adrian Bunk wrote: > >>> On Mon, Dec 09, 2019 at 03:53:33PM +0100, Stefano Babic wrote: > >>>> ... > >>>> Don't you have any depends from zlib / bzip ? cmake tests it, if you do > >>>> not add it, build will be fine but without support. > >>>> ... > >>> > >>> Is it also working for you? > >>> https://github.com/librsync/librsync/blob/master/CMakeLists.txt#L53-L57 > >>> https://github.com/librsync/librsync/issues/8 > >> > >> Oh, good catch, I was not aware of it. I guess not, because I saw the > >> dependencies when I wrote the recipe, but I *never* set ENABLE_COMPRESSION.. > >> > > > > Is this really something that needs to be provided by rdiff? We can > > just pipe the output to a compressor of your choice. > > Yes, I realized that it is not required by librsync - I already compress > the output of rdiff to generate the delta, no need to integrate it. > Sorry for noise. > > What about to put the binary "rdiff" into a separate "bin" package ? I > have rescue system where footprint is an issue, and rdiff is not > required on target. > But this is what I did in my patch. Bart > Regards, > Stefano > > -- > ===================================================================== > DENX Software Engineering GmbH, Managing Director: Wolfgang Denk > HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany > Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de > ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [meta-oe][PATCH] librsync: new package 2019-12-09 16:30 ` Bartosz Golaszewski @ 2019-12-09 16:38 ` Stefano Babic 0 siblings, 0 replies; 11+ messages in thread From: Stefano Babic @ 2019-12-09 16:38 UTC (permalink / raw) To: Bartosz Golaszewski, Stefano Babic Cc: Bartosz Golaszewski, openembedded-devel, Adrian Bunk On 09/12/19 17:30, Bartosz Golaszewski wrote: > pon., 9 gru 2019 o 17:23 Stefano Babic <sbabic@denx.de> napisał(a): >> >> On 09/12/19 16:33, Bartosz Golaszewski wrote: >>> pon., 9 gru 2019 o 16:22 Stefano Babic <sbabic@denx.de> napisał(a): >>>> >>>> On 09/12/19 16:14, Adrian Bunk wrote: >>>>> On Mon, Dec 09, 2019 at 03:53:33PM +0100, Stefano Babic wrote: >>>>>> ... >>>>>> Don't you have any depends from zlib / bzip ? cmake tests it, if you do >>>>>> not add it, build will be fine but without support. >>>>>> ... >>>>> >>>>> Is it also working for you? >>>>> https://github.com/librsync/librsync/blob/master/CMakeLists.txt#L53-L57 >>>>> https://github.com/librsync/librsync/issues/8 >>>> >>>> Oh, good catch, I was not aware of it. I guess not, because I saw the >>>> dependencies when I wrote the recipe, but I *never* set ENABLE_COMPRESSION.. >>>> >>> >>> Is this really something that needs to be provided by rdiff? We can >>> just pipe the output to a compressor of your choice. >> >> Yes, I realized that it is not required by librsync - I already compress >> the output of rdiff to generate the delta, no need to integrate it. >> Sorry for noise. >> >> What about to put the binary "rdiff" into a separate "bin" package ? I >> have rescue system where footprint is an issue, and rdiff is not >> required on target. >> > > But this is what I did in my patch. Sorry, you're right, you have already done it ! Stefano -- ===================================================================== DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de ===================================================================== ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2019-12-09 16:38 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-09 14:46 [meta-oe][PATCH] librsync: new package Bartosz Golaszewski
2019-12-09 14:53 ` Stefano Babic
2019-12-09 15:00 ` Bartosz Golaszewski
2019-12-09 15:12 ` Adrian Bunk
[not found] ` <CAMpxmJXDQh1vi7Eo-ZZZsyZ82n_X+n+-R2aGaxrYK1-TZ-5VbQ@mail.gmail.com>
2019-12-09 15:06 ` Stefano Babic
2019-12-09 15:14 ` Adrian Bunk
2019-12-09 15:22 ` Stefano Babic
2019-12-09 15:33 ` Bartosz Golaszewski
2019-12-09 16:23 ` Stefano Babic
2019-12-09 16:30 ` Bartosz Golaszewski
2019-12-09 16:38 ` Stefano Babic
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.