Re: Thanks for KDE 4.7.4

2011-12-20 Thread Martin Steigerwald
Am Dienstag, 20. Dezember 2011 schrieb Diederik de Haas:
> On Monday 19 December 2011 20:11:13 Petr Vorel wrote:
> > sudo apt-get -t experimental dist-upgrade
> 
> Don't do that, that'll upgrade all packages which also has a (higher)
> version in experimental.
> 
> This is what I've used to upgrade from 4.7.2 to 4.7.4, but it may also
> work when upgrading from  4.6.5 (but haven't tested it, try it by
> adding -s (simulate) to the line):
> 
> aptitude safe-upgrade -t experimental '~i~Aexperimental-snapshots'

Now this sounds like a quite nice idea as long as experimental-snapshots 
carries recent enough KDE packages ;).

-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201112201355.39949.mar...@lichtvoll.de



Re: Thanks for KDE 4.7.4

2011-12-20 Thread Martin Steigerwald
Am Montag, 19. Dezember 2011 schrieb Michael Schuerig:
> On Monday 19 December 2011, Martin Steigerwald wrote:
> > Am Montag, 19. Dezember 2011 schrieb Michael Schuerig:
> > > On Monday 19 December 2011, Martin Steigerwald wrote:
> > > > Thanks for KDE 4.7.4.
> > > >
> > > > 
> > > >
> > > > Installed nicely after I selected to upgrade
> > > > shared-desktop-ontologies from aptitude´s conflict resolution
> > > > offerings.
> > >
> > > 
> > >
> > > Hi Martin,
> > >
> > > 
> > >
> > > can you give a hint how you managed to upgrade from 4.6.5 in
> > > unstable? I've tried
> > >
> > > 
> > >
> > > $ sudo aptitude install -t experimental kde-standard
> > >
> > > 
> > >
> > > and various other things. In each case, aptitude suggests to remove
> > > a large number or KDE packages.
> >
> > 
> >
> > I don´t remember that step anymore. I upgrade from previous 4.7.2
> > packages. They upgrade from 4.6.5 wasn´t to difficult at all.
> >
> > 
> >
> > Try the dist-upgrade thing Petr suggested. When aptitude doesn´t
> > yield expected results, try apt-get or cycle through the offerings
> > that aptitude gives you. Maybe install shared-desktop-ontologies
> > from experimental manually before you try to install KDE 4.7.4.
> 
> shared-desktop-ontologies 0.8.1-1 is installed. Still, when I try a 
> dist-upgrade (or rather full-upgrade) to experimental, aptitude
> suggests  to remove 140 packages. I don't think this is caused by KDE
> by itself, rather it is because other installed (unstable) packages
> are in flux in experimental. Among the suggested removals are gimp,
> lots of libghc-* packages, libreoffice, and various nvidia packages.
> 
> As far as I can tell, my main problem is that a full-upgrade to 
> experimental is far too unspecific. I'd rather have a way to upgrade 
> only the KDE packages and their dependencies.

Hmmm, now that I read it again, I believe that should be "experimental-
snapshots" instead of "experimental".

Cause it is definately not wise to unconditionally install everything from 
"experimental". But then "experimental-snapshots" only works when the 
4.7.4 packages have been uploaded there.

But that doesn´t seem to be the case:
martin@merkaba:~> LANG=C apt-cache policy kdebase-runtime
kdebase-runtime:
  Installed: 4:4.7.4-1
  Candidate: 4:4.7.4-1
  Version table:
 *** 4:4.7.4-1 0
120 http://ftp.de.debian.org/debian/ experimental/main amd64 
Packages
100 /var/lib/dpkg/status
 4:4.7.2-1 0
110 http://qt-kde.debian.net/debian/ experimental-snapshots/main 
amd64 Packages
 4:4.6.5-1+b1 0
450 http://ftp.de.debian.org/debian/ wheezy/main amd64 Packages
500 http://ftp.de.debian.org/debian/ sid/main amd64 Packages

So I had the luck that I installed KDE 4.7.2 while it was in experimental-
snapshots and from there the upgrade to 4.7.4 was easy.

For upgrading from Wheezy/Sid KDE 4.6.5 to 4.7.4 I suggest naming KDE 
metapackages explicitely.

