Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11/elementary Update elementary to 1.7.10:
details: https://anonhg.NetBSD.org/pkgsrc/rev/86dc5f0db445
branches: trunk
changeset: 430439:86dc5f0db445
user: joerg <joerg%pkgsrc.org@localhost>
date: Fri May 01 00:24:32 2020 +0000
description:
Update elementary to 1.7.10:
* Fix potential free'ed memory dereference in naviframe.
* Make elm_tooltip more robust if not run inside X
* elm/examples: Autodetect engine on the glview example too.
* elm/tests: Autodetect engine, instead of hardcode it.
* elm/index: Fix example, must call elm_index_level_go().
* list: Fix list_example_03 - call elm_list_go().
* Gesture layer: Fix gesture layer with "pointer" events.
* Clouseau: Added clouseau integration.
diffstat:
x11/elementary/Makefile | 9 +-
x11/elementary/buildlink3.mk | 4 +-
x11/elementary/distinfo | 12 +-
x11/elementary/patches/patch-ab | 2100 +--------------------------------------
4 files changed, 19 insertions(+), 2106 deletions(-)
diffs (truncated from 2190 to 300 lines):
diff -r 86a83016ed2c -r 86dc5f0db445 x11/elementary/Makefile
--- a/x11/elementary/Makefile Fri May 01 00:22:21 2020 +0000
+++ b/x11/elementary/Makefile Fri May 01 00:24:32 2020 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.28 2020/03/08 16:48:20 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2020/05/01 00:24:32 joerg Exp $
-DISTNAME= elementary-1.7.7
-PKGREVISION= 21
+DISTNAME= elementary-1.7.10
CATEGORIES= x11
-MASTER_SITES= http://download.enlightenment.org/releases/
+MASTER_SITES= https://download.enlightenment.org/att/releases/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= joerg%NetBSD.org@localhost
@@ -26,7 +25,7 @@
PKGCONFIG_OVERRIDE= elementary
# currently it is like it is
-MODULE_ARCH= ${LOWER_OPSYS}-${MACHINE_ARCH}-1.7.7
+MODULE_ARCH= ${LOWER_OPSYS}-${MACHINE_ARCH}-1.7.10
PLIST_SUBST= MODULE_ARCH=${MODULE_ARCH}
PRINT_PLIST_AWK+= { gsub(/${MODULE_ARCH}/, "$${MODULE_ARCH}") }
diff -r 86a83016ed2c -r 86dc5f0db445 x11/elementary/buildlink3.mk
--- a/x11/elementary/buildlink3.mk Fri May 01 00:22:21 2020 +0000
+++ b/x11/elementary/buildlink3.mk Fri May 01 00:24:32 2020 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.18 2020/03/08 16:48:20 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.19 2020/05/01 00:24:32 joerg Exp $
BUILDLINK_TREE+= elementary
.if !defined(ELEMENTARY_BUILDLINK3_MK)
ELEMENTARY_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.elementary+= elementary>=1.7.7
+BUILDLINK_API_DEPENDS.elementary+= elementary>=1.7.10
BUILDLINK_ABI_DEPENDS.elementary?= elementary>=1.7.7nb21
BUILDLINK_PKGSRCDIR.elementary?= ../../x11/elementary
diff -r 86a83016ed2c -r 86dc5f0db445 x11/elementary/distinfo
--- a/x11/elementary/distinfo Fri May 01 00:22:21 2020 +0000
+++ b/x11/elementary/distinfo Fri May 01 00:24:32 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.3 2015/11/04 03:28:28 agc Exp $
+$NetBSD: distinfo,v 1.4 2020/05/01 00:24:32 joerg Exp $
-SHA1 (elementary-1.7.7.tar.bz2) = cff6de3f496139cd806575f5c36a05e2b00f64fc
-RMD160 (elementary-1.7.7.tar.bz2) = 71a25877149998791f7a9581b59330a8026fbbe5
-SHA512 (elementary-1.7.7.tar.bz2) = 1d625c17bda1c8c4b9aea07054f029e15196253f0fcf87cedb86775b07c6c6147079bc93cf349259505130bd2e8e403d78e06446bc3fb3c21715b61e14fca19a
-Size (elementary-1.7.7.tar.bz2) = 9360420 bytes
+SHA1 (elementary-1.7.10.tar.bz2) = 52f22f2a450f28edde8d12e523a96e6761e6355d
+RMD160 (elementary-1.7.10.tar.bz2) = 458cc111b3965665bfba571690b9d288916b1ddb
+SHA512 (elementary-1.7.10.tar.bz2) = 4f8b689325f83e23f9c980655a749624c2550f32d197baa1a8a30ec5bec6f73a697f8d742a8e3e0a21adb6cc2c5aa07029dc688f3fc8f6653f55b1a2556f859b
+Size (elementary-1.7.10.tar.bz2) = 9392006 bytes
SHA1 (patch-aa) = 83a622da4253935e243b9cdfe67e8dd880a127ad
-SHA1 (patch-ab) = 45360b2d74e8931386523df71fc9e0fb4af62249
+SHA1 (patch-ab) = 3110559be3ca18deed3a50994b458c2cfb2a68c8
diff -r 86a83016ed2c -r 86dc5f0db445 x11/elementary/patches/patch-ab
--- a/x11/elementary/patches/patch-ab Fri May 01 00:22:21 2020 +0000
+++ b/x11/elementary/patches/patch-ab Fri May 01 00:24:32 2020 +0000
@@ -1,1940 +1,21 @@
-$NetBSD: patch-ab,v 1.2 2013/06/19 00:29:02 jperkin Exp $
+$NetBSD: patch-ab,v 1.3 2020/05/01 00:24:32 joerg Exp $
Fix Solaris support.
---- configure.orig 2013-05-11 19:55:58.000000000 +0000
+--- configure.orig 2013-12-04 19:27:17.000000000 +0000
+++ configure
-@@ -1,13 +1,11 @@
- #! /bin/sh
- # Guess values for system-dependent variables and create Makefiles.
--# Generated by GNU Autoconf 2.68 for elementary 1.7.7.
-+# Generated by GNU Autoconf 2.69 for elementary 1.7.7.
- #
- # Report bugs to <enlightenment-devel%lists.sourceforge.net@localhost>.
- #
- #
--# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
--# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
--# Foundation, Inc.
-+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
- #
- #
- # This configure script is free software; the Free Software Foundation
-@@ -136,6 +134,31 @@ export LANGUAGE
- # CDPATH.
- (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-+# Use a proper internal environment variable to ensure we don't fall
-+ # into an infinite loop, continuously re-executing ourselves.
-+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
-+ _as_can_reexec=no; export _as_can_reexec;
-+ # We cannot yet assume a decent shell, so we have to provide a
-+# neutralization value for shells without unset; and this also
-+# works around shells that cannot unset nonexistent variables.
-+# Preserve -v and -x to the replacement shell.
-+BASH_ENV=/dev/null
-+ENV=/dev/null
-+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
-+case $- in # ((((
-+ *v*x* | *x*v* ) as_opts=-vx ;;
-+ *v* ) as_opts=-v ;;
-+ *x* ) as_opts=-x ;;
-+ * ) as_opts= ;;
-+esac
-+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
-+# Admittedly, this is quite paranoid, since all the known shells bail
-+# out after a failed `exec'.
-+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
-+as_fn_exit 255
-+ fi
-+ # We don't want this to propagate to other subprocesses.
-+ { _as_can_reexec=; unset _as_can_reexec;}
- if test "x$CONFIG_SHELL" = x; then
- as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
-@@ -169,7 +192,8 @@ if ( set x; as_fn_ret_success y && test
- else
- exitcode=1; echo positional parameters were not saved.
- fi
--test x\$exitcode = x0 || exit 1"
-+test x\$exitcode = x0 || exit 1
-+test -x / || exit 1"
- as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
- as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
- eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
-@@ -222,21 +246,25 @@ IFS=$as_save_IFS
-
-
- if test "x$CONFIG_SHELL" != x; then :
-- # We cannot yet assume a decent shell, so we have to provide a
-- # neutralization value for shells without unset; and this also
-- # works around shells that cannot unset nonexistent variables.
-- # Preserve -v and -x to the replacement shell.
-- BASH_ENV=/dev/null
-- ENV=/dev/null
-- (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
-- export CONFIG_SHELL
-- case $- in # ((((
-- *v*x* | *x*v* ) as_opts=-vx ;;
-- *v* ) as_opts=-v ;;
-- *x* ) as_opts=-x ;;
-- * ) as_opts= ;;
-- esac
-- exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
-+ export CONFIG_SHELL
-+ # We cannot yet assume a decent shell, so we have to provide a
-+# neutralization value for shells without unset; and this also
-+# works around shells that cannot unset nonexistent variables.
-+# Preserve -v and -x to the replacement shell.
-+BASH_ENV=/dev/null
-+ENV=/dev/null
-+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
-+case $- in # ((((
-+ *v*x* | *x*v* ) as_opts=-vx ;;
-+ *v* ) as_opts=-v ;;
-+ *x* ) as_opts=-x ;;
-+ * ) as_opts= ;;
-+esac
-+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
-+# Admittedly, this is quite paranoid, since all the known shells bail
-+# out after a failed `exec'.
-+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
-+exit 255
- fi
-
- if test x$as_have_required = xno; then :
-@@ -339,6 +367,14 @@ $as_echo X"$as_dir" |
-
-
- } # as_fn_mkdir_p
-+
-+# as_fn_executable_p FILE
-+# -----------------------
-+# Test if FILE is an executable regular file.
-+as_fn_executable_p ()
-+{
-+ test -f "$1" && test -x "$1"
-+} # as_fn_executable_p
- # as_fn_append VAR VALUE
- # ----------------------
- # Append the text in VALUE to the end of the definition contained in VAR. Take
-@@ -460,6 +496,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
- chmod +x "$as_me.lineno" ||
- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
-
-+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
-+ # already done that, so ensure we don't try to do so again and fall
-+ # in an infinite loop. This has already happened in practice.
-+ _as_can_reexec=no; export _as_can_reexec
- # Don't try to exec as it changes $[0], causing all sort of problems
- # (the dirname of $[0] is not the place where we might find the
- # original and so on. Autoconf is especially sensitive to this).
-@@ -494,16 +534,16 @@ if (echo >conf$$.file) 2>/dev/null; then
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-- # In both cases, we have to default to `cp -p'.
-+ # In both cases, we have to default to `cp -pR'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-- as_ln_s='cp -p'
-+ as_ln_s='cp -pR'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
-- as_ln_s='cp -p'
-+ as_ln_s='cp -pR'
- fi
- else
-- as_ln_s='cp -p'
-+ as_ln_s='cp -pR'
- fi
- rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
- rmdir conf$$.dir 2>/dev/null
-@@ -515,28 +555,8 @@ else
- as_mkdir_p=false
- fi
-
--if test -x / >/dev/null 2>&1; then
-- as_test_x='test -x'
--else
-- if ls -dL / >/dev/null 2>&1; then
-- as_ls_L_option=L
-- else
-- as_ls_L_option=
-- fi
-- as_test_x='
-- eval sh -c '\''
-- if test -d "$1"; then
-- test -d "$1/.";
-- else
-- case $1 in #(
-- -*)set "./$1";;
-- esac;
-- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
-- ???[sx]*):;;*)false;;esac;fi
-- '\'' sh
-- '
--fi
--as_executable_p=$as_test_x
-+as_test_x='test -x'
-+as_executable_p=as_fn_executable_p
-
- # Sed expression to map a string onto a valid CPP name.
- as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -1402,8 +1422,6 @@ target=$target_alias
- if test "x$host_alias" != x; then
- if test "x$build_alias" = x; then
- cross_compiling=maybe
-- $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
-- If a cross compiler is detected then cross compile mode will be used" >&2
- elif test "x$build_alias" != "x$host_alias"; then
- cross_compiling=yes
- fi
-@@ -1567,10 +1585,12 @@ Optional Features:
- --disable-option-checking ignore unrecognized --enable/--with options
- --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
- --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
-- --enable-silent-rules less verbose build output (undo: `make V=1')
-- --disable-silent-rules verbose build output (undo: `make V=0')
-- --disable-dependency-tracking speeds up one-time build
-- --enable-dependency-tracking do not reject slow dependency extractors
-+ --enable-silent-rules less verbose build output (undo: "make V=1")
-+ --disable-silent-rules verbose build output (undo: "make V=0")
-+ --enable-dependency-tracking
-+ do not reject slow dependency extractors
-+ --disable-dependency-tracking
-+ speeds up one-time build
- --enable-shared[=PKGS] build shared libraries [default=yes]
- --enable-static[=PKGS] build static libraries [default=yes]
- --enable-fast-install[=PKGS]
-@@ -1783,9 +1803,9 @@ test -n "$ac_init_help" && exit $ac_stat
- if $ac_init_version; then
- cat <<\_ACEOF
- elementary configure 1.7.7
--generated by GNU Autoconf 2.68
-+generated by GNU Autoconf 2.69
-
--Copyright (C) 2010 Free Software Foundation, Inc.
-+Copyright (C) 2012 Free Software Foundation, Inc.
- This configure script is free software; the Free Software Foundation
- gives unlimited permission to copy, distribute and modify it.
- _ACEOF
-@@ -2062,7 +2082,7 @@ $as_echo "$ac_try_echo"; } >&5
- test ! -s conftest.err
- } && test -s conftest$ac_exeext && {
- test "$cross_compiling" = yes ||
-- $as_test_x conftest$ac_exeext
-+ test -x conftest$ac_exeext
- }; then :
- ac_retval=0
- else
-@@ -2206,7 +2226,7 @@ This file contains any messages produced
- running configure, to aid debugging if configure makes a mistake.
-
- It was created by elementary $as_me 1.7.7, which was
Home |
Main Index |
Thread Index |
Old Index