Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dep... jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dep... jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/de... jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/de... jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
On 11/06/2014 12:47 PM, Philip Ashmore wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dep... jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dep... jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/de... jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/de... jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
To unsubscribe, e-mail: trinity-users-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-users-help@lists.pearsoncomputing.net Read list messages on the web archive: http://trinity-users.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
Nightly builds are being rebuilt for RC1, but given a tight time schedule some versions have been given priority over others. Jessie is not one with priority AFAIK, so most likely some packages are not yet available. Technically TDE has no problems to run on Jessie (I am writing from such a system, since I build all packages on my own :-) ) Cheers Michele
On Thursday 06 November 2014 06.29:49 Michele Calgaro wrote:
Nightly builds are being rebuilt for RC1, but (...) I am writing from such a system, since I build all packages on my own
:-) )
Cheers Michele
I'm not very experienced, but what is necessary to build packages? I assume one must get the source code, but what then? Is it possible with the tools provided by a standard distribution, what should I understand to manage such a task?
I have compiled things in the past, but always by following instructions (I did build a few Gentoo systems some years ago...) but I can't read and modifiy code (at least not anything like C).
Thierry
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA224
On Thursday 06 November 2014 06.29:49 Michele Calgaro wrote:
Nightly builds are being rebuilt for RC1, but (...) I am writing from such a system, since I build all packages on my own
:-) )
Cheers Michele
I'm not very experienced, but what is necessary to build packages? I assume one must get the source code, but what then? Is it possible with the tools provided by a standard distribution, what should I understand to manage such a task?
In general you want to do major development on a dedicated system (one that you can wipe/reload if needed) due to the possibility of breaking core components of TDE. I'd recommend at least a dual-core machine with several GB of RAM as well.
- From the software side, a standard Debian/Ubuntu install is a good base. You can install the base development packages with 'apt-get install build-essential git', and install the build dependencies for a specific package with 'apt-get build-dep <package name>'.
After a development system is set up, I like to hack on TDE packages with the following method: mkdir ~/TEMP cd ~/TEMP apt-get source <package name-trinity> rm * git clone https://<git username>@scm.trinitydesktop.org/scm/git/<package name> mv <package-name>/.git <package-name-revid-folder> rm -rf package-name cd <package-name-revid-folder> dpkg-buildpackage -r fakeroot -b
That last command kicks off the build process; when done you get a series of .debs in the folder above the source tree. However, you don't have to rerun that to build most changes you make to the source after the initial build, usually you can just:
<edit sources> cd obj-* make install <test> <edit sources> make install <repeat>
Hope this helps some!
Tim
On 11/11/2014 06:22 AM, Timothy Pearson wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA224
On Thursday 06 November 2014 06.29:49 Michele Calgaro wrote:
Nightly builds are being rebuilt for RC1, but (...) I am writing from such a system, since I build all packages on my own
:-) )
Cheers Michele
I'm not very experienced, but what is necessary to build packages? I assume one must get the source code, but what then? Is it possible with the tools provided by a standard distribution, what should I understand to manage such a task?
In general you want to do major development on a dedicated system (one that you can wipe/reload if needed) due to the possibility of breaking core components of TDE. I'd recommend at least a dual-core machine with several GB of RAM as well.
- From the software side, a standard Debian/Ubuntu install is a good base.
You can install the base development packages with 'apt-get install build-essential git', and install the build dependencies for a specific package with 'apt-get build-dep <package name>'.
After a development system is set up, I like to hack on TDE packages with the following method: mkdir ~/TEMP cd ~/TEMP apt-get source <package name-trinity> rm * git clone https://<git username>@scm.trinitydesktop.org/scm/git/<package name> mv <package-name>/.git <package-name-revid-folder> rm -rf package-name cd <package-name-revid-folder> dpkg-buildpackage -r fakeroot -b
That last command kicks off the build process; when done you get a series of .debs in the folder above the source tree. However, you don't have to rerun that to build most changes you make to the source after the initial build, usually you can just:
<edit sources> cd obj-* make install <test> <edit sources> make install <repeat>
Hope this helps some!
Tim
Hi, Tim already posted some very good instructions. I just add that after v14.0.0 is released, we are planning to add some building scripts to the TDE repository for Debian/Ubuntu to help anyone who wants to build their own packages to get started. Just keep in mind that TDE is huge and if you use the current sources it gets broken from time to time by changes in other packages provided by the distribution (especially on a rolling distribution like Jessie), so sometimes you will have to do some fix-up or wait for a fix-up to appear on the GIT sources.
Cheers Michele
On Tuesday 11 November 2014 04.48:05 Michele Calgaro wrote:
On 11/11/2014 06:22 AM, Timothy Pearson wrote:
(...)
In general you want to do major development on a dedicated system (one that you can wipe/reload if needed) due to the possibility of breaking core components of TDE. I'd recommend at least a dual-core machine with several GB of RAM as well.
(...)
Hope this helps some!
Tim
Hi, Tim already posted some very good instructions. I just add that after v14.0.0 is released, we are planning to add some building scripts to the TDE repository for Debian/Ubuntu to help anyone who wants to build their own packages to get started. Just keep in mind that TDE is huge and if you use the current sources it gets broken from time to time by changes in other packages provided by the distribution (especially on a rolling distribution like Jessie), so sometimes you will have to do some fix-up or wait for a fix-up to appear on the GIT sources.
Cheers Michele
Thanks to both for the information. I think I'll wait for the building scripts to try and see if I can manage that.
I do have a Core-i7 Machine around with 8 cores and 8GB memory doing little, soI thought I could make it a little busy...
Thierry
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA224
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dep... jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dep... jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/de... jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/de... jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time. :-)
Tim
On Thursday 06 of November 2014 07:45:01 Timothy Pearson wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build- dependencies/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build- dependencies/debian jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds /debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds /debian jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time.
:-)
Tim
Due to change libjpeg6 => libjpeg6-turbo is necessary rebuild tqt3. Anyway, in my alternative apt source is already ready :)
On 06/11/14 09:59, Slávek Banko wrote:
On Thursday 06 of November 2014 07:45:01 Timothy Pearson wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build- dependencies/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build- dependencies/debian jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds /debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds /debian jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time.
:-)
Tim
Due to change libjpeg6 => libjpeg6-turbo is necessary rebuild tqt3. Anyway, in my alternative apt source is already ready :)
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's PPA deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main
# apt-get update && apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not installable E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
On Friday 07 of November 2014 12:53:04 Philip Ashmore wrote:
On 06/11/14 09:59, Slávek Banko wrote:
On Thursday 06 of November 2014 07:45:01 Timothy Pearson wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-buil d- dependencies/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-buil d- dependencies/debian jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-buil ds /debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-buil ds /debian jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time.
:-)
Tim
Due to change libjpeg6 => libjpeg6-turbo is necessary rebuild tqt3. Anyway, in my alternative apt source is already ready :)
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's PPA deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main
# apt-get update && apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not installable E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
Packages are up to date on my alternative mirror - on the build-farm is not yet up to date.
deb http://mirror.xcer.cz/trinity-sb jessie deps-r14 main-r14
On 11/07/2014 08:53 PM, Philip Ashmore wrote:
On 06/11/14 09:59, Slávek Banko wrote:
On Thursday 06 of November 2014 07:45:01 Timothy Pearson wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build- dependencies/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build- dependencies/debian jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds /debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds /debian jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time.
:-)
Tim
Due to change libjpeg6 => libjpeg6-turbo is necessary rebuild tqt3. Anyway, in my alternative apt source is already ready :)
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's PPA deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main
# apt-get update && apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not installable E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
I guess Slavek was talking about his repository here: http://mirror.xcer.cz/trinity-sb/dists/jessie/ not the one under pearsoncomputing.net.
Cheers Michele
On 07/11/14 15:24, Michele Calgaro wrote:
On 11/07/2014 08:53 PM, Philip Ashmore wrote:
On 06/11/14 09:59, Slávek Banko wrote:
On Thursday 06 of November 2014 07:45:01 Timothy Pearson wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-
dependencies/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-
dependencies/debian jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds
/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds
/debian jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time.
:-)
Tim
Due to change libjpeg6 => libjpeg6-turbo is necessary rebuild tqt3. Anyway, in my alternative apt source is already ready :)
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's PPA deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main
# apt-get update && apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not installable E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
I guess Slavek was talking about his repository here: http://mirror.xcer.cz/trinity-sb/dists/jessie/ not the one under pearsoncomputing.net.
Cheers Michele
To unsubscribe, e-mail: trinity-users-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-users-help@lists.pearsoncomputing.net Read list messages on the web archive: http://trinity-users.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's personal PPA deb http://mirror.xcer.cz/trinity-sb jessie deps-r14 deb-src http://mirror.xcer.cz/trinity-sb jessie deps-r14 deb http://mirror.xcer.cz/trinity-sb jessie main-r14 deb-src http://mirror.xcer.cz/trinity-sb jessie main-r14
$ sudo apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not going to be installed E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
On Friday 07 November 2014 16:07:03 Philip Ashmore wrote:
On 07/11/14 15:24, Michele Calgaro wrote:
On 11/07/2014 08:53 PM, Philip Ashmore wrote:
On 06/11/14 09:59, Slávek Banko wrote:
On Thursday 06 of November 2014 07:45:01 Timothy Pearson wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ild-
dependencies/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ild-
dependencies/debian jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ilds
/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ilds
/debian jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time.
:-)
Tim
Due to change libjpeg6 => libjpeg6-turbo is necessary rebuild tqt3. Anyway, in my alternative apt source is already ready :)
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's PPA deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main
# apt-get update && apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not installable E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
I guess Slavek was talking about his repository here: http://mirror.xcer.cz/trinity-sb/dists/jessie/ not the one under pearsoncomputing.net.
Cheers Michele
To unsubscribe, e-mail: trinity-users-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-users-help@lists.pearsoncomputing.net Read list messages on the web archive: http://trinity-users.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's personal PPA deb http://mirror.xcer.cz/trinity-sb jessie deps-r14 deb-src http://mirror.xcer.cz/trinity-sb jessie deps-r14 deb http://mirror.xcer.cz/trinity-sb jessie main-r14 deb-src http://mirror.xcer.cz/trinity-sb jessie main-r14
$ sudo apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not going to be installed E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
To unsubscribe, e-mail: trinity-users-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-users-help@lists.pearsoncomputing.net Read list messages on the web archive: http://trinity-users.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
You don't appear to have updated before trying to use the new repostories, so they wouldn't have been used. Try updating before installing.
Lisi
On Friday 07 of November 2014 17:07:03 Philip Ashmore wrote:
On 07/11/14 15:24, Michele Calgaro wrote:
On 11/07/2014 08:53 PM, Philip Ashmore wrote:
On 06/11/14 09:59, Slávek Banko wrote:
On Thursday 06 of November 2014 07:45:01 Timothy Pearson wrote:
Hi there.
I followed the instructions regarding nightly builds: $ cat /etc/apt/sources.list.d/trinity.list # Trinity nightly builds deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ild-
dependencies/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ild-
dependencies/debian jessie main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ilds
/debian jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-bu ilds
/debian jessie main
After reloading I select desktop-base-trinity [OK] and tde-trinity [FAIL] Could not mark all packages for installation or upgrade The following packages have unresolvable dependencies. Make sure that all the required repositories are added and enabled in the preferences. tde-trinity: Depends: tde-core-trinity but it is not going to be installed Depends: tdeedu-trinity (>=4:14.0.0~) but it is not installable Depends: tdegames-trinity (>=4:14.0.0~) but it is not installable Depends: tdetoys-trinity but it is not going to be installed Depends: tdeaccessibility-trinity (>=4:14.0.0~) but it is not installable Depends: tdeaddons-trinity (>=4:14.0.0~) but it is not installable Depends: tdeadmin-trinity (>=4:14.0.0~) but it is not installable Depends: tdeartwork-trinity (>=4:14.0.0~) but it is not installable Depends: tdegraphics-trinity but it is not going to be installed Depends: tdemultimedia-trinity (>=4:14.0.0~) but it is not installable Depends: tdenetwork-trinity but it is not going to be installed Depends: tdepim-trinity (>=4:14.0.0~) but it is not installable Depends: tdeutils-trinity (>=4:14.0.0~) but it is not installable Depends: tdewebdev-trinity (>=4:14.0.0~) but it is not installable
Any ideas?
Regards, Philip Ashmore
Jessie is ay out of sync and currently rebuilding (Jessie changed some core libraries that broke the existing packages). Give it time, or use a different distro and/or version that already has RC1 built at this time.
:-)
Tim
Due to change libjpeg6 => libjpeg6-turbo is necessary rebuild tqt3. Anyway, in my alternative apt source is already ready :)
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's PPA deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/main-r14/ubuntu jessie main deb http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main deb-src http://ppa.quickbuild.pearsoncomputing.net/slavek-banko/deps-r14/ubuntu jessie main
# apt-get update && apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not installable E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
I guess Slavek was talking about his repository here: http://mirror.xcer.cz/trinity-sb/dists/jessie/ not the one under pearsoncomputing.net.
Cheers Michele
To unsubscribe, e-mail: trinity-users-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-users-help@lists.pearsoncomputing.net Read list messages on the web archive: http://trinity-users.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
$ cat /etc/apt/sources.list.d/trinity.list # Slávek Banko's personal PPA deb http://mirror.xcer.cz/trinity-sb jessie deps-r14 deb-src http://mirror.xcer.cz/trinity-sb jessie deps-r14 deb http://mirror.xcer.cz/trinity-sb jessie main-r14 deb-src http://mirror.xcer.cz/trinity-sb jessie main-r14
$ sudo apt-get install desktop-base-trinity tde-trinity Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: tde-trinity : Depends: tde-core-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeedu-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegames-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdetoys-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaccessibility-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeaddons-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeadmin-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeartwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdegraphics-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdemultimedia-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdenetwork-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdepim-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdeutils-trinity (>= 4:14.0.0~) but it is not going to be installed Depends: tdewebdev-trinity (>= 4:14.0.0~) but it is not going to be installed E: Unable to correct problems, you have held broken packages.
Regards, Philip Ashmore
Oops, thanks for the warning - it seems that the my mirror is not properly updated according to my master server.
On 11/07/2014 08:07 AM, Philip Ashmore wrote:
E: Unable to correct problems, you have held broken packages.
Do you have some package(s) on hold that's keeping tde-trinity from installing?
It looks like desktop-base-trinity should install. You might try installing that, and go from there.