Ciao,
-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7


--
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201112201354.29419.mar...@lichtvoll.de



Re: Thanks for KDE 4.7.4

2011-12-20 Thread Andreas v. Heydwolff

On 2011-12-19 22:00, Michael Schuerig wrote:

On Monday 19 December 2011, Michael Schuerig wrote:
[Updating to 4.7.4]

OK, I've managed it through some non-reproducible jugging with aptitude
and apt-get.

Michael


(sorry for the p.m., Michael)


This is how I start upgrading kde. My "aptgrep" script searches for the 
upgradeable packages with the string in question ($1), and I usually run 
it twice, first with kde as the search string, then with the old KDE 
version number derived from he atptiude info ("replacing X with Y"), 
e.g. 4.6.3. Finally I run


 # aptitude install ~nokular

and gwenview and dolphi, just to make sure the extras got pulled in.

The script can be used for other sets of packages as well, of course.

Enjoy.

Andreas




#!/bin/bash

apt-get dist-upgrade -s | grep $1  | sed -n '/Inst/,$p' | grep -v Conf | 
cut -d' ' -f2 | tr '\n' ' ' | tee  /tmp/aptgrep


PKG=`cat /tmp/aptgrep`

if [ "$PKG" = "" ]
  then echo nothing to be done, exiting ; echo ; exit
  else echo ; echo ; echo "install packages? [y/N]"
read INST 1>/dev/null
  if [ "$INST" = "y" ]
then apt-get install $PKG
else echo no upgrade, exiting ; echo ; exit
  fi
fi
exit 0
-


--
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ef0472b.7080...@sandpsych.at



Re: Thanks for KDE 4.7.4

2011-12-19 Thread Detlev Brodowski
Am Dienstag, 20. Dezember 2011, 00:42:50 schrieb Diederik de Haas:
> On Monday 19 December 2011 20:11:13 Petr Vorel wrote:
> > sudo apt-get -t experimental dist-upgrade
> 
> Don't do that, that'll upgrade all packages which also has a (higher)
> version in experimental.
> 
> This is what I've used to upgrade from 4.7.2 to 4.7.4, but it may
> also work when upgrading from 4.6.5 (but haven't tested it, try it
> by adding -s (simulate) to the line):
> 
> aptitude safe-upgrade -t experimental '~i~Aexperimental-snapshots'
> 
> Which will upgrade each installed packages which is available in
> experimental-snapshots. Another command I tried, but didn't produce
> the same results is:
> 
> aptitude safe-upgrade -t experimental '~i~Gsuite::kde'
> 
> You need debtags package installed for that command.
> 
> 
> Diederik

Hello all,

At 1st thanks for the great job. I could update the packages without any 
issues.

My way was:

1. adding experimental repository to /etc/apt/sources.list

deb http://ftp.debian.org/debian/ experimental main contrib non-free

2. set priority of this experimental repository to -1 in 
/etc/apt/preferences

=8<-
Package: *
Pin: release o=Debian,a=experimental
Pin-Priority: -1
->8=


3. set the wanted packages to priority 500 in a separated file ex. 
/etc/apt/preferences.d/kde-exp. (I have my file attached)
(it contains the exp. digikam packages, too)

@Maintainers:
Is it possible to package the new kdepim 4.7.4? I would like to test 
this.

Kind regards
Detlev
#Package: *
#Pin: release o=qt-kde,a=experimental-snapshots
#Pin-Priority: 500

