Package Details: cpuset 1.6-2

Git Clone URL: https://aur.archlinux.org/cpuset.git (read-only, click to copy)
Package Base: cpuset
Description: Python app to make using the cpusets facilities in the Linux kernel easier
Upstream URL: https://github.com/lpechacek/cpuset
Licenses: GPL2
Submitter: Jonhoo
Maintainer: eclairevoyant
Last Packager: eclairevoyant
Votes: 8
Popularity: 0.054421
First Submitted: 2015-07-07 21:56 (UTC)
Last Updated: 2023-05-06 00:24 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

Zulan commented on 2023-08-09 20:45 (UTC)

There is a missing dependency to python-future.

blackhole commented on 2023-05-10 01:06 (UTC)

cset set --cpu=3 --set=isolated1

cset: **> [Errno 22] Invalid argument

How to solve this?

eclairevoyant commented on 2023-05-08 12:38 (UTC)

upstream mentioned they did a release supporting both 2 and 3, so I figured it was time :)

jaap commented on 2023-05-08 12:23 (UTC)

Hey thanks for fixing python2, I requested orphaning with the intention to remove python2 but I forgot to actually do it. Very nice that I can now run without python2 :))

eclairevoyant commented on 2023-02-26 08:32 (UTC)

You'll also need to make the source package unique as per Arch packaging guidelines:

source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")

DonnerPartyOf1 commented on 2022-08-19 17:44 (UTC) (edited on 2022-08-19 17:45 (UTC) by DonnerPartyOf1)

Fix for outdated PKGBUILD:



diff --git a/PKGBUILD b/PKGBUILD
index bb342d5..9eb9dd0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,12 +6,12 @@ pkgdesc="Cpuset is a Python application to make using the cpusets facilities in
 arch=('any')
 url="https://github.com/lpechacek/cpuset/"
 license=('GPL2')
-depends=('python2' 'python2-future' 'python2-configparser')
+depends=('python-future')
 options=('!emptydirs')
 source=("https://github.com/lpechacek/cpuset/archive/v${pkgver}.tar.gz")
 md5sums=('365dcccfef9ac095530821a7e711b308')

 package() {
    cd "$srcdir/$pkgname-$pkgver"
-   python2 setup.py install --root="$pkgdir/" --optimize=1
+   python setup.py install --root="$pkgdir/" --optimize=1
 }

MarsSeed commented on 2022-06-14 06:38 (UTC)

@ginnokami, git is not needed to build this package.

ginnokami commented on 2022-02-07 02:24 (UTC)

Please add git in makedepends=() to enable building this in chroot.