You are not logged in.

#1 2015-08-04 16:07:57

jqrsd
Member
Registered: 2013-09-12
Posts: 12

[SOLVED] Pacman doesn't list all the packages in unofficial repository

I'm trying to install catalyst-utils-pxp from Vi0L0's repo (http://catalyst.wirephire.com/repo/catalyst/x86_64/) and I get the following error:

# pacman -Syy catalyst-utils-pxp
:: Synchronizing package databases...
 xorg116                   27.2 KiB   283K/s 00:00 [######################] 100%
 xorg116.sig              287.0   B  0.00B/s 00:00 [######################] 100%
 catalyst                  11.6 KiB   581K/s 00:00 [######################] 100%
 catalyst.sig             287.0   B  0.00B/s 00:00 [######################] 100%
 core                     121.4 KiB   480K/s 00:00 [######################] 100%
 extra                   1749.2 KiB   239K/s 00:07 [######################] 100%
 community                  2.7 MiB  1998K/s 00:01 [######################] 100%
 multilib                 126.2 KiB   882K/s 00:00 [######################] 100%
error: target not found: catalyst-utils-pxp

Pacman lists only particular packages from the repo (which can really be installed with pacman -S), though .tar.xz can be downloaded manually from the url above.

# pacman -Sl catalyst
catalyst amd-adl-sdk 7.0-1
catalyst amdapp-aparapi 20130123-1
catalyst amdapp-codexl 1.7-7300
catalyst amdapp-sdk 3.0-1
catalyst amdapp-sdk-aparapi 3.0-1
catalyst amdapp-sdk-docs 3.0-1
catalyst amdapp-sdk-nocatalyst 3.0-1
catalyst amdapp-sdk-opencv 3.0-1
catalyst amdoverdrivectrl 1.2.7-3
catalyst amdtfset-git v1.0-1
catalyst catalyst-generator 15.7-1
catalyst catalyst-hook 15.7-1
catalyst catalyst-libgl 15.7-1
catalyst catalyst-utils 15.7-1
catalyst gdebugger 6.2.438-4
catalyst lib32-catalyst-libgl 15.7-1
catalyst lib32-catalyst-utils 15.7-1
catalyst lib32-opencl-catalyst 15.7-1
catalyst opencl-catalyst 15.7-1
catalyst opencl-headers 4:2.0.r29187-1
catalyst xvba-video 0.8.0-2

I also tried the other mirrors, but the result was the same. My pacman.conf:

#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir     = /
#DBPath      = /var/lib/pacman/
#CacheDir    = /var/cache/pacman/pkg/
#LogFile     = /var/log/pacman.log
#GPGDir      = /etc/pacman.d/gnupg/
HoldPkg     = pacman glibc
#XferCommand = /usr/bin/curl -C - -f %u > %o
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
#UseDelta    = 0.7
Architecture = auto

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg   =
#IgnoreGroup =

#NoUpgrade   =
#NoExtract   =

# Misc options
#UseSyslog
#Color
#TotalDownload
CheckSpace
#VerbosePkgLists

# By default, pacman accepts packages signed by keys that its local keyring
# trusts (see pacman-key and its man page), as well as unsigned packages.
SigLevel    = Required DatabaseOptional
LocalFileSigLevel = Optional
#RemoteFileSigLevel = Required

# NOTE: You must run `pacman-key --init` before first using pacman; the local
# keyring can then be populated with the keys of all official Arch Linux
# packagers with `pacman-key --populate archlinux`.

#
# REPOSITORIES
#   - can be defined here or included from another file
#   - pacman will search repositories in the order defined here
#   - local/custom mirrors can be added here or in separate files
#   - repositories listed first will take precedence when packages
#     have identical names, regardless of version number
#   - URLs will have $repo replaced by the name of the current repo
#   - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
#       [repo-name]
#       Server = ServerName
#       Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#

# The testing repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.

#[testing]
#Include = /etc/pacman.d/mirrorlist

[xorg116]
SigLevel = Optional TrustAll
Server = http://catalyst.wirephire.com/repo/xorg116/$arch
## Mirrors, if the primary server does not work or is too slow:
#Server = http://mirror.rts-informatique.fr/archlinux-catalyst/repo/xorg116/$arch
#Server = http://mirror.hactar.bz/Vi0L0/xorg116/$arch

[catalyst]
SigLevel = Optional TrustAll
Server = http://catalyst.wirephire.com/repo/catalyst/$arch
## Mirrors, if the primary server does not work or is too slow:
#Server = http://70.239.162.206/catalyst-mirror/repo/catalyst/$arch
#Server = http://mirror.rts-informatique.fr/archlinux-catalyst/repo/catalyst/$arch
#Server = http://mirror.hactar.bz/Vi0L0/catalyst/$arch

[core]
Include = /etc/pacman.d/mirrorlist

[extra]
Include = /etc/pacman.d/mirrorlist

#[community-testing]
#Include = /etc/pacman.d/mirrorlist

[community]
Include = /etc/pacman.d/mirrorlist

# If you want to run 32 bit applications on your x86_64 system,
# enable the multilib repositories as required here.

#[multilib-testing]
#Include = /etc/pacman.d/mirrorlist

[multilib]
Include = /etc/pacman.d/mirrorlist

# An example of a custom package repository.  See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs

Any help would be appreciated!

Last edited by jqrsd (2015-08-05 20:31:01)

Offline

#2 2015-08-04 16:10:43

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

Maybe this package is not present in the package db? Ask upstream.

Offline

#3 2015-08-04 16:20:37

jqrsd
Member
Registered: 2013-09-12
Posts: 12

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

I have no idea how to watch the db contents except running pacman -Sl... Moreover the package is presented here, doesn't it mean it should be in the db file?

Offline

#4 2015-08-04 16:51:38

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

Not a Pacman Issue, moving to AUR Issues...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#5 2015-08-04 16:57:32

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,868
Website

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

jqrsd wrote:

I have no idea how to watch the db contents except running pacman -Sl... Moreover the package is presented here, doesn't it mean it should be in the db file?

No. See repo-remove.

Moreover, "# pacman -Syy catalyst-utils-pxp" is a really bad command to run. Don't -Syy without -u, or you will end up with a broken system.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#6 2015-08-04 17:10:03

jqrsd
Member
Registered: 2013-09-12
Posts: 12

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

jasonwryan wrote:

moving to AUR Issues...

Okay... That is not related to AUR, though

WorMzy wrote:

See repo-remove.

How can it help me? This repo is not mine, and I'm not going to locally add/remove each package I need there smile

WorMzy wrote:

  "# pacman -Syy catalyst-utils-pxp" is a really bad command to run

Right, it was just to convince others that db is up-to-date

Offline

#7 2015-08-04 17:22:57

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

Offline

#8 2015-08-04 17:39:50

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,868
Website

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

jqrsd wrote:
WorMzy wrote:

See repo-remove.

How can it help me? This repo is not mine, and I'm not going to locally add/remove each package I need there smile

It wasn't meant to help, it was just stating that just because there is a file in the directory, doesn't mean it is in the repository.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#9 2015-08-04 18:12:07

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

jqrsd wrote:
jasonwryan wrote:

moving to AUR Issues...

Okay... That is not related to AUR, though

You are having issues with an unsupported repo: AUR stands for Arch User Repository, yours is just another variant of that...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#10 2015-08-04 18:47:18

jqrsd
Member
Registered: 2013-09-12
Posts: 12

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

WorMzy wrote:

It wasn't meant to help, it was just stating that just because there is a file in the directory, doesn't mean it is in the repository.

Oh, indeed, sorry

Ok, thanks!

Offline

#11 2015-08-05 20:16:02

jqrsd
Member
Registered: 2013-09-12
Posts: 12

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

Sorry to have troubled you, as Vi0L0 commented here, -pxp packages were really dropped from the repo. Wiki just has an outdated information.

Offline

#12 2015-08-05 20:27:44

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

Please remember to mark the thread as solved https://bbs.archlinux.org/viewtopic.php?id=130309

Offline

#13 2015-08-05 20:32:05

jqrsd
Member
Registered: 2013-09-12
Posts: 12

Re: [SOLVED] Pacman doesn't list all the packages in unofficial repository

karol wrote:

Please remember to mark the thread as solved

Thanks once again. Couldn't find a place, where to do it smile

Offline

Board footer

Powered by FluxBB