linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ariel D'Alessandro <ariel@vanguardiasur.com.ar>
To: linux-media@vger.kernel.org
Cc: rosenp@gmail.com, hverkuil@xs4all.nl, sean@mess.org,
	p.zabel@pengutronix.de, laurent.pinchart@ideasonboard.com,
	ezequiel@collabora.com, nicolas@ndufresne.ca,
	kieran.bingham@ideasonboard.com, ariel@vanguardiasur.com.ar
Subject: [RFC PATCH v3 0/1] Add support for meson building
Date: Wed, 29 Apr 2020 12:16:38 -0300	[thread overview]
Message-ID: <20200429151639.5003-1-ariel@vanguardiasur.com.ar> (raw)

Hi all,

Finally got some time to put another patchset together.

Any feedback, testing or suggestion is welcome. I'll be submitting this
patchset soon if no further major changes are needed.

I'd like to get some comments from v4l-utils developers about the
feature options mainly. I tried keeping the configuration behaviour
from autotools scripts as much as possible. 

Changes from v2:

  * Added support to build contrib/.
  * Added support for gettext translations.
  * Move several boolean options to features.
  * Libraries in lib/ are now defined as library() instead of
    shared_library(), so default_library option is used.
  * Minor fixes on lib/ utils/ support.

This patchset has been developed on top of v4l-utils commit:

    commit 9c3d3fde6b5c5102293edbb25d1f4a73d39dc04e
    Author: Rosen Penev <rosenp@gmail.com>
        utils: do not use empty void with C++

Thanks!

