Re: kdepim-dev file-conflict with kpilot

2003-03-23 Thread Adriaan de Groot
On Tue, 18 Mar 2003, Ralf Nolden wrote:
 On Tuesday 18 March 2003 13:00, Dirk Mueller wrote:
  On Die, 18 Mär 2003, Adriaan de Groot wrote:
   libkorg_holidays_la_LDFLAGS = -module $(KDE_PLUGIN)
   Is that what's needed?
 
  Yes, there are a lot more problems with those makefiles. I'll fix it in
  HEAD, would be great if you could check compilation afterwards.

 Would be nice if we could port those changes to the BRANCH also after checking
 things are ok.

They're not - at least, -pim is full of compile errors since Dirk's
changes and I can't get any of the conduits to link with the new Makefiles
either. So some other kind of figuring is needed.

-- 
 Adriaan de Groot[EMAIL PROTECTED] Kamer A6020 024-3652272
GPG Key Fingerprint 934E 31AA 80A7 723F 54F9  50ED 76AC EE01 FEA2 A3FE
   http://www.cs.kun.nl/~adridg/research/




Re: kdepim-dev file-conflict with kpilot

2003-03-23 Thread Dirk Mueller

 changes and I can't get any of the conduits to link with the new Makefiles
 either. So some other kind of figuring is needed.

can you please send me the error messages? I'll try fix it then. 


-- 
Dirk




Re: kdepim-dev file-conflict with kpilot

2003-03-18 Thread Ralf Nolden
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 18 March 2003 01:06, Chris Cheney wrote:
 On Mon, Mar 17, 2003 at 05:28:14PM +0100, Ralf Nolden wrote:
  Ok, found it. I thought I could trust Chris :-)  I've commited the fix to
  CVS and it should soon reapper in anoncvs so I can put this as an update
  into the original tarballs, rebuild and upload.
 
  Thanks for reporting !!!
 
 
  Ralf

 On a related note those files shouldn't really be verisoned at all since
 they can only be accessed via dlopen, similiarly to the kicker applets.
 That is probably the reason I put them in kpilot as I did, since when
 they eventually get corrected only the .la and .so will remain. I wonder
 if someone could fix that in cvs...

Adriaan,

you're having kde modules in /usr/lib/kde3/* that are versioned. Could you 
evaluate if you could remove the versioning as it seems that that isn't 
necessary ? Dirk could help you check if our assumptions are correct and if 
you can change the Makefile.am's accordingly.

ebian/tmp/usr/lib/kde3/libaddressconduit.la
debian/tmp/usr/lib/kde3/libaddressconduit.so.*
debian/tmp/usr/lib/kde3/libexpenseconduit.la
debian/tmp/usr/lib/kde3/libexpenseconduit.so.*
debian/tmp/usr/lib/kde3/libknotesconduit.la
debian/tmp/usr/lib/kde3/libknotesconduit.so.*
debian/tmp/usr/lib/kde3/libnullconduit.la
debian/tmp/usr/lib/kde3/libnullconduit.so.*
debian/tmp/usr/lib/kde3/libpopmailconduit.la
debian/tmp/usr/lib/kde3/libpopmailconduit.so.*
debian/tmp/usr/lib/kde3/libtimeconduit.la
debian/tmp/usr/lib/kde3/libtimeconduit.so.*
debian/tmp/usr/lib/kde3/libtodoconduit.la
debian/tmp/usr/lib/kde3/libtodoconduit.so.*
debian/tmp/usr/lib/kde3/libvcalconduit.la
debian/tmp/usr/lib/kde3/libvcalconduit.so.*


 Thanks,
 Chris

- -- 
We're not a company, we just produce better code at less costs.
- 
Ralf Nolden
[EMAIL PROTECTED]

The K Desktop Environment   The KDevelop Project
http://www.kde.org  http://www.kdevelop.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+dtD9u0nKi+w1Ky8RAoekAJ4htKv2/eJR9ro0wEENBW/wsUQByQCgtbr8
li6faVVQ8LYLxh5PZ8YeZ6M=
=DH3W
-END PGP SIGNATURE-





Re: kdepim-dev file-conflict with kpilot

