Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (f63a188e56abc02e0d2953090ade3b64ba35df62)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (f63a188e56abc02e0d2953090ade3b64ba35df62)
  • Date: Wed, 16 Aug 2017 18:30:53 +0000

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

gnome2-libs/libglade2/DEPENDS | 1 +
gnome2-libs/libglade2/HISTORY | 3 +++
gnome2-libs/libwnck/DEPENDS | 1 +
gnome2-libs/libwnck/HISTORY | 3 +++
libs/glibc/DEPENDS | 8 ++++++++
libs/glibc/HISTORY | 4 ++++
xfce/libxfcegui4/DEPENDS | 1 +
xfce/libxfcegui4/HISTORY | 3 +++
xfce/xfce4-panel/DEPENDS | 1 +
xfce/xfce4-panel/HISTORY | 3 +++
xfce/xfce4-session/DEPENDS | 1 +
xfce/xfce4-session/HISTORY | 3 +++
xorg-lib/libxfont/DEPENDS | 3 ++-
xorg-lib/libxfont/HISTORY | 3 +++
xorg-lib/libxfont2/DEPENDS | 3 ++-
xorg-lib/libxfont2/HISTORY | 3 +++
16 files changed, 42 insertions(+), 2 deletions(-)

New commits:
commit f63a188e56abc02e0d2953090ade3b64ba35df62
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

glibc: Force gcc to be built if major version upgrade

e.g. gcc 4.6.4 (stable-0.62-10) -> gcc 7.2.0 (test-0.63)

commit 4c67f8be3fddfe2b674da70350804925a6a81973
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

xfce4-session: Depends on libpng

commit ad8eee55f656558fc9e746d6a8cd9a51b8994661
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

xfce4-panel: Depends on libpng

commit c346153ef7f89ada80c74355805dd73ac5834825
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libxfont2: Depends on libpng

commit afd0e862041fc5e745649e312294c7fa1fab656d
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libxfont: Depends on libpng

commit 4aa146e68676a6eb19df3a06c93e315320f44797
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libxfcegui4: Depends on libpng

commit 4a9bec5b6665c447c7f0e54f2c4ac47dbc8b70aa
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libwnck: Depends on libpng

commit cb7b32dd69efbcfdb7212ea5568bef7b1631f1eb
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libglade2: Depends on libpng

diff --git a/gnome2-libs/libglade2/DEPENDS b/gnome2-libs/libglade2/DEPENDS
index d49e8fd..fc33db4 100755
--- a/gnome2-libs/libglade2/DEPENDS
+++ b/gnome2-libs/libglade2/DEPENDS
@@ -1,5 +1,6 @@
depends expat &&
depends gtk+2 &&
+depends libpng &&
depends libxml2 &&
depends python &&
depends atk &&
diff --git a/gnome2-libs/libglade2/HISTORY b/gnome2-libs/libglade2/HISTORY
index 2d287a6..b9b43d5 100644
--- a/gnome2-libs/libglade2/HISTORY
+++ b/gnome2-libs/libglade2/HISTORY
@@ -1,3 +1,6 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Depends on libpng
+
2012-05-26 Sukneet Basuta <sukneet AT sourcemage.org>
* DEPENDS: added depends atk

diff --git a/gnome2-libs/libwnck/DEPENDS b/gnome2-libs/libwnck/DEPENDS
index 1eea9d0..c3cfd92 100755
--- a/gnome2-libs/libwnck/DEPENDS
+++ b/gnome2-libs/libwnck/DEPENDS
@@ -1,4 +1,5 @@
depends intltool &&
+depends libpng &&
depends libx11 &&
depends libxext &&
depends libxres &&
diff --git a/gnome2-libs/libwnck/HISTORY b/gnome2-libs/libwnck/HISTORY
index 624a151..a5b280e 100644
--- a/gnome2-libs/libwnck/HISTORY
+++ b/gnome2-libs/libwnck/HISTORY
@@ -1,3 +1,6 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Depends on libpng
+
2012-02-26 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DEPENDS: fixed dependency on startup-notification

diff --git a/libs/glibc/DEPENDS b/libs/glibc/DEPENDS
index 982661c..d627b85 100755
--- a/libs/glibc/DEPENDS
+++ b/libs/glibc/DEPENDS
@@ -6,6 +6,14 @@ depends gnupg &&
depends perl &&
depends smgl-fhs &&
depends smgl-archspecs &&
+
+# Force gcc to update to current version before compiling if major version
does not match
+local GLIBC_INSTALLED_GCC="$(installed_version gcc)" &&
+local GLIBC_GCC_VERSION="$(gaze version gcc | grep gcc | awk '{print $4}' |
cut -d. -f1)" &&
+if [[ "x${GLIBC_INSTALLED_GCC//.*/}" != "x${GLIBC_GCC_VERSION}" ]]; then
+ force_depends gcc
+fi &&
+
runtime_depends tzdata &&
optional_depends libselinux '--with-selinux' '--without-selinux' 'for
selinux support' &&

