openSUSE Commits
Threads by month
- ----- 2025 -----
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
May 2006
- 1 participants
- 1219 discussions
Hello community,
here is the log from the commit of package cairo
checked in at Sun May 7 15:49:26 CEST 2006.
--------
--- GNOME/cairo/cairo.changes 2006-03-23 22:17:32.000000000 +0100
+++ STABLE/cairo/cairo.changes 2006-04-28 18:46:40.000000000 +0200
@@ -1,0 +2,7 @@
+Fri Apr 28 18:46:08 CEST 2006 - mfabian(a)suse.de
+
+- Bugzilla #104365: delete fontconfig pattern elements before
+ trying to add them if the intention is to override default
+ settings.
+
+-------------------------------------------------------------------
New:
----
bugzilla-104365.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ cairo.spec ++++++
--- /var/tmp/diff_new_pack.jQNeya/_old 2006-05-07 15:48:28.000000000 +0200
+++ /var/tmp/diff_new_pack.jQNeya/_new 2006-05-07 15:48:28.000000000 +0200
@@ -17,13 +17,14 @@
Summary: Vector Graphics Library with Cross-Device Output Support
URL: http://cairographics.org/
Version: 1.0.2
-Release: 18
+Release: 26
Source0: %name-%version.tar.bz2
Patch1: bugzilla-113545-embedded-bitmap-support.patch
Patch2: cairo-remove-requires-private.patch
Patch3: cairo-defines.patch
Patch4: cairo-1.0.2-depth-fix-1.patch
Patch5: cairo-1.0.2-chunk-glyphs-CVE-2006-0528.patch
+Patch6: bugzilla-104365.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Obsoletes: libpixman
@@ -79,6 +80,7 @@
%patch3 -p1
%patch4
%patch5 -p1
+%patch6 -p1
%build
autoconf
@@ -121,6 +123,10 @@
/opt/gnome/share/gtk-doc/html/*
%changelog -n cairo
+* Fri Apr 28 2006 - mfabian(a)suse.de
+- Bugzilla #104365: delete fontconfig pattern elements before
+ trying to add them if the intention is to override default
+ settings.
* Thu Mar 23 2006 - gekker(a)suse.de
- Fixes cairo crash in evolution with specific mails (#159675)
- CVE-2006-0528
++++++ bugzilla-104365.patch ++++++
diff -ru cairo-1.0.2.orig/src/cairo-ft-font.c cairo-1.0.2/src/cairo-ft-font.c
--- cairo-1.0.2.orig/src/cairo-ft-font.c 2005-10-03 22:44:42.000000000 +0200
+++ cairo-1.0.2/src/cairo-ft-font.c 2006-04-28 18:43:54.000000000 +0200
@@ -2384,16 +2384,12 @@
if (options->antialias != CAIRO_ANTIALIAS_DEFAULT)
{
- if (FcPatternGet (pattern, FC_ANTIALIAS, 0, &v) == FcResultNoMatch)
- {
+ FcPatternDel (pattern, FC_ANTIALIAS);
FcPatternAddBool (pattern, FC_ANTIALIAS, options->antialias != CAIRO_ANTIALIAS_NONE);
- }
}
if (options->antialias != CAIRO_ANTIALIAS_DEFAULT)
{
- if (FcPatternGet (pattern, FC_RGBA, 0, &v) == FcResultNoMatch)
- {
int rgba;
if (options->antialias == CAIRO_ANTIALIAS_SUBPIXEL) {
@@ -2416,20 +2412,16 @@
} else {
rgba = FC_RGBA_NONE;
}
-
+ FcPatternDel (pattern, FC_RGBA);
FcPatternAddInteger (pattern, FC_RGBA, rgba);
- }
}
if (options->hint_style != CAIRO_HINT_STYLE_DEFAULT)
{
- if (FcPatternGet (pattern, FC_HINTING, 0, &v) == FcResultNoMatch)
- {
+ FcPatternDel (pattern, FC_HINTING);
FcPatternAddBool (pattern, FC_HINTING, options->hint_style != CAIRO_HINT_STYLE_NONE);
- }
#ifdef FC_HINT_STYLE
- if (FcPatternGet (pattern, FC_HINT_STYLE, 0, &v) == FcResultNoMatch)
{
int hint_style;
@@ -2445,7 +2437,8 @@
hint_style = FC_HINT_FULL;
break;
}
-
+
+ FcPatternDel (pattern, FC_HINT_STYLE);
FcPatternAddInteger (pattern, FC_HINT_STYLE, hint_style);
}
#endif
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package binutils
checked in at Sun May 7 15:48:24 CEST 2006.
--------
--- binutils/binutils.changes 2006-04-11 11:45:55.000000000 +0200
+++ STABLE/binutils/binutils.changes 2006-05-05 16:35:46.000000000 +0200
@@ -1,0 +2,5 @@
+Fri May 5 16:32:26 CEST 2006 - schwab(a)suse.de
+
+- Fix huge link times [#167593].
+
+-------------------------------------------------------------------
cross-alpha-binutils.changes: same change
cross-arm-binutils.changes: same change
cross-avr-binutils.changes: same change
cross-hppa-binutils.changes: same change
cross-i386-binutils.changes: same change
cross-ia64-binutils.changes: same change
cross-mips-binutils.changes: same change
cross-ppc-binutils.changes: same change
cross-ppc64-binutils.changes: same change
cross-s390-binutils.changes: same change
cross-s390x-binutils.changes: same change
cross-sparc-binutils.changes: same change
cross-x86_64-binutils.changes: same change
New:
----
elf-kept-section.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ binutils.spec ++++++
--- /var/tmp/diff_new_pack.VXynS2/_old 2006-05-07 15:46:40.000000000 +0200
+++ /var/tmp/diff_new_pack.VXynS2/_new 2006-05-07 15:46:40.000000000 +0200
@@ -49,7 +49,7 @@
%endif
Autoreqprov: on
Version: 2.16.91.0.5
-Release: 16
+Release: 21
Summary: GNU Binutils
Source: ftp://ftp.kernel.org/pub/linux/devel/binutils/binutils-%{version}.tar.bz2
Source1: pre_checkin.sh
@@ -76,6 +76,7 @@
Patch20: bfd-find-nearest-line.diff
Patch21: pr2442.diff
Patch22: pr2513.diff
+Patch23: elf-kept-section.diff
# Collected by Alan Modra
Patch42: lookup-symbol-in-function-table.diff
Patch43: ppc-stub-sym.diff
@@ -203,6 +204,7 @@
%patch20 -p1
%patch21
%patch22 -p1
+%patch23
#
%patch42
%patch43
@@ -452,6 +454,8 @@
%endif
%changelog -n binutils
+* Fri May 05 2006 - schwab(a)suse.de
+- Fix huge link times [#167593].
* Tue Apr 11 2006 - schwab(a)suse.de
- PR ld/2442: fix quadratic behaviour with many relocations [#157119].
- PR ld/2513: fix invalid TLS reloc merging [#162901].
cross-alpha-binutils.spec: same change
cross-arm-binutils.spec: same change
cross-avr-binutils.spec: same change
cross-hppa-binutils.spec: same change
cross-i386-binutils.spec: same change
cross-ia64-binutils.spec: same change
cross-mips-binutils.spec: same change
cross-ppc-binutils.spec: same change
cross-ppc64-binutils.spec: same change
cross-s390-binutils.spec: same change
cross-s390x-binutils.spec: same change
cross-sparc-binutils.spec: same change
cross-x86_64-binutils.spec: same change
++++++ elf-kept-section.diff ++++++
>From nobody Thu May 4 11:21:13 2006
From: "H. J. Lu" <hjl(a)lucon.org>
Subject: Re: PATCH: Cache the result of _bfd_elf_check_kept_section
To: binutils(a)sources.redhat.com
Cc: matz(a)suse.de
Date: Mon, 24 Apr 2006 20:22:19 -0700
On Mon, Apr 24, 2006 at 07:27:44PM -0700, H. J. Lu wrote:
> On Mon, Apr 24, 2006 at 04:10:56PM -0700, H. J. Lu wrote:
> > On Mon, Apr 24, 2006 at 10:52:53AM -0700, H. J. Lu wrote:
> > > This patch addresses the link speed issue by caching the result of
> > > _bfd_elf_check_kept_section.
> > >
> >
> > Apparently, I didn't include the correct patch. Here is the right one.
> >
>
> Here is a patch without adding a new field to ELF section.
>
>
I think the new field in ELF section is useful to avoid setting
kept_section to -1L.
H.J.
----
2006-04-24 Michael Matz <matz(a)suse.de>
H.J. Lu <hongjiu.lu(a)intel.com>
* elf-bfd.h (bfd_elf_section_data): Add kept_section.
(elf_kept_section): New.
* elflink.c (match_group_member): Correctly iterate group
members.
(_bfd_elf_check_kept_section): Cache the result in
elf_kept_section.
--- bfd/elf-bfd.h.kept 2006-03-16 12:37:42.000000000 -0800
+++ bfd/elf-bfd.h 2006-04-24 20:11:00.000000000 -0700
@@ -1168,6 +1168,10 @@ struct bfd_elf_section_data
the linker. */
asection *next_in_group;
+ /* The pointer to the real kept section. It is computed from the
+ kept_section field in asection due to section group. */
+ asection *kept_section;
+
/* A pointer used for various section optimizations. */
void *sec_info;
};
@@ -1180,6 +1184,7 @@ struct bfd_elf_section_data
#define elf_group_id(sec) (elf_section_data(sec)->group.id)
#define elf_next_in_group(sec) (elf_section_data(sec)->next_in_group)
#define elf_sec_group(sec) (elf_section_data(sec)->sec_group)
+#define elf_kept_section(sec) (elf_section_data(sec)->kept_section)
/* Return TRUE if section has been discarded. */
#define elf_discarded_section(sec) \
--- bfd/elflink.c.kept 2006-04-24 15:36:18.000000000 -0700
+++ bfd/elflink.c 2006-04-24 20:18:03.000000000 -0700
@@ -6782,6 +6782,7 @@ match_group_member (asection *sec, asect
if (bfd_elf_match_symbols_in_sections (s, sec))
return s;
+ s = elf_next_in_group (s);
if (s == first)
break;
}
@@ -6798,7 +6799,14 @@ _bfd_elf_check_kept_section (asection *s
{
asection *kept;
+ kept = elf_kept_section (sec);
+ if (kept)
+ return kept;
+
kept = sec->kept_section;
+ if (!kept)
+ return kept;
+
if (kept != NULL)
{
if (elf_sec_group (sec) != NULL)
@@ -6806,6 +6814,12 @@ _bfd_elf_check_kept_section (asection *s
if (kept != NULL && sec->size != kept->size)
kept = NULL;
}
+
+ if (kept)
+ elf_kept_section (sec) = kept;
+ else
+ sec->kept_section = NULL;
+
return kept;
}
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package beagle-index
checked in at Sun May 7 15:46:18 CEST 2006.
--------
--- GNOME/beagle-index/beagle-index.changes 2006-04-08 09:08:02.000000000 +0200
+++ STABLE/beagle-index/beagle-index.changes 2006-05-01 22:02:32.000000000 +0200
@@ -1,0 +2,10 @@
+Mon May 1 21:59:06 CEST 2006 - joeshaw(a)suse.de
+
+- Update the BuildRequires to contain all the packages in the
+ BASIS, GNOME2, KDE-DESKTOP, and NOVELL-SOFTWARE patterns.
+ *Please keep this in sync with those patterns!* (bnc #169289)
+- Update the version to be 10.1_20060427. Because there's no
+ upstream source, it's re-versioned to match the distribution
+ version and the date of the last sync with the patterns.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ beagle-index.spec ++++++
--- /var/tmp/diff_new_pack.ZHtW4J/_old 2006-05-07 15:45:59.000000000 +0200
+++ /var/tmp/diff_new_pack.ZHtW4J/_new 2006-05-07 15:45:59.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package beagle-index (Version 0.0.13)
+# spec file for package beagle-index (Version 10.1_20060427)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,52 +11,46 @@
# norootforbuild
Name: beagle-index
-BuildRequires: ImageMagick-Magick++ MozillaFirefox OpenEXR alsa-firmware apparmor-docs apparmor-profiles apparmor-utils beagle bitstream-vera blam bug-buddy cdrdao cifs-mount contact-lookup-applet dasher desktop-file-utils dia docbook_4 efont-unicode enchant eog epiphany epiphany-extensions evince evolution-exchange evolution-galago evolution-pilot evolution-sharp evolution-webcal f-spot fam-server fast-user-switch-applet file-roller fonts-config fribidi gaim gaim-galago galago-gtk-sharp gcalctool gcc-c++ gconf-editor gconf-sharp2 gedit ghex ghostscript-fonts-other ghostscript-fonts-std ghostscript-library gimp gimp-cmyk gimp-help glade-sharp2 gmime-devel gnome-applets gnome-backgrounds gnome-blog gnome-cups-manager gnome-games gnome-keyring-manager gnome-mime-data gnome-netstatus gnome-nettool gnome-presence-applet gnome-printer-add gnome-screensaver gnome-session gnome-sharp2 gnome-system-monitor gnome-system-tools gnome-terminal gnome-volume-manager gnomemeeting gnoperni
cus gnumeric gnutls-devel gok gpgme-devel gstreamer010-plugins-good gtk2-themes gtkhtml-sharp2 gtklp hal-gnome hplip-hpijs inkscape intltool ipod-sharp iso_ent kdebase3-SuSE kino libapparmor libdc1394 libgail-gnome libgalago-gtk-devel libgdiplus libglade2-devel libgnomeprintui-devel libgnomeui-devel libopencdk libtiff-devel libwnck-devel liferea linphone-applet lzo mDNSResponder-devel mergeant metacity-themes mjpegtools mkisofs mono-basic mozilla-nss-devel multisync-backup multisync-evolution multisync-irmc-bluetooth multisync-ldap multisync-opie multisync-syncml myspell-british nautilus-open-terminal nautilus-sendto pan pcsc-lite perl-Crypt-SmbHash perl-XML-Parser planner python-xml resapplet rhythmbox scrollkeeper sound-juicer sqlite2-devel taglib thinkeramik-style tomboy update-alternatives update-desktop-files v4l-conf vino wdiff wv-devel wvstreams xine-internal xkeyboard-config xmlcharent xmms-lib xsane yelp zenity zip zvbi
-%ifnarch %ix86
-BuildRequires: banshee compat-curl2 neon
-%else
-BuildRequires: banshee-engine-helix
-%endif
-%ifarch %ix86 ia64 x86_64
-BuildRequires: java-1_4_2-sun
+BuildRequires: beagle
+# Patterns are generated as of Thu Apr 27 22:00:51 CEST 2006
+# BASIS pattern
+BuildRequires: SuSEfirewall2 a2ps aaa_base aaa_skel acl alsa alsa-tools ash at attr audit-libs autofs autoyast2 autoyast2-installation awesfx bash bc bind-libs bind-utils binutils blocxx bluez-libs bluez-utils bootloader-theme-NLD bootsplash bootsplash-theme-SuSE-NLD bzip2 cabextract checkmedia cifs-mount convmv coreutils cpio cpp cpufrequtils cracklib cron cups cups-SUSE-ppds-dat cups-backends cups-client cups-drivers cups-drivers-stp cups-libs curl cyrus-sasl cyrus-sasl-saslauthd db db-utils dbus-1 dbus-1-glib deltarpm desktop-translations device-mapper devs dhcpcd dialog diffutils dmraid dos2unix dosfstools e2fsprogs ed eject ethtool expat file filesystem fillup filters findutils finger fontconfig foomatic-filters freetype2 gawk gdb gdbm gettext ghostscript-fonts-other ghostscript-fonts-std ghostscript-library ghostscript-x11 glib glib2 glibc glibc-locale gnome-filesystem gpart gpg gpm grep groff gzip hal hal-resmgr hdparm hplip hplip-hpijs hwinfo ifplugd info initviocon
s insserv iproute2 iptables iputils ispell ispell-american ispell-british joe klogd krb5 ksymoops ldapcpplib less libacl libattr libcap libcom_err libevent libgcc libgcrypt libgimpprint libgpg-error libgssapi libjpeg liblcms libmng libnetpbm libnscd libpcap libpng librpcsecgss libstdc++ libtiff libusb libxcrypt libxml2 libxslt liby2util libzio libzypp limal limal-bootloader limal-perl linux-atm-lib log4net logrotate lsof lukemftp m4 mailx make man man-pages manufacturer-PPDs mc mdadm mingetty mkinitrd mkisofs mktemp module-init-tools mtools multipath-tools ncurses net-snmp net-tools netcat netcfg nfs-utils nfsidmap nscd ntfsprogs openct openldap2-client openobex opensc openslp openssh openssl pam pam-modules parted pciutils pcre pcsc-lite perl perl-Bootloader perl-Config-Crontab perl-Crypt-SmbHash perl-Digest-MD4 perl-Digest-SHA1 perl-Parse-RecDescent perl-TermReadKey perl-X500-DN perl-gettext permissions pin pmtools popt portmap postfix powersave powersave-libs ppp pptp pro
cinfo procmail procps providers psmisc pwdutils python python-gtk python-numeric python-qt python-xml qscintilla readline recode reiserfs release-notes resmgr rpm rsh rug samba-client sash scpm screen scsi sed setserial siga sled-release smpppd src_vipa strace sudo suse-build-key suseRegister sysconfig sysfsutils syslog-ng sysvinit tar tcpd tcsh telnet terminfo timezone udev ulimit unrar unzip usbutils utempter util-linux vacation vim w3m wdiff wget wireless-tools words wvdial wvstreams xdelta xfsprogs xinetd xntp yast2 yast2-backup yast2-bluetooth yast2-bootfloppy yast2-bootloader yast2-core yast2-country yast2-firewall yast2-hardware-detection yast2-inetd yast2-installation yast2-irda yast2-kerberos-client yast2-ldap yast2-ldap-client yast2-mail yast2-mail-aliases yast2-mouse yast2-ncurses yast2-network yast2-nfs-client yast2-nis-client yast2-ntp-client yast2-online-update yast2-packager yast2-pam yast2-perl-bindings yast2-pkg-bindings yast2-powertweak yast2-printer yast2-
profile-manager yast2-repair yast2-restore yast2-runlevel yast2-samba-client yast2-scanner yast2-schema yast2-security yast2-slp yast2-storage yast2-storage-lib yast2-support yast2-sysconfig yast2-theme-NLD yast2-trans-stats yast2-transfer yast2-tune yast2-update yast2-users yast2-vm yast2-xml yp-tools ypbind zen-updater zip ziptool zlib zmd zsh
+# DOCUMENTATION pattern
+BuildRequires: apparmor-admin_en htdig info2html man-pages sled-deployment_en sled-kde-user_en sled-network-user_en susehelp susehelp_en wget
+# GNOME2 pattern
+BuildRequires: AdobeICCProfiles CASA CASA-gui DirectFB ImageMagick ImageMagick-Magick++ Mesa MozillaFirefox MozillaFirefox-translations NetworkManager NetworkManager-glib NetworkManager-gnome OpenEXR SDL a2ps aalib alsa-firmware arts aspell aspell-en at-spi atk audit audit-libs banshee banshee-engine-gst banshee-plugins-default beagle beagle-evolution beagle-firefox beagle-gui bitstream-vera blt bluez-libs bug-buddy cairo cdparanoia cdrecord cifs-mount compat-curl2 compat-libstdc++ contact-lookup-applet control-center2 cups cups-client cups-libs dasher dbus-1-gtk dbus-1-mono dbus-1-python dbus-1-qt3 dbus-1-x11 desktop-data-NLD desktop-file-utils dhcdbd dhcp-client dia dirmngr docbook_4 dvd+rw-tools eel efont-unicode eog evince evolution evolution-data-server evolution-exchange evolution-pilot evolution-sharp evolution-webcal f-spot fam fam-server fast-user-switch-applet festival file-roller flac fontconfig fonts-config foomatic-filters freetype2 gail gaim gaim-otr gcalctool
gconf-editor gconf2 gdb gdk-pixbuf gdm gecko-sharp gedit gftp ghostscript-fonts-other ghostscript-fonts-std ghostscript-library giflib gimp gimp-cmyk gimp-help glib2 glibmm24 glitz gmime gnet gnome-applets gnome-audio gnome-backgrounds gnome-bluetooth gnome-cups-manager gnome-desktop gnome-doc-utils gnome-filesystem gnome-games gnome-icon-theme gnome-keyring gnome-keyring-manager gnome-mag gnome-main-menu gnome-media gnome-menus gnome-mime-data gnome-nettool gnome-panel-nld gnome-pilot gnome-power-manager gnome-printer-add gnome-screensaver gnome-session gnome-speech gnome-spell2 gnome-system-monitor gnome-terminal gnome-themes gnome-utils gnome-vfs2 gnome-volume-manager gnome-web-photo gnome2-NLD gnome2-user-docs gnomemeeting gnopernicus gnutls gok gpg2 gpgme gsf-sharp gstreamer010 gstreamer010-plugins-base gstreamer010-plugins-base-oil gstreamer010-plugins-base-visual gstreamer010-plugins-good gtk gtk-engines gtk-sharp gtk-sharp-gapi gtk-sharp2 gtk-sharp2-gapi gtk2 gtk2-e
ngines gtk2-themes gtkhtml-sharp2 gtkhtml2 gtkmm24 gtksourceview gtkspell gucharmap guile hal-gnome hermes imlib inkscape iso-codes iso_ent jack jpackage-utils kdelibs3 kino krb5-client libao libart_lgpl libavc1394 libbeagle libbonobo libbonoboui libbtctl libcddb libcdio libcroco libdv libdvdnav libdvdread libexif libgail-gnome libgcrypt libgda libgdiplus libgimpprint libglade2 libgnome libgnomecanvas libgnomecups libgnomedb libgnomeprint libgnomeprintui libgnomesu libgnomeui libgpg-error libgphoto2 libgsf libgsf-gnome libgtkhtml libgtop libidl libidn libieee1284 libipoddevice libjasper libjpeg libksba liblcms libmikmod libmng libmusicbrainz libnl libnotify libogg libopencdk libosip2 libotr libpng libraw1394 librsvg libsamplerate libshout libsigc++2 libsmbclient libsndfile libsoup libtheora libtiff libtool libvisual libvorbis libwmf libwnck libxklavier libxml2 libxml2-python libxslt liferea linphone linphone-applet lirc log4net lzo mDNSResponder metacity metacity-themes mjpe
gtools mkisofs mono-core mono-data mono-data-sqlite mono-web mozilla-nspr mozilla-nss mozilla-xulrunner multisync multisync-backup multisync-evolution multisync-irmc multisync-irmc-bluetooth multisync-ldap multisync-opie multisync-syncml myspell-american myspell-british nautilus nautilus-cd-burner nautilus-open-terminal nautilus-sendto nautilus-share notification-daemon openh323 openmotif-libs openobex opensp orbit2 pam_krb5 pan pango perl-Crypt-SmbHash perl-DBD-SQLite perl-DBI perl-Digest-HMAC perl-Digest-MD4 perl-HTML-Parser perl-HTML-Tagset perl-Net-DNS perl-Net-Daemon perl-Net-IP perl-PDA-Pilot perl-PlRPC perl-TimeDate perl-XML-LibXML perl-XML-LibXML-Common perl-XML-NamespaceSupport perl-XML-SAX perl-spamassassin pilot-link pinentry planner poppler poppler-glib preload pstoedit pwlib python python-gnome python-gnome-extras python-gtk python-imaging python-numeric python-orbit python-tk python-xml resapplet samba samba-client samba-winbind sane sgml-skel shared-mime-info
skencil slang sox spamassassin speex sqlite sqlite2 startup-notification tango-icon-theme tcl thinkeramik-style tix tk tomboy totem unixODBC unrar unzip update-alternatives vcdimager vino vte wbxml2 wdiff wv wvstreams x11-tools xgl-hardware-list xine-lib xkeyboard-config xmlcharent xorg-x11 xorg-x11-Xnest xorg-x11-libs xpdf-tools xsane yast2-CASA yelp zenity zisofs-tools
+# KDE-DESKTOP pattern
+BuildRequires: AdobeICCProfiles CASA CASA-gui CASA-kwallet MozillaFirefox MozillaFirefox-translations aspell-en cyrus-sasl-crammd5 cyrus-sasl-digestmd5 cyrus-sasl-plain dejavu desktop-data-NLD desktop-file-utils digikam digikam-doc digikamimageplugins dragonegg dvd+rw-tools efont-unicode enscript gimp gimp-cmyk gtk-qt-engine gwenview imlib2-loaders kdeaddons3-kate kdeaddons3-kicker kdeaddons3-konqueror kdeartwork3-kscreensaver kdeartwork3-sound kdeartwork3-xscreensaver kdebase3 kdebase3-NLD kdebase3-kdm kdebase3-ksysguardd kdebase3-samba kdebase3-session kdebindings3-python kdebluetooth kdegames3 kdegraphics3 kdegraphics3-fax kdegraphics3-kamera kdegraphics3-pdf kdegraphics3-postscript kdegraphics3-scan kdemultimedia3 kdemultimedia3-CD kdemultimedia3-mixer kdenetwork3 kdenetwork3-InstantMessenger kdenetwork3-news kdenetwork3-vnc kdepim3 kdepim3-kpilot kdepim3-networkstatus kdepim3-sync kdeutils3 kerry kio_beagle kio_ipodslave kio_slp kipi-plugins krecord kscpm libvisual-plu
gins pinentry preload psutils python-xml release-notes-sled samba vcdimager vorbis-tools yast2-CASA
+# NOVELL-SOFTWARE pattern
+BuildRequires: CASA CASA-gui turnpike yast2-linux-user-mgmt
+%ifarch %ix86
+BuildRequires: amarok-helix banshee-engine-helix
%endif
%ifarch %ix86 x86_64
-BuildRequires: flash-player java-1_4_2-sun-plugin
+BuildRequires: ICAClient OpenOffice_org OpenOffice_org-Quickstarter OpenOffice_org-gnome OpenOffice_org-kde OpenOffice_org-nld acroread flash-player grub ifolder3 isapnp java-1_4_2-sun-plugin kdebase3-nsplugin master-boot-code microcode_ctl nautilus-ifolder3 novell-groupwise-gwclient novell-iprint-xclient-sl novell-messenger-client ptdownloader simias syslinux
%endif
-%ifarch ppc
-BuildRequires: OpenOffice_org RealPlayer
-%endif
-%ifnarch s390 s390x
-BuildRequires: sensors
-%else
-BuildRequires: gucharmap libnotify libxklavier lirc python-gnome-extras rrdtool system-tools-backends totem
-%endif
-%ifarch %ix86 ppc x86_64
-BuildRequires: OpenOffice_org-gnome
-%else
-BuildRequires: compat-libstdc++
+%ifarch %ix86 ia64 x86_64
+BuildRequires: acpid java-1_4_2-sun kpowersave libnvtv
%endif
-%ifarch %ix86 x86_64
-BuildRequires: acroread
-%else
-BuildRequires: myspell-american
+%ifarch %ix86 x86_64 ppc ppc64
+BuildRequires: lilo
%endif
-%ifarch x86_64
-BuildRequires: dosbootdisk
+%ifnarch ppc ppc64
+BuildRequires: amarok amarok-arts amarok-libvisual busybox compat
%endif
-%ifarch ppc s390 s390x
-BuildRequires: jpackage-utils
+%ifnarch s390
+BuildRequires: kaffeine
%endif
-%ifarch %ix86 ppc s390
-BuildRequires: libcddb
+%ifnarch s390 s390x
+BuildRequires: NetworkManager-kde NetworkManager-openvpn NetworkManager-vpnc RealPlayer capi4linux compiz fbset i4l-base i4l-isdnlog i4lfirm k3b kbd sabayon sabayon-admin xgl yast2-phone-services yast2-power-management yast2-sound yast2-tv
%endif
%define prefix /usr
%define sysconfdir /etc/
License: GPL
Group: Productivity/Other
Autoreqprov: on
-Version: 0.0.13
-Release: 50
+Version: 10.1_20060427
+Release: 2
Source0: beagle-crawl-system
Source1: beagle-merge-indexes
PreReq: beagle
@@ -103,6 +97,13 @@
/usr/sbin/*
%changelog -n beagle-index
+* Mon May 01 2006 - joeshaw(a)suse.de
+- Update the BuildRequires to contain all the packages in the
+ BASIS, GNOME2, KDE-DESKTOP, and NOVELL-SOFTWARE patterns.
+ *Please keep this in sync with those patterns!* (bnc #169289)
+- Update the version to be 10.1_20060427. Because there's no
+ upstream source, it's re-versioned to match the distribution
+ version and the date of the last sync with the patterns.
* Sat Apr 08 2006 - aj(a)suse.de
- Use gstreamer010-plugins-good in BuildRequires.
* Mon Mar 27 2006 - ro(a)suse.de
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package beagle
checked in at Sun May 7 15:45:55 CEST 2006.
--------
--- GNOME/beagle/beagle.changes 2006-04-27 17:44:32.000000000 +0200
+++ STABLE/beagle/beagle.changes 2006-05-03 01:08:39.000000000 +0200
@@ -1,0 +2,15 @@
+Wed May 3 01:07:46 CEST 2006 - joeshaw(a)suse.de
+
+- Add a patch to detect audio/x-vorbis+ogg as a valid music mime
+ type. (Beagle equivalent of bnc #169616)
+
+-------------------------------------------------------------------
+Tue May 2 23:52:38 CEST 2006 - joeshaw(a)suse.de
+
+- Add a patch to fix up how the ImLogViewer deals with Kopete
+ logs. Make sure to select the right log to extract the "speaking
+ to" name, and wrap the log parsing in a try-catch so we can
+ ignore logs that aren't valid XML. (bnc #169792)
+- Fix a broken shell substitution in the beagle-imlogviewer script.
+
+-------------------------------------------------------------------
New:
----
beagle-imlogviewer-kopete-fixes.patch
beagle-vorbis-mime-type.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ beagle.spec ++++++
--- /var/tmp/diff_new_pack.sn7qhJ/_old 2006-05-07 15:45:30.000000000 +0200
+++ /var/tmp/diff_new_pack.sn7qhJ/_new 2006-05-07 15:45:30.000000000 +0200
@@ -18,7 +18,7 @@
Group: Productivity/Other
Autoreqprov: on
Version: 0.2.3
-Release: 35
+Release: 38
Summary: Desktop Search Application
URL: http://www.gnome.org/projects/beagle/
Source: %{name}-%{version}.tar.gz
@@ -48,6 +48,8 @@
Patch21: beagle-settings-no-hardcoded-size.patch
Patch22: beagle-gaim-note-markup.patch
Patch23: beagle-cs.patch
+Patch24: beagle-imlogviewer-kopete-fixes.patch
+Patch25: beagle-vorbis-mime-type.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Prereq: /usr/sbin/groupadd /usr/sbin/useradd
Requires: mono-core >= 1.1.13.5
@@ -309,6 +311,8 @@
%patch21
%patch22
%patch23
+%patch24
+%patch25
%build
rm po/no.*
@@ -465,6 +469,15 @@
%{prefix}/%_lib/pkgconfig/*.pc
%changelog -n beagle
+* Wed May 03 2006 - joeshaw(a)suse.de
+- Add a patch to detect audio/x-vorbis+ogg as a valid music mime
+ type. (Beagle equivalent of bnc #169616)
+* Tue May 02 2006 - joeshaw(a)suse.de
+- Add a patch to fix up how the ImLogViewer deals with Kopete
+ logs. Make sure to select the right log to extract the "speaking
+ to" name, and wrap the log parsing in a try-catch so we can
+ ignore logs that aren't valid XML. (bnc #169792)
+- Fix a broken shell substitution in the beagle-imlogviewer script.
* Thu Apr 27 2006 - sbrabec(a)suse.cz
- Fixed typo in cs.po.
* Thu Apr 27 2006 - joeshaw(a)suse.de
++++++ beagle-cwd-fixes.patch ++++++
--- /var/tmp/diff_new_pack.sn7qhJ/_old 2006-05-07 15:45:31.000000000 +0200
+++ /var/tmp/diff_new_pack.sn7qhJ/_new 2006-05-07 15:45:31.000000000 +0200
@@ -57,7 +57,7 @@
THIS_PATH="@pkglibdir@"
THIS_EXE="@pkglibdir@/@target@"
- export LD_LIBRARY_PATH="@pkglibdir@:$LD_LIBRARY_PATH"
-+ export LD_LIBRARY_PATH="@pkglibdir@${$LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}"
++ export LD_LIBRARY_PATH="@pkglibdir@${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}"
fi
-MONO_GAC_PREFIX="@gacprefix@:$MONO_GAC_PREFIX" MONO_PATH="$THIS_PATH:$MONO_PATH" exec -a beagle-imlogviewer mono $MONO_EXTRA_ARGS --debug $THIS_EXE "$@"
++++++ beagle-imlogviewer-kopete-fixes.patch ++++++
Index: ImLogWindow.cs
===================================================================
RCS file: /cvs/gnome/beagle/ImLogViewer/ImLogWindow.cs,v
retrieving revision 1.11
diff -u -p -r1.11 ImLogViewer/ImLogWindow.cs
--- ImLogViewer/ImLogWindow.cs 28 Feb 2006 20:42:37 -0000 1.11
+++ ImLogViewer/ImLogWindow.cs 2 May 2006 21:26:45 -0000
@@ -168,22 +168,32 @@ namespace ImLogViewer {
foreach (string file in Directory.GetFiles (log_path)) {
ImLog log = null;
StreamReader reader = new StreamReader (file);
-
- if (client == ImClient.Gaim)
- log = new GaimLog (new FileInfo (file), reader);
- else if (client == ImClient.Kopete)
- log = new KopeteLog (new FileInfo (file), reader);
+
+ try {
+ if (client == ImClient.Gaim)
+ log = new GaimLog (new FileInfo (file), reader);
+ else if (client == ImClient.Kopete)
+ log = new KopeteLog (new FileInfo (file), reader);
+ } catch (System.Xml.XmlException e) {
+ Console.WriteLine ("Caught exception parsing {0}: {1}", file, e.Message);
+ }
reader.Close ();
+ if (log == null)
+ continue;
+
if (initial_select_file != null && log.File.FullName == initial_select_file.FullName) {
initial_select = log;
initial_select_file = null;
+
+ SetWindowTitle (log.SpeakingTo);
}
if (speaking_to == null)
SetWindowTitle (log.SpeakingTo);
- timeline.Add (log, log.StartTime);
+
+ timeline.Add (log, log.StartTime);
}
index_thread_notify.WakeupMain ();
++++++ beagle-vorbis-mime-type.patch ++++++
Index: Filters/FilterMusic.cs
===================================================================
RCS file: /cvs/gnome/beagle/Filters/FilterMusic.cs,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -p -r1.14 -r1.15
--- Filters/FilterMusic.cs 2 Apr 2006 19:55:54 -0000 1.14
+++ Filters/FilterMusic.cs 10 Apr 2006 22:40:49 -0000 1.15
@@ -53,8 +53,9 @@ namespace Beagle.Filters {
AddSupportedFlavor (FilterFlavor.NewFromMimeType ("audio/x-m4a"));
AddSupportedFlavor (FilterFlavor.NewFromExtension (".m4p"));
- // OGG
+ // OGG Vorbis
AddSupportedFlavor (FilterFlavor.NewFromMimeType ("application/ogg"));
+ AddSupportedFlavor (FilterFlavor.NewFromMimeType ("audio/x-vorbis+ogg"));
// Tracker / Amiga Audio
AddSupportedFlavor (FilterFlavor.NewFromMimeType ("audio/x-s3m"));
Index: Filters/entagged-sharp/EncodingInfo.cs
===================================================================
RCS file: /cvs/gnome/beagle/Filters/entagged-sharp/EncodingInfo.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- Filters/entagged-sharp/EncodingInfo.cs 11 Dec 2005 23:52:09 -0000 1.2
+++ Filters/entagged-sharp/EncodingInfo.cs 24 Apr 2006 14:49:27 -0000 1.3
@@ -78,7 +78,15 @@ namespace Entagged.Audioformats
//Sets the length of the song in seconds
public TimeSpan Duration {
set { content["DURATION"] = value; }
- get { return (TimeSpan) content["DURATION"]; }
+ get {
+ object o = content["DURATION"];
+ if(o is TimeSpan) {
+ return (TimeSpan)o;
+ }
+
+ int duration = (int)o;
+ return duration < 0 ? new TimeSpan(0) : new TimeSpan(duration * TimeSpan.TicksPerSecond);
+ }
}
public bool Vbr {
Index: Filters/entagged-sharp/Mp3/Util/Id3frames/Id3Frame.cs
===================================================================
RCS file: /cvs/gnome/beagle/Filters/entagged-sharp/Mp3/Util/Id3frames/Id3Frame.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- Filters/entagged-sharp/Mp3/Util/Id3frames/Id3Frame.cs 15 Mar 2006 20:17:33 -0000 1.3
+++ Filters/entagged-sharp/Mp3/Util/Id3frames/Id3Frame.cs 24 Apr 2006 14:49:28 -0000 1.4
@@ -147,16 +147,16 @@ namespace Entagged.Audioformats.Mp3.Util
zerochars = 2;
}
if (b[offset] == (byte) 0xFE && b[offset + 1] == (byte) 0xFF) {
- result = Encoding.GetEncoding("UTF-16BE").GetString(b, offset + 2, length - 2 - zerochars);
+ result = Encoding.Unicode.GetString(b, offset + 2, length - 2 - zerochars);
} else if (b[offset] == (byte) 0xFF && b[offset + 1] == (byte) 0xFE) {
- result = Encoding.GetEncoding("UTF-16LE").GetString(b, offset + 2, length - 2 - zerochars);
+ result = Encoding.Unicode.GetString(b, offset + 2, length - 2 - zerochars);
} else {
/*
* Now we have a little problem. The tag is not id3-spec
* conform. And since I don't have a way to see if its little or
* big endian, i decide for the windows default little endian.
*/
- result = Encoding.GetEncoding("UTF-16LE").GetString(b, offset, length - zerochars);
+ result = Encoding.Unicode.GetString(b, offset, length - zerochars);
}
} else {
int zerochars = 0;
@@ -179,7 +179,7 @@ namespace Entagged.Audioformats.Mp3.Util
protected byte[] GetBytes(string s, string encoding) {
byte[] result = null;
if (encoding == "UTF-16") {
- result = System.Text.Encoding.GetEncoding("UTF-16LE").GetBytes(s);
+ result = System.Text.Encoding.Unicode.GetBytes(s);
// 2 for BOM and 2 for terminal character
byte[] tmp = new byte[result.Length + 4];
Copy(result, tmp, 2);
Index: Filters/entagged-sharp/Ogg/OggFileReader.cs
===================================================================
RCS file: /cvs/gnome/beagle/Filters/entagged-sharp/Ogg/OggFileReader.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- Filters/entagged-sharp/Ogg/OggFileReader.cs 15 Mar 2006 20:17:34 -0000 1.3
+++ Filters/entagged-sharp/Ogg/OggFileReader.cs 24 Apr 2006 14:49:28 -0000 1.4
@@ -33,6 +33,7 @@ namespace Entagged.Audioformats.Ogg
[SupportedMimeType ("application/x-ogg")]
[SupportedMimeType ("audio/vorbis")]
[SupportedMimeType ("audio/x-vorbis")]
+ [SupportedMimeType ("audio/x-vorbis+ogg")]
[SupportedMimeType ("audio/ogg")]
[SupportedMimeType ("audio/x-ogg")]
[SupportedMimeType ("entagged/ogg")]
Index: Filters/entagged-sharp/Util/Utils.cs
===================================================================
RCS file: /cvs/gnome/beagle/Filters/entagged-sharp/Util/Utils.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- Filters/entagged-sharp/Util/Utils.cs 11 Dec 2005 23:52:16 -0000 1.2
+++ Filters/entagged-sharp/Util/Utils.cs 24 Apr 2006 14:49:28 -0000 1.3
@@ -100,13 +100,9 @@ namespace Entagged.Audioformats.Util
string[] ret = new string[taglist.Count];
int i = 0;
- foreach (string field in taglist) {
- if(field != null && field.Trim().Length == 0) {
- ret[i++] = field;
- } else {
- ret[i++] = field;
- }
- }
+ foreach (string field in taglist)
+ ret[i++] = (field != null && field.Trim().Length > 0) ?
+ field : null;
return ret;
}
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package banshee
checked in at Sun May 7 15:43:32 CEST 2006.
--------
--- GNOME/banshee/banshee.changes 2006-04-26 07:02:48.000000000 +0200
+++ STABLE/banshee/banshee.changes 2006-05-04 22:18:06.000000000 +0200
@@ -1,0 +2,7 @@
+Thu May 4 22:14:48 CEST 2006 - jpr(a)suse.de
+
+- Handle new ogg subclass (#169616)
+- Prevent crash while doing long import (BGO #340306)
+- Display ipod correctly if banshee is already running(BGO #340313)
+
+-------------------------------------------------------------------
Old:
----
banshee-helix-streaming.patch
banshee-sled-cuml-08.diff
New:
----
banshee-desktop-ogg-support.patch
banshee-sled-cuml-09.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ banshee.spec ++++++
--- /var/tmp/diff_new_pack.CFhajb/_old 2006-05-07 15:43:25.000000000 +0200
+++ /var/tmp/diff_new_pack.CFhajb/_new 2006-05-07 15:43:25.000000000 +0200
@@ -22,7 +22,7 @@
PreReq: filesystem gconf2
Requires: mono-core
Version: 0.10.9
-Release: 17
+Release: 22
Source0: banshee-%{version}.tar.gz
Source1: gstreamer-xing-0.10.0.tar.gz
Patch0: %{name}-libaoss-preload.patch
@@ -30,9 +30,9 @@
Patch2: %{name}-configure.patch
Patch3: %{name}-transparent-trayicon.patch
Patch5: %{name}-fix-icons.patch
-Patch6: %{name}-sled-cuml-08.diff
+Patch6: %{name}-sled-cuml-09.diff
Patch7: %{name}-networkmanager-reconnect.diff
-Patch8: %{name}-helix-streaming.patch
+Patch8: %{name}-desktop-ogg-support.patch
URL: http://banshee-project.org
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: A Music Player Based on Mono and GStreamer
@@ -274,6 +274,10 @@
%{prefix}/%{_lib}/banshee/Banshee.Plugins/Daap.dll*
%changelog -n banshee
+* Thu May 04 2006 - jpr(a)suse.de
+- Handle new ogg subclass (#169616)
+- Prevent crash while doing long import (BGO #340306)
+- Display ipod correctly if banshee is already running(BGO #340313)
* Wed Apr 26 2006 - aj(a)suse.de
- Fix build on lib64 systems.
* Mon Apr 24 2006 - jpr(a)suse.de
++++++ banshee-desktop-ogg-support.patch ++++++
--- data/banshee.desktop.in.in
+++ data/banshee.desktop.in.in
@@ -15,4 +15,4 @@
X-GNOME-Bugzilla-Component=General
X-GNOME-Bugzilla-Version=@VERSION@
X-SuSE-translate=true
-MimeType=audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audip/mp3;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audip/mp3;audio/x-m4a;audio/x-m4a;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;application/ogg;application/x-ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;application/ogg;application/x-ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;audio/x-flac;application/x-flac;audio/flac;audio/x-flac;application/x-flac;audio/flac;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it
+MimeType=audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audip/mp3;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audip/mp3;audio/x-m4a;audio/x-m4a;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;application/ogg;application/x-ogg;application/x-vorbis+ogg;audio/x-vorbis+ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;application/ogg;application/x-ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;audio/x-flac;application/x-flac;audio/flac;audio/x-flac;application/x-flac;audio/flac;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it
++++++ banshee-sled-cuml-08.diff -> banshee-sled-cuml-09.diff ++++++
--- GNOME/banshee/banshee-sled-cuml-08.diff 2006-04-24 18:21:07.000000000 +0200
+++ STABLE/banshee/banshee-sled-cuml-09.diff 2006-05-02 23:01:25.000000000 +0200
@@ -175,6 +175,42 @@
+</widget>
+
</glade-interface>
+Index: entagged-sharp/Ogg/OggFileReader.cs
+===================================================================
+RCS file: /cvs/gnome/banshee/entagged-sharp/Ogg/OggFileReader.cs,v
+retrieving revision 1.9
+retrieving revision 1.9.4.2
+diff -u -r1.9 -r1.9.4.2
+--- entagged-sharp/Ogg/OggFileReader.cs 5 Dec 2005 16:55:08 -0000 1.9
++++ entagged-sharp/Ogg/OggFileReader.cs 2 May 2006 21:01:04 -0000 1.9.4.2
+@@ -23,18 +23,6 @@
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+-/*
+- * $Log: OggFileReader.cs,v $
+- * Revision 1.9 2005/12/05 16:55:08 abock
+- * 2005-12-05 Aaron Bockover <aaron(a)aaronbock.net>
+- *
+- * * entagged-sharp/*: Updated entagged-sharp checkout
+- *
+- * Revision 1.4 2005/02/08 12:54:42 kikidonk
+- * Added cvs log and header
+- *
+- */
+-
+ using System.IO;
+ using Entagged.Audioformats.Util;
+ using Entagged.Audioformats.Ogg.Util;
+@@ -43,6 +31,8 @@
+ {
+ [SupportedMimeType ("application/ogg")]
+ [SupportedMimeType ("application/x-ogg")]
++ [SupportedMimeType ("application/x-vorbis+ogg")]
++ [SupportedMimeType ("audio/x-vorbis+ogg")]
+ [SupportedMimeType ("audio/vorbis")]
+ [SupportedMimeType ("audio/x-vorbis")]
+ [SupportedMimeType ("audio/ogg")]
Index: src/BurnCore.cs
===================================================================
RCS file: /cvs/gnome/banshee/src/BurnCore.cs,v
@@ -657,10 +693,10 @@
===================================================================
RCS file: /cvs/gnome/banshee/src/PlayerInterface.cs,v
retrieving revision 1.167
-retrieving revision 1.167.2.3
-diff -u -r1.167 -r1.167.2.3
+retrieving revision 1.167.2.4
+diff -u -r1.167 -r1.167.2.4
--- src/PlayerInterface.cs 20 Mar 2006 09:30:47 -0000 1.167
-+++ src/PlayerInterface.cs 17 Apr 2006 16:59:58 -0000 1.167.2.3
++++ src/PlayerInterface.cs 1 May 2006 16:33:17 -0000 1.167.2.4
@@ -385,6 +385,8 @@
sourceViewDestEntries,
DragAction.Copy | DragAction.Move);
@@ -710,7 +746,29 @@
PlayerEngineCore.CurrentTrack.IncrementPlayCount();
incrementedCurrentSongPlayCount = true;
playlistView.QueueDraw();
-@@ -1814,7 +1817,7 @@
+@@ -1320,13 +1323,15 @@
+ return;
+ }
+
+- foreach(TrackInfo track in SourceManager.ActiveSource.Tracks) {
+- try {
+- if(DoesTrackMatchSearch(track)) {
+- playlistModel.AddTrack(track);
++ lock(SourceManager.ActiveSource.TracksMutex) {
++ foreach(TrackInfo track in SourceManager.ActiveSource.Tracks) {
++ try {
++ if(DoesTrackMatchSearch(track)) {
++ playlistModel.AddTrack(track);
++ }
++ } catch(Exception) {
++ continue;
+ }
+- } catch(Exception) {
+- continue;
+ }
+ }
+
+@@ -1814,7 +1819,7 @@
for(i = 0; i < iters.Length; i++) {
TrackInfo track = playlistModel.IterTrackInfo(iters[i]);
SourceManager.ActiveSource.RemoveTrack(track);
@@ -719,7 +777,7 @@
if(deleteFromFileSystem) {
DeleteSong(track);
-@@ -1906,8 +1909,22 @@
+@@ -1906,8 +1911,22 @@
if(playlistView.Selection.CountSelectedRows() <= 0) {
return;
}
@@ -748,11 +806,24 @@
===================================================================
RCS file: /cvs/gnome/banshee/src/PlaylistModel.cs,v
retrieving revision 1.37
-retrieving revision 1.37.2.1
-diff -u -r1.37 -r1.37.2.1
+retrieving revision 1.37.2.2
+diff -u -r1.37 -r1.37.2.2
--- src/PlaylistModel.cs 10 Mar 2006 01:28:51 -0000 1.37
-+++ src/PlaylistModel.cs 17 Apr 2006 16:59:59 -0000 1.37.2.1
-@@ -374,11 +374,20 @@
++++ src/PlaylistModel.cs 1 May 2006 16:33:18 -0000 1.37.2.2
+@@ -132,8 +132,10 @@
+ {
+ ClearModel();
+
+- foreach(TrackInfo track in SourceManager.ActiveSource.Tracks) {
+- AddTrack(track);
++ lock(SourceManager.ActiveSource.TracksMutex) {
++ foreach(TrackInfo track in SourceManager.ActiveSource.Tracks) {
++ AddTrack(track);
++ }
+ }
+ }
+
+@@ -374,11 +376,20 @@
}
}
@@ -1203,6 +1274,32 @@
default_engine = value;
Globals.Configuration.Set(GConfKeys.PlayerEngine, value.Id);
}
+Index: src/Banshee.Base/Source.cs
+===================================================================
+RCS file: /cvs/gnome/banshee/src/Banshee.Base/Source.cs,v
+retrieving revision 1.7
+retrieving revision 1.7.2.1
+diff -u -r1.7 -r1.7.2.1
+--- src/Banshee.Base/Source.cs 13 Feb 2006 22:18:08 -0000 1.7
++++ src/Banshee.Base/Source.cs 1 May 2006 16:33:19 -0000 1.7.2.1
+@@ -197,6 +197,17 @@
+ }
+ }
+
++ private object tracks_mutex = null;
++ public virtual object TracksMutex {
++ get {
++ if(tracks_mutex == null) {
++ tracks_mutex = new object();
++ }
++
++ return tracks_mutex;
++ }
++ }
++
+ public virtual Gdk.Pixbuf Icon {
+ get {
+ return null;
Index: src/Banshee.Base/Utilities.cs
===================================================================
RCS file: /cvs/gnome/banshee/src/Banshee.Base/Utilities.cs,v
@@ -1321,6 +1418,41 @@
} else {
FinishSave();
}
+Index: src/Banshee.Base/Dap/DapCore.cs
+===================================================================
+RCS file: /cvs/gnome/banshee/src/Banshee.Base/Dap/DapCore.cs,v
+retrieving revision 1.11
+retrieving revision 1.11.2.1
+diff -u -r1.11 -r1.11.2.1
+--- src/Banshee.Base/Dap/DapCore.cs 3 Mar 2006 07:46:54 -0000 1.11
++++ src/Banshee.Base/Dap/DapCore.cs 1 May 2006 17:45:28 -0000 1.11.2.1
+@@ -159,7 +159,7 @@
+ !device.GetPropertyBool("block.is_volume")) {
+ foreach(Device storage_device in Hal.Device.FindByStringMatch(device.Context,
+ "info.parent", device.Udi)) {
+- if(AddDevice(storage_device)) {
++ if(AddDevice(storage_device) && device_waiting_table[storage_device.Udi] == null) {
+ break;
+ }
+ }
+@@ -175,7 +175,7 @@
+ if(AddDevice(device, type)) {
+ return true;
+ }
+- }
++ }
+
+ return false;
+ }
+@@ -192,7 +192,7 @@
+ case InitializeResult.WaitForPropertyChange:
+ device.WatchProperties = true;
+ device_waiting_table[device.Udi] = type;
+- return false;
++ return true;
+ }
+ } catch(Exception e) {
+ Console.WriteLine(e);
Index: src/Banshee.Base/MediaEngine/PlayerEngine.cs
===================================================================
RCS file: /cvs/gnome/banshee/src/Banshee.Base/MediaEngine/PlayerEngine.cs,v
@@ -1400,6 +1532,115 @@
}
public override int Count {
+Index: src/Banshee.Base/Sources/LibrarySource.cs
+===================================================================
+RCS file: /cvs/gnome/banshee/src/Banshee.Base/Sources/LibrarySource.cs,v
+retrieving revision 1.6
+retrieving revision 1.6.2.1
+diff -u -r1.6 -r1.6.2.1
+--- src/Banshee.Base/Sources/LibrarySource.cs 20 Mar 2006 08:38:39 -0000 1.6
++++ src/Banshee.Base/Sources/LibrarySource.cs 1 May 2006 16:33:19 -0000 1.6.2.1
+@@ -74,6 +74,10 @@
+ get { return Globals.Library.Tracks.Values; }
+ }
+
++ public override object TracksMutex {
++ get { return Globals.Library.Tracks.SyncRoot; }
++ }
++
+ public override int Count {
+ get { return Globals.Library.Tracks.Count; }
+ }
+Index: src/Banshee.Base/Sources/PlaylistSource.cs
+===================================================================
+RCS file: /cvs/gnome/banshee/src/Banshee.Base/Sources/PlaylistSource.cs,v
+retrieving revision 1.5
+retrieving revision 1.5.2.1
+diff -u -r1.5 -r1.5.2.1
+--- src/Banshee.Base/Sources/PlaylistSource.cs 13 Feb 2006 22:18:10 -0000 1.5
++++ src/Banshee.Base/Sources/PlaylistSource.cs 1 May 2006 16:33:19 -0000 1.5.2.1
+@@ -99,8 +99,10 @@
+ id
+ ));
+
+- while(reader.Read()) {
+- tracks.Add(Globals.Library.Tracks[Convert.ToInt32(reader[0])]);
++ lock(TracksMutex) {
++ while(reader.Read()) {
++ tracks.Add(Globals.Library.Tracks[Convert.ToInt32(reader[0])]);
++ }
+ }
+
+ reader.Dispose();
+@@ -139,14 +141,18 @@
+ public override void AddTrack(TrackInfo track)
+ {
+ if(track is LibraryTrackInfo) {
+- tracks.Add(track);
++ lock(TracksMutex) {
++ tracks.Add(track);
++ }
+ OnUpdated();
+ }
+ }
+
+ public override void RemoveTrack(TrackInfo track)
+ {
+- tracks.Remove(track);
++ lock(TracksMutex) {
++ tracks.Remove(track);
++ }
+ }
+
+ public void Delete()
+@@ -175,22 +181,26 @@
+ id
+ ));
+
+- foreach(TrackInfo track in Tracks) {
+- if(track.TrackId <= 0)
+- continue;
+-
+- Globals.Library.Db.Execute(String.Format(
+- @"INSERT INTO PlaylistEntries
+- VALUES (NULL, '{0}', '{1}')",
+- id, track.TrackId
+- ));
++ lock(TracksMutex) {
++ foreach(TrackInfo track in Tracks) {
++ if(track.TrackId <= 0)
++ continue;
++
++ Globals.Library.Db.Execute(String.Format(
++ @"INSERT INTO PlaylistEntries
++ VALUES (NULL, '{0}', '{1}')",
++ id, track.TrackId
++ ));
++ }
+ }
+ }
+
+ public override void Reorder(TrackInfo track, int position)
+ {
+ RemoveTrack(track);
+- tracks.Insert(position, track);
++ lock(TracksMutex) {
++ tracks.Insert(position, track);
++ }
+ }
+
+ private void OnLibraryTrackRemoved(object o, LibraryTrackRemovedArgs args)
+@@ -233,6 +243,10 @@
+ get {
+ return tracks;
+ }
++ }
++
++ public override object TracksMutex {
++ get { return tracks.SyncRoot; }
+ }
+
+ public override int Count {
Index: src/Banshee.Dap/Njb/Makefile.am
===================================================================
RCS file: /cvs/gnome/banshee/src/Banshee.Dap/Njb/Makefile.am,v
@@ -1839,10 +2080,10 @@
===================================================================
RCS file: /cvs/gnome/banshee/src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs,v
retrieving revision 1.2
-retrieving revision 1.2.2.1
-diff -u -r1.2 -r1.2.2.1
+retrieving revision 1.2.2.2
+diff -u -r1.2 -r1.2.2.2
--- src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs 13 Mar 2006 05:50:14 -0000 1.2
-+++ src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs 3 Apr 2006 21:33:36 -0000 1.2.2.1
++++ src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs 20 Apr 2006 17:58:43 -0000 1.2.2.2
@@ -3,6 +3,7 @@
*
* Copyright (C) 2006 Novell, Inc
@@ -1931,11 +2172,12 @@
public void Dispose()
{
Dispose(true);
-@@ -150,16 +165,17 @@
+@@ -150,16 +165,18 @@
[Method] public abstract void SetVolume(uint volume);
[Method] public abstract string GetGroupTitle(uint groupIndex);
[Method] public abstract void Shutdown();
+ [Method] public abstract void Ping();
++ [Method] public abstract bool GetIsLive();
}
public enum ContentState {
@@ -1960,10 +2202,10 @@
===================================================================
RCS file: /cvs/gnome/banshee/src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs,v
retrieving revision 1.2
-retrieving revision 1.2.2.1
-diff -u -r1.2 -r1.2.2.1
+retrieving revision 1.2.2.2
+diff -u -r1.2 -r1.2.2.2
--- src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs 20 Mar 2006 08:38:39 -0000 1.2
-+++ src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs 3 Apr 2006 21:33:36 -0000 1.2.2.1
++++ src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs 20 Apr 2006 17:58:43 -0000 1.2.2.2
@@ -27,6 +27,7 @@
*/
@@ -2013,18 +2255,59 @@
timeout_id = GLib.Timeout.Add(500, delegate {
if(CurrentState == PlayerEngineState.Playing) {
OnEventChanged(PlayerEngineEvent.Iterate);
-@@ -147,9 +162,14 @@
- get { return "Helix Remote"; }
+@@ -104,13 +119,30 @@
+ break;
+ case ContentState.Loading:
+ case ContentState.Contacting:
+- OnEventChanged(PlayerEngineEvent.Buffering);
+ break;
+ default:
+ OnStateChanged(PlayerEngineState.Idle);
+ break;
+ }
+ break;
++ case MessageType.Buffering:
++ uint progress = (uint)message["Percent"];
++ OnEventChanged(PlayerEngineEvent.Buffering,
++ null, (double)progress / 100.0);
++ break;
++ case MessageType.Title:
++ string title = message["Title"] as string;
++ if(title == null || title.Trim() == String.Empty) {
++ break;
++ }
++
++ StreamTag tag = new StreamTag();
++ tag.Name = CommonTags.Title;
++ tag.Value = (string)message["Title"];
++
++ OnTagFound(tag);
++
++ break;
+ }
+ }
+
+@@ -139,6 +171,10 @@
+ get { return (uint)player.GetLength() / 1000; }
+ }
+
++ public override bool CanSeek {
++ get { return !player.GetIsLive(); }
++ }
++
+ public override string Id {
+ get { return "helix-remote"; }
+ }
+@@ -148,8 +184,13 @@
}
-- private static string [] source_capabilities = { "file", "http" };
+ private static string [] source_capabilities = { "file", "http" };
- public override string [] SourceCapabilities {
-+ private static string [] source_capabilities = { "file" };
+ public override IEnumerable SourceCapabilities {
get { return source_capabilities; }
+ }
+
-+ private static string [] decoder_capabilities = { "m4a", "mp3" };
++ private static string [] decoder_capabilities = { "m4a", "mp3", "ram", "ra", "rm", "aac", "mp4" };
+ public override IEnumerable ExplicitDecoderCapabilities {
+ get { return decoder_capabilities; }
}
@@ -2405,7 +2688,7 @@
retrieving revision 1.139
diff -u -r1.139 configure.ac
--- configure.ac 20 Mar 2006 09:30:47 -0000 1.139
-+++ configure.ac 19 Apr 2006 19:46:57 -0000
++++ configure.ac 2 May 2006 21:01:21 -0000
@@ -148,7 +148,7 @@
fi
AM_CONDITIONAL(ENABLE_IPOD, test "x$enable_ipodsharp" = "xyes")
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package audit
checked in at Sun May 7 15:43:18 CEST 2006.
--------
--- audit/audit.changes 2006-03-20 16:18:49.000000000 +0100
+++ STABLE/audit/audit.changes 2006-05-05 21:08:30.000000000 +0200
@@ -1,0 +2,5 @@
+Fri May 5 21:05:40 CEST 2006 - sbeattie(a)suse.de
+
+- disable syscall audit context creation by default #172154
+
+-------------------------------------------------------------------
New:
----
audit-1.1.3-disable-syscall-contexts.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ audit.spec ++++++
--- /var/tmp/diff_new_pack.JN8z6d/_old 2006-05-07 15:43:09.000000000 +0200
+++ /var/tmp/diff_new_pack.JN8z6d/_new 2006-05-07 15:43:09.000000000 +0200
@@ -14,7 +14,7 @@
BuildRequires: gcc-c++ pam-devel python-devel swig
Summary: User Space Tools for 2.6 Kernel Auditing
Version: 1.1.3
-Release: 14
+Release: 22
License: GPL
Group: System/Monitoring
URL: http://people.redhat.com/sgrubb/audit/
@@ -27,6 +27,7 @@
Patch3: %name-fix-broken-kernels.patch
Patch4: %name-%version-warning-on-connrefused.patch
Patch5: %name-%version-no-errormessage.patch
+Patch6: %name-%version-disable-syscall-contexts.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: %{name}-libs = %{version}-%{release}
PreReq: %insserv_prereq %fillup_prereq
@@ -82,6 +83,7 @@
%patch3 -p1
%patch4 -p1
%patch5 -p1
+%patch6 -p1
%build
autoreconf -fv --install
@@ -169,6 +171,8 @@
%ghost /var/log/audit/audit.log
%changelog -n audit
+* Fri May 05 2006 - sbeattie(a)suse.de
+- disable syscall audit context creation by default #172154
* Mon Mar 20 2006 - meissner(a)suse.de
- Do not print a misleading errormessage when audit
is not compiled into the kernel. #152733
++++++ audit-1.1.3-disable-syscall-contexts.patch ++++++
audit-1.1.3/docs/auditd.8 | 5 +++++
audit-1.1.3/src/auditd.c | 31 ++++++++++++++++++++++---------
2 files changed, 27 insertions(+), 9 deletions(-)
Index: audit-1.1.3/src/auditd.c
===================================================================
--- audit-1.1.3/src/auditd.c
+++ audit-1.1.3/src/auditd.c
@@ -36,6 +36,7 @@
#include <sys/wait.h>
#include <fcntl.h>
#include <pthread.h>
+#include <getopt.h>
#include "libaudit.h"
#include "auditd-config.h"
@@ -66,7 +67,7 @@ static int get_reply(int fd, struct audi
*/
static void usage(void)
{
- puts("Usage: auditd [ -f ]");
+ puts("Usage: auditd [ -f ] [ -n ]");
exit(2);
}
@@ -201,16 +202,27 @@ int main(int argc, char *argv[])
struct auditd_reply_list *rep = NULL;
struct rlimit limit;
int hup_info_requested = 0;
+ int opt_foreground = 0;
+ int opt_enabled = 1;
+ int c;
/* Get params && set mode */
- if (argc > 2)
- usage();
- if (argc == 2) {
- if (strcmp(argv[1], "-f") == 0) {
- config.daemonize = D_FOREGROUND;
- set_aumessage_mode(MSG_STDERR, DBG_YES);
- } else
+ while ((c = getopt(argc, argv, "fn")) != -1) {
+ switch (c) {
+ case 'f':
+ opt_foreground = 1;
+ break;
+ case 'n':
+ opt_enabled = 0;
+ break;
+ default:
usage();
+ }
+ }
+
+ if (opt_foreground) {
+ config.daemonize = D_FOREGROUND;
+ set_aumessage_mode(MSG_STDERR, DBG_YES);
}
else {
config.daemonize = D_BACKGROUND;
@@ -332,7 +344,7 @@ int main(int argc, char *argv[])
}
/* Enable auditing just in case it was off */
- if (audit_set_enabled(fd, 1) < 0) {
+ if (audit_set_enabled(fd, opt_enabled) < 0) {
char emsg[64];
snprintf(emsg, sizeof(emsg),
"auditd error halt, auid=%u res=failed",
@@ -433,6 +445,7 @@ int main(int argc, char *argv[])
/* Write message to log that we are going down */
int rc;
+ audit_set_enabled(fd, 0);
rc = audit_request_signal_info(fd);
if (rc > 0) {
struct audit_reply trep;
Index: audit-1.1.3/docs/auditd.8
===================================================================
--- audit-1.1.3/docs/auditd.8
+++ audit-1.1.3/docs/auditd.8
@@ -4,6 +4,7 @@ auditd \- The Linux audit daemon
.SH SYNOPSIS
.B auditd
[ \fI-f \fR]
+[ \fI-n \fR]
.SH DESCRIPTION
auditd is the userspace component to the Linux Auditing System. It's responsible for writing audit records to the disk. Viewing the logs is done with the
.B ausearch
@@ -18,6 +19,10 @@ file.
.TP
\fB\-f\fR
leave the audit daemon in the foreground for debugging. Messages also go to stderr rather than the audit log.
+.TP
+\fB-n\fR
+start the audit daemon, but do not enabled system call auditing in the kernel.
+This can be done separately by using \fBauditctl -e\fR.
.SH SIGNALS
\fB\SIGHUP\fR
causes auditd to reconfigure. This means that auditd re-reads the configuration file. If there are no syntax errors, it will proceed to implement the requested changes. If the reconfigure is successful, a DAEMON_CONFIG event is recorded in the logs. If not successful, error handling is controlled by space_left_action, admin_space_left_action, disk_full_action, and disk_error_action parameters in auditd.conf.
++++++ auditd.init ++++++
--- audit/auditd.init 2006-03-06 13:38:38.000000000 +0100
+++ STABLE/audit/auditd.init 2006-05-06 06:58:44.000000000 +0200
@@ -98,9 +98,12 @@
case "$1" in
start)
echo -n "Starting auditd "
+ if [ "$AUDITD_DISABLE_CONTEXTS" == "yes" ] ; then
+ EXTRAOPTIONS="$EXTRAOPTIONS -n"
+ fi
## Start daemon with startproc(8). If this fails
## the return value is set appropriately by startproc.
- startproc $AUDITD_BIN
+ startproc $AUDITD_BIN $EXTRAOPTIONS
test -f /etc/audit.rules && /sbin/auditctl -R /etc/audit.rules >/dev/null
# Remember status and be verbose
++++++ auditd.sysconfig ++++++
--- audit/auditd.sysconfig 2006-01-13 11:15:02.000000000 +0100
+++ STABLE/audit/auditd.sysconfig 2006-05-06 07:24:48.000000000 +0200
@@ -11,18 +11,25 @@
# Add extra options here
EXTRAOPTIONS=""
#
-# Type: string
-# Default: "en_US"
+## Type: string
+## Default: "en_US"
#
# This is the locale information that audit uses. Its defaulted to en_US.
# To remove all locale information from audit's environment, set
# AUDITD_LANG to the empty string or the string "none".
AUDITD_LANG="en_US"
#
-# Type: string
-# Default: "yes"
+## Type: string
+## Default: "yes"
#
# This option is used to determine if rules & watches should be deleted on
# shutdown. This is beneficial in most cases so that a watch doesn't linger
# on a drive that is being unmounted. If set to no, it will NOT be cleaned up.
AUDITD_CLEAN_STOP="yes"
+#
+## Type: yesno
+## Default: yes
+#
+# This option disables syscall auditing by default. This can also be
+# accomplished by auditctl -e.
+AUDITD_DISABLE_CONTEXTS="yes"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package OpenOffice_org
checked in at Sun May 7 15:37:53 CEST 2006.
--------
--- arch/i386/OpenOffice_org/OpenOffice_org.changes 2006-04-27 16:30:35.000000000 +0200
+++ STABLE/OpenOffice_org/OpenOffice_org.changes 2006-05-05 11:44:01.000000000 +0200
@@ -2 +2 @@
-Thu Apr 27 16:29:39 CEST 2006 - pmladek(a)suse.cz
+Thu May 4 18:15:53 CEST 2006 - pmladek(a)suse.cz
@@ -4,2 +4,26 @@
-- updated ooo-build to version 2.0.2.7.1:
- * disable cairo by default [#152730]
+- updated ooo-build to version 2.0.2.9:
+ * more i18n support
+ * typo in gcj 32-bit run time paths
+ * lots fixes in the VBA stuff
+ * support to remove poor help localizations
+- disabled poor help localizations with less than 50% of localized strings:
+ African, Belorussian, Bulgarian, Catalan, Croatian, Finnish, Greek, Hindi,
+ Kinyarwanda, Latvian, Norwegian Bokmaal, Macedonia, Norwegian Nynorsk,
+ Serbian, Slovak, Slovene, Sotho, Turkish, Tsonga, Vietnamese, Welsh, Xhosa
+
+-------------------------------------------------------------------
+Thu Apr 27 20:36:16 CEST 2006 - pmladek(a)suse.cz
+
+- updated ooo-build to version 2.0.2.8:
+ * support for OOo SDK packaging [#168810]
+ * optimization for loading large pivot tables from xls
+ * crash in fileview
+ * layout hang
+ * attempting to access current document fails in VBA
+ * default Greek fonts definition [#166267]
+ * small problems with preferred font order
+ * missing minor version number in versionrc
+ * synced atkbridge fixes with CWS
+ * Writer/Web desktop category [#168663]
+- added sdk and sdk-doc subpackages [#168810]
+- disabled Writer/Web menu entry on SLED [#168663]
Old:
----
minmem
ooo-build-2.0.2.7.1.tar.gz
New:
----
OOO_2_0_2-sdk_oo.tar.bz2
ooo-build-2.0.2.9.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ OpenOffice_org.spec ++++++
--- /var/tmp/diff_new_pack.v3mnBa/_old 2006-05-07 15:36:59.000000000 +0200
+++ /var/tmp/diff_new_pack.v3mnBa/_new 2006-05-07 15:36:59.000000000 +0200
@@ -27,6 +27,9 @@
# test_build_openclipart: 0 = no
# 1 = yes
%define test_build_openclipart 1
+# test_build_SDK: 0 = no
+# 1 = yes
+%define test_build_sdk 1
#
%if %test_build_langs == 0
%define ooo_langs "en-US"
@@ -37,6 +40,7 @@
%define ooo_langs "en-US af ar be-BY bg ca cs cy da de el en-GB es et fi fr gu-IN hi-IN hu hr it ja km ko lt mk nb nl nn pa-IN pl pt pt-BR ru rw sk sl sr-CS st sv tr ts vi xh zh-TW zh-CN zu"
%endif
%endif
+%define ooo_poor_help_localizations "af be-BY ca cy fi hi-IN lt nb nn st ts xh zu sr-CS vi rw tr el hr mk sk sl bg"
# java stuff
%define with_java yes
%ifarch %ix86
@@ -54,12 +58,12 @@
%define ooo_prefix /usr/lib
%define ooo_home ooo-2.0
%define ooo_build_dir build
-%define ooo_build_version 2.0.2.7.1
+%define ooo_build_version 2.0.2.9
%define ooo_build_tag OOO_2_0_2
License: LGPL, BSD
Group: Productivity/Office/Suite
Version: 2.0.2
-Release: 23
+Release: 26
Autoreqprov: on
PreReq: coreutils /usr/bin/update-mime-database
Prereq: %suseconfig_fonts_prereq
@@ -91,6 +95,9 @@
%if %suse_version <= 930
Source4: %ooo_build_tag-system.tar.bz2
%endif
+%if %test_build_sdk != 0
+Source5: %ooo_build_tag-sdk_oo.tar.bz2
+%endif
#
Source7: extras-2.tar.bz2
# Mono related stuff
@@ -173,6 +180,36 @@
+%if %test_build_sdk != 0
+%package sdk
+Summary: OpenOffice.org SDK Documentation
+Group: Documentation/HTML
+Requires: %name = %version
+Requires: make,zip,gcc-c++
+Recommends: java-devel
+
+%description sdk
+This package includes documentation and examples for the OpenOffice.org
+Software Development Kit (SDK).
+
+
+
+%package sdk-doc
+Summary: OpenOffice.org SDK
+Group: Development/Libraries/Other
+Suggests: %name-sdk = %version
+Enhances: %name-sdk = %version
+
+%description sdk-doc
+This package contains the files needed to build plugins/add-ons for
+OpenOffice.org. It includes header files, IDL files, needed build
+tools, etc.
+
+The documentation is in the package OpenOffice_org-sdk-doc
+
+
+
+%endif
%if %test_build_openclipart != 0
%if %suse_version > 930 || %sles_version > 8
%package galleries
@@ -1027,6 +1064,9 @@
# not available or where they are broken
install -m 644 %{S:4} src/
%endif
+%if %test_build_sdk != 0
+install -m 644 %{S:5} src/
+%endif
# dictionaries
tar -xf %{S:20} -C src/
tar -xf %{S:21} -C src/
@@ -1074,6 +1114,7 @@
--with-vendor=Novell \
--with-tag=%ooo_build_tag \
--with-lang=%ooo_langs \
+ --with-poor-help-localizations=%ooo_poor_help_localizations \
%if %test_build_binfilters != 0
--enable-binfilter \
%endif
@@ -1094,6 +1135,9 @@
--with-jdk-home=/usr \
%endif
%endif
+%if %test_build_sdk != 0
+ --enable-odk \
+%endif
--disable-access \
--disable-post-install-scripts \
--disable-strip
@@ -1178,6 +1222,11 @@
chmod 644 $RPM_BUILD_ROOT$dir/*
done
%endif
+# extra fixes for SLED10
+%if %sles_version >= 10
+# hide the Writer/Web menu entry on SLED10, n#168663
+echo "NoDisplay=true" >>$RPM_BUILD_ROOT/usr/share/applications/web.desktop
+%endif
%clean
rm -rf $RPM_BUILD_ROOT
@@ -1689,6 +1738,14 @@
%files -f %ooo_build_dir/nld_list.txt nld
%defattr(-,root,root)
+%if %test_build_sdk != 0
+
+%files -f %ooo_build_dir/sdk_list.txt sdk
+%defattr(-,root,root)
+
+%files -f %ooo_build_dir/sdk_doc_list.txt sdk-doc
+%defattr(-,root,root)
+%endif
%if %test_build_openclipart != 0
%if %suse_version > 930 || %sles_version > 8
@@ -1856,9 +1913,30 @@
%endif
%changelog -n OpenOffice_org
+* Thu May 04 2006 - pmladek(a)suse.cz
+- updated ooo-build to version 2.0.2.9:
+ * more i18n support
+ * typo in gcj 32-bit run time paths
+ * lots fixes in the VBA stuff
+ * support to remove poor help localizations
+- disabled poor help localizations with less than 50%% of localized strings:
+ African, Belorussian, Bulgarian, Catalan, Croatian, Finnish, Greek, Hindi,
+ Kinyarwanda, Latvian, Norwegian Bokmaal, Macedonia, Norwegian Nynorsk,
+ Serbian, Slovak, Slovene, Sotho, Turkish, Tsonga, Vietnamese, Welsh, Xhosa
* Thu Apr 27 2006 - pmladek(a)suse.cz
-- updated ooo-build to version 2.0.2.7.1:
- * disable cairo by default [#152730]
+- updated ooo-build to version 2.0.2.8:
+ * support for OOo SDK packaging [#168810]
+ * optimization for loading large pivot tables from xls
+ * crash in fileview
+ * layout hang
+ * attempting to access current document fails in VBA
+ * default Greek fonts definition [#166267]
+ * small problems with preferred font order
+ * missing minor version number in versionrc
+ * synced atkbridge fixes with CWS
+ * Writer/Web desktop category [#168663]
+- added sdk and sdk-doc subpackages [#168810]
+- disabled Writer/Web menu entry on SLED [#168663]
* Fri Apr 14 2006 - pmladek(a)suse.cz
- updated ooo-build to version 2.0.2.7:
* better fix for crash when selecting email application [#154458]
++++++ ooo-build-2.0.2.7.1.tar.gz -> ooo-build-2.0.2.9.tar.gz ++++++
++++ 23128 lines of diff (skipped)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package libzypp
checked in at Wed May 3 18:11:30 CEST 2006.
--------
--- libzypp/libzypp.changes 2006-05-03 15:38:22.000000000 +0200
+++ STABLE/libzypp/libzypp.changes 2006-05-03 17:51:43.000000000 +0200
@@ -1,0 +2,5 @@
+Wed May 3 17:40:45 CEST 2006 - dmacvicar(a)suse.de
+
+- Fix yum key verification, because a double variable declaration
+
+-------------------------------------------------------------------
New:
----
YUM.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libzypp.spec ++++++
--- /var/tmp/diff_new_pack.Wsp7X4/_old 2006-05-03 18:11:22.000000000 +0200
+++ /var/tmp/diff_new_pack.Wsp7X4/_new 2006-05-03 18:11:22.000000000 +0200
@@ -18,8 +18,9 @@
Autoreqprov: on
Summary: Package, Patch, Pattern, and Product Management
Version: 0.0.8
-Release: 149
+Release: 152
Source: zypp-0.0.0.tar.bz2
+Patch: YUM.diff
Prefix: /usr
Provides: yast2-packagemanager
Obsoletes: yast2-packagemanager
@@ -63,6 +64,7 @@
%prep
%setup -q -n zypp-0.0.0
+%patch
%build
mv configure.ac x
@@ -104,6 +106,8 @@
%changelog -n libzypp
* Wed May 03 2006 - dmacvicar(a)suse.de
+- Fix yum key verification, because a double variable declaration
+* Wed May 03 2006 - dmacvicar(a)suse.de
- use --no-default-keyring to avoid creating a
default gpg dir in / (#171055)
- rev 3335
++++++ YUM.diff ++++++
Wed May 3 17:40:45 CEST 2006 - dmacvicar(a)suse.de
- Fix yum key verification, because a double variable declaration
Index: zypp/source/yum/YUMSourceImpl.cc
===================================================================
--- zypp/source/yum/YUMSourceImpl.cc (revision 3337)
+++ zypp/source/yum/YUMSourceImpl.cc (revision 3339)
@@ -95,8 +95,6 @@
WAR << "Verifier not found" << endl;
}
- Pathname _repomd_file;
-
if ( cache )
{
DBG << "Cached metadata found in [" << _cache_dir << "]." << endl;
@@ -133,6 +131,8 @@
if ( ! PathInfo(_repomd_file).isExist() )
ZYPP_THROW(Exception("repodata/repomd.xml not found"));
+ else
+ MIL << "repomd file is [" << _repomd_file << "]" << std::endl;
MIL << "Trying to get the key" << endl;
if ( ! _repomd_key.empty() )
@@ -160,7 +160,7 @@
{
bool cache = from_cache;
- MIL << "Checking repomd.xml integrity" << endl;
+ MIL << "Checking [" << _repomd_file << "] integrity" << endl;
if (! getZYpp()->keyRing()->verifyFileSignatureWorkflow(_repomd_file, (_path + "/repodata/repomd.xml").asString()+ " (" + url().asString() + ")", _repomd_signature))
ZYPP_THROW(Exception(N_("Signed repomd.xml file fails signature check")));
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package yast2-storage
checked in at Wed May 3 17:27:55 CEST 2006.
--------
--- yast2-storage/yast2-storage.changes 2006-04-27 18:06:37.000000000 +0200
+++ STABLE/yast2-storage/yast2-storage.changes 2006-05-03 15:05:50.000000000 +0200
@@ -1,0 +2,8 @@
+Wed May 3 08:48:24 CEST 2006 - fehr(a)suse.de
+
+- disable check for boot size on macs (#170638)
+- fix off-by-one max cylinder check (#171872)
+- improve handling of unformatted DASD devices (#164930)
+- version 2.13.58
+
+-------------------------------------------------------------------
Old:
----
yast2-storage-2.13.57.tar.bz2
New:
----
yast2-storage-2.13.58.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-storage.spec ++++++
--- /var/tmp/diff_new_pack.53cbvg/_old 2006-05-03 17:27:02.000000000 +0200
+++ /var/tmp/diff_new_pack.53cbvg/_new 2006-05-03 17:27:02.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-storage (Version 2.13.57)
+# spec file for package yast2-storage (Version 2.13.58)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild
Name: yast2-storage
-Version: 2.13.57
-Release: 2
+Version: 2.13.58
+Release: 1
License: GPL
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-storage-2.13.57.tar.bz2
+Source0: yast2-storage-2.13.58.tar.bz2
prefix: /usr
BuildRequires: blocxx-devel docbook-xsl-stylesheets doxygen evms gcc-c++ libxcrypt-devel libxslt openssl-devel perl-XML-Writer sablot sgml-skel swig update-desktop-files yast2 yast2-devtools yast2-installation yast2-perl-bindings yast2-testsuite
Requires: yast2 parted yast2-installation yast2-storage-lib yast2-perl-bindings
@@ -40,7 +40,7 @@
%prep
-%setup -n yast2-storage-2.13.57
+%setup -n yast2-storage-2.13.58
%build
%{prefix}/bin/y2tool y2autoconf
@@ -164,6 +164,11 @@
%doc %{prefix}/share/doc/packages/yast2-storage/libstorage
%changelog -n yast2-storage
+* Wed May 03 2006 - fehr(a)suse.de
+- disable check for boot size on macs (#170638)
+- fix off-by-one max cylinder check (#171872)
+- improve handling of unformatted DASD devices (#164930)
+- version 2.13.58
* Thu Apr 27 2006 - fehr(a)suse.de
- call udevsettle instead of udev.count_events
- remove sole /dev/evms/md/ entries (#170075)
++++++ yast2-storage-2.13.57.tar.bz2 -> yast2-storage-2.13.58.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.13.57/VERSION new/yast2-storage-2.13.58/VERSION
--- old/yast2-storage-2.13.57/VERSION 2006-04-27 11:45:55.000000000 +0200
+++ new/yast2-storage-2.13.58/VERSION 2006-05-03 08:49:01.000000000 +0200
@@ -1 +1 @@
-2.13.57
+2.13.58
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.13.57/libstorage/src/Dasd.cc new/yast2-storage-2.13.58/libstorage/src/Dasd.cc
--- old/yast2-storage-2.13.57/libstorage/src/Dasd.cc 2006-04-24 15:09:08.000000000 +0200
+++ new/yast2-storage-2.13.58/libstorage/src/Dasd.cc 2006-05-03 11:44:34.000000000 +0200
@@ -22,6 +22,7 @@
unsigned long long SizeK ) :
Disk(s,Name,SizeK)
{
+ fmt = DASDF_NONE;
y2debug( "constructed dasd %s", dev.c_str() );
}
@@ -235,11 +236,8 @@
tmp = tmp.erase( 0, tmp.find( ':' ) + 1 );
tmp = extractNthWord( 3, tmp );
tmp >> val;
- if( val>0 )
- {
- y2mil( "val:" << val );
- c=val;
- }
+ y2mil( "val:" << val );
+ c=val;
}
if( cmd.select( "tracks per" )>0 )
{
@@ -249,11 +247,8 @@
tmp = tmp.erase( 0, tmp.find( ':' ) + 1 );
tmp = extractNthWord( 3, tmp );
tmp >> val;
- if( val>0 )
- {
- y2mil( "val:" << val );
- h=val;
- }
+ y2mil( "val:" << val );
+ h=val;
}
if( cmd.select( "blocks per" )>0 )
{
@@ -263,11 +258,8 @@
tmp = tmp.erase( 0, tmp.find( ':' ) + 1 );
tmp = extractNthWord( 3, tmp );
tmp >> val;
- if( val>0 )
- {
- y2mil( "val:" << val );
- s=val;
- }
+ y2mil( "val:" << val );
+ s=val;
}
if( cmd.select( "blocksize" )>0 )
{
@@ -277,11 +269,8 @@
tmp = tmp.erase( 0, tmp.find( ':' ) + 1 );
tmp = extractNthWord( 3, tmp );
tmp >> val;
- if( val>0 )
- {
- y2mil( "val:" << val );
- s*=val/512;
- }
+ y2mil( "val:" << val );
+ s*=val/512;
}
y2milestone( "c:%lu h:%u s:%u", c, h, s );
}
@@ -595,6 +584,13 @@
init_disk = value;
if( init_disk )
{
+ new_sector = sector = 96;
+ new_head = head = 15;
+ y2milestone( "new sector:%u head:%u", sector, head );
+ size_k = (head*sector*cyl)/2;
+ y2milestone( "new SizeK:%llu", size_k );
+ byte_cyl = head * sector * 512;
+ y2milestone( "new byte_cyl:%lu", byte_cyl );
ret = destroyPartitionTable( "dasd" );
}
else
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.13.57/libstorage/src/Disk.cc new/yast2-storage-2.13.58/libstorage/src/Disk.cc
--- old/yast2-storage-2.13.57/libstorage/src/Disk.cc 2006-04-25 11:34:40.000000000 +0200
+++ new/yast2-storage-2.13.58/libstorage/src/Disk.cc 2006-05-03 12:28:12.000000000 +0200
@@ -1974,7 +1974,7 @@
}
}
y2milestone( "max %lu", maxc );
- if( end>maxc && maxc<cylinders()-1 )
+ if( end>maxc && maxc<=cylinders()-1 )
{
y2milestone( "corrected end from %lu to max %lu", end, maxc );
end = maxc;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.13.57/libstorage/src/Dm.cc new/yast2-storage-2.13.58/libstorage/src/Dm.cc
--- old/yast2-storage-2.13.57/libstorage/src/Dm.cc 2006-04-27 16:21:54.000000000 +0200
+++ new/yast2-storage-2.13.58/libstorage/src/Dm.cc 2006-05-02 19:14:53.000000000 +0200
@@ -259,7 +259,7 @@
void Dm::updateMajorMinor()
{
getMajorMinor( dev, mjr, mnr );
- if( majorNr()>0 )
+ if( majorNr()==Dm::dmMajor() )
{
string d = "/dev/dm-" + decString(minorNr());
if( d!=dev )
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.13.57/storage/src/include/custom_part_check_generated.ycp new/yast2-storage-2.13.58/storage/src/include/custom_part_check_generated.ycp
--- old/yast2-storage-2.13.57/storage/src/include/custom_part_check_generated.ycp 2006-04-11 15:20:53.000000000 +0200
+++ new/yast2-storage-2.13.58/storage/src/include/custom_part_check_generated.ycp 2006-05-03 08:49:49.000000000 +0200
@@ -24,7 +24,7 @@
*
*************************************************************
- $Id: custom_part_check_generated.ycp 29984 2006-04-11 13:20:49Z fehr $
+ $Id: custom_part_check_generated.ycp 30634 2006-05-03 06:49:44Z fehr $
*/
{
@@ -117,7 +117,7 @@
symbol root_fs = `unknown;
symbol boot_fs = `unknown;
integer boot_size = 0;
- boolean boot_size_check = !(Arch::board_chrp () || Arch::board_prep () || Arch::board_iseries ());
+ boolean boot_size_check = !(Arch::board_chrp() || Arch::board_prep() || Arch::board_iseries() || Arch::board_mac());
integer root_cyl_for_gb = 0;
integer boot_cyl_for_gb = 0;
string axp_start_dev = "";
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-storage-2.13.57/storage/src/inst_custom_part.ycp new/yast2-storage-2.13.58/storage/src/inst_custom_part.ycp
--- old/yast2-storage-2.13.57/storage/src/inst_custom_part.ycp 2006-04-24 17:46:31.000000000 +0200
+++ new/yast2-storage-2.13.58/storage/src/inst_custom_part.ycp 2006-05-03 15:05:59.000000000 +0200
@@ -26,7 +26,7 @@
*
*************************************************************
- $Id: inst_custom_part.ycp 30423 2006-04-24 15:46:27Z fehr $
+ $Id: inst_custom_part.ycp 30649 2006-05-03 13:05:55Z fehr $
*/
{
@@ -2128,7 +2128,8 @@
foreach( string dev, map disk, targetMap,
``{
- if( Storage::IsRealDisk( disk ) )
+ y2milestone( "dev:%1 isReal:%2", dev, Storage::IsRealDisk( disk ) );
+ if( !disk["readonly"]:false && Storage::IsRealDisk( disk ) )
{
txt = sformat( "&%1: %2", n+1, dev );
diskgroup = add( diskgroup, `Left( `RadioButton( `id(dev), txt,
@@ -2137,6 +2138,7 @@
disks = add ( disks, dev );
}
});
+ y2milestone( "disks:%1", disks );
if( size(disks)>10 )
{
diskgroup = `VBox( `SelectionBox( `id(`disklist), _("Available &Disks"),
@@ -2147,7 +2149,7 @@
diskgroup = `RadioButtonGroup( `id(`choosedisk), diskgroup );
}
- if( size(disks) != 1 )
+ if( size(disks) > 1 )
{
UI::OpenDialog( `opt(`decorated), `VBox(`Heading( heading ),
`VSpacing(0.5),
@@ -2207,11 +2209,21 @@
return(r);
}
}
- else
+ else if( size(disks) == 1 )
{
// if there is only one disk: no
return( disks[0]:"" );
}
+ else if( size(disks) == 0 )
+ {
+ string txt = _("There are no partitionable Disks available.");
+ if( Arch::s390() )
+ {
+ txt = txt + "\n" + _("You may use dasdfmt in Expert-Button to low level format disks.");
+ }
+ Popup::Error( txt );
+ return( "" );
+ }
};
define term RaidButton( integer num )
@@ -2611,7 +2623,7 @@
_("Disk to Partition"),
`create );
- if( ddev == nil )
+ if( ddev == nil || size(ddev)==0 )
{
ret = `again;
continue;
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package libzypp
checked in at Wed May 3 15:43:13 CEST 2006.
--------
--- libzypp/libzypp.changes 2006-05-03 15:00:57.000000000 +0200
+++ STABLE/libzypp/libzypp.changes 2006-05-03 15:38:22.000000000 +0200
@@ -1,0 +2,7 @@
+Wed May 3 15:34:00 CEST 2006 - dmacvicar(a)suse.de
+
+- use --no-default-keyring to avoid creating a
+ default gpg dir in / (#171055)
+- rev 3335
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libzypp.spec ++++++
--- /var/tmp/diff_new_pack.Xk8Xta/_old 2006-05-03 15:40:36.000000000 +0200
+++ /var/tmp/diff_new_pack.Xk8Xta/_new 2006-05-03 15:40:36.000000000 +0200
@@ -18,7 +18,7 @@
Autoreqprov: on
Summary: Package, Patch, Pattern, and Product Management
Version: 0.0.8
-Release: 147
+Release: 149
Source: zypp-0.0.0.tar.bz2
Prefix: /usr
Provides: yast2-packagemanager
@@ -104,6 +104,10 @@
%changelog -n libzypp
* Wed May 03 2006 - dmacvicar(a)suse.de
+- use --no-default-keyring to avoid creating a
+ default gpg dir in / (#171055)
+- rev 3335
+* Wed May 03 2006 - dmacvicar(a)suse.de
- Fix YUM signature checking, we were passing the key instead of the
signature.
- When the user trust a key, sync again. Bye to the session trusted
++++++ zypp-0.0.0.tar.bz2 ++++++
libzypp/zypp-0.0.0.tar.bz2 STABLE/libzypp/zypp-0.0.0.tar.bz2 differ: char 11, line 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0