2003-03-18 Thread Adriaan de Groot
On Tue, 18 Mar 2003, Ralf Nolden wrote:
 On Tuesday 18 March 2003 01:06, Chris Cheney wrote:
  On a related note those files shouldn't really be verisoned at all since
  they can only be accessed via dlopen, similiarly to the kicker applets.
  That is probably the reason I put them in kpilot as I did, since when
  they eventually get corrected only the .la and .so will remain. I wonder
  if someone could fix that in cvs...

 you're having kde modules in /usr/lib/kde3/* that are versioned. Could you
 evaluate if you could remove the versioning as it seems that that isn't
 necessary ? Dirk could help you check if our assumptions are correct and if
 you can change the Makefile.am's accordingly.

Quite right. Those are plugin modules, accessed through KLibLoader, and
the Makefile.am hasn't changed in over a year:

1.20 (adridg   18-Dec-01): libnullconduit_la_SOURCES =
setup_base.ui null-conduit.cc null-factory.cc

This is a case of the infrastructure changing over the years and me not
noticing it. I'll change it to whatever y'all need, but I'll need a hint.
Actually, looking at the KOrganizer plugins, the main difference I see is

libkorg_holidays_la_LDFLAGS = -module $(KDE_PLUGIN)

Is that what's needed?


-- 
 Adriaan de Groot[EMAIL PROTECTED] Kamer A6020 024-3652272
GPG Key Fingerprint 934E 31AA 80A7 723F 54F9  50ED 76AC EE01 FEA2 A3FE
   http://www.cs.kun.nl/~adridg/research/




Re: kdepim-dev file-conflict with kpilot

2003-03-18 Thread Dirk Mueller
On Die, 18 Mär 2003, Adriaan de Groot wrote:

 libkorg_holidays_la_LDFLAGS = -module $(KDE_PLUGIN)
 Is that what's needed?

Yes, there are a lot more problems with those makefiles. I'll fix it in 
HEAD, would be great if you could check compilation afterwards. 


-- 
Dirk




Re: kdepim-dev file-conflict with kpilot

2003-03-18 Thread Ralf Nolden
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 18 March 2003 13:00, Dirk Mueller wrote:
 On Die, 18 Mär 2003, Adriaan de Groot wrote:
  libkorg_holidays_la_LDFLAGS = -module $(KDE_PLUGIN)
  Is that what's needed?

 Yes, there are a lot more problems with those makefiles. I'll fix it in
 HEAD, would be great if you could check compilation afterwards.

Would be nice if we could port those changes to the BRANCH also after checking 
things are ok.

Ralf

- -- 
We're not a company, we just produce better code at less costs.
- 
Ralf Nolden
[EMAIL PROTECTED]

The K Desktop Environment   The KDevelop Project
http://www.kde.org  http://www.kdevelop.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+dw4Qu0nKi+w1Ky8RAg4rAKCoXai+ti8MMgW/apDlQERyFSHUAwCfbRne
uNM1FKai2La9ZV6zZrE2Iz4=
=9m4Q
-END PGP SIGNATURE-






kdepim-dev file-conflict with kpilot

2003-03-17 Thread Soenke von Stamm
# apt-get install kdepim-dev
Reading Package Lists... Done
Building Dependency Tree... Done
The following NEW packages will be installed:
  kdepim-dev
