Package Details: linux-enable-ir-emitter-git 5.2.4.r2.ge8de559-1

Git Clone URL: https://aur.archlinux.org/linux-enable-ir-emitter-git.git (read-only, click to copy)
Package Base: linux-enable-ir-emitter-git
Description: Enables infrared cameras that are not directly enabled out-of-the box
Upstream URL: https://github.com/EmixamPP/linux-enable-ir-emitter
Keywords: cameras infrared
Licenses: MIT
Conflicts: chicony-ir-toggle, linux-enable-ir-emitter
Provides: linux-enable-ir-emitter
Submitter: nbryskin
Maintainer: Supdrewin (nbryskin)
Last Packager: nbryskin
Votes: 2
Popularity: 0.000001
First Submitted: 2021-06-14 09:17 (UTC)
Last Updated: 2023-12-01 21:20 (UTC)

Dependencies (5)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

Eeems commented on 2023-12-08 05:03 (UTC)

@nbryskin Since you aren't the current primary maintainer, that might be why you can't add me. You may need to put in the request to have them removed, and make you the primary maintainer.

nbryskin commented on 2023-12-01 21:01 (UTC)

@eeems I can't make you a maintainer, but I'll look at your PKGBUILD and update if it works fine.

Eeems commented on 2023-12-01 20:20 (UTC)

I just emailed nbryskin asking for it this to be fixed. Supdrewin doesn't have an email address or other form of communication listed on their profile, so I can't contact them. I'll put in an orphan request if I don't hear back from nbryskin in a reasonable amount of time.

Eeems commented on 2023-05-14 20:21 (UTC)

Updating the PKGBUILD to the following will fix it:

pkgname=linux-enable-ir-emitter-git
pkgver=4.5.0.r5.g30d2bbf
pkgrel=1
pkgdesc="Enables infrared cameras that are not directly enabled out-of-the box"
url="https://github.com/EmixamPP/linux-enable-ir-emitter"
license=('MIT')
arch=('x86_64')

provides=(linux-enable-ir-emitter)
conflicts=(linux-enable-ir-emitter chicony-ir-toggle)

makedepends=(git meson)
depends=(python opencv fmt)

install=linux-enable-ir-emitter.install

source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')

pkgver() {
    cd "${srcdir}/${pkgname}"
    git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    cd "${srcdir}/${pkgname}"
    meson setup build
    meson compile -C build
}

package() {
    cd "${srcdir}/${pkgname}"
    meson install -C build --destdir=${pkgdir}
}

Would one of the maintainers be able to either update it, or orphan it so that someone else can?

EmixamPP commented on 2023-04-11 19:21 (UTC) (edited on 2023-04-11 19:34 (UTC) by EmixamPP)

@Eeems, sure. I made the request.

I didn't do it before, because I was sure I would continue to add co-maintainers if that was the wish of some. And if I had left the package, I wasn't sure that the current co-maintainers would have done it as quickly as I did.

Eeems commented on 2023-04-11 18:52 (UTC)

@EmixamPP Please orphan the package instead of flagging it out of date as "not supported". While you may not support it, someone else may pick it up.

Zepman commented on 2022-12-28 14:07 (UTC) (edited on 2022-12-28 14:07 (UTC) by Zepman)

This package misses dependencies:

glew

hdf5

Without these installed, compilation will fail after these warnings:

/usr/bin/ld: warning: libhdf5.so.200, needed by /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/libopencv_hdf.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libGLEW.so.2.2, needed by /usr/lib/libvtkRenderingOpenGL2.so.1, not found (try using -rpath or -rpath-link)

Supdrewin commented on 2021-09-25 04:58 (UTC)

That’s good. But please note the linux-enable-ir-emitter.yaml is generated after user config.

FabioLolix commented on 2021-09-24 09:25 (UTC)

@supdrewin you ruined the pkgver(), now it calculates the revisions of the pkgbuild git repo, the .install is pointeless; all that actions can be done in the pkgbuild

EmixamPP commented on 2021-08-03 20:04 (UTC)

By the way if this can be useful, @FabioLolix has created a pull request on GitHub related to this package https://github.com/EmixamPP/linux-enable-ir-emitter/pull/28.