Package Details: papi 7.1.0-3

Git Clone URL: https://aur.archlinux.org/papi.git (read-only, click to copy)
Package Base: papi
Description: Performance Application Programming Interface
Upstream URL: http://icl.cs.utk.edu/papi
Licenses: BSD
Submitter: jedbrown
Maintainer: forcegk
Last Packager: forcegk
Votes: 21
Popularity: 0.000000
First Submitted: 2009-11-09 21:53 (UTC)
Last Updated: 2024-10-30 12:40 (UTC)

Latest Comments

1 2 3 4 Next › Last »

micwoj92 commented on 2024-10-30 17:07 (UTC)

Please do not update as long as current version builds/works fine.

forcegk commented on 2024-10-30 12:45 (UTC)

Btw @everyone. Papi version 7.2.0 beta 1 has been released. That includes all new CPUs and other things. It is a beta so new features might not work as expected, but afaik, old features and platforms still work the same.

Opinions on updating to the beta? Should we wait until a stable release, although that might take a year?

Release page: https://github.com/icl-utk-edu/papi/releases/tag/papi-7-2-0b1-t

forcegk commented on 2024-10-30 12:40 (UTC)

@micwoj92 done too

forcegk commented on 2024-10-30 12:38 (UTC)

@disc-kuraudo fixed :)

disc-kuraudo commented on 2024-10-20 15:40 (UTC)

Could add

options=('staticlibs')
to keep the static libraries that are explicitly built. Arch's default is to remove all of them when packaging.

micwoj92 commented on 2024-08-10 19:20 (UTC)

Please add python to depends or optdepends. For /usr/bin/papi_hl_output_writer.py

forcegk commented on 2024-05-23 09:08 (UTC)

@gamezelda fixed, tyvm

gamezelda commented on 2024-05-21 21:13 (UTC) (edited on 2024-05-21 21:13 (UTC) by gamezelda)

The new PKGBUILD tries to reference the AdlerLake X patch outside $srcdir, from the package root directory using relative paths:

prepare() {
  cd "${srcdir}"
  // [...]
  patch -Np1 -i ../alderlakex-support.patch
}

This breaks the build when you set a custom BUILDDIR (see for example https://wiki.archlinux.org/title/makepkg#Building_from_files_in_memory):

$ BUILDDIR=/tmp/papibuild makepkg -s
[...]
patch: **** Can't open patch file ../alderlakex-support.patch : No such file or directory

I suggest referencing the copy of the patch that makepkg creates on $srcdir to avoid this problem, i.e.:

prepare() {
  cd "${srcdir}"
  // [...]
  patch -Np1 -i alderlakex-support.patch
}

forcegk commented on 2024-05-21 09:15 (UTC)

@vlopezh solved @kmarius solved (I think)

Any CPU patches can be submitted over here since the release schedule for papi, as noted by @disc-kuraudo is kinda weird