0 packages upgraded, 1 newly installed, 0 to remove and 1  not upgraded.
Need to get 0B/31.2kB of archives. After unpacking 270kB will be used.
Reading changelogs... Done
(Reading database ... 159914 files and directories currently installed.)
Unpacking kdepim-dev (from .../kdepim-dev_4%3a3.1.1-0woody1_i386.deb) ...
dpkg: error processing 
/var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb (--unpack):
 trying to overwrite `/usr/lib/kde3/libvcalconduit.so', which is also in 
package kpilot
Errors were encountered while processing:
 /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

# dpkg -l kpilot
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: 
uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  kpilot 3.1.1-0woody1  KDE Palm Pilot hot-sync tool

# grep ktown /etc/apt/sources.list
deb http://ktown.kde.org/~nolden/kde stable main
deb http://ktown.kde.org/~nolden/Printing stable main

# cat /etc/debian_version
3.0


well? =8)

Thanks A LOT (though ;) for the hard work and those nice packages!



Sönke


-- 
_
broadnet mediascape communications AG
competence center hannover
karl-wiechert-allee 76a  30625 hannover
fon +49-511-544419-50
fax +49-511-544419-55
mail to: [EMAIL PROTECTED]
www.broadnet-mediascape.de
_

Confidentiality Notice: The information in this document and attachments is
confidential and may also be legally privileged. It is intended only for the
use of the named recipient. Internet communications are not secure and
therefore mediascape communications AG does not accept legal responsibility
for the content of this message. If you are not the intended recipient,
please notify us immediately and then delete this document. Do not disclose
the content of this document to any other person, nor take any copies.
Violation of this notice may be unlawful.




Re: kdepim-dev file-conflict with kpilot

2003-03-17 Thread Ralf Nolden
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 17 March 2003 12:37, Soenke von Stamm wrote:

dpkg --purge --force-all kpilot
apt-get install kdepim-dev kpilot

Ralf
 # apt-get install kdepim-dev
 Reading Package Lists... Done
 Building Dependency Tree... Done
 The following NEW packages will be installed:
   kdepim-dev
 0 packages upgraded, 1 newly installed, 0 to remove and 1  not upgraded.
 Need to get 0B/31.2kB of archives. After unpacking 270kB will be used.
 Reading changelogs... Done
 (Reading database ... 159914 files and directories currently installed.)
 Unpacking kdepim-dev (from .../kdepim-dev_4%3a3.1.1-0woody1_i386.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb (--unpack):
  trying to overwrite `/usr/lib/kde3/libvcalconduit.so', which is also in
 package kpilot
 Errors were encountered while processing:
  /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1)

 # dpkg -l kpilot
 Desired=Unknown/Install/Remove/Purge/Hold

 | Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
 |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:

 uppercase=bad)

 ||/ Name   VersionDescription

 +++-==-==-=
=== ii  kpilot 3.1.1-0woody1  KDE Palm Pilot hot-sync tool

 # grep ktown /etc/apt/sources.list
 deb http://ktown.kde.org/~nolden/kde stable main
 deb http://ktown.kde.org/~nolden/Printing stable main

 # cat /etc/debian_version
 3.0


 well? =8)

 Thanks A LOT (though ;) for the hard work and those nice packages!



   Sönke


 --
 _
 broadnet mediascape communications AG
 competence center hannover
 karl-wiechert-allee 76a  30625 hannover
 fon +49-511-544419-50
 fax +49-511-544419-55
 mail to: [EMAIL PROTECTED]
 www.broadnet-mediascape.de
 _

 Confidentiality Notice: The information in this document and attachments is
 confidential and may also be legally privileged. It is intended only for
 the use of the named recipient. Internet communications are not secure and
 therefore mediascape communications AG does not accept legal responsibility
 for the content of this message. If you are not the intended recipient,
 please notify us immediately and then delete this document. Do not disclose
 the content of this document to any other person, nor take any copies.
 Violation of this notice may be unlawful.

- -- 
We're not a company, we just produce better code at less costs.
- 
Ralf Nolden
[EMAIL PROTECTED]

The K Desktop Environment   The KDevelop Project
http://www.kde.org  http://www.kdevelop.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+dd2pu0nKi+w1Ky8RAr9GAKCva9jUs6h1Ttl02hKvFgptuRCNnACeIboC
tx8KXR8y8nqY1vSGQsHmq6g=
=xJeg
-END PGP SIGNATURE-





Re: kdepim-dev file-conflict with kpilot

2003-03-17 Thread Soenke
Am Montag, 17. März 2003 15:37 schrieb Ralf Nolden:
 On Monday 17 March 2003 12:37, Soenke von Stamm wrote:

 dpkg --purge --force-all kpilot
 apt-get install kdepim-dev kpilot

 Ralf


well, kpilot already /was/ uptodate. So the conflict is still there (see 
below) 

um, and sorry for that company-sig =;)


Sönke

# dpkg --purge --force-all kpilot
dpkg: kpilot: dependency problems, but removing anyway as you request:
 kdepim depends on kpilot (= 4:3.1.1-0woody1).
