[arch-commits] Commit in rfkill/repos (12 files)

Gaëtan Bisson bisson at archlinux.org
Sun Apr 2 09:02:53 UTC 2017


    Date: Sunday, April 2, 2017 @ 09:02:52
  Author: bisson
Revision: 291991

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  rfkill/repos/testing-i686/
  rfkill/repos/testing-i686/PKGBUILD
    (from rev 291990, rfkill/trunk/PKGBUILD)
  rfkill/repos/testing-i686/rules.d
    (from rev 291990, rfkill/trunk/rules.d)
  rfkill/repos/testing-i686/service.block
    (from rev 291990, rfkill/trunk/service.block)
  rfkill/repos/testing-i686/service.unblock
    (from rev 291990, rfkill/trunk/service.unblock)
  rfkill/repos/testing-i686/sysusers.d
    (from rev 291990, rfkill/trunk/sysusers.d)
  rfkill/repos/testing-x86_64/
  rfkill/repos/testing-x86_64/PKGBUILD
    (from rev 291990, rfkill/trunk/PKGBUILD)
  rfkill/repos/testing-x86_64/rules.d
    (from rev 291990, rfkill/trunk/rules.d)
  rfkill/repos/testing-x86_64/service.block
    (from rev 291990, rfkill/trunk/service.block)
  rfkill/repos/testing-x86_64/service.unblock
    (from rev 291990, rfkill/trunk/service.unblock)
  rfkill/repos/testing-x86_64/sysusers.d
    (from rev 291990, rfkill/trunk/sysusers.d)

--------------------------------+
 testing-i686/PKGBUILD          |   39 +++++++++++++++++++++++++++++++++++++++
 testing-i686/rules.d           |    1 +
 testing-i686/service.block     |   10 ++++++++++
 testing-i686/service.unblock   |   10 ++++++++++
 testing-i686/sysusers.d        |    1 +
 testing-x86_64/PKGBUILD        |   39 +++++++++++++++++++++++++++++++++++++++
 testing-x86_64/rules.d         |    1 +
 testing-x86_64/service.block   |   10 ++++++++++
 testing-x86_64/service.unblock |   10 ++++++++++
 testing-x86_64/sysusers.d      |    1 +
 10 files changed, 122 insertions(+)

Copied: rfkill/repos/testing-i686/PKGBUILD (from rev 291990, rfkill/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Thomas Bächler <thomas at archlinux.org>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+
+pkgname=rfkill
+pkgver=0.5
+pkgrel=2
+pkgdesc='Tool for enabling and disabling wireless devices'
+url='http://wireless.kernel.org/en/users/Documentation/rfkill'
+license=('custom')
+arch=('i686' 'x86_64')
+validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A')
+source=("https://www.kernel.org/pub/software/network/${pkgname}/${pkgname}-${pkgver}.tar"{.xz,.sign}
+        'service.unblock'
+        'service.block'
+        'sysusers.d'
+        'rules.d')
+sha256sums=('e0ae3004215e39a6c5c36e0726558740728d16f67ebdb8bea621250f6091d86a'
+            'SKIP'
+            '8ccec10a22523f6b9d55e0d6cbf91905a39881446710aa083e935e8073323376'
+            'a22e0a037e702170c7d88460cc9c9c2ab1d3e5c54a6985cd4a164ea7beff1b36'
+            '4a0b3dd8aa6d34dd29e1d153f396cacf908b0d64f7218276cbcab684587c0a0a'
+            '7423aaaa09fee7f47baa83df9ea6fef525ff9aec395c8cbd9fe848ceb2643f37')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make SBINDIR=/usr/bin DESTDIR="${pkgdir}" install
+	install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+	install -Dm644 ../rules.d "${pkgdir}/usr/lib/udev/rules.d/60-rfkill.rules"
+	install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/rfkill.conf"
+	install -Dm644 ../service.block "${pkgdir}/usr/lib/systemd/system/rfkill-block at .service"
+	install -Dm644 ../service.unblock "${pkgdir}/usr/lib/systemd/system/rfkill-unblock at .service"
+}

Copied: rfkill/repos/testing-i686/rules.d (from rev 291990, rfkill/trunk/rules.d)
===================================================================
--- testing-i686/rules.d	                        (rev 0)
+++ testing-i686/rules.d	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1 @@
+KERNEL=="rfkill", GROUP="rfkill", MODE="0664"

