[arch-commits] Commit in networkmanager-dispatcher-ntpd/repos/community-any (6 files)

Jelle van der Waa jelle at archlinux.org
Sat Jun 2 13:17:10 UTC 2018


    Date: Saturday, June 2, 2018 @ 13:17:10
  Author: jelle
Revision: 337498

archrelease: copy trunk to community-any

Added:
  networkmanager-dispatcher-ntpd/repos/community-any/10-ntpd
    (from rev 337496, networkmanager-dispatcher-ntpd/trunk/10-ntpd)
  networkmanager-dispatcher-ntpd/repos/community-any/LICENSE
    (from rev 337496, networkmanager-dispatcher-ntpd/trunk/LICENSE)
  networkmanager-dispatcher-ntpd/repos/community-any/PKGBUILD
    (from rev 337496, networkmanager-dispatcher-ntpd/trunk/PKGBUILD)
Deleted:
  networkmanager-dispatcher-ntpd/repos/community-any/10-ntpd
  networkmanager-dispatcher-ntpd/repos/community-any/LICENSE
  networkmanager-dispatcher-ntpd/repos/community-any/PKGBUILD

----------+
 10-ntpd  |   50 +++++++++++++++++++++++++-------------------------
 LICENSE  |   38 +++++++++++++++++++-------------------
 PKGBUILD |   34 +++++++++++++++++-----------------
 3 files changed, 61 insertions(+), 61 deletions(-)

Deleted: 10-ntpd
===================================================================
--- 10-ntpd	2018-06-02 13:17:03 UTC (rev 337497)
+++ 10-ntpd	2018-06-02 13:17:10 UTC (rev 337498)
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-
-if [ -e /sys/fs/cgroup/systemd ]; then
-        case "$2" in
-                up)
-                              systemctl start ntpd.service
-                ;;
-                down)
-                              systemctl stop ntpd.service
-                ;;
-        esac
-else
-        if [ -e "/etc/rc.d/ntpd" ]; then
-                case "$2" in
-                        up)
-                                rc.d start ntpd
-                        ;;
-                        down)
-                                rc.d stop ntpd
-                        ;;
-                esac
-        fi
-
-fi

Copied: networkmanager-dispatcher-ntpd/repos/community-any/10-ntpd (from rev 337496, networkmanager-dispatcher-ntpd/trunk/10-ntpd)
===================================================================
--- 10-ntpd	                        (rev 0)
+++ 10-ntpd	2018-06-02 13:17:10 UTC (rev 337498)
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+
+if [ -e /sys/fs/cgroup/systemd ]; then
+        case "$2" in
+                up)
+                              systemctl start ntpd.service
+                ;;
+                down)
+                              systemctl stop ntpd.service
+                ;;
+        esac
+else
+        if [ -e "/etc/rc.d/ntpd" ]; then
+                case "$2" in
+                        up)
+                                rc.d start ntpd
+                        ;;
+                        down)
+                                rc.d stop ntpd
+                        ;;
+                esac
+        fi
+
+fi

Deleted: LICENSE
===================================================================
--- LICENSE	2018-06-02 13:17:03 UTC (rev 337497)
+++ LICENSE	2018-06-02 13:17:10 UTC (rev 337498)
@@ -1,19 +0,0 @@
-Copyright (c) 2009-2013 Robert Djubek
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

Copied: networkmanager-dispatcher-ntpd/repos/community-any/LICENSE (from rev 337496, networkmanager-dispatcher-ntpd/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2018-06-02 13:17:10 UTC (rev 337498)
@@ -0,0 +1,19 @@
+Copyright (c) 2009-2013 Robert Djubek
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-06-02 13:17:03 UTC (rev 337497)
+++ PKGBUILD	2018-06-02 13:17:10 UTC (rev 337498)
@@ -1,17 +0,0 @@
-# Maintainer: Jelle van der Waa <jelle vdwaa nl>
-pkgname=networkmanager-dispatcher-ntpd
-pkgver=1.0
-pkgrel=6
-pkgdesc="Dispatcher Script for ntpd"
-arch=(any)
-license=('MIT')
-url="http://www.gnome.org/projects/NetworkManager"
-depends=('networkmanager' 'ntp')
-source=("10-ntpd" "LICENSE")
-md5sums=('6e2ea87331a44dd83dd992d1ed8363ea'
-         'bade437c691452a83923e5064da20757')
-
-package() {
-  install -Dm700 $srcdir/10-ntpd $pkgdir/etc/NetworkManager/dispatcher.d/10-ntpd
-  install -Dm644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: networkmanager-dispatcher-ntpd/repos/community-any/PKGBUILD (from rev 337496, networkmanager-dispatcher-ntpd/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-06-02 13:17:10 UTC (rev 337498)
@@ -0,0 +1,17 @@
+# Maintainer: Jelle van der Waa <jelle vdwaa nl>
+pkgname=networkmanager-dispatcher-ntpd
+pkgver=1.0
+pkgrel=7
+pkgdesc="Dispatcher Script for ntpd"
+arch=(any)
+license=('MIT')
+url="http://www.gnome.org/projects/NetworkManager"
+depends=('networkmanager' 'ntp')
+source=("10-ntpd" "LICENSE")
+md5sums=('6e2ea87331a44dd83dd992d1ed8363ea'
+         'bade437c691452a83923e5064da20757')
+
+package() {
+  install -Dm700 $srcdir/10-ntpd $pkgdir/etc/NetworkManager/dispatcher.d/10-ntpd
+  install -Dm644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



More information about the arch-commits mailing list