diff --git a/libs/glibc/HISTORY b/libs/glibc/HISTORY
index 57d3707..5d0b1d9 100644
--- a/libs/glibc/HISTORY
+++ b/libs/glibc/HISTORY
@@ -1,3 +1,7 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Force gcc to be built if major version upgrade
+ e.g. gcc 4.6.4 (stable-0.62-10) -> gcc 7.2.0 (test-0.63)
+
2017-08-10 Eric Sandall <sandalle AT sourcemage.org>
* UP_TRIGGERS: Re-cast spells broken by update to 2.26 by removal of
xlocale.h
See https://bugzilla.redhat.com/show_bug.cgi?id=1464244 (they
should never have
diff --git a/xfce/libxfcegui4/DEPENDS b/xfce/libxfcegui4/DEPENDS
index df0291d..816c21a 100755
--- a/xfce/libxfcegui4/DEPENDS
+++ b/xfce/libxfcegui4/DEPENDS
@@ -1,5 +1,6 @@
depends glib2 &&
depends gtk+2 &&
+depends libpng &&
depends libxml2 &&
depends libxfce4util &&
depends xfconf &&
diff --git a/xfce/libxfcegui4/HISTORY b/xfce/libxfcegui4/HISTORY
index bbf69db..9b0eb7d 100644
--- a/xfce/libxfcegui4/HISTORY
+++ b/xfce/libxfcegui4/HISTORY
@@ -1,3 +1,6 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Depends on libpng
+
2015-04-02 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS: added missing glib2 dependency

diff --git a/xfce/xfce4-panel/DEPENDS b/xfce/xfce4-panel/DEPENDS
index 079e55d..810bb04 100755
--- a/xfce/xfce4-panel/DEPENDS
+++ b/xfce/xfce4-panel/DEPENDS
@@ -4,6 +4,7 @@ depends libxfce4ui &&
depends garcon &&
depends xfconf &&
depends exo &&
+depends libpng &&
depends libxml2 &&
depends libwnck &&
depends dbus-glib &&
diff --git a/xfce/xfce4-panel/HISTORY b/xfce/xfce4-panel/HISTORY
index b0e4f15..1548d26 100644
--- a/xfce/xfce4-panel/HISTORY
+++ b/xfce/xfce4-panel/HISTORY
@@ -1,3 +1,6 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Depends on libpng
+
2015-03-16 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS: added glib2 required dependency

diff --git a/xfce/xfce4-session/DEPENDS b/xfce/xfce4-session/DEPENDS
index 7b32e30..cd15df6 100755
--- a/xfce/xfce4-session/DEPENDS
+++ b/xfce/xfce4-session/DEPENDS
@@ -1,6 +1,7 @@
depends iceauth &&
depends xml-parser-expat &&
depends dbus-glib &&
+depends libpng &&
depends libxfce4ui &&
depends libwnck &&
depends xfconf &&
diff --git a/xfce/xfce4-session/HISTORY b/xfce/xfce4-session/HISTORY
index 76aa892..226916b 100644
--- a/xfce/xfce4-session/HISTORY
+++ b/xfce/xfce4-session/HISTORY
@@ -1,3 +1,6 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Depends on libpng
+
2015-07-17 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: CONSOLE-MANAGER

diff --git a/xorg-lib/libxfont/DEPENDS b/xorg-lib/libxfont/DEPENDS
index 35a6e69..b1079d5 100755
--- a/xorg-lib/libxfont/DEPENDS
+++ b/xorg-lib/libxfont/DEPENDS
@@ -1,5 +1,6 @@
-depends AWK &&
+depends AWK &&
depends pkgconfig &&
+depends libpng &&
depends libtool &&
depends zlib &&
depends util-macros &&
diff --git a/xorg-lib/libxfont/HISTORY b/xorg-lib/libxfont/HISTORY
index 47e0243..dc97224 100644
--- a/xorg-lib/libxfont/HISTORY
+++ b/xorg-lib/libxfont/HISTORY
@@ -1,3 +1,6 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Depends on libpng
+
2016-09-02 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.5.2

diff --git a/xorg-lib/libxfont2/DEPENDS b/xorg-lib/libxfont2/DEPENDS
index 35a6e69..b1079d5 100755
--- a/xorg-lib/libxfont2/DEPENDS
+++ b/xorg-lib/libxfont2/DEPENDS
@@ -1,5 +1,6 @@
-depends AWK &&
+depends AWK &&
depends pkgconfig &&
+depends libpng &&
depends libtool &&
depends zlib &&
depends util-macros &&
diff --git a/xorg-lib/libxfont2/HISTORY b/xorg-lib/libxfont2/HISTORY
index 134b525..71f5f9a 100644
--- a/xorg-lib/libxfont2/HISTORY
+++ b/xorg-lib/libxfont2/HISTORY
@@ -1,3 +1,6 @@
+2017-08-16 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Depends on libpng
+
2015-12-11 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.0.1




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (f63a188e56abc02e0d2953090ade3b64ba35df62), Eric Sandall, 08/16/2017

Archive powered by MHonArc 2.6.24.

Top of Page