diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-08 20:28:25 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-08 20:28:25 +0200 |
commit | 472e769077880733441136516ce8f71be35939f1 (patch) | |
tree | 424589dfda6ca797b08e6c58b57c4476a8c1dbc2 /consolekit-git | |
parent | Update e-mail (diff) | |
download | aur-packages-472e769077880733441136516ce8f71be35939f1.tar.gz aur-packages-472e769077880733441136516ce8f71be35939f1.tar.bz2 aur-packages-472e769077880733441136516ce8f71be35939f1.tar.xz |
Remove some old packages
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'consolekit-git')
-rw-r--r-- | consolekit-git/.gitignore | 1 | ||||
-rw-r--r-- | consolekit-git/PKGBUILD | 59 | ||||
-rw-r--r-- | consolekit-git/consolekit.logrotate | 5 | ||||
-rw-r--r-- | consolekit-git/consolekit.tmpfiles.conf | 1 | ||||
-rw-r--r-- | consolekit-git/pam-foreground-compat.ck | 16 | ||||
l--------- | consolekit-git/upload | 1 | ||||
-rwxr-xr-x | consolekit-git/watch | 19 |
7 files changed, 0 insertions, 102 deletions
diff --git a/consolekit-git/.gitignore b/consolekit-git/.gitignore deleted file mode 100644 index c2e6534..0000000 --- a/consolekit-git/.gitignore +++ /dev/null @@ -1 +0,0 @@ -ConsoleKit/ diff --git a/consolekit-git/PKGBUILD b/consolekit-git/PKGBUILD deleted file mode 100644 index bb80d0d..0000000 --- a/consolekit-git/PKGBUILD +++ /dev/null @@ -1,59 +0,0 @@ -# Maintainer: Mattias Andrée <m@`base64 -d`(bWFhbmRyZWU).se> -# Previous maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> -# Contributor: Jan de Groot <jgc@archlinux.org> -# Contributor: onestep_ua <onestep@ukr.net> - -pkgname=consolekit-git -pkgver=395.af75e10 -pkgrel=1 -epoch=1 -pkgdesc="A framework for defining and tracking users, login sessions, and seats" -arch=('i686' 'x86_64') -url="http://www.freedesktop.org/wiki/Software/ConsoleKit" -license=('GPL') -depends=('polkit' 'zlib' 'libx11' 'dbus-glib') -makedepends=('git' 'pkgconfig' 'xmlto' 'docbook-xsl') -replaces=('consolekit') -provides=('consolekit') -conflicts=('consolekit') -options=(!libtool) -source=(git+git://anongit.freedesktop.org/ConsoleKit \ - pam-foreground-compat.ck consolekit.logrotate consolekit.tmpfiles.conf) -md5sums=('SKIP' - 'a8a4de71d9b0549b8143e5f6c2a36fc7' - '6fefa451d9fe2fc6d6269629d3529793' - '8c5a8059db515d40fae1379daf084094') - -pkgver() { - cd "$srcdir/ConsoleKit" - echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) -} - -build() { - cd "$srcdir/ConsoleKit" - - ./autogen.sh --prefix=/usr \ - --sbindir=/usr/bin \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --libexecdir=/usr/lib/ConsoleKit \ - --with-systemdsystemunitdir=/usr/lib/systemd/system \ - --enable-pam-module \ - --with-pam-module-dir=/usr/lib/security \ - --enable-docbook-docs \ - --enable-udev-acl - make -} - -package() { - cd "$srcdir/ConsoleKit" - make DESTDIR="$pkgdir" install - install -m755 "$srcdir/pam-foreground-compat.ck" "$pkgdir/usr/lib/ConsoleKit/run-session.d/" - - # install the logrotate config - install -D -m644 "$srcdir/consolekit.logrotate" "$pkgdir/etc/logrotate.d/consolekit" - - install -D -m644 "$srcdir/consolekit.tmpfiles.conf" "$pkgdir/usr/lib/tmpfiles.d/consolekit.conf" - - rm -rf "$pkgdir/var/run" -} diff --git a/consolekit-git/consolekit.logrotate b/consolekit-git/consolekit.logrotate deleted file mode 100644 index 7c5346e..0000000 --- a/consolekit-git/consolekit.logrotate +++ /dev/null @@ -1,5 +0,0 @@ -/var/log/ConsoleKit/history { - missingok - notifempty - delaycompress -} diff --git a/consolekit-git/consolekit.tmpfiles.conf b/consolekit-git/consolekit.tmpfiles.conf deleted file mode 100644 index 4ec1251..0000000 --- a/consolekit-git/consolekit.tmpfiles.conf +++ /dev/null @@ -1 +0,0 @@ -d /run/ConsoleKit 0755 - - - diff --git a/consolekit-git/pam-foreground-compat.ck b/consolekit-git/pam-foreground-compat.ck deleted file mode 100644 index 7f6b122..0000000 --- a/consolekit-git/pam-foreground-compat.ck +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -TAGDIR=/var/run/console - -[ -n "$CK_SESSION_USER_UID" ] || exit 1 - -TAGFILE="$TAGDIR/`getent passwd $CK_SESSION_USER_UID | cut -f 1 -d:`" - -if [ "$1" = "session_added" ]; then - mkdir -p "$TAGDIR" - echo "$CK_SESSION_ID" >> "$TAGFILE" -fi - -if [ "$1" = "session_removed" ] && [ -e "$TAGFILE" ]; then - sed -i "\%^$CK_SESSION_ID\$%d" "$TAGFILE" - [ -s "$TAGFILE" ] || rm -f "$TAGFILE" -fi diff --git a/consolekit-git/upload b/consolekit-git/upload deleted file mode 120000 index 1e7a8be..0000000 --- a/consolekit-git/upload +++ /dev/null @@ -1 +0,0 @@ -../upload
\ No newline at end of file diff --git a/consolekit-git/watch b/consolekit-git/watch deleted file mode 100755 index d57693b..0000000 --- a/consolekit-git/watch +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -wget 'http://cgit.freedesktop.org/ConsoleKit' -O - 2>/dev/null | grep -Po '\.tar.+>ConsoleKit-.+\.tar' | head -n 1 > release - -if [ $? = 0 ]; then - [ -f unfetchable ] && rm unfetchable - md5sum release > new-sum - touch sum - if [ "$(cat sum)" = "$(cat new-sum)" ]; then - rm new-sum - else - mv new-sum sum - echo 'consolekit-git' - fi -elif [ ! -f unfetchable ]; then - touch unfetchable - echo 'consolekit-git (unfetchable)' -fi - |