[BitchX] update source
by Dan Mashal
commit 5ba2a020f3bfacaa2b53fce9dbafd2a446ff37ee
Author: vicodan(a)fedorapeople.org <vicodan(a)fedoraproject.org>
Date: Mon Apr 30 16:28:47 2012 -0700
update source
7Â years, 7Â months
[BitchX] updated source
by Dan Mashal
commit 642d4cc4143b68c600e2161d24893586a225e2b2
Author: vicodan(a)fedorapeople.org <vicodan(a)fedoraproject.org>
Date: Mon Apr 30 16:28:22 2012 -0700
updated source
7Â years, 7Â months
[sugar-artwork] 0.96.1
by Peter Robinson
commit f505c25b719024071f14b1b71c04c256bef82d3a
Author: Peter Robinson <pbrobinson(a)gmail.com>
Date: Tue May 1 00:23:34 2012 +0100
0.96.1
sources | 2 +-
sugar-artwork.spec | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/sources b/sources
index d51c5b6..1548e7b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ede5a6edbf153237b2079566209632c7 sugar-artwork-0.96.0.tar.bz2
+8d4aba579c7d88b51f7ee1d752f96bb9 sugar-artwork-0.96.1.tar.bz2
diff --git a/sugar-artwork.spec b/sugar-artwork.spec
index d40b6fc..f833f61 100644
--- a/sugar-artwork.spec
+++ b/sugar-artwork.spec
@@ -1,6 +1,6 @@
Summary: Artwork for Sugar look-and-feel
Name: sugar-artwork
-Version: 0.96.0
+Version: 0.96.1
Release: 1%{?dist}
URL: http://sugarlabs.org
Group: User Interface/Desktops
@@ -62,6 +62,9 @@ touch --no-create %{_datadir}/icons/sugar || :
%{_datadir}/themes/sugar-72/gtk-3.0/assets/*
%changelog
+* Mon Apr 30 2012 Peter Robinson <pbrobinson(a)fedoraproject.org> - 0.96.1-1
+- 0.96.1 stable release
+
* Tue Apr 24 2012 Peter Robinson <pbrobinson(a)fedoraproject.org> - 0.96.0-1
- 0.96.0 stable release
7Â years, 7Â months
[BitchX] removed tarball
by Dan Mashal
commit e65cc8df844048dd611ad4042933d74b05e5c6b3
Author: vicodan(a)fedorapeople.org <vicodan(a)fedoraproject.org>
Date: Mon Apr 30 16:15:43 2012 -0700
removed tarball
BitchX1.2.tar.gz | Bin 10926080 -> 0 bytes
1 files changed, 0 insertions(+), 0 deletions(-)
7Â years, 7Â months
[systemtap/f17: 5/5] fix merge
by Peter Robinson
commit f395bbb47d7c954210da296e6c3a592ba51e82b4
Merge: cc32092 c39c596
Author: Peter Robinson <pbrobinson(a)gmail.com>
Date: Tue May 1 00:15:30 2012 +0100
fix merge
systemtap.spec | 65 ++++++++++++++++++++++---------------------------------
1 files changed, 26 insertions(+), 39 deletions(-)
---
diff --cc systemtap.spec
index e6db00c,bc7bc52..eda46ea
--- a/systemtap.spec
+++ b/systemtap.spec
@@@ -11,11 -12,7 +12,11 @@@
%{!?pie_supported: %global pie_supported 1}
%{!?with_grapher: %global with_grapher 1}
%{!?with_boost: %global with_boost 0}
- %ifarch %{arm} ppc ppc64 # Broken fop/java on ARM.
++%ifarch ppc ppc64 # Broken fop/java on ARM.
+%{!?with_publican: %global with_publican 0}
+%else
%{!?with_publican: %global with_publican 1}
+%endif
%{!?publican_brand: %global publican_brand fedora}
Name: systemtap
7Â years, 7Â months
[systemtap/f17] (5 commits) ...fix merge
by Peter Robinson
Summary of changes:
763072b... reenable with_docs on arm (*)
c8dbf1c... Rebuild for rpm soname bump. (*)
95c5ee5... rebuild on PPC(64) without crash, publican (*)
c39c596... Enable crash support on ARM, cleanup spec (*)
f395bbb... fix merge
(*) This commit already existed in another branch; no separate mail sent
7Â years, 7Â months
[ltrace] Fix 32-bit builds
by Petr Machata
commit 17b8f90393695816dff1d2181b8666589bc5de30
Author: Petr Machata <pmachata(a)redhat.com>
Date: Tue May 1 01:14:39 2012 +0200
Fix 32-bit builds
Fallout of libs patch, therefore rolled into it.
ltrace-0.6.0-libs.patch | 50 +++++++++++++++++++++++++++++++++++++++++++++++
ltrace.spec | 5 +++-
2 files changed, 54 insertions(+), 1 deletions(-)
---
diff --git a/ltrace-0.6.0-libs.patch b/ltrace-0.6.0-libs.patch
index 5d2557f..a433ee2 100644
--- a/ltrace-0.6.0-libs.patch
+++ b/ltrace-0.6.0-libs.patch
@@ -10188,3 +10188,53 @@ diff -urp ltrace-0.6.0-orig/sysdeps/linux-gnu/Makefile.in ltrace-0.6.0/sysdeps/l
EXTRA_DIST = \
arch_mksyscallent \
+diff --git a/ltrace-elf.c b/ltrace-elf.c
+index a311c5f..b1af070 100644
+--- a/ltrace-elf.c
++++ b/ltrace-elf.c
+@@ -175,8 +175,8 @@ need_data(Elf_Data *data, GElf_Xword offset, GElf_Xword size)
+ {
+ assert(data != NULL);
+ if (data->d_size < size || offset > data->d_size - size) {
+- debug(1, "Not enough data to read %zd-byte value"
+- " at offset %zd.", size, offset);
++ debug(1, "Not enough data to read %"PRId64"-byte value"
++ " at offset %"PRId64".", size, offset);
+ return -1;
+ }
+ return 0;
+diff --git a/sysdeps/linux-gnu/ppc/plt.c b/sysdeps/linux-gnu/ppc/plt.c
+index 3b6a25f..9717738 100644
+--- a/sysdeps/linux-gnu/ppc/plt.c
++++ b/sysdeps/linux-gnu/ppc/plt.c
+@@ -230,7 +230,9 @@ arch_translate_address_dyn(struct Process *proc,
+ error(0, errno, "dynamic .opd translation of %p", addr);
+ return -1;
+ }
+- *ret = (target_address_t)value;
++ /* XXX The double cast should be removed when
++ * target_address_t becomes integral type. */
++ *ret = (target_address_t)(uintptr_t)value;
+ return 0;
+ }
+
+@@ -243,14 +245,17 @@ arch_translate_address(struct ltelf *lte,
+ target_address_t addr, target_address_t *ret)
+ {
+ if (lte->ehdr.e_machine == EM_PPC64) {
+- GElf_Xword offset = (GElf_Addr)addr - lte->arch.opd_base;
++ /* XXX The double cast should be removed when
++ * target_address_t becomes integral type. */
++ GElf_Xword offset
++ = (GElf_Addr)(uintptr_t)addr - lte->arch.opd_base;
+ uint64_t value;
+ if (elf_read_u64(lte->arch.opd_data, offset, &value) < 0) {
+ error(0, 0, "static .opd translation of %p: %s", addr,
+ elf_errmsg(-1));
+ return -1;
+ }
+- *ret = (target_address_t)(value + lte->bias);
++ *ret = (target_address_t)(uintptr_t)(value + lte->bias);
+ return 0;
+ }
+
diff --git a/ltrace.spec b/ltrace.spec
index 2f9bc85..ef83315 100644
--- a/ltrace.spec
+++ b/ltrace.spec
@@ -1,7 +1,7 @@
Summary: Tracks runtime library calls from dynamically linked executables
Name: ltrace
Version: 0.6.0
-Release: 11%{?dist}
+Release: 12%{?dist}
URL: http://ltrace.alioth.debian.org/
License: GPLv2+
Group: Development/Debuggers
@@ -88,6 +88,9 @@ echo ====================TESTING END=====================
%config(noreplace) %{_sysconfdir}/ltrace.conf
%changelog
+* Mon Apr 30 2012 Petr Machata <pmachata(a)redhat.com> - 0.6.0-12
+- Fix 32-bit builds
+
* Mon Apr 30 2012 Petr Machata <pmachata(a)redhat.com> - 0.6.0-11
- Fix detach from sleeping process
- Add limited support for return from tail call
7Â years, 7Â months