Package: akonadi-server libakonadiprotocolinternals1 libakonadi-dev 
akonadi-backend-mysql akonadi-backend-postgresql akonadi-backend-odbc 
akonadi-backend-sqlite akonadi-dbg
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: soprano-daemon libsoprano4 libsoprano-dev libsoprano-doc libsoprano-dbg
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: rekonq
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: shared-desktop-ontologies
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kde-plasma-desktop kde-plasma-netbook kde-standard kde-full kdeedu 
kdegraphics kde-sc-dev-latest kdegraphics-libs-data
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: oxygen-icon-theme
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kde-l10n-ar kde-l10n-bg kde-l10n-bs kde-l10n-ca kde-l10n-cavalencia 
kde-l10n-cs kde-l10n-da kde-l10n-de kde-l10n-el kde-l10n-engb kde-l10n-es 
kde-l10n-et kde-l10n-eu kde-l10n-fi kde-l10n-fr kde-l10n-ga kde-l10n-gl 
kde-l10n-he kde-l10n-hr kde-l10n-hu kde-l10n-ia kde-l10n-id kde-l10n-is 
kde-l10n-it kde-l10n-ja kde-l10n-kk kde-l10n-km kde-l10n-kn kde-l10n-ko 
kde-l10n-lv kde-l10n-lt kde-l10n-nb kde-l10n-nds kde-l10n-nl kde-l10n-nn 
kde-l10n-pa kde-l10n-pl kde-l10n-pt kde-l10n-ptbr kde-l10n-ro kde-l10n-ru 
kde-l10n-sk kde-l10n-sl kde-l10n-sr kde-l10n-sv kde-l10n-th kde-l10n-tr 
kde-l10n-ug kde-l10n-uk kde-l10n-wa kde-l10n-zhcn kde-l10n-zhtw
Pin: release o=Debian,a=experimental
Pin-Priority: 500

#Package: libpolkit-qt-1-dev libpolkit-qt-1-1
#Pin: release o=Debian,a=experimental
#Pin-Priority: 500

#Package: kdepim-runtime kdepim-runtime-dbg
#Pin: release o=Debian,a=experimental
#Pin-Priority: 500

#Package: kdepim kdepim-dbg akregator kaddressbook kalarm kdepim-kresources 
kdepim-groupware kdepim-wizards kleopatra kmail knode knotes konsolekalendar 
kontact korganizer ktimetracker libkdepim4 libkleo4 libkpgp4 libksieve4 
libmimelib4 libmessagecore4 libmessagelist4 libmessageviewer0 
kdepim-strigi-plugins kjots blogilo akonadiconsole
#Pin: release o=Debian,a=experimental
#Pin-Priority: 500

Package: kdewebdev kfilereplace kimagemapeditor klinkstatus kommander 
kdewebdev-dbg
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kdetoys amor kteatime ktux kdetoys-dbg
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kdenetwork kdenetwork-filesharing kget libkopete4 kopete libkopete-dev 
kppp krdc krfb kdenetwork-dbg kde-zeroconf
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kde-runtime kdebase-runtime kde-runtime-data khelpcenter4 
kde-config-phonon-xine plasma-scriptengine-javascript kde-runtime-dbg 
kdebase-runtime-dbg
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kdeartwork kdeartwork-emoticons kdewallpapers kdeartwork-theme-icon 
kde-icons-nuvola nuvola-icon-theme kde-icons-mono kdeartwork-theme-window 
kdeartwork-style kscreensaver kscreensaver-xsavers 
kscreensaver-xsavers-webcollage plasma-desktopthemes-artwork kdeartwork-dbg
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kdeadmin kcron kde-config-cron ksystemlog kuser 
system-config-printer-kde kdeadmin-dbg
Pin: release o=Debian,a=experimental
Pin-Priority: 500

Package: kdeutils kdeutils-dbg ark kcalc kcharselect kremotecontrol kdelirc kdf 
kfloppy kgpg ktimer kwalletmanager plasma-scriptengine-superkaramba sweep

Re: Thanks for KDE 4.7.4

2011-12-19 Thread Diederik de Haas
On Monday 19 December 2011 20:11:13 Petr Vorel wrote:
> sudo apt-get -t experimental dist-upgrade

Don't do that, that'll upgrade all packages which also has a (higher) version 
in experimental.

This is what I've used to upgrade from 4.7.2 to 4.7.4, but it may also work 
when upgrading from 
4.6.5 (but haven't tested it, try it by adding -s (simulate) to the line):

aptitude safe-upgrade -t experimental '~i~Aexperimental-snapshots'

Which will upgrade each installed packages which is available in 
experimental-snapshots.
Another command I tried, but didn't produce the same results is:

aptitude safe-upgrade -t experimental '~i~Gsuite::kde'

You need debtags package installed for that command.


Diederik


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201112200042.50459.didi.deb...@cknow.org



Re: Thanks for KDE 4.7.4

2011-12-19 Thread Michael Schuerig
On Monday 19 December 2011, Michael Schuerig wrote:
[Updating to 4.7.4]

OK, I've managed it through some non-reproducible jugging with aptitude 
and apt-get.

Michael

-- 
Michael Schuerig
mailto:mich...@schuerig.de
http://www.schuerig.de/michael/


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201112192200.11183.michael.li...@schuerig.de



Re: Thanks for KDE 4.7.4

2011-12-19 Thread Michael Schuerig
On Monday 19 December 2011, Martin Steigerwald wrote:
> Am Montag, 19. Dezember 2011 schrieb Michael Schuerig:
> > On Monday 19 December 2011, Martin Steigerwald wrote:
> > > Thanks for KDE 4.7.4.
> > > 
> > > Installed nicely after I selected to upgrade
> > > shared-desktop-ontologies from aptitude´s conflict resolution
> > > offerings.
> > 
> > Hi Martin,
> > 
> > can you give a hint how you managed to upgrade from 4.6.5 in
> > unstable? I've tried
> > 
> > $ sudo aptitude install -t experimental kde-standard
> > 
> > and various other things. In each case, aptitude suggests to remove
> > a large number or KDE packages.
> 
> I don´t remember that step anymore. I upgrade from previous 4.7.2
> packages. They upgrade from 4.6.5 wasn´t to difficult at all.
> 
> Try the dist-upgrade thing Petr suggested. When aptitude doesn´t
> yield expected results, try apt-get or cycle through the offerings
> that aptitude gives you. Maybe install shared-desktop-ontologies
> from experimental manually before you try to install KDE 4.7.4.

shared-desktop-ontologies 0.8.1-1 is installed. Still, when I try a 
dist-upgrade (or rather full-upgrade) to experimental, aptitude suggests 
to remove 140 packages. I don't think this is caused by KDE by itself, 
rather it is because other installed (unstable) packages are in flux in 
experimental. Among the suggested removals are gimp, lots of libghc-* 
packages, libreoffice, and various nvidia packages.

As far as I can tell, my main problem is that a full-upgrade to 
experimental is far too unspecific. I'd rather have a way to upgrade 
only the KDE packages and their dependencies.

Michael

-- 
Michael Schuerig
mailto:mich...@schuerig.de
http://www.schuerig.de/michael/


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201112192115.06414.michael.li...@schuerig.de



Re: Thanks for KDE 4.7.4

2011-12-19 Thread Martin Steigerwald
Am Montag, 19. Dezember 2011 schrieb Michael Schuerig:
> On Monday 19 December 2011, Martin Steigerwald wrote:
> > Thanks for KDE 4.7.4.
> > 
> > Installed nicely after I selected to upgrade
> > shared-desktop-ontologies from aptitude´s conflict resolution
> > offerings.
> 
> Hi Martin,
> 
> can you give a hint how you managed to upgrade from 4.6.5 in unstable?
> I've tried
> 
> $ sudo aptitude install -t experimental kde-standard
> 
> and various other things. In each case, aptitude suggests to remove a
> large number or KDE packages.

I don´t remember that step anymore. I upgrade from previous 4.7.2 
packages. They upgrade from 4.6.5 wasn´t to difficult at all.

Try the dist-upgrade thing Petr suggested. When aptitude doesn´t yield 
expected results, try apt-get or cycle through the offerings that aptitude 
gives you. Maybe install shared-desktop-ontologies from experimental 
manually before you try to install KDE 4.7.4.

For more detailed suggestions I need to see outputs of aptitude / apt-get!

Thanks
-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7


--
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201112192039.55210.mar...@lichtvoll.de



Re: Thanks for KDE 4.7.4

2011-12-19 Thread Petr Vorel
sudo apt-get -t experimental dist-upgrade

On 19 December 2011 19:49, Michael Schuerig  wrote:
> On Monday 19 December 2011, Martin Steigerwald wrote:
>> Thanks for KDE 4.7.4.
>>
>> Installed nicely after I selected to upgrade
>> shared-desktop-ontologies from aptitude愀 conflict resolution
>> offerings.
>
> Hi Martin,
>
> can you give a hint how you managed to upgrade from 4.6.5 in unstable?
> I've tried
>
> $ sudo aptitude install -t experimental kde-standard
>
> and various other things. In each case, aptitude suggests to remove a
> large number or KDE packages.
>
> Michael
>
> --
> Michael Schuerig
> mailto:mich...@schuerig.de
> http://www.schuerig.de/michael/
>
>
> --
> To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
> Archive: http://lists.debian.org/201112191949.30089.michael.li...@schuerig.de
>


--
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CABLm4VmFfQ9DE=nztscl5trfbxhxs5n2yu_yotnuhmlsz2i...@mail.gmail.com



Re: Thanks for KDE 4.7.4

2011-12-19 Thread Michael Schuerig
On Monday 19 December 2011, Martin Steigerwald wrote:
> Thanks for KDE 4.7.4.
> 
> Installed nicely after I selected to upgrade
> shared-desktop-ontologies from aptitude´s conflict resolution
> offerings.

Hi Martin,

can you give a hint how you managed to upgrade from 4.6.5 in unstable? 
I've tried

$ sudo aptitude install -t experimental kde-standard

and various other things. In each case, aptitude suggests to remove a 
large number or KDE packages.

Michael

-- 
Michael Schuerig
mailto:mich...@schuerig.de
http://www.schuerig.de/michael/


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201112191949.30089.michael.li...@schuerig.de



Re: thanks

2009-08-07 Thread Modestas Vainius
Hello,

On šeštadienis 08 Rugpjūtis 2009 00:27:37 pavithran shakamuri wrote:
> I can't find Koffice packages in Sid . What might be the reason  ?
> I really want to try out the brand new krita which will be entering its
> teenage soon[1] and wonderful Koffice 2.0.1 [2]:)

http://packages.debian.org/experimental/koffice

It is not in Sid because it is not ready for Sid (software quality wise). 
There is no need to be scared of experimental.

-- 
Modestas Vainius 


signature.asc
Description: This is a digitally signed message part.


Re: thanks

2009-08-07 Thread pavithran shakamuri

 Original-Nachricht 
> Datum: Fri, 7 Aug 2009 20:25:11 +1000
> Von: Tim Richardson 
> An: debian-kde@lists.debian.org
> Betreff: thanks

> Thanks for the amazingly short time to get kde 4.3 into sid (therefore
> into
> sidux).

I can't find Koffice packages in Sid . What might be the reason  ?
I really want to try out the brand new krita which will be entering its teenage 
soon[1] and wonderful Koffice 2.0.1 [2]:)

1. http://www.linux-magazine.com/w3/issue/106/092-093_projects.pdf
2 .http://www.koffice.org/news/koffice-201-released/


Regards,
Pavithran
http://look-pavi.blogspot.com
-- 
Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3 -
sicherer, schneller und einfacher! http://portal.gmx.net/de/go/atbrowser


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Thanks!

2009-04-06 Thread mlista6
On Monday 06 April 2009 20:20:39 Stéphane Péchard wrote:
> > I just upgraded to KDE 4.2.2 from unstable (from KDE 4.2.1 in
> > experimental) and everything seems to fine. I just want to say thank you
> > for doing such a great job with packaging KDE for Debian. Thanks!
>
> same thing here, thanks!
>
> --
> ~~
> ~ stéphane péchard | france

I've done the same and everything seems to works fine :)
Thank you!! :D

Chiacchiera con i tuoi amici in tempo reale!
 http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com


--
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Thanks!

2009-04-06 Thread Stéphane Péchard
> I just upgraded to KDE 4.2.2 from unstable (from KDE 4.2.1 in experimental)
> and everything seems to fine. I just want to say thank you for doing such a
> great job with packaging KDE for Debian. Thanks!

same thing here, thanks!

-- 
~~
~ stéphane péchard | france


--
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Thanks

2005-09-16 Thread Nick Leverton
On Fri, Sep 16, 2005 at 11:56:22AM -0500, Nate Bargmann wrote:
 
> Add my second as thanks to the team.  I transitioned to 3.4.2 a bit
> over a week ago and it has been a typically smooth Debian upgrade. 
> 
> Your hard work is much appreciated.

The quality of the packaging is shown in how easily they backport to
Sarge, too.  Just change the Requires: back in debian/control, bump the
changelog and they work!

ii  kde-i18n-engb  3.3.2-2British English (en_GB) internationalized (i
ii  kdeaddons  3.4.2-1njl.2   add-on plugins and applets provided with KDE
ii  kdeadmin   3.4.1-1system adminstration tools from the official
ii  kdeartwork 3.4.1-1themes, styles and more from the official KD
ii  kdebase3.4.1-1base components from the official KDE releas
ii  kdeedu 3.3.2-3educational apps from the official KDE relea
ii  kdegames   3.4.1-1KDE Games metapackage
ii  kdelibs3.4.2-2njl.3   core libraries from the official KDE release
ii  kdemultimedia  3.4.1-1multimedia apps from the official KDE releas
ii  kdenetwork 3.4.1-1network-related apps from the official KDE r
ii  kdepim 3.4.1-1KDE Personal Information Management metapack
ii  kdeprint   3.4.1-1print system for KDE
ii  kdetoys3.4.1-1toys from the official KDE release
ii  kdeutils   3.4.1-1general purpose utilities from the official 
ii  kdewebdev  3.4.2-0njl.1   web development apps from the official KDE r

Nick


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Thanks

2005-09-16 Thread Nate Bargmann
* Jean-Damien Durand <[EMAIL PROTECTED]> [2005 Sep 16 05:00 -0500]:
> Hmmm, I have not seen many messages to thank you all very much for the big
> efforts concerning kde packages following the g++ + xorg transitions, and
> that was a big task for sure - in summer in addition!
> So here we go - as many other users I have successfully upgraded (never mind
> for the very few remaining packages not yet transitionned - that will come),
> and all looks so good that I wanted to say so on that list...
> Well done;
> Cheers, JD.

Add my second as thanks to the team.  I transitioned to 3.4.2 a bit
over a week ago and it has been a typically smooth Debian upgrade. 

Your hard work is much appreciated.

- Nate >>

-- 
 Wireless | Amateur Radio Station N0NB  |  Successfully Microsoft
  Amateur radio exams; ham radio; Linux info @  | free since January 1998.
 http://www.qsl.net/n0nb/   |  "Debian, the choice of
 My Kawasaki KZ-650 SR @| a GNU generation!"
http://www.networksplus.net/n0nb/   |   http://www.debian.org


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



RE: thanks!

2004-10-12 Thread Assemblymember Bogh Constituent Mailbox
This is an auto reply letter.

Thank you for your recent e-mail message.

It is vital that I know the opinions of people in California and I
appreciate you taking the time to express yours.

As you may know, I receive a significant amount of correspondence each and
every day - a timely response addressing your concerns will be sent to you
as soon possible. 

Because of the large daily volume, only constituent correspondences from the
65th Assembly District will receive a formal legislative response -
therefore, it is important that your message include  the following
information:

Name
Mailing Address
Daytime Phone Number - optional

If you are a constituent of the 65th Assembly District, and your original
e-mail did not include the above information, please take a minute to update
it and re-send it.

If you are not a resident of the 65th Assembly District, please visit
www.assembly.ca.gov to locate your State Legislator and their respective
e-mail address. Unfortunately, non-constituent correspondence, or e-mails
without name and address information, won't be responded to or referred.

Thank you again for taking the time to contact me.

Sincerely,


Russ Bogh
Assemblyman 65th District


Assemblyman Russ Bogh
State Capitol Room #2002
34932 Yucaipa Blvd
Yucaipa CA 92399
(909) 790-4196 District Office
(916) 319-2065 Capitol Office 




Re: Re: Thanks!

2004-05-16 Thread sales
Your document is attached.

--- Trend GateLock [EMAIL PROTECTED] (主機:higp4.gatelock.com.tw)

** 中毒檔案 document.pif 已刪除。

 Trend GateLock [EMAIL PROTECTED] (主機:higp4.gatelock.com.tw)

** 在檔案 document.pif 中發現病毒 WORM_NETSKY.J。
無法清除病毒,中毒檔案已刪除。

-