[arch-commits] Commit in imwheel/repos/community-x86_64 (4 files)
Jelle van der Waa
jelle at archlinux.org
Thu May 13 21:06:58 UTC 2021
Date: Thursday, May 13, 2021 @ 21:06:58
Author: jelle
Revision: 933801
archrelease: copy trunk to community-x86_64
Added:
imwheel/repos/community-x86_64/PKGBUILD
(from rev 933800, imwheel/trunk/PKGBUILD)
imwheel/repos/community-x86_64/etcdir-install.patch
(from rev 933800, imwheel/trunk/etcdir-install.patch)
Deleted:
imwheel/repos/community-x86_64/PKGBUILD
imwheel/repos/community-x86_64/etcdir-install.patch
----------------------+
PKGBUILD | 68 ++++++++++++++++++++++++-------------------------
etcdir-install.patch | 34 ++++++++++++------------
2 files changed, 51 insertions(+), 51 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2021-05-13 21:06:52 UTC (rev 933800)
+++ PKGBUILD 2021-05-13 21:06:58 UTC (rev 933801)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Rhinoceros <https://aur.archlinux.org/account/rhinoceros>
-# Contributor: Travis Willard <travis at archlinux.org>
-# Contributor: Paul Mattal <paul at mattal.com>
-# Contributor: Thanasis Georgiou <contact at thgeorgiou.com>
-
-pkgname=imwheel
-pkgver=1.0.0pre12
-pkgrel=5
-pkgdesc='Mouse wheel configuration tool for XFree86/Xorg'
-arch=('x86_64')
-url='http://imwheel.sourceforge.net'
-license=('GPL')
-depends=('libxtst' 'libxmu')
-backup=('etc/X11/imwheel/imwheelrc')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
- 'etcdir-install.patch')
-sha256sums=('2320ed019c95ca4d922968e1e1cbf0c075a914e865e3965d2bd694ca3d57cfe3'
- '602a466e5537e7edb53247648fef62ea5bfa51e56f68dfd9f4fcb4b19e38fd16')
-
-build() {
- cd "$pkgname-$pkgver"
-
- # patch to fix buggy location of ETCDIR
- patch -p1 -i "${srcdir}/etcdir-install.patch"
-
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd "$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-}
Copied: imwheel/repos/community-x86_64/PKGBUILD (from rev 933800, imwheel/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2021-05-13 21:06:58 UTC (rev 933801)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Rhinoceros <https://aur.archlinux.org/account/rhinoceros>
+# Contributor: Travis Willard <travis at archlinux.org>
+# Contributor: Paul Mattal <paul at mattal.com>
+# Contributor: Thanasis Georgiou <contact at thgeorgiou.com>
+
+pkgname=imwheel
+pkgver=1.0.0pre12
+pkgrel=6
+pkgdesc='Mouse wheel configuration tool for XFree86/Xorg'
+arch=('x86_64')
+url='http://imwheel.sourceforge.net'
+license=('GPL')
+depends=('libxtst' 'libxmu')
+backup=('etc/X11/imwheel/imwheelrc')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
+ 'etcdir-install.patch')
+sha256sums=('2320ed019c95ca4d922968e1e1cbf0c075a914e865e3965d2bd694ca3d57cfe3'
+ '602a466e5537e7edb53247648fef62ea5bfa51e56f68dfd9f4fcb4b19e38fd16')
+
+build() {
+ cd "$pkgname-$pkgver"
+
+ # patch to fix buggy location of ETCDIR
+ patch -p1 -i "${srcdir}/etcdir-install.patch"
+
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}
Deleted: etcdir-install.patch
===================================================================
--- etcdir-install.patch 2021-05-13 21:06:52 UTC (rev 933800)
+++ etcdir-install.patch 2021-05-13 21:06:58 UTC (rev 933801)
@@ -1,17 +0,0 @@
---- imwheel-1.0.0pre12/Makefile.in 2004-08-29 06:36:33.000000000 -0400
-+++ imwheel-1.0.0pre12-fixed/Makefile.in 2005-01-04 14:46:37.000000000 -0500
-@@ -781,10 +781,10 @@
- @SUID_TRUE@ progname=$(DESTDIR)$(bindir)/`echo imwheel|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'` ; \
- @SUID_TRUE@ chown @suid@ $$progname ; \
- @SUID_TRUE@ chmod u+s $$progname
-- $(mkinstalldirs) $(ETCDIR)
-- -[ -f /etc/imwheelrc ] && mv /etc/imwheelrc $(ETCDIR)/imwheelrc || true
-- -[ -f /etc/X11/imwheelrc ] && mv /etc/X11/imwheelrc $(ETCDIR)/imwheelrc || true
-- -[ -f $(ETCDIR)/imwheelrc ] && install -m 644 imwheelrc $(ETCDIR)/imwheelrc.new || install -m 644 imwheelrc $(ETCDIR)/imwheelrc
-+ $(mkinstalldirs) $(DESTDIR)$(ETCDIR)
-+ -[ -f /etc/imwheelrc ] && mv /etc/imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc || true
-+ -[ -f /etc/X11/imwheelrc ] && mv /etc/X11/imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc || true
-+ -[ -f $(ETCDIR)/imwheelrc ] && install -m 644 imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc.new || install -m 644 imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc
-
- extras: $(EXTRA_PROGRAMS)
-
Copied: imwheel/repos/community-x86_64/etcdir-install.patch (from rev 933800, imwheel/trunk/etcdir-install.patch)
===================================================================
--- etcdir-install.patch (rev 0)
+++ etcdir-install.patch 2021-05-13 21:06:58 UTC (rev 933801)
@@ -0,0 +1,17 @@
+--- imwheel-1.0.0pre12/Makefile.in 2004-08-29 06:36:33.000000000 -0400
++++ imwheel-1.0.0pre12-fixed/Makefile.in 2005-01-04 14:46:37.000000000 -0500
+@@ -781,10 +781,10 @@
+ @SUID_TRUE@ progname=$(DESTDIR)$(bindir)/`echo imwheel|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'` ; \
+ @SUID_TRUE@ chown @suid@ $$progname ; \
+ @SUID_TRUE@ chmod u+s $$progname
+- $(mkinstalldirs) $(ETCDIR)
+- -[ -f /etc/imwheelrc ] && mv /etc/imwheelrc $(ETCDIR)/imwheelrc || true
+- -[ -f /etc/X11/imwheelrc ] && mv /etc/X11/imwheelrc $(ETCDIR)/imwheelrc || true
+- -[ -f $(ETCDIR)/imwheelrc ] && install -m 644 imwheelrc $(ETCDIR)/imwheelrc.new || install -m 644 imwheelrc $(ETCDIR)/imwheelrc
++ $(mkinstalldirs) $(DESTDIR)$(ETCDIR)
++ -[ -f /etc/imwheelrc ] && mv /etc/imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc || true
++ -[ -f /etc/X11/imwheelrc ] && mv /etc/X11/imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc || true
++ -[ -f $(ETCDIR)/imwheelrc ] && install -m 644 imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc.new || install -m 644 imwheelrc $(DESTDIR)$(ETCDIR)/imwheelrc
+
+ extras: $(EXTRA_PROGRAMS)
+
More information about the arch-commits
mailing list