All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH v2 1/2] fontconfig: fix upstream version check
  2018-02-12 17:03 [PATCH v2 1/2] fontconfig: fix upstream version check Maxin B. John
@ 2018-02-12 16:59 ` Alexander Kanavin
  2018-02-12 17:03 ` [PATCH v2 2/2] libinput: " Maxin B. John
  1 sibling, 0 replies; 5+ messages in thread
From: Alexander Kanavin @ 2018-02-12 16:59 UTC (permalink / raw)
  To: Maxin B. John, openembedded-core

On 02/12/2018 07:03 PM, Maxin B. John wrote:
> In the case of fontconfig, version x.x.9x are release candidates
> for next version.
> +UPSTREAM_CHECK_REGEX = "fontconfig-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)\.tar\.gz"

Drop the \.gz part. Upstreams can and do switch to anything else at any 
point - bz2, xz, lz, whateverz.

Alex


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 1/2] fontconfig: fix upstream version check
@ 2018-02-12 17:03 Maxin B. John
  2018-02-12 16:59 ` Alexander Kanavin
  2018-02-12 17:03 ` [PATCH v2 2/2] libinput: " Maxin B. John
  0 siblings, 2 replies; 5+ messages in thread
From: Maxin B. John @ 2018-02-12 17:03 UTC (permalink / raw)
  To: openembedded-core

In the case of fontconfig, version x.x.9x are release candidates
for next version.

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb
index fa5f0ee..1b4f87b 100644
--- a/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb
+++ b/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb
@@ -28,6 +28,7 @@ SRC_URI = "http://fontconfig.org/release/fontconfig-${PV}.tar.gz \
 SRC_URI[md5sum] = "00e748c67fad11e7057a71ed385e8bdb"
 SRC_URI[sha256sum] = "064b9ebf060c9e77011733ac9dc0e2ce92870b574cca2405e11f5353a683c334"
 
+UPSTREAM_CHECK_REGEX = "fontconfig-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)\.tar\.gz"
 
 do_configure_prepend() {
     # work around https://bugs.freedesktop.org/show_bug.cgi?id=101280
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v2 2/2] libinput: fix upstream version check
  2018-02-12 17:03 [PATCH v2 1/2] fontconfig: fix upstream version check Maxin B. John
  2018-02-12 16:59 ` Alexander Kanavin
@ 2018-02-12 17:03 ` Maxin B. John
  2018-02-12 17:05   ` Alexander Kanavin
  1 sibling, 1 reply; 5+ messages in thread
From: Maxin B. John @ 2018-02-12 17:03 UTC (permalink / raw)
  To: openembedded-core

Skip RC releases for libinput which follow the pattern: x.x.9xx

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-graphics/wayland/libinput_1.9.4.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-graphics/wayland/libinput_1.9.4.bb b/meta/recipes-graphics/wayland/libinput_1.9.4.bb
index 2843314..3879356 100644
--- a/meta/recipes-graphics/wayland/libinput_1.9.4.bb
+++ b/meta/recipes-graphics/wayland/libinput_1.9.4.bb
@@ -12,6 +12,7 @@ SRC_URI = "http://www.freedesktop.org/software/${BPN}/${BP}.tar.xz \
 SRC_URI[md5sum] = "8b43d07d1698fb207a0492fc67554d4f"
 SRC_URI[sha256sum] = "0bcdbd4c4e3c2a2db322fbdf2ef3284f2e6d6fb7be3af80e6d8de7783f675190"
 
+UPSTREAM_CHECK_REGEX = "libinput-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)\.tar\.xz"
 inherit meson pkgconfig lib_package
 
 PACKAGECONFIG ??= ""
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 2/2] libinput: fix upstream version check
  2018-02-12 17:03 ` [PATCH v2 2/2] libinput: " Maxin B. John
@ 2018-02-12 17:05   ` Alexander Kanavin
  2018-02-12 17:17     ` Maxin B. John
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Kanavin @ 2018-02-12 17:05 UTC (permalink / raw)
  To: Maxin B. John, openembedded-core

On 02/12/2018 07:03 PM, Maxin B. John wrote:
> Skip RC releases for libinput which follow the pattern: x.x.9xx
>   
> +UPSTREAM_CHECK_REGEX = "libinput-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)\.tar\.xz"

Same here: dom't hardcode the compression format. Otherwise, seems fine.

Alex


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 2/2] libinput: fix upstream version check
  2018-02-12 17:05   ` Alexander Kanavin
@ 2018-02-12 17:17     ` Maxin B. John
  0 siblings, 0 replies; 5+ messages in thread
From: Maxin B. John @ 2018-02-12 17:17 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: openembedded-core

Hi,
On Mon, Feb 12, 2018 at 07:05:27PM +0200, Alexander Kanavin wrote:
> On 02/12/2018 07:03 PM, Maxin B. John wrote:
> >Skip RC releases for libinput which follow the pattern: x.x.9xx
> >+UPSTREAM_CHECK_REGEX = "libinput-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)\.tar\.xz"
> 
> Same here: dom't hardcode the compression format. Otherwise, seems fine.

Updated and sent v3. Thanks.

> Alex

Best Regards,
Maxin


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-02-12 17:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-12 17:03 [PATCH v2 1/2] fontconfig: fix upstream version check Maxin B. John
2018-02-12 16:59 ` Alexander Kanavin
2018-02-12 17:03 ` [PATCH v2 2/2] libinput: " Maxin B. John
2018-02-12 17:05   ` Alexander Kanavin
2018-02-12 17:17     ` Maxin B. John

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.