(Reading database ... 160217 files and directories currently installed.)
Removing kpilot ...
Purging configuration files for kpilot ...
svs:~# apt-get install kdepim-dev kpilot
Reading Package Lists... Done
Building Dependency Tree... Done
The following NEW packages will be installed:
  kdepim-dev kpilot
0 packages upgraded, 2 newly installed, 0 to remove and 2  not upgraded.
Need to get 762kB/794kB of archives. After unpacking 2167kB will be used.
Get:1 http://ktown.kde.org stable/main kpilot 4:3.1.1-0woody1 [762kB]
Fetched 762kB in 2s (340kB/s)
Reading changelogs... Done
Selecting previously deselected package kpilot.
(Reading database ... 160120 files and directories currently installed.)
Unpacking kpilot (from .../kpilot_4%3a3.1.1-0woody1_i386.deb) ...
Selecting previously deselected package kdepim-dev.
Unpacking kdepim-dev (from .../kdepim-dev_4%3a3.1.1-0woody1_i386.deb) ...
dpkg: error processing 
/var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb (--unpack):
 trying to overwrite `/usr/lib/kde3/libvcalconduit.so', which is also in 
package kpilot
Errors were encountered while processing:
 /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)




Re: kdepim-dev file-conflict with kpilot

2003-03-17 Thread Ralf Nolden
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 17 March 2003 16:32, Soenke wrote:
 Am Montag, 17. März 2003 15:37 schrieb Ralf Nolden:
  On Monday 17 March 2003 12:37, Soenke von Stamm wrote:
 
  dpkg --purge --force-all kpilot
  apt-get install kdepim-dev kpilot
 
  Ralf

 well, kpilot already /was/ uptodate. So the conflict is still there (see
 below)

Hmm...I'll see if there is any conflict. If yes then it's in unstable too 
because I didn't change anything in the install files Chris is using too.

Ralf

 um, and sorry for that company-sig =;)


   Sönke

 # dpkg --purge --force-all kpilot
 dpkg: kpilot: dependency problems, but removing anyway as you request:
  kdepim depends on kpilot (= 4:3.1.1-0woody1).
 (Reading database ... 160217 files and directories currently installed.)
 Removing kpilot ...
 Purging configuration files for kpilot ...
 svs:~# apt-get install kdepim-dev kpilot
 Reading Package Lists... Done
 Building Dependency Tree... Done
 The following NEW packages will be installed:
   kdepim-dev kpilot
 0 packages upgraded, 2 newly installed, 0 to remove and 2  not upgraded.
 Need to get 762kB/794kB of archives. After unpacking 2167kB will be used.
 Get:1 http://ktown.kde.org stable/main kpilot 4:3.1.1-0woody1 [762kB]
 Fetched 762kB in 2s (340kB/s)
 Reading changelogs... Done
 Selecting previously deselected package kpilot.
 (Reading database ... 160120 files and directories currently installed.)
 Unpacking kpilot (from .../kpilot_4%3a3.1.1-0woody1_i386.deb) ...
 Selecting previously deselected package kdepim-dev.
 Unpacking kdepim-dev (from .../kdepim-dev_4%3a3.1.1-0woody1_i386.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb (--unpack):
  trying to overwrite `/usr/lib/kde3/libvcalconduit.so', which is also in
 package kpilot
 Errors were encountered while processing:
  /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1)

- -- 
We're not a company, we just produce better code at less costs.
- 
Ralf Nolden
[EMAIL PROTECTED]

The K Desktop Environment   The KDevelop Project
http://www.kde.org  http://www.kdevelop.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+dfYBu0nKi+w1Ky8RApWtAJ4+jAuTKgJ4xSwpfdxWCdztEnp4twCgmej7
nuYgmb8WY7C4fqSKSQLCqDk=
=hIxc
-END PGP SIGNATURE-





Re: kdepim-dev file-conflict with kpilot

2003-03-17 Thread Ralf Nolden
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 17 March 2003 16:32, Soenke wrote:
 Am Montag, 17. März 2003 15:37 schrieb Ralf Nolden:
  On Monday 17 March 2003 12:37, Soenke von Stamm wrote:
 
  dpkg --purge --force-all kpilot
  apt-get install kdepim-dev kpilot
 
  Ralf

 well, kpilot already /was/ uptodate. So the conflict is still there (see
 below)

