* [Buildroot] [PATCH] package/lttng-libust: bump to version 2.13.1
@ 2021-12-22 17:16 Norbert Lange
2021-12-23 17:35 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Norbert Lange @ 2021-12-22 17:16 UTC (permalink / raw)
To: buildroot; +Cc: Norbert Lange, Philippe Proulx
Add a patch to disable building of docs and tests,
the tests cause problems unless the package is
reconfigured.
Signed-off-by: Norbert Lange <nolange79@gmail.com>
---
.../lttng-libust/0001-remove-doc-and-test.patch | 15 +++++++++++++++
package/lttng-libust/lttng-libust.hash | 4 ++--
package/lttng-libust/lttng-libust.mk | 3 ++-
3 files changed, 19 insertions(+), 3 deletions(-)
create mode 100644 package/lttng-libust/0001-remove-doc-and-test.patch
diff --git a/package/lttng-libust/0001-remove-doc-and-test.patch b/package/lttng-libust/0001-remove-doc-and-test.patch
new file mode 100644
index 0000000000..5077138444
--- /dev/null
+++ b/package/lttng-libust/0001-remove-doc-and-test.patch
@@ -0,0 +1,15 @@
+diff -burN lttng-ust-2.13.1.org/Makefile.am lttng-ust-2.13.1/Makefile.am
+--- lttng-ust-2.13.1.org/Makefile.am 2021-12-09 20:45:58.000000000 +0100
++++ lttng-ust-2.13.1/Makefile.am 2021-12-12 01:10:44.097204904 +0100
+@@ -6,8 +6,6 @@
+ include \
+ src \
+ tools \
+- doc \
+- tests \
+ extras
+
+ dist_doc_DATA = \
+
+---
+Signed-off-by: Norbert Lange <nolange79@gmail.com>
diff --git a/package/lttng-libust/lttng-libust.hash b/package/lttng-libust/lttng-libust.hash
index 40bd870e86..23839e42cc 100644
--- a/package/lttng-libust/lttng-libust.hash
+++ b/package/lttng-libust/lttng-libust.hash
@@ -1,5 +1,5 @@
-# From https://lttng.org/files/lttng-ust/lttng-ust-2.12.1.tar.bz2.sha256
-sha256 48a3948b168195123a749d22818809bd25127bb5f1a66458c3c012b210d2a051 lttng-ust-2.12.1.tar.bz2
+# From https://lttng.org/files/lttng-ust/lttng-ust-2.13.2.tar.bz2.sha256
+sha256 5667bf0269e1e62e2d9cb974c456ff86e0401bd7aa3bfc8d5fdb97233249eddc lttng-ust-2.13.1.tar.bz2
# Hash for license file
sha256 74125a84c2166300776980166e29de40d5f98d1a75e487f0bbc0c03b4cd2342e COPYING
diff --git a/package/lttng-libust/lttng-libust.mk b/package/lttng-libust/lttng-libust.mk
index 608e8781b1..e9a1aecbc1 100644
--- a/package/lttng-libust/lttng-libust.mk
+++ b/package/lttng-libust/lttng-libust.mk
@@ -5,7 +5,7 @@
################################################################################
LTTNG_LIBUST_SITE = http://lttng.org/files/lttng-ust
-LTTNG_LIBUST_VERSION = 2.12.1
+LTTNG_LIBUST_VERSION = 2.13.1
LTTNG_LIBUST_SOURCE = lttng-ust-$(LTTNG_LIBUST_VERSION).tar.bz2
LTTNG_LIBUST_LICENSE = LGPL-2.1, MIT (system headers), GPL-2.0 (liblttng-ust-ctl/ustctl.c used by lttng-sessiond)
LTTNG_LIBUST_LICENSE_FILES = COPYING
@@ -15,6 +15,7 @@ LTTNG_LIBUST_CONF_OPTS = \
--disable-man-pages \
--disable-examples \
--with-lttng-system-rundir=/run/lttng
+LTTNG_LIBUST_AUTORECONF = YES
ifeq ($(BR2_PACKAGE_PYTHON),y)
LTTNG_LIBUST_DEPENDENCIES += python
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH] package/lttng-libust: bump to version 2.13.1
2021-12-22 17:16 [Buildroot] [PATCH] package/lttng-libust: bump to version 2.13.1 Norbert Lange
@ 2021-12-23 17:35 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2021-12-23 17:35 UTC (permalink / raw)
To: Norbert Lange; +Cc: Philippe Proulx, buildroot
Hello Norbert,
On Wed, 22 Dec 2021 18:16:40 +0100
Norbert Lange <nolange79@gmail.com> wrote:
> diff --git a/package/lttng-libust/0001-remove-doc-and-test.patch b/package/lttng-libust/0001-remove-doc-and-test.patch
> new file mode 100644
> index 0000000000..5077138444
> --- /dev/null
> +++ b/package/lttng-libust/0001-remove-doc-and-test.patch
> @@ -0,0 +1,15 @@
We want patches to be generated with git format-patch and have a proper
commit log and Signed-off-by line.
Also, ideally an upstreamable solution should be used, such as
introducing a new ./configure option to disable building the
documentation.
Best regards,
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-12-23 17:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-22 17:16 [Buildroot] [PATCH] package/lttng-libust: bump to version 2.13.1 Norbert Lange
2021-12-23 17:35 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox