Re: no HighColor widget style with qt3.0.5

2002-08-06 Thread Dmitry Mikhailov
Linus Gasser <[EMAIL PROTECTED]> writes:

> > Downgrading qt3-mt back to 3.0.4. everything is working fine.
> Hi,
> from a debian-newbie: how do you downgrade cleanly?

Download libqt and libqt-mt version 3.0.4-2 manually then use 
'dpkg -i '.
-- 
Best regards, Dmitry.




Re: no HighColor widget style with qt3.0.5

2002-08-06 Thread Linus Gasser
On Tuesday 06 August 2002 11:54, Alex wrote:
> On Tuesday 06 August 2002 11:24, Linus Gasser wrote:
> > Hi,
> > from a debian-newbie: how do you downgrade cleanly?
>
> to get a package from a specific release use:
> apt-get install package/release
> eg:
> apt-get install libqt3/testing
>
> to get a package with a specific version number:
> apt-get install package=version
> eg:
> apt-get install libqt3=2:3.0.4-2
>
> if a downloaded package is still in
> /var/cache/apt/archives
> then you can install it with
> dpkg -i --force-downgrade package_version_arch.deb
> eg:
> dpkg -i --force-downgrade libqt3_3.0.4-2_i386.deb
>
>
> hope this helps,

Hi,
yes, it helps. Thanx very much. I did some apt-get orgie, like

# apt-get install libqt3=2:3.0.4-2 libqt3-mt=2:3.0.4-2
and
# apt-get install libqt3-dev=2:3.0.4-2 libqt3-mt-dev=2:3.0.4-2 \ 
  libqxt0=2:3.0.4-2 qt3-tools=2:3.0.4-2 libpng3=1.2.1-1.1.woody.2

and then I had to dpkg-buildpackage -b on my kdevelop-tree again. Luckily 
there is the -nc switch, so I didn't have to recompile kdevelop! Is there 
some HOWTO on doing one's own packet-server, so that I can have like

deb file://var/local/debian ./

in my sources.list ? I didn't find anything in the man-pages...

thanks again,

ineiti

PS: Vanity, vanity, but I have the good-ole mosfet-liquid back!




Re: no HighColor widget style with qt3.0.5

2002-08-06 Thread Alex
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 06 August 2002 11:24, Linus Gasser wrote:
> On Monday 05 August 2002 14:01, Michael Schmitz wrote:
> > Hi,
> >
> > I've upgraded qt from 3.0.4 to 3.0.5.
> > After this the KDE3 HighColor default theme is no longer available. Only
> > a reduced set of widget styles is available (the QT built-in styles).
> > Downgrading qt3-mt back to 3.0.4. everything is working fine.
>
> Hi,
> from a debian-newbie: how do you downgrade cleanly?

to get a package from a specific release use:
apt-get install package/release
eg:
apt-get install libqt3/testing

to get a package with a specific version number:
apt-get install package=version
eg:
apt-get install libqt3=2:3.04-2

if a downloaded package is still in
/var/cache/apt/archives
then you can install it with
dpkg -i --force-downgrade package_version_arch.deb
eg:
dpkg -i --force-downgrade libqt3_3.0.4-2_i386.deb


hope this helps,

Alex.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9T5zy52oeXEXzEHYRAkgNAJ48eiSM7quSdMu+yVNfRDQ9utjaQwCfabpk
VApb24VBMP+uvzY3YLxD3Pw=
=JpO9
-END PGP SIGNATURE-




Re: no HighColor widget style with qt3.0.5

2002-08-06 Thread Soenke von Stamm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am Dienstag, 6. August 2002 13:30 schrieb Linus Gasser:
> [...]
>
> Hi,
> yes, it helps. Thanx very much. I did some apt-get orgie, like

same with me :-)
my kdm still crashes with 3rd light style though..

>
> # apt-get install libqt3=2:3.0.4-2 libqt3-mt=2:3.0.4-2
> and
> # apt-get install libqt3-dev=2:3.0.4-2 libqt3-mt-dev=2:3.0.4-2 \
>   libqxt0=2:3.0.4-2 qt3-tools=2:3.0.4-2 libpng3=1.2.1-1.1.woody.2
>
> and then I had to dpkg-buildpackage -b on my kdevelop-tree again. Luckily
> there is the -nc switch, so I didn't have to recompile kdevelop! Is there
> some HOWTO on doing one's own packet-server, so that I can have like
>
> deb file://var/local/debian ./
>
> in my sources.list ? I didn't find anything in the man-pages...
>
> thanks again,
>
> ineiti
>
> PS: Vanity, vanity, but I have the good-ole mosfet-liquid back!

I have a small script in the root of my /var/www/debian:
- 
#!/bin/bash
# no spaces in path please!
for path in `ls -d dists/*/*/*`
do
dpkg-scanpackages $path /dev/null | gzip -9 > $path/Packages.gz
done
- 

for this path: ./dists/woody/multi/binary-i386 
this is in my sources.list:
- 
deb http://localhost/debian woody multi
- 

also works with file: deb-lines of course.


yours, 
Sönke

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj1P6PMACgkQtWXOsFK9NM58wQCdFb3XkjWW7K5s3dsnz+0WM72l
1xcAn1qUEGI/P0q+UjfxBVxKLJ5wycPV
=Hv/w
-END PGP SIGNATURE-




Re: no HighColor widget style with qt3.0.5

2002-08-06 Thread Linus Gasser
On Monday 05 August 2002 14:01, Michael Schmitz wrote:
> Hi,
>
> I've upgraded qt from 3.0.4 to 3.0.5.
> After this the KDE3 HighColor default theme is no longer available. Only a
> reduced set of widget styles is available (the QT built-in styles).
> Downgrading qt3-mt back to 3.0.4. everything is working fine.
Hi,
from a debian-newbie: how do you downgrade cleanly?

ineiti




Re: no HighColor widget style with qt3.0.5

2002-08-05 Thread Rob Andrews
[Michael Schmitz wrote in newsgate.debian.kde]
 > I've upgraded qt from 3.0.4 to 3.0.5.
 > After this the KDE3 HighColor default theme is no longer available. Only a 
 > reduced set of widget styles is available (the QT built-in styles). 
 > Downgrading qt3-mt back to 3.0.4. everything is working fine.
 > Any ideas?

Chris Cheney mentioned that he was prepping new debs to fix this a few
threads back.

-- 
rob  [EMAIL PROTECTED]  0x8bb5c71e