All of lore.kernel.org
 help / color / mirror / Atom feed
From: Romain Naour <romain.naour@openwide.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package
Date: Sat, 18 Apr 2015 15:49:55 +0200	[thread overview]
Message-ID: <55326103.6050807@openwide.fr> (raw)
In-Reply-To: <1429360844-12625-1-git-send-email-bernd.kuhls@t-online.de>

Hi Bernd,

Le 18/04/2015 14:40, Bernd Kuhls a ?crit :
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/x11r7/Config.in                                 |    1 +
>  package/x11r7/xcb-util-renderutil/Config.in             |   15 +++++++++++++++
>  .../x11r7/xcb-util-renderutil/xcb-util-renderutil.hash  |    2 ++
>  .../x11r7/xcb-util-renderutil/xcb-util-renderutil.mk    |   15 +++++++++++++++
>  4 files changed, 33 insertions(+)
>  create mode 100644 package/x11r7/xcb-util-renderutil/Config.in
>  create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
>  create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
> 
> diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
> index 608837f..4166a96 100644
> --- a/package/x11r7/Config.in
> +++ b/package/x11r7/Config.in
> @@ -19,6 +19,7 @@ if BR2_PACKAGE_XORG7
>  		source package/x11r7/xcb-util/Config.in
>  		source package/x11r7/xcb-util-image/Config.in
>  		source package/x11r7/xcb-util-keysyms/Config.in
> +		source package/x11r7/xcb-util-renderutil/Config.in
>  		source package/x11r7/xcb-util-wm/Config.in
>  		source package/x11r7/xlib_libFS/Config.in
>  		source package/x11r7/xlib_libICE/Config.in
> diff --git a/package/x11r7/xcb-util-renderutil/Config.in b/package/x11r7/xcb-util-renderutil/Config.in
> new file mode 100644
> index 0000000..9675278
> --- /dev/null
> +++ b/package/x11r7/xcb-util-renderutil/Config.in
> @@ -0,0 +1,15 @@
> +config BR2_PACKAGE_XCB_UTIL_RENDERUTIL
> +	bool "xcb-util-renderutil"
> +	select BR2_PACKAGE_XCB_UTIL
> +	help
> +	  The XCB util modules provides a number of libraries which sit on top
> +	  of libxcb, the core X protocol library, and some of the extension
> +	  libraries. These experimental libraries provide convenience functions
> +	  and interfaces which make the raw X protocol more usable. Some of the
> +	  libraries also provide client-side code which is not strictly part of
> +	  the X protocol but which have traditionally been provided by Xlib.
> +
> +	  XCB util-renderutil module provides the following library:
> +	    - renderutil: Convenience functions for the Render extension.
> +
> +	  http://xcb.freedesktop.org/
> diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
> new file mode 100644
> index 0000000..e5c47ca
> --- /dev/null
> +++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
> @@ -0,0 +1,2 @@
> +# From http://lists.x.org/archives/xorg-announce/2015-March/002555.html
> +sha1	b55a92cd96c3ec1be9a26963df6d5f16e68fffea	xcb-util-cursor-0.1.2.tar.bz2

Should be:
# from http://permalink.gmane.org/gmane.comp.freedesktop.xorg.announce/2176
sha256 c6e97e48fb1286d6394dddb1c1732f00227c70bd1bedb7d1acabefdd340bea5b
xcb-util-renderutil-0.3.9.tar.bz2

Otherwise, looks good.
I added the same package locally for updating the efl package to 1.14.0-beta1
release.

Best regards,
Romain

> diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
> new file mode 100644
> index 0000000..9e6683b
> --- /dev/null
> +++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# xcb-util-renderutil
> +#
> +################################################################################
> +
> +XCB_UTIL_RENDERUTIL_VERSION = 0.3.9
> +XCB_UTIL_RENDERUTIL_SITE = http://xcb.freedesktop.org/dist
> +XCB_UTIL_RENDERUTIL_SOURCE = xcb-util-renderutil-$(XCB_UTIL_RENDERUTIL_VERSION).tar.bz2
> +XCB_UTIL_RENDERUTIL_LICENSE = MIT
> +XCB_UTIL_RENDERUTIL_LICENSE_FILES = COPYING
> +XCB_UTIL_RENDERUTIL_INSTALL_STAGING = YES
> +XCB_UTIL_RENDERUTIL_DEPENDENCIES = xcb-util
> +
> +$(eval $(autotools-package))
> 

      parent reply	other threads:[~2015-04-18 13:49 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
2015-04-18 16:38   ` Thomas Petazzoni
2015-04-19  9:03     ` Bernd Kuhls
2015-04-19 12:44       ` Thomas Petazzoni
2015-04-18 12:40 ` [Buildroot] [PATCH 03/32] package/x11r7/xlib_libXdmcp: bump to version 1.1.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 04/32] package/x11r7/xdriver_xf86-input-synaptics: bump version to 1.8.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 05/32] package/x11r7/xdriver_xf86-input-evdev: bump version to 2.9.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 06/32] package/x11r7/xdriver_xf86-video-trident: bump version to 1.3.7, add hash Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 07/32] package/x11r7/xdriver_xf86-input-vmmouse: " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, " Bernd Kuhls
2015-04-18 16:29   ` Bernd Kuhls
2015-04-18 16:40     ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 09/32] package/x11r7/xapp_setxkbmap: bump version to 1.3.1, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 10/32] package/x11r7/xapp_smproxy: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 11/32] package/x11r7/xapp_twm: bump version to 1.0.9, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 12/32] package/x11r7/xapp_x11perf: bump version to 1.6.0, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 13/32] package/x11r7/xapp_xcmsdb: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 14/32] package/x11r7/xapp_xdpyinfo: bump version to 1.3.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 15/32] package/x11r7/xapp_xdriinfo: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 16/32] package/x11r7/xapp_xditview: bump version to 1.0.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 17/32] package/x11r7/xapp_xev: bump version to 1.2.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 18/32] package/x11r7/xapp_xgamma: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 19/32] package/x11r7/xapp_xgc: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 20/32] package/x11r7/xapp_xhost: bump version to 1.0.7, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 21/32] package/x11r7/xapp_xkbedv: bump version to 1.1.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 22/32] package/x11r7/xapp_xkbprint: bump version to 1.0.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 23/32] package/x11r7/xapp_xlsatoms: bump version to 1.1.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 24/32] package/x11r7/xapp_xlsfonts: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 25/32] package/x11r7/xapp_xmag: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 26/32] package/x11r7/xapp_xmh: bump version to 1.0.3, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 27/32] package/x11r7/xapp_xmodmap: bump version to 1.0.9, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package Bernd Kuhls
2015-04-18 12:59   ` Thomas Petazzoni
2015-07-11 13:12     ` Romain Naour
2015-04-18 12:40 ` [Buildroot] [PATCH 29/32] package/x11r7/xapp_xcompmgr: " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 30/32] package/x11r7/xlib_libICE: Add host-pkgconf dependency Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 31/32] package/x11r7/xproto_xproxymanagementprotocol: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 32/32] package/x11r7/xapp_xfindproxy: " Bernd Kuhls
2015-04-18 13:49 ` Romain Naour [this message]

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=55326103.6050807@openwide.fr \
    --to=romain.naour@openwide.fr \
    --cc=buildroot@busybox.net \
    /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 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.