upg xf86-input-libinput consolekit2

add ntfs-3g
This commit is contained in:
joborun linux 2023-04-05 13:29:57 +03:00
parent 2cf2d3cc04
commit 8e6e162f35
9 changed files with 141 additions and 14 deletions

View File

@ -6,8 +6,8 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=consolekit2
pkgver=1.2.4
pkgrel=02
pkgver=1.2.5
pkgrel=01
pkgdesc="A framework for defining and tracking users, login sessions, and seats"
url="https://github.com/ConsoleKit2/ConsoleKit2"
arch=(x86_64)
@ -19,7 +19,7 @@ source=("$pkgname::git+$url#$target=$track"
pam-foreground-compat.ck
tmpfiles.conf
trust_runtime_admin_policy.patch
set_good_hpr_command.patch
# set_good_hpr_command.patch
keep_runtime_dir.patch)
options=(libtool)
depends=( dbus glib2 libx11 polkit eudev zlib popt)
@ -38,7 +38,7 @@ prepare() {
cd $srcdir/$pkgname
patch --forward --strip=1 --input="${srcdir}/trust_runtime_admin_policy.patch"
patch --forward --strip=1 --input="${srcdir}/set_good_hpr_command.patch"
# patch --forward --strip=1 --input="${srcdir}/set_good_hpr_command.patch"
patch --forward --strip=1 --input="${srcdir}/keep_runtime_dir.patch"
}
@ -94,7 +94,9 @@ package() {
rm -r "${pkgdir}"/run
}
#---- license gpg-key sha256sums ----
#---- arch license gpg-key & sha256sums ----
arch=(x86_64)
license=(GPL)
@ -104,7 +106,8 @@ sha256sums=(SKIP
7a727be018e26eb7b67df02d3dc493eaa3dafea412801d6bf4b55b4a83c9df7c # pam-foreground-compat.ck
778552dc12b3c235bde200e476d4262da0c135f3f6f8b3e975a87881d1f154d1 # tmpfiles.conf
8e4a486794ef176af3f753c3c1077e0b69a0dc5332bb3277726a7bd2cccb8e1d # trust_runtime_admin_policy.patch
780e09ccff9aca92f698e70cccd2079e3916d4b3feff27c373d6ddfe95ce6431 # set_good_hpr_command.patch
# 780e09ccff9aca92f698e70cccd2079e3916d4b3feff27c373d6ddfe95ce6431 # set_good_hpr_command.patch
5c4340496a6370bf424135f368c5b42d1e99efbc72cc0538b102754adcc6b887) # keep_runtime_dir.patch
## 6496b47a97069557c9c0ed8bf12b397d3d160f7376dad86b259d588b75b5ed39 consolekit2-1.2.5-01-x86_64.pkg.tar.lz

60
ntfs-3g/PKGBUILD Normal file
View File

@ -0,0 +1,60 @@
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
# Maintainer : Joe Bo Run <joborun@disroot.org>
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
# Website : https://pozol.eu
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=ntfs-3g
_pkgname=ntfs-3g_ntfsprogs
pkgver=2022.10.3
pkgrel=01
pkgdesc='NTFS filesystem driver and utilities'
url='https://www.tuxera.com/community/open-source-ntfs-3g/'
depends=('util-linux' 'fuse2')
source=("https://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz")
conflicts=('ntfsprogs')
provides=('ntfsprogs')
replaces=('ntfsprogs')
prepare() {
cd ${_pkgname}-${pkgver}
sed 's|$(DESTDIR)/sbin|$(DESTDIR)/usr/bin|' -i {ntfsprogs,src}/Makefile.in
}
build() {
cd ${_pkgname}-${pkgver}
./configure \
--prefix=/usr \
--sbin=/usr/bin \
--mandir=/usr/share/man \
--disable-ldconfig \
--disable-static \
--with-fuse=external \
--enable-xattr-mappings \
--enable-posix-acls \
--enable-extras \
--enable-crypto \
make
}
package_ntfs-3g() {
cd ${_pkgname}-${pkgver}
make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin rootlibdir=/usr/lib install
rm "${pkgdir}"/usr/share/man/man8/ntfsfallocate.8 # uninstalled binary
ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
}
#---- arch license gpg-key & sha256sums ----
arch=(x86_64)
license=('GPL2')
sha256sums=(f20e36ee68074b845e3629e6bced4706ad053804cbaf062fbae60738f854170c) # ntfs-3g_ntfsprogs-2022.10.3.tgz
## 567947c7f828aec30797948e2501a4d3aebebacd9070d4bf267bdefc2d92c665 ntfs-3g-2022.10.3-01-x86_64.pkg.tar.lz

49
ntfs-3g/PKGBUILD-arch Normal file
View File

