LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Debian (https://www.linuxquestions.org/questions/debian-26/)
-   -   Install Gimp 2.6 instead of gimp 2.8 in sid (https://www.linuxquestions.org/questions/debian-26/install-gimp-2-6-instead-of-gimp-2-8-in-sid-4175468997/)

mediolanum 07-09-2013 08:35 AM

Install Gimp 2.6 instead of gimp 2.8 in sid
 
I'm using debian sid, but gimp 2.8 gives me many problems
I want to install 2.6 version.

gimp 2.6.10 is in oldstable (squeeze) repo

so i've tried with pinning but if I try with

> apt-get install -t gimp/oldstable

it gives to me:
The value 'oldstable' is invalid for APT::Default-Release as such a release is not available in the sources

this is my /etc/apt/source.list
Code:

#SID
deb ftp://ftp.it.debian.org/debian/ unstable main contrib non-free
deb http://www.deb-multimedia.org sid main

#OLDSTABLE
deb http://ftp.it.debian.org/debian/ oldstable main contrib non-free
deb http://www.deb-multimedia.org squeeze main

this is my /etc/apt/apt.conf
Code:

APT::Default-Release "unstable";
this is my /etc/apt/preferences
Code:

Package: gimp
Pin: version 2.6.10-1+squeeze3
Pin-Priority: 1001

If i try with
>apt-get install -t oldstable gimp

it gives me some problems with python (mine is too recent)

Could someone help me ?

thanks

goumba 07-09-2013 10:14 AM

And so you've run into the hell of trying to install from an older repository :)

In installing GIMP APT wants to satisfy all of its dependencies, even the other versions of python. Some packages require specific versions which is what you've run into here. Unfortunately, there's really no easy way to resolve this with apt-get.

You can use dpkg, which means you'll have to download the debs yourself (I don't know if you can use apt-get download to do this for you with broken dependencies), then try:

Code:

dpkg --force-all -i package-file(s)

Knightron 07-09-2013 10:23 AM

There will likely still be dependency errors with glib and gtk2, and the op will probably have to unpack the deb files, and hack the dependency list so these packages (and perhaps more) can be ignored, so the newer version will be used instead, alas even once doing this, gimp 2.6 may not run with the newer versions of these packages. You can only try.

@OP
Code:

deb http://ftp.it.debian.org/debian/ oldstable main contrib non-free
Change 'oldstable' to 'squeeze', aptitude update and try again.

cynwulf 07-09-2013 10:28 AM

The python dependency is the big problem here.

dep: python (<< 2.7)
dep: python (>= 2.6)

This means you must have python 2.6.x, which means that its not feasible to run gimp 2.6 on wheezy without downgrading python - which would be a bad idea... (the short version: don't do it).

I would focus on moving on to gimp 2.8 and finding resolutions to your problems which do not involve downgrading.

There are a few gimp forums out there which might be of some help.

mediolanum 07-10-2013 02:29 AM

ok

thank you very much !

I'll try with gimp 2.8

Knightron 07-10-2013 03:32 AM

Quote:

Originally Posted by cynwulf (Post 4987028)
The python dependency is the big problem here.

dep: python (<< 2.7)
dep: python (>= 2.6)

This means you must have python 2.6.x, which means that its not feasible to run gimp 2.6 on wheezy without downgrading python - which would be a bad idea... (the short version: don't do it).

From Debian Squeeze
http://packages.debian.org/squeeze/gimp
Code:

dep: python (<< 2.7)
    interactive high-level object-oriented language (default version)

dep: python (>= 2.6)

From Sid
http://packages.debian.org/sid/gimp
Code:

dep: python (<< 2.7) [hppa]
    interactive high-level object-oriented language (default version)

dep: python (>= 2.6) [hppa]

I don't know what hppa means, but if it's insignificant, then Python shouldn't be a problem (at the moment)

John VV 07-10-2013 03:38 AM

i would just build the old gimp2.6 from source
however you also might need the older GTK and glib files
along with the older gegl and babl source

but The Gimp is rather easy to build
It is also VERY well documented

Quote:

I'm using debian sid, but gimp 2.8 gives me many problems
what problems ?
Gimp 3.0 is going to be VERY much like 2.8 in the layout and where the tool options are

you might want to spend the time and relearn how to use the gimp

-- note --
This took me a bit , as a VERY long time gimp user ( gimp 0.9 to 2.8 )
the new layout and how the tools NOW work took some time to get used to .

cynwulf 07-10-2013 07:34 AM

Quote:

Originally Posted by Knightron (Post 4987552)
I don't know what hppa means, but if it's insignificant, then Python shouldn't be a problem (at the moment)

hppa is an architecture.

The python deps for 2.8 for all but hppa are:

dep: python (>= 2.6.6-7~) [not hppa]
dep: python2.7 [not hppa]

Building gimp 2.6 from source is another option. Sticking with 2.8 is best, especially as you're running unstable.

I thought there was an option to enable the old style UI in 2.8 (if that's part of the problem)?

John VV 07-10-2013 12:40 PM

[not hppa] ?????
hppa is an architecture. ????

multiple versions of python can be installed side by side

it is designed for that
just as gcc is .

cynwulf 07-10-2013 02:16 PM

Quote:

Originally Posted by John VV (Post 4987826)
[not hppa] ?????
hppa is an architecture. ????

http://www.debian.org/ports/hppa/

J0hnD4v1ds0n 07-20-2013 09:32 AM

2.8 is terrible
 
I used gimp for years as it did what I needed efficiently and easily. The newest version adds multiple steps to my most commonly used operations. Canvas resize and save as used to be simple and only a few steps, now I need to click the link dimensions together, resize, export, and then expressly state I dont want to save it in gimp format. If 2.6 can't be installed, is there any other graphics package which will do what I need?

I despise the inefficient nature of 2.8.

Knightron 07-20-2013 08:41 PM

Quote:

Originally Posted by J0hnD4v1ds0n (Post 4993772)
now I need to click the link dimensions together, resize, export, and then expressly state I dont want to save it in gimp format. If 2.6 can't be installed, is there any other graphics package which will do what I need?

I despise the inefficient nature of 2.8.

I think the below advice couldn't be better for you mate.

Quote:

Originally Posted by John VV (Post 4987557)
you might want to spend the time and relearn how to use the gimp

Save as is used to save a project. Export is used to finalize a project; it's very simple, and quite standard for editor programs to work like this. Kdenlive is very similar, you have to transcode to finalize a video, but saving is just saving the project. As for resizing the canvas; you simply go up to the menu and press 'image > canvas size' and set the dimensions you want. It's pretty logical to me.

alabamarasta 08-18-2013 04:02 AM

I too am totally fed up with gimp post-2.8. The problems are MANY-- it really is no longer the great gimp as it was.

I suspect much newer versions of Linux software is being quietly sabotaged to keep inexperienced users on the proprietary farms-- computers are bigger business than our duopoly politicians, and we all (should) know by now how any independents who promise real change are conspired against (often from within).

Just as everything is not rosy in Amerika today-- not everything is rosy in Linuxville!

It would be a great service if someone with the coding skills could fork the old Gimp 2.6 to work with today's dependencies.

alabamarasta 08-18-2013 04:04 AM

I too am totally fed up with gimp post-2.8. The problems are MANY-- it really is no longer the great gimp as it was.

I suspect much newer versions of Linux software is being quietly sabotaged to keep inexperienced users on the proprietary farms-- computers are bigger business than our duopoly politicians, and we all (should) know by now how any independents who promise real change are conspired against (often from within).

Just as everything is not rosy in Amerika today-- not everything is rosy in Linuxville!

It would be a great service if someone with the coding skills could fork the old Gimp 2.6 to work with today's dependencies.

John VV 08-18-2013 04:26 AM

I have been building the stable and dev source since Gimp 0.9

a few minor changes , closing down gimp 2.8.6 by closing the window and not the tool box - -a non issue
( i do NOT use the "gimpshop" single window )

the brush slider is a bit different and took a few days to get used to -- also a non issue

ok the save and export is a bit of a pain , but that is about it

but there HAVE BEEN more than a few times i saved as a png and NOT as a xcf in 2.0,2.2,2.4,2.6 when I DID WANT all the layers and undos in a 10+ layer image .

the 2.4 to 2.6 jump with gegl and babl was more of a change


All times are GMT -5. The time now is 01:18 AM.