Copied: rfkill/repos/testing-i686/service.block (from rev 291990, rfkill/trunk/service.block)
===================================================================
--- testing-i686/service.block	                        (rev 0)
+++ testing-i686/service.block	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RFKill-Block %I
+After=rfkill-unblock at all.service
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/rfkill block %I
+
+[Install]
+WantedBy=multi-user.target

Copied: rfkill/repos/testing-i686/service.unblock (from rev 291990, rfkill/trunk/service.unblock)
===================================================================
--- testing-i686/service.unblock	                        (rev 0)
+++ testing-i686/service.unblock	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RFKill-Unblock %I
+After=rfkill-block at all.service
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/rfkill unblock %I
+
+[Install]
+WantedBy=multi-user.target

Copied: rfkill/repos/testing-i686/sysusers.d (from rev 291990, rfkill/trunk/sysusers.d)
===================================================================
--- testing-i686/sysusers.d	                        (rev 0)
+++ testing-i686/sysusers.d	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1 @@
+g rfkill - - -

Copied: rfkill/repos/testing-x86_64/PKGBUILD (from rev 291990, rfkill/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Thomas Bächler <thomas at archlinux.org>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+
+pkgname=rfkill
+pkgver=0.5
+pkgrel=2
+pkgdesc='Tool for enabling and disabling wireless devices'
+url='http://wireless.kernel.org/en/users/Documentation/rfkill'
+license=('custom')
+arch=('i686' 'x86_64')
+validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A')
+source=("https://www.kernel.org/pub/software/network/${pkgname}/${pkgname}-${pkgver}.tar"{.xz,.sign}
+        'service.unblock'
+        'service.block'
+        'sysusers.d'
+        'rules.d')
+sha256sums=('e0ae3004215e39a6c5c36e0726558740728d16f67ebdb8bea621250f6091d86a'
+            'SKIP'
+            '8ccec10a22523f6b9d55e0d6cbf91905a39881446710aa083e935e8073323376'
+            'a22e0a037e702170c7d88460cc9c9c2ab1d3e5c54a6985cd4a164ea7beff1b36'
+            '4a0b3dd8aa6d34dd29e1d153f396cacf908b0d64f7218276cbcab684587c0a0a'
+            '7423aaaa09fee7f47baa83df9ea6fef525ff9aec395c8cbd9fe848ceb2643f37')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make SBINDIR=/usr/bin DESTDIR="${pkgdir}" install
+	install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+	install -Dm644 ../rules.d "${pkgdir}/usr/lib/udev/rules.d/60-rfkill.rules"
+	install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/rfkill.conf"
+	install -Dm644 ../service.block "${pkgdir}/usr/lib/systemd/system/rfkill-block at .service"
+	install -Dm644 ../service.unblock "${pkgdir}/usr/lib/systemd/system/rfkill-unblock at .service"
+}

Copied: rfkill/repos/testing-x86_64/rules.d (from rev 291990, rfkill/trunk/rules.d)
===================================================================
--- testing-x86_64/rules.d	                        (rev 0)
+++ testing-x86_64/rules.d	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1 @@
+KERNEL=="rfkill", GROUP="rfkill", MODE="0664"

Copied: rfkill/repos/testing-x86_64/service.block (from rev 291990, rfkill/trunk/service.block)
===================================================================
--- testing-x86_64/service.block	                        (rev 0)
+++ testing-x86_64/service.block	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RFKill-Block %I
+After=rfkill-unblock at all.service
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/rfkill block %I
+
+[Install]
+WantedBy=multi-user.target

Copied: rfkill/repos/testing-x86_64/service.unblock (from rev 291990, rfkill/trunk/service.unblock)
===================================================================
--- testing-x86_64/service.unblock	                        (rev 0)
+++ testing-x86_64/service.unblock	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RFKill-Unblock %I
+After=rfkill-block at all.service
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/rfkill unblock %I
+
+[Install]
+WantedBy=multi-user.target

Copied: rfkill/repos/testing-x86_64/sysusers.d (from rev 291990, rfkill/trunk/sysusers.d)
===================================================================
--- testing-x86_64/sysusers.d	                        (rev 0)
+++ testing-x86_64/sysusers.d	2017-04-02 09:02:52 UTC (rev 291991)
@@ -0,0 +1 @@
+g rfkill - - -



More information about the arch-commits mailing list