@ -0,0 +1,49 @@
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Tom Gundersen <teg@jklm.no>
# Contributor: Ronald van Haren <ronald.archlinux.org>
# Contributor: Thomas Bächler <thomas.archlinux.org>
pkgname=ntfs-3g
_pkgname=ntfs-3g_ntfsprogs
pkgver=2022.10.3
pkgrel=1
pkgdesc='NTFS filesystem driver and utilities'
url='https://www.tuxera.com/community/open-source-ntfs-3g/'
arch=('x86_64')
license=('GPL2')
depends=('util-linux' 'fuse2')
source=("https://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz")
sha256sums=('f20e36ee68074b845e3629e6bced4706ad053804cbaf062fbae60738f854170c')
conflicts=('ntfsprogs')
provides=('ntfsprogs')
replaces=('ntfsprogs')
prepare() {
cd ${_pkgname}-${pkgver}
sed 's|$(DESTDIR)/sbin|$(DESTDIR)/usr/bin|' -i {ntfsprogs,src}/Makefile.in
}
build() {
cd ${_pkgname}-${pkgver}
./configure \
--prefix=/usr \
--sbin=/usr/bin \
--mandir=/usr/share/man \
--disable-ldconfig \
--disable-static \
--with-fuse=external \
--enable-xattr-mappings \
--enable-posix-acls \
--enable-extras \
--enable-crypto \
make
}
package_ntfs-3g() {
cd ${_pkgname}-${pkgver}
make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin rootlibdir=/usr/lib install
rm "${pkgdir}"/usr/share/man/man8/ntfsfallocate.8 # uninstalled binary
ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
}

1
ntfs-3g/clean Normal file
View File

@ -0,0 +1 @@
rm -rf {src,pkg,ntfs*.tgz}

1
ntfs-3g/deps Normal file
View File

@ -0,0 +1 @@
fuse2

6
ntfs-3g/time Normal file
View File

@ -0,0 +1,6 @@
real 0m33.977s
user 0m31.484s
sys 0m3.275s

View File

@ -6,10 +6,9 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=xf86-input-libinput
pkgver=1.2.1
pkgrel=02 # rebuilt against libinput 1.20.0-01
pkgver=1.3.0
pkgrel=01 # rebuilt against libinput 1.20.0-01
pkgdesc="Generic input driver for the X.Org server based on libinput"
arch=('x86_64')
url="http://xorg.freedesktop.org/"
depends=('libinput')
makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=24.4' 'libxi' 'libx11' 'xorgproto')
@ -33,13 +32,19 @@ package() {
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
}
#---- license gpg-key sha256sums ----
#---- arch license gpg-key & sha256sums ----
arch=(x86_64)
license=('custom:MIT')
validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office@who-t.net>
#validpgpkeys=('FD0004A26EADFE43A4C3F249C6F7AE200374452D') # "Povilas Kanapickas <povilas@radix.lt>"
sha256sums=(8151db5b9ddb317c0ce92dcb62da9a8db5079e5b8a95b60abc854da21e7e971b # xf86-input-libinput-1.2.1.tar.xz
e84f154bfacf46a57f7e70b4727dbdff21de1138349133a89f73b2c16004fd06) # xf86-input-libinput-1.2.1.tar.xz.sig
sha256sums=(1446ba20a22bc968b5a4a0b4dbc3b8e037c50d9c59ac75fa3f7fc506c58c1abb # xf86-input-libinput-1.3.0.tar.xz
dd7cd4c8178d873f4c09fa0006e46aeb1fd3986c4454a682b33843c278e98fcf) # xf86-input-libinput-1.3.0.tar.xz.sig
sha512sums=('f81f408b37e5f98ee97337dc4da6e78449e554e0ab2a3c6791b089d2cb6d645d0206ddf9babbc2120ab8bfe3b1489314fe42503ee015cec41775024538f3a34f'
'SKIP')
## 367333a798dac29cd080e77d374f5ace76392fa8078eef768b3ce0d7ace45d4a xf86-input-libinput-1.3.0-01-x86_64.pkg.tar.lz

View File

@ -1,7 +1,7 @@
# Maintainer: Laurent Carlier <lordheavym@gmail.com>
pkgname=xf86-input-libinput
pkgver=1.2.1
pkgver=1.3.0
pkgrel=1
pkgdesc="Generic input driver for the X.Org server based on libinput"
arch=('x86_64')
@ -12,7 +12,7 @@ makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=24.4' 'libxi' 'libx11' 'x
conflicts=('xorg-server<1.19.0' 'X-ABI-XINPUT_VERSION<24' 'X-ABI-XINPUT_VERSION>=25')
groups=('xorg-drivers')
source=(https://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.xz{,.sig})
sha512sums=('3decf694861d1aa3c02d090e66c5ed5513818cb18e9863f1790e0c8122a972230fb903705062b8291e1709db9098623f1205c63ccfb68e552e104813414589c7'
sha512sums=('f81f408b37e5f98ee97337dc4da6e78449e554e0ab2a3c6791b089d2cb6d645d0206ddf9babbc2120ab8bfe3b1489314fe42503ee015cec41775024538f3a34f'
'SKIP')
validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office@who-t.net>
#validpgpkeys=('FD0004A26EADFE43A4C3F249C6F7AE200374452D') # "Povilas Kanapickas <povilas@radix.lt>"

View File

@ -4,3 +4,5 @@ libx11
xorgproto
xorg-server
libinput