You are not logged in.

#276 2007-11-21 10:38:57

Davide Faria
Member
From: Brasil
Registered: 2007-07-26
Posts: 7

Re: [REPO] kde4 4.0/amarok2/koffice2

I'm having a problem, and seens no one is having this too.

archive kdegraphics4-3.96.0-1-i686.pkg.tar.gz was corrupted (bad MD5 or SHA1 checksum)

i've tryed both repos, and had the same problem.

Offline

#277 2007-11-21 11:02:05

pressh
Developer/TU
From: Netherlands
Registered: 2005-08-14
Posts: 1,719

Re: [REPO] kde4 4.0/amarok2/koffice2

No problems here. It's probably your connection.
I assume you did remove it from pacman cache in between ?

Try downloading it manually with some download program/firefox/ or whatever and put it in pacman cache.

Offline

#278 2007-11-21 12:35:04

Davide Faria
Member
From: Brasil
Registered: 2007-07-26
Posts: 7

Re: [REPO] kde4 4.0/amarok2/koffice2

pressh wrote:

No problems here. It's probably your connection.
I assume you did remove it from pacman cache in between ?

Try downloading it manually with some download program/firefox/ or whatever and put it in pacman cache.

Well,
i followed ur tip and downloaded the file directly and puted it in the pacman cache.
But, when i used pacman -S kde4 i got the same error message.

So, i tried this  pacman -A kdegraphics4-3.96.0-1-i686.pkg.tar.gz --nodeps, and voilá.

That's strange, but worked.
Thx.

Offline

#279 2007-11-21 16:01:11

tardo
Member
Registered: 2006-07-15
Posts: 526

Re: [REPO] kde4 4.0/amarok2/koffice2

Remember two things when trying the KDE releases:

1. If stuff stops working, remove $KDEHOME and restart KDE.
2. If stuff is slow, disable composite in $KDEHOME/share/config/kwinrc (add [Compositing] \n Enabled=false) and restart KDE.

Last edited by tardo (2007-11-21 16:01:50)

Offline

#280 2007-11-21 20:05:00

mutlu_inek
Member
From: all over the place
Registered: 2006-11-18
Posts: 684

Re: [REPO] kde4 4.0/amarok2/koffice2

The RC is just a few hours behind in regard to the most interesting recent change:

We now have a working panel! big_smile

Offline

#281 2007-11-22 13:41:26

spookshow
Member
From: abbotsford, bc
Registered: 2006-11-15
Posts: 95
Website

Re: [REPO] kde4 4.0/amarok2/koffice2

over 1gb installed? wow. that's insane.
might just have to stick to xfce4....

Offline

#282 2007-11-22 14:46:12

Cipher
Member
From: Coquimbo, Chile
Registered: 2007-06-06
Posts: 43

Re: [REPO] kde4 4.0/amarok2/koffice2

spookshow wrote:

over 1gb installed? wow. that's insane.
might just have to stick to xfce4....

why just try kde4 ???

and the tardo packages are with debug full if you feel slow kde tongue


sorry for my english...

Offline

#283 2007-11-22 15:29:17

Noneus
Member
From: Munich
Registered: 2006-09-26
Posts: 118
Website

Re: [REPO] kde4 4.0/amarok2/koffice2

If you want to build amarok2-svn:

pkgname=amarok2-svn
pkgver=739381
pkgrel=1
pkgdesc="Additional plugins and scripts for some KDE4 applications"
arch=('i686' 'x86_64')
url="http://www.kde.org/"
license=('GPL')
depends=('kdelibs4' 'ruby' 'taglib' 'libmp4v2' 'libmysqlclient' 'libnjb' 'xine-lib' 'libmtp' 'postgresql-libs' 'gstreamer0.10' 'libifp' 'libvisual')
makedepends=('cmake' 'subversion')
source=()

_svntrunk=svn://anonsvn.kde.org/home/kde/trunk/extragear/multimedia/amarok
_svnmod=amarok

build() {
  . /etc/profile.d/qt4.sh
  . /etc/profile.d/kde4.sh
  export PATH=$QTDIR/bin:$PATH

  # start building
  cd $startdir/src

  if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up)
  else
    svn co $_svntrunk --config-dir ./ $_svnmod
  fi

  msg "SVN checkout done or server timeout"
  msg "Starting make..."

  mkdir $startdir/src/build
  cd $startdir/src/build
  cmake ../$_svnmod -DCMAKE_INSTALL_PREFIX=/opt/kde4 -DCMAKE_BUILD_TYPE=debugfull

  make VERBOSE=1 || return 1
  make DESTDIR=$startdir/pkg install || return 1

  rm -rf $startdir/src/build
}

Offline

