Hello community,
here is the log from the commit of package mkinitrd for openSUSE:Factory checked in at 2012-03-30 14:19:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mkinitrd (Old)
and /work/SRC/openSUSE:Factory/.mkinitrd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mkinitrd", Maintainer is "MMarek(a)suse.com"
Changes:
--------
--- /work/SRC/openSUSE:Factory/mkinitrd/mkinitrd.changes 2012-03-29 07:45:38.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.mkinitrd.new/mkinitrd.changes 2012-03-30 14:19:44.000000000 +0200
@@ -1,0 +2,8 @@
+Wed Mar 28 20:35:35 UTC 2012 - rschweikert(a)suse.com
+
+- add patches mkinitrd_cpbin_follow_link.patch and
+ mkinitrd_simplify_netsetup.patch; pull requests 6 & 7 in gitorious
+ - setup-prepare: cp_bin() needs to follow links
+ - setup-network: move loop independent operation outside the loop
+
+-------------------------------------------------------------------
New:
----
mkinitrd_cpbin_follow_link.patch
mkinitrd_simplify_netsetup.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mkinitrd.spec ++++++
--- /var/tmp/diff_new_pack.pNi40j/_old 2012-03-30 14:19:47.000000000 +0200
+++ /var/tmp/diff_new_pack.pNi40j/_new 2012-03-30 14:19:47.000000000 +0200
@@ -51,6 +51,8 @@
# don't change it in the build service without sending the author a
# pull request or patch first. Otherwise, you risk that your changes will be
# silently overwritten by the next submission.
+Patch0: mkinitrd_cpbin_follow_link.patch
+Patch1: mkinitrd_simplify_netsetup.patch
Url: http://gitorious.org/opensuse/mkinitrd
%description
@@ -81,6 +83,8 @@
%prep
%setup
+%patch0
+%patch1
%build
%__cc $RPM_OPT_FLAGS -Wall -Os -o lib/mkinitrd/bin/run-init src/run-init.c
++++++ mkinitrd_cpbin_follow_link.patch ++++++
--- scripts/setup-prepare.sh.orig
+++ scripts/setup-prepare.sh
@@ -23,23 +23,57 @@
##
# Install a binary file
+cp_link() {
+ # Copy the target of the given link $1 to the destination $2
+ # spaces and special characters in file names will break things
+ if [ -h "$1" ]; then
+ lnkTarget=$(readlink $1)
+ if [ -e $lnkTarget ];then
+ cp -a $lnkTarget $2/$lnkTarget
+ else
+ # This link points to something in the same directory
+ lnkSrc="$1"
+ # Get the base bath of the link origin
+ lnkSrcBase=${lnkSrc%/*}
+ cp -a $lnkSrcBase/$lnkTarget $2/$lnkSrcBase/$lnkTarget
+ fi
+ return 1
+ fi
+ return 0
+}
+
cp_bin() {
cp -a "$@" \
|| exit_code=1
- # Remember the binaries installed. We need the list for checking
- # for dynamic libraries.
- while [ $# -gt 1 ]; do
- initrd_bins[${#initrd_bins[@]}]=$1
- shift
- done
- # file may print '^setuid ELF ...'
- # suid mount will fail if mkinitrd was called as user
- if [ -L "$1" ]; then
- : do nothing with symlinks
- elif [ -d "$1" -o -f "$1" ]; then
- find "$1" -type f -print0 | xargs -0 chmod 0755
- fi
+ if [ -h "$1" ]; then
+ lnkTarget=$1
+ # Determine the base bath of the target
+ targetPath="$2"
+ targetBase=${targetPath%$1*}
+ while [ 1 ]; do
+ cp_link $lnkTarget $targetBase
+ lnkCopied=$?
+ if [ $lnkCopied = 0 ]; then
+ if [ -e $lnkTarget ]; then
+ initrd_bins[${#initrd_bins[@]}]=$lnkTarget
+ fi
+ break
+ fi
+ done
+ else
+ # Remember the binaries installed. We need the list for checking
+ # for dynamic libraries.
+ while [ $# -gt 1 ]; do
+ initrd_bins[${#initrd_bins[@]}]=$1
+ shift
+ done
+ # file may print '^setuid ELF ...'
+ # suid mount will fail if mkinitrd was called as user
+ if [ -d "$1" -o -f "$1" ]; then
+ find "$1" -type f -print0 | xargs -0 chmod 0755
+ fi
+ fi
}
# check if we should use script or feature $1
++++++ mkinitrd_simplify_netsetup.patch ++++++
--- scripts/setup-network.sh.orig
+++ scripts/setup-network.sh
@@ -306,18 +306,14 @@ for f in /{lib,etc}/udev/rules.d/77-netw
continue
fi
cp --parents "$f" $tmp_mnt/
- cp_bin /sbin/ifup $tmp_mnt/sbin/ifup
- mkdir -p $tmp_mnt/etc/alternatives
- for bin in /bin/{g,}awk /etc/alternatives/awk; do
- if test -e $bin; then
- cp_bin $bin $tmp_mnt/$bin
- fi
- done
- cp_bin /bin/grep $tmp_mnt/bin/grep
- cp_bin /bin/logger $tmp_mnt/bin/logger
- cp_bin /bin/touch $tmp_mnt/bin/touch
- break
done
+# awk points to alternatives, need the directory
+mkdir -p $tmp_mnt/etc/alternatives
+cp_bin /bin/awk $tmp_mnt/bin/awk
+cp_bin /bin/grep $tmp_mnt/bin/grep
+cp_bin /sbin/ifup $tmp_mnt/sbin/ifup
+cp_bin /bin/logger $tmp_mnt/bin/logger
+cp_bin /bin/touch $tmp_mnt/bin/touch
test -n "$static_interfaces" && verbose "[NETWORK]\tstatic: $static_interfaces"
test -n "$dhcp_interfaces" && verbose "[NETWORK]\tdynamic: $dhcp_interfaces"
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
Hello community,
here is the log from the commit of package kimtoy for openSUSE:Factory checked in at 2012-03-30 14:19:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kimtoy (Old)
and /work/SRC/openSUSE:Factory/.kimtoy.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kimtoy", Maintainer is ""
Changes:
--------
--- /work/SRC/openSUSE:Factory/kimtoy/kimtoy.changes 2012-03-20 11:29:56.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kimtoy.new/kimtoy.changes 2012-03-30 14:19:27.000000000 +0200
@@ -1,0 +2,13 @@
+Fri Mar 30 00:28:05 UTC 2012 - i(a)marguerite.su
+
+- Update version 1.6
+ * statusbar will not overlap fullscreen application
+ * fix scim-kconfig symbol name so to be loaded correctly
+ * rewrite scim-panel using dbus-c++
+ * fix the issue that scim panel freezes after quit
+ * add trayicon bar mode
+ * disable statusbar theme and property widget meanwhile
+ * fix a rare crash in loading theme
+ * update libpng-apng copy to 1.5.9
+
+-------------------------------------------------------------------
Old:
----
kimtoy-1.5.tar.bz2
New:
----
kimtoy-1.6.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kimtoy.spec ++++++
--- /var/tmp/diff_new_pack.IIXhUv/_old 2012-03-30 14:19:28.000000000 +0200
+++ /var/tmp/diff_new_pack.IIXhUv/_new 2012-03-30 14:19:28.000000000 +0200
@@ -17,7 +17,7 @@
Name: kimtoy
-Version: 1.5
+Version: 1.6
Release: 1
Summary: An input method frontend for KDE. It is an alternative to kimpanel
Url: http://kde-apps.org/content/show.php/KIMToy?content=140967
++++++ kimtoy-1.5.tar.bz2 -> kimtoy-1.6.tar.bz2 ++++++
++++ 14848 lines of diff (skipped)
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
Hello community,
here is the log from the commit of package empathy for openSUSE:Factory checked in at 2012-03-30 14:18:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/empathy (Old)
and /work/SRC/openSUSE:Factory/.empathy.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "empathy", Maintainer is "gnome-maintainers(a)suse.de"
Changes:
--------
--- /work/SRC/openSUSE:Factory/empathy/empathy.changes 2012-02-20 16:08:00.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.empathy.new/empathy.changes 2012-03-30 14:19:08.000000000 +0200
@@ -1,0 +2,98 @@
+Mon Mar 26 15:23:35 UTC 2012 - vuntz(a)opensuse.org
+
+- Update to version 3.4.0:
+ + Bugs fixed: bgo#672504, bgo#672506, bgo#672508, bgo#672596,
+ bgo#672608, bgo#672633, bgo#672828.
+ + Updated translations.
+
+-------------------------------------------------------------------
+Mon Mar 26 07:32:37 UTC 2012 - vuntz(a)opensuse.org
+
+- Remove hack to find localized help: this has been fixed in
+ find-lang.sh.
+
+-------------------------------------------------------------------
+Tue Mar 20 16:50:13 UTC 2012 - vuntz(a)opensuse.org
+
+- Update to version 3.3.92:
+ + Bugs fixed: bgo#616159, bgo#671035, bgo#671547, bgo#671644,
+ bgo#671718, bgo#671720, bgo#671790, bgo#671875, bgo#671884,
+ bgo#671914, bgo#671931, bgo#671981, bgo#671983, bgo#671994,
+ bgo#672036, bgo#672037, bgo#672063, bgo#672120.
+ + Updated translations.
+- Remove sed hacks from %prep to use libchamplain 0.12 instead of
+ libchamplain 0.13/0.14: the dependency moved back to 0.12.
+
+-------------------------------------------------------------------
+Tue Mar 6 18:54:56 UTC 2012 - dimstar(a)opensuse.org
+
+- Update to version 3.3.91:
+ + bgo#661515: Wrong date is shown in chat window
+ + bgo#671447: Make running empathy components without
+ installing them simpler
+ + bgo#671452: Avoid XMPP accounts to have a negative priority
+ + Updated translations.
+
+-------------------------------------------------------------------
+Fri Mar 2 19:24:49 UTC 2012 - dimstar(a)opensuse.org
+
+- Update to version 3.3.90.2:
+ + Optionally brings back empathy-av
+ + Bugs fixed:
+ + bgo#656676: Use new documentation infrastructure
+ + bgo#671061, Debug: Clear doesn't work for the All option
+ + Upudated translations.
+
+-------------------------------------------------------------------
+Mon Feb 27 10:51:59 UTC 2012 - vuntz(a)opensuse.org
+
+- Update to version 3.3.90.1:
+ + Fixed a bunch of memory leaks in the new call window.
+ + Build fixes.
+ + Bugs fixed: bgo#670638.
+ + Updated translations.
+- Drop empathy-farstream.patch: fixed upstream.
+- Change itstool BuildRequires to yelp-tools: this is really what
+ is needed for build.
+- Add sed hacks in %prep to use libchamplain 0.12 instead of
+ libchamplain 0.13/0.14: there's no release for libchamplain
+ 0.13/0.14 yet, so it makes no sense to try to use it.
+- Manually list the translated help documents as %find_lang needs
+ to support the new XDG help system first.
+
+-------------------------------------------------------------------
+Tue Feb 21 20:37:31 UTC 2012 - dimstar(a)opensuse.org
+
+- Update to version 3.3.90:
+ + New call UI, based on Clutter and Farstream.
+ + Stop using telepathy-butterfly and now rely on telepathy-haze
+ to connect to MSN. Accounts should be automatically migrated
+ with the next telepathy-mission-control release (5.11.0).
+ + Rely on gnome-contacts to display contacts' details and link
+ contacts together.
+ + Remove accounts assistant and integrate its features into the
+ accounts dialog.
+ + Add ability in debug window to display the logs from all the
+ components together and to upload them easily to pastebin.
+ + Bugs fixed: bgo#629902, bgo#659683, bgo#652669, bgo#592994,
+ bgo#627658, bgo#632739, bgo#646654, bgo#655101, bgo#656097,
+ bgo#658724, bgo#663627, bgo#663829, bgo#664045, bgo#668985,
+ bgo#669482, bgo#669559, bgo#669578, bgo#669655, bgo#669676,
+ bgo#669695, bgo#669712, bgo#669823, bgo#670201, bgo#670203.
+- Replace gnome-doc-utils-devel BuildRequires with itstool,
+ following upstream changes regarding help implementation.
+- Changed BuildRequires following upstream changes related to new
+ call UI:
+ + Remove pkgconfig(telepathy-farsight).
+ + Add pkgconfig(clutter-gst-1.0), pkgconfig(farstream-0.1),
+ pkgconfig(telepathy-farstream).
+- Add gnome-contacts Requires, so contacts can be displayed.
+- Remove telepathy-butterfly Recommends, as telepathy-haze is now
+ used for MSN connections. Note that we already have a
+ telepathy-haze Recommends.
+- Remove --disable-scrollkeeper from configure call: it is not
+ known anymore.
+- Add empathy-farstream.patch: Replace final farsight includes with
+ respective farstream includes.
+
+-------------------------------------------------------------------
Old:
----
empathy-3.3.5.tar.xz
New:
----
empathy-3.4.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ empathy.spec ++++++
--- /var/tmp/diff_new_pack.KbRu72/_old 2012-03-30 14:19:09.000000000 +0200
+++ /var/tmp/diff_new_pack.KbRu72/_new 2012-03-30 14:19:09.000000000 +0200
@@ -17,35 +17,36 @@
Name: empathy
-Version: 3.3.5
+Version: 3.4.0
Release: 0
-# FIXME: add telepathy-fastream BuildRequires when upstream is happy with it (ie, not experimental anymore)
Summary: Instant Messenger Client for GNOME, based on Telepathy
License: GPL-2.0+
Group: Productivity/Networking/Instant Messenger
Url: http://live.gnome.org/Empathy
-Source: http://download.gnome.org/sources/empathy/3.3/%{name}-%{version}.tar.xz
+Source: http://download.gnome.org/sources/empathy/3.4/%{name}-%{version}.tar.xz
Source99: %{name}-rpmlintrc
BuildRequires: fdupes
-BuildRequires: gnome-doc-utils-devel
BuildRequires: intltool
BuildRequires: translation-update-upstream
BuildRequires: update-desktop-files
+BuildRequires: yelp-tools
BuildRequires: pkgconfig(champlain-gtk-0.12) >= 0.12.1
BuildRequires: pkgconfig(cheese-gtk)
-BuildRequires: pkgconfig(clutter-1.0) >= 1.7.14
-BuildRequires: pkgconfig(clutter-gtk-1.0)
+BuildRequires: pkgconfig(clutter-1.0) >= 1.8.0
+BuildRequires: pkgconfig(clutter-gst-1.0) >= 1.5.2
+BuildRequires: pkgconfig(clutter-gtk-1.0) >= 0.90.3
BuildRequires: pkgconfig(enchant)
+BuildRequires: pkgconfig(farstream-0.1)
BuildRequires: pkgconfig(folks-telepathy) >= 0.6.6
BuildRequires: pkgconfig(gcr-3)
-BuildRequires: pkgconfig(geoclue)
+BuildRequires: pkgconfig(geoclue) >= 0.12
BuildRequires: pkgconfig(geocode-glib)
BuildRequires: pkgconfig(gnome-keyring-1)
BuildRequires: pkgconfig(gnutls)
BuildRequires: pkgconfig(goa-1.0) >= 3.3.0
BuildRequires: pkgconfig(gsettings-desktop-schemas)
BuildRequires: pkgconfig(gstreamer-0.10)
-BuildRequires: pkgconfig(gtk+-3.0) >= 3.0.2
+BuildRequires: pkgconfig(gtk+-3.0) >= 3.3.6
BuildRequires: pkgconfig(gudev-1.0)
BuildRequires: pkgconfig(iso-codes)
BuildRequires: pkgconfig(libcanberra-gtk3)
@@ -57,10 +58,13 @@
BuildRequires: pkgconfig(libsoup-2.4)
BuildRequires: pkgconfig(mission-control-plugins)
BuildRequires: pkgconfig(nautilus-sendto)
-BuildRequires: pkgconfig(telepathy-farsight) >= 0.0.14
-BuildRequires: pkgconfig(telepathy-glib) >= 0.17.3
+BuildRequires: pkgconfig(telepathy-farstream) >= 0.2.1
+BuildRequires: pkgconfig(telepathy-glib) >= 0.17.5
BuildRequires: pkgconfig(telepathy-logger-0.2) >= 0.2.10
BuildRequires: pkgconfig(webkitgtk-3.0) >= 1.3.13
+# Not strictly required but empathy now relies on gnome-contacts to
+# display contacts' details and link contacts together.
+Requires: gnome-contacts
Requires: iso-codes
Requires: telepathy-gabble
Requires: telepathy-logger
@@ -68,7 +72,6 @@
Requires: telepathy-salut
Recommends: %{name}-lang
Recommends: geoclue
-Recommends: telepathy-butterfly
Recommends: telepathy-haze
Recommends: telepathy-idle
# The applets and the libraries have been removed
@@ -121,7 +124,6 @@
%build
%configure --disable-static \
--with-pic \
- --disable-scrollkeeper \
--enable-goa
make %{?_smp_mflags} V=1
@@ -160,10 +162,7 @@
%files
%defattr(-,root,root)
%doc README TODO
-%dir %{_datadir}/gnome/
-%dir %{_datadir}/gnome/help/
-%dir %{_datadir}/gnome/help/%{name}/
-%doc %{_datadir}/gnome/help/%{name}/C/
+%doc %{_datadir}/help/C/%{name}/
%{_bindir}/empathy
%{_bindir}/empathy-accounts
%{_bindir}/empathy-debugger
@@ -176,7 +175,7 @@
%{_datadir}/glib-2.0/schemas/org.gnome.Empathy.gschema.xml
%{_datadir}/telepathy/clients/*.client
%{_libexecdir}/empathy-auth-client
-%{_libexecdir}/empathy-av
+%{_libexecdir}/empathy-call
%{_libexecdir}/empathy-chat
%{_mandir}/man1/empathy.1%{?ext_man}
%{_mandir}/man1/empathy-accounts.1%{?ext_man}
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org