You are not logged in.

#1 2006-08-22 02:44:08

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Dependency for emacs(solved--Auctex!)

What package(s) have emacs as a dependency?


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#2 2006-08-22 03:32:21

allucid
Member
Registered: 2006-01-06
Posts: 259

Re: Dependency for emacs(solved--Auctex!)

pacman -Qi emacs

(assuming you have it installed)

Offline

#3 2006-08-22 03:43:11

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Dependency for emacs(solved--Auctex!)

AFAIK the suggested procedure will show dependencies which emacs has.

I have a problem wherein emacs is not listed in my machine but it shows up as a conflict with another package which is also not in my machine.

Therefore, some other program has this emacs package as a dependency, not the other way around.  The other program is ctabs, which is not in my machine either.

When attempting to install a number of packages, this conflict occurs between these two packages which aren't in the list of packagesbeing installed.

Therefore, one of the many,many packages has to have an emacs package as a dependency for it.

Am I wrong?


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#4 2006-08-22 03:51:09

bzklrm
Member
From: Australia
Registered: 2005-04-18
Posts: 36

Re: Dependency for emacs(solved--Auctex!)

No, it just means that ctags and emacs conflict --  they cannot be installed at the same time. The reason is that emacs provides ctags.
Probably you are trying to install a package depending on emacs and another depending on ctags and when trying to install them both they conflict.
Try installing emacs first, that should do the trick I think

Offline

#5 2006-08-22 04:05:21

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Dependency for emacs(solved--Auctex!)

I do not want either of the programs in my computer.

I realize the conflict but cannot find the culprit that wants to install the emacs which is not in the list nor in my machine....


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#6 2006-08-22 04:06:05

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Dependency for emacs(solved--Auctex!)

bzklrm wrote:

No, it just means that ctags and emacs conflict --  they cannot be installed at the same time. The reason is that emacs provides ctags.
Probably you are trying to install a package depending on emacs and another depending on ctags and when trying to install them both they conflict.
Try installing emacs first, that should do the trick I think

If that doesn't work, post the command you used with the error message.

Offline

#7 2006-08-22 04:15:29

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Dependency for emacs(solved--Auctex!)

Snowman;

The command is part of a script program for larch and it is installing a large number of packages via pacman (574MB) and the error message is ::::ctags conflicts with emacs.  No packages were installed.....

Simple statement with no info as to what packages are calling for either of the conflicting packages which are  not in the 574MB of packages to install.

Therefore, I need the packages which require the ctags and emacs as dependent packages so I can eliminate the conflict.

I do not need either of the packages installed unless they are dependencies for other packages.  If I eliminate the offending package, I can continue loading the list of packages until I get another conflict, perhaps.


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#8 2006-08-22 04:26:16

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Dependency for emacs(solved--Auctex!)

Here's what I get from an up-to-date ABS tree.

$ grep -R emacs /var/abs/ |grep depends
/var/abs/extra/editors/xemacs-sumo/PKGBUILD:depends=('xemacs')
/var/abs/extra/editors/xemacs-base/PKGBUILD:depends=('xemacs')
/var/abs/community/office/auctex/PKGBUILD:depends=('emacs' 'ghostscript' 'tetex' 'texinfo')
$ grep -R ctags  /var/abs/ |grep depends
/var/abs/extra/devel/source-highlight/PKGBUILD:depends=('gcc' 'bash' 'boost>=1.33.1-4' 'ctags')
/var/abs/extra/editors/vim-taglist/PKGBUILD:depends=(vim ctags)
/var/abs/community/devel/icomplete/PKGBUILD:depends=('ctags' 'vim-devel')

The problem probably comes from source-highlight and/or vim-taglist, unless you use community stuff for larch. I guess you're explicitely adding emacs to the iso as it's a popular editor.

Offline

#9 2006-08-22 04:50:22

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Dependency for emacs(solved--Auctex!)

Snowman;

Was aware of the source-highlights tie-in and xemacs (not in my list) and the vim-taglist.

I am listing many from community but none of the above are included as primary packages.

I cannot eliminate vim because it is fixed in the larch program as a base package.  Emacs appears nowhere in all of the packages so it has to be a dependent pkg for another package and I assumed it would be a devel package.  Searched all devel packages for it and found no tie-in.

Mystery............................


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#10 2006-08-22 14:22:16

allucid
Member
Registered: 2006-01-06
Posts: 259

Re: Dependency for emacs(solved--Auctex!)

lilsirecho wrote:

AFAIK the suggested procedure will show dependencies which emacs has.

It also shows what requires emacs. Look at the "Requied By" field.

Offline

#11 2006-08-22 15:07:49

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Dependency for emacs(solved--Auctex!)

allucid;

As you stated, [   assuming you have it installed ].  I do not have it installed(emacs) but some package has it as a dependency AFAICT.


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#12 2006-08-23 01:20:16

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Dependency for emacs(solved--Auctex!)

Do you use any custom packages, stuff from unsupported? Do you install pkgbuild-mode from unsupported? Auctex is the only package from current, extra, unstable, community that depends on emacs.

Offline

#13 2006-08-23 01:40:06

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Dependency for emacs(solved--Auctex!)

Snowman;

Your reply is greatly appreciated.

I have no unsupported packages as far as I know and I am pleased that you found one with an emacs dependency.  I have no custom packages either.  Everything is a directdownload from pacman sources.  No testing packages either.  I will spend some time with auctex and see what comes of it.

Thanks! big_smile


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#14 2006-08-24 06:03:07

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Dependency for emacs(solved--Auctex!)

Snowman;

You might melt if I praise you too much but thanks for the solution to my emacs problem lol

It worked like a charm to remove auctex!


Ray


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#15 2006-08-24 06:07:04

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Dependency for emacs(solved--Auctex!)

I'm glad you got it figured out. smile

Offline

Board footer

Powered by FluxBB