Ok, found it. I thought I could trust Chris :-)  I've commited the fix to CVS 
and it should soon reapper in anoncvs so I can put this as an update into the 
original tarballs, rebuild and upload.

Thanks for reporting !!!


Ralf


 um, and sorry for that company-sig =;)


   Sönke

 # dpkg --purge --force-all kpilot
 dpkg: kpilot: dependency problems, but removing anyway as you request:
  kdepim depends on kpilot (= 4:3.1.1-0woody1).
 (Reading database ... 160217 files and directories currently installed.)
 Removing kpilot ...
 Purging configuration files for kpilot ...
 svs:~# apt-get install kdepim-dev kpilot
 Reading Package Lists... Done
 Building Dependency Tree... Done
 The following NEW packages will be installed:
   kdepim-dev kpilot
 0 packages upgraded, 2 newly installed, 0 to remove and 2  not upgraded.
 Need to get 762kB/794kB of archives. After unpacking 2167kB will be used.
 Get:1 http://ktown.kde.org stable/main kpilot 4:3.1.1-0woody1 [762kB]
 Fetched 762kB in 2s (340kB/s)
 Reading changelogs... Done
 Selecting previously deselected package kpilot.
 (Reading database ... 160120 files and directories currently installed.)
 Unpacking kpilot (from .../kpilot_4%3a3.1.1-0woody1_i386.deb) ...
 Selecting previously deselected package kdepim-dev.
 Unpacking kdepim-dev (from .../kdepim-dev_4%3a3.1.1-0woody1_i386.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb (--unpack):
  trying to overwrite `/usr/lib/kde3/libvcalconduit.so', which is also in
 package kpilot
 Errors were encountered while processing:
  /var/cache/apt/archives/kdepim-dev_4%3a3.1.1-0woody1_i386.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1)

- -- 
We're not a company, we just produce better code at less costs.
- 
Ralf Nolden
[EMAIL PROTECTED]

The K Desktop Environment   The KDevelop Project
http://www.kde.org  http://www.kdevelop.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+dfeeu0nKi+w1Ky8RAnbDAJ90u/25ta4DGyhaKV7RTGkk/gRQ4ACeKsOK
+3VGyZqI0uiSa3PfPGpBbk4=
=VV7R
-END PGP SIGNATURE-





Re: kdepim-dev file-conflict with kpilot

2003-03-17 Thread Chris Cheney
On Mon, Mar 17, 2003 at 05:28:14PM +0100, Ralf Nolden wrote:
 Ok, found it. I thought I could trust Chris :-)  I've commited the fix to CVS 
 and it should soon reapper in anoncvs so I can put this as an update into the 
 original tarballs, rebuild and upload.
 
 Thanks for reporting !!!
 
 
 Ralf

Ugh, I just realized why I didn't catch this. I forgot to test install
the dev package, since nothing I build uses it. :\  Thanks for correcting
it in cvs.

Chris




Re: kdepim-dev file-conflict with kpilot

2003-03-17 Thread Chris Cheney
On Mon, Mar 17, 2003 at 05:28:14PM +0100, Ralf Nolden wrote:
 Ok, found it. I thought I could trust Chris :-)  I've commited the fix to CVS 
 and it should soon reapper in anoncvs so I can put this as an update into the 
 original tarballs, rebuild and upload.
 
 Thanks for reporting !!!
 
 
 Ralf

On a related note those files shouldn't really be verisoned at all since
they can only be accessed via dlopen, similiarly to the kicker applets.
That is probably the reason I put them in kpilot as I did, since when
they eventually get corrected only the .la and .so will remain. I wonder
if someone could fix that in cvs...

Thanks,
Chris




Re: kdepim-dev file-conflict with kpilot

2003-03-17 Thread Brian Nelson
Ralf Nolden [EMAIL PROTECTED] writes:

 dpkg --purge --force-all kpilot
 apt-get install kdepim-dev kpilot

Ugh.  Please don't suggest using force-all; it's very dangerous.
force-depends is probably what you want in this case.

-- 
I had no feelings about it.  It was aloof and licked itself too much.
Like my cat Mr. Trotsky.


pgp3EBJ9tMNZS.pgp
Description: PGP signature