Ariel D'Alessandro (1):
  Add support for meson building

 .gitignore                                    |   1 +
 contrib/cobalt-ctl/meson.build                |   7 +
 contrib/decode_tm6000/meson.build             |  13 +
 contrib/gconv/meson.build                     |  42 ++++
 contrib/meson.build                           |  10 +
 contrib/rds-saa6588/meson.build               |   6 +
 contrib/test/meson.build                      | 132 +++++++++++
 contrib/xc3028-firmware/meson.build           |  10 +
 gen-version.sh                                |  36 +++
 lib/libdvbv5/meson.build                      | 151 ++++++++++++
 lib/libv4l-mplane/meson.build                 |  16 ++
 lib/libv4l1/meson.build                       |  53 +++++
 lib/libv4l2/meson.build                       |  65 +++++
 lib/libv4l2rds/meson.build                    |  28 +++
 lib/libv4lconvert/meson.build                 | 105 +++++++++
 lib/meson.build                               |  11 +
 libdvbv5-po/meson.build                       |   3 +
 meson.build                                   | 222 ++++++++++++++++++
 meson_options.txt                             |  42 ++++
 utils/cec-compliance/meson.build              |  24 ++
 utils/cec-ctl/meson.build                     |  18 ++
 utils/cec-follower/meson.build                |  21 ++
 utils/cx18-ctl/meson.build                    |   7 +
 utils/dvb/meson.build                         |  69 ++++++
 utils/gen_media_bus_format_codes.sh           |   7 +
 utils/gen_media_bus_format_names.sh           |   7 +
 utils/ir-ctl/meson.build                      |  17 ++
 utils/ivtv-ctl/meson.build                    |  13 +
 .../bpf_protocols/clang_sys_includes.sh       |   9 +
 utils/keytable/bpf_protocols/meson.build      |  31 +++
 utils/keytable/meson.build                    |  70 ++++++
 utils/keytable/rc_keymaps/meson.build         | 147 ++++++++++++
 utils/libcecutil/meson.build                  |  45 ++++
 utils/libmedia_dev/meson.build                |  14 ++
 utils/libv4l2util/meson.build                 |  16 ++
 utils/media-ctl/meson.build                   |  41 ++++
 utils/meson.build                             |  44 ++++
 utils/qv4l2/meson.build                       |  80 +++++++
 utils/qvidcap/meson.build                     |  82 +++++++
 utils/rds-ctl/meson.build                     |  13 +
 utils/v4l2-compliance/meson.build             |  60 +++++
 utils/v4l2-ctl/meson.build                    |  75 ++++++
 utils/v4l2-dbg/meson.build                    |  16 ++
 utils/v4l2-sysfs-path/meson.build             |  13 +
 v4l-utils-po/meson.build                      |   3 +
 version.h.in                                  |   1 +
 46 files changed, 1896 insertions(+)
 create mode 100644 contrib/cobalt-ctl/meson.build
 create mode 100644 contrib/decode_tm6000/meson.build
 create mode 100644 contrib/gconv/meson.build
 create mode 100644 contrib/meson.build
 create mode 100644 contrib/rds-saa6588/meson.build
 create mode 100644 contrib/test/meson.build
 create mode 100644 contrib/xc3028-firmware/meson.build
 create mode 100755 gen-version.sh
 create mode 100644 lib/libdvbv5/meson.build
 create mode 100644 lib/libv4l-mplane/meson.build
 create mode 100644 lib/libv4l1/meson.build
 create mode 100644 lib/libv4l2/meson.build
 create mode 100644 lib/libv4l2rds/meson.build
 create mode 100644 lib/libv4lconvert/meson.build
 create mode 100644 lib/meson.build
 create mode 100644 libdvbv5-po/meson.build
 create mode 100644 meson.build
 create mode 100644 meson_options.txt
 create mode 100644 utils/cec-compliance/meson.build
 create mode 100644 utils/cec-ctl/meson.build
 create mode 100644 utils/cec-follower/meson.build
 create mode 100644 utils/cx18-ctl/meson.build
 create mode 100644 utils/dvb/meson.build
 create mode 100755 utils/gen_media_bus_format_codes.sh
 create mode 100755 utils/gen_media_bus_format_names.sh
 create mode 100644 utils/ir-ctl/meson.build
 create mode 100644 utils/ivtv-ctl/meson.build
 create mode 100755 utils/keytable/bpf_protocols/clang_sys_includes.sh
 create mode 100644 utils/keytable/bpf_protocols/meson.build
 create mode 100644 utils/keytable/meson.build
 create mode 100644 utils/keytable/rc_keymaps/meson.build
 create mode 100644 utils/libcecutil/meson.build
 create mode 100644 utils/libmedia_dev/meson.build
 create mode 100644 utils/libv4l2util/meson.build
 create mode 100644 utils/media-ctl/meson.build
 create mode 100644 utils/meson.build
 create mode 100644 utils/qv4l2/meson.build
 create mode 100644 utils/qvidcap/meson.build
 create mode 100644 utils/rds-ctl/meson.build
 create mode 100644 utils/v4l2-compliance/meson.build
 create mode 100644 utils/v4l2-ctl/meson.build
 create mode 100644 utils/v4l2-dbg/meson.build
 create mode 100644 utils/v4l2-sysfs-path/meson.build
 create mode 100644 v4l-utils-po/meson.build
 create mode 100644 version.h.in

-- 
2.25.1


             reply	other threads:[~2020-04-29 15:16 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-29 15:16 Ariel D'Alessandro [this message]
2020-04-29 15:16 ` [RFC PATCH v3 1/1] Add support for meson building Ariel D'Alessandro
2020-04-30 19:48   ` Sean Young
2020-04-30 20:33     ` Ariel D'Alessandro
2020-05-01  8:18   ` Sean Young
2020-05-04 16:27     ` Ariel D'Alessandro
2020-05-08  8:02       ` Sean Young

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200429151639.5003-1-ariel@vanguardiasur.com.ar \
    --to=ariel@vanguardiasur.com.ar \
    --cc=ezequiel@collabora.com \
    --cc=hverkuil@xs4all.nl \
    --cc=kieran.bingham@ideasonboard.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=nicolas@ndufresne.ca \
    --cc=p.zabel@pengutronix.de \
    --cc=rosenp@gmail.com \
    --cc=sean@mess.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).