#284 2007-11-22 19:55:55

Cipher
Member
From: Coquimbo, Chile
Registered: 2007-06-06
Posts: 43

Re: [REPO] kde4 4.0/amarok2/koffice2

Noneus wrote:

If you want to build amarok2-svn:

pkgname=amarok2-svn
pkgver=739381
pkgrel=1
pkgdesc="Additional plugins and scripts for some KDE4 applications"
arch=('i686' 'x86_64')
url="http://www.kde.org/"
license=('GPL')
depends=('kdelibs4' 'ruby' 'taglib' 'libmp4v2' 'libmysqlclient' 'libnjb' 'xine-lib' 'libmtp' 'postgresql-libs' 'gstreamer0.10' 'libifp' 'libvisual')
makedepends=('cmake' 'subversion')
source=()

_svntrunk=svn://anonsvn.kde.org/home/kde/trunk/extragear/multimedia/amarok
_svnmod=amarok

build() {
  . /etc/profile.d/qt4.sh
  . /etc/profile.d/kde4.sh
  export PATH=$QTDIR/bin:$PATH

  # start building
  cd $startdir/src

  if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up)
  else
    svn co $_svntrunk --config-dir ./ $_svnmod
  fi

  msg "SVN checkout done or server timeout"
  msg "Starting make..."

  mkdir $startdir/src/build
  cd $startdir/src/build
  cmake ../$_svnmod -DCMAKE_INSTALL_PREFIX=/opt/kde4 -DCMAKE_BUILD_TYPE=debugfull

  make VERBOSE=1 || return 1
  make DESTDIR=$startdir/pkg install || return 1

  rm -rf $startdir/src/build
}

tnkz men.

some http://www.flickr.com/photos/rorolfo/tags/amarok2/.


sorry for my english...

Offline

#285 2007-11-23 20:12:14

javonera
Member
Registered: 2007-05-28
Posts: 16

Re: [REPO] kde4 4.0/amarok2/koffice2

Noneus wrote:

I built everything for x86_64 If someone is interested I could upload everything on my server.

I think i'll accept your offer. It would be great to have some updated packages for x86_64 too.

Offline

#286 2007-11-24 11:40:31

augegr
Member
Registered: 2007-10-03
Posts: 36

Re: [REPO] kde4 4.0/amarok2/koffice2

+1 here. As long as it complies with the packages from tardo's repo. So we have no conflicts what so ever.

Offline

#287 2007-11-24 15:26:42

MillTek
Member
Registered: 2005-01-30
Posts: 442

Re: [REPO] kde4 4.0/amarok2/koffice2

Does anyone have the svn PKGBUILDS somewhere so I can download them?

Offline

#288 2007-11-24 16:38:23

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [REPO] kde4 4.0/amarok2/koffice2

Read page 11.

Offline

#289 2007-11-24 16:48:44

MillTek
Member
Registered: 2005-01-30
Posts: 442

Re: [REPO] kde4 4.0/amarok2/koffice2

buddabrod wrote:

Read page 11.

Buddadrod,

I have read page 11. In fact, if you look you will see that I tried to modify the PKGBUILDS and run versionpkg. I assumed that I had to modify each PKGBUILD the same as Tardo modified the one for kde-libs. Apparently what I was doing is wrong. All I am looking for is either clear instructions or a set of PKGBUILDS.

Thanks

Offline

#290 2007-11-24 19:04:30

tardo
Member
Registered: 2006-07-15
Posts: 526

Re: [REPO] kde4 4.0/amarok2/koffice2

http://nagi-fanboi.net/arch/kde4svnpkgbuilds.tar.gz

it only has libs/pimlibs/base/extragear-plasma

Offline

#291 2007-11-24 19:08:25

mutlu_inek
Member
From: all over the place
Registered: 2006-11-18
Posts: 684

Re: [REPO] kde4 4.0/amarok2/koffice2

MillTek wrote:

I have read page 11. [...] All I am looking for is either clear instructions or a set of PKGBUILDS.

You could use those I created. See the instructions I provide in this post: http://bbs.archlinux.org/viewtopic.php? … 64#p299364

Offline

#292 2007-11-24 22:43:13

MillTek
Member
Registered: 2005-01-30
Posts: 442

Re: [REPO] kde4 4.0/amarok2/koffice2

Tardo and mutlu_inek,
I've tried both your PKGBUILDS (Tardo's second). I tried kdelibs first. It crashed on the make;

CMake Error: Qt qmake not found!

which is kind of weird as I never had this issue with Tardo's earlier PKGBUILDS.  Any ideas?

Thanks

Offline

#293 2007-11-24 23:29:37

Milfadoodle
Member
Registered: 2007-05-21
Posts: 26

Re: [REPO] kde4 4.0/amarok2/koffice2

MillTek wrote:

Tardo and mutlu_inek,
I've tried both your PKGBUILDS (Tardo's second). I tried kdelibs first. It crashed on the make;

CMake Error: Qt qmake not found!

which is kind of weird as I never had this issue with Tardo's earlier PKGBUILDS.  Any ideas?

Thanks

I got that aswell, "unset QTDIR" from here: http://bbs.archlinux.org/viewtopic.php?id=39461 solved it for me.

kdebase won't compile for me though, how do I tell the PKGBUILD to fetch another revision from SVN?

Last edited by Milfadoodle (2007-11-24 23:30:56)

Offline

#294 2007-11-25 01:38:50

MillTek
Member
Registered: 2005-01-30
Posts: 442

Re: [REPO] kde4 4.0/amarok2/koffice2

When trying to build kdebase I get this;

NO_CAST_TO_ASCII -D_REENTRANT -DKDE_DEPRECATED_WARNINGS -D_FILE_OFFSET_BITS=64   -o runtime/phonon/xine/CMakeFiles/phonon_xine.dir/xineengine.o -c /tester/tardo/kdebase4-svn/src/kdebase/runtime/phonon/xine/xineengine.cpp
/tester/tardo/kdebase4-svn/src/kdebase/runtime/phonon/xine/xineengine.cpp: In member function 'void Phonon::Xine::XineEngine::addAudioOutput(const Phonon::AudioDevice&, const QByteArray&)':
/tester/tardo/kdebase4-svn/src/kdebase/runtime/phonon/xine/xineengine.cpp:416: error: 'const class Phonon::AudioDevice' has no member named 'isAdvancedDevice'
make[2]: *** [runtime/phonon/xine/CMakeFiles/phonon_xine.dir/xineengine.o] Error 1
make[2]: Leaving directory `/tester/tardo/kdebase4-svn/src/build'
make[1]: *** [runtime/phonon/xine/CMakeFiles/phonon_xine.dir/all] Error 2
make[1]: Leaving directory `/tester/tardo/kdebase4-svn/src/build'
make: *** [all] Error 2

Any ideas?

Offline

#295 2007-11-25 06:54:40

tardo
Member
Registered: 2006-07-15
Posts: 526

Re: [REPO] kde4 4.0/amarok2/koffice2

yea, wait a day then run versionpkg again.

Offline

#296 2007-11-25 18:17:55

mutlu_inek
Member
From: all over the place
Registered: 2006-11-18
Posts: 684

Re: [REPO] kde4 4.0/amarok2/koffice2

MillTek, you can add unset QTDIR to the PKGBUILDs as I have done for some already. This will save you some time.

Regarding the compile error, tardo is generally right about waiting for a while and then trying again. But given that make complains about a mussing class member, it might also be that you have to recompile kdelibs. Some things are still being moved into kdelibs and therefore sometimes missing in the other packages if it is not up to date.

To see which versions compile (or don't), see http://ktown.kde.org/~dirk/dashboard/

Offline

#297 2007-11-25 19:05:21

tardo
Member
Registered: 2006-07-15
Posts: 526

Re: [REPO] kde4 4.0/amarok2/koffice2

you don't have to add 'unset QTDIR' to every pkgbuild. just add that to /etc/profile.d/qt4.sh and you should be good.

Offline

#298 2007-11-25 19:29:14

MillTek
Member
Registered: 2005-01-30
Posts: 442

Re: [REPO] kde4 4.0/amarok2/koffice2

Thanks Tardo. The unset is now part of qt4.sh and per mutlu_inek's advice, kdelibs is building as I write this.

Offline

#299 2007-11-25 22:42:48

MillTek
Member
Registered: 2005-01-30
Posts: 442

Re: [REPO] kde4 4.0/amarok2/koffice2

Just an FYI.

Version 741506 of KDEBase worked in conjunction with version 741494 of KDElibs4.

Thanks guys.

Jim

Offline

#300 2007-11-29 20:53:52

ProgDan
Member
From: Prague, Czech Republic
Registered: 2007-10-04
Posts: 441
Website

Re: [REPO] kde4 4.0/amarok2/koffice2

On the mirror repository there are some corrupted packages, here's the list

kdegraphics4-3.96.0-1-i686
kdebase4-3.96.0.1-i686 (on the mirror is twice smaller then on the original repo)
libvncserver-0.91-i686
redland-1.0.6-2-i686
telepathy-qt-svn-2031-1-i686

i downloaded these files manualy from the original repo and installed by pacman -A and it all works

Last edited by ProgDan (2007-11-29 20:54:22)

Offline

Board footer

Powered by FluxBB