[arch-commits] Commit in consul/repos (8 files)

Felix Yan felixonmars at archlinux.org
Fri May 12 16:16:04 UTC 2017


    Date: Friday, May 12, 2017 @ 16:16:03
  Author: felixonmars
Revision: 227868

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

Added:
  consul/repos/community-i686/PKGBUILD
    (from rev 227867, consul/trunk/PKGBUILD)
  consul/repos/community-i686/consul.service
    (from rev 227867, consul/trunk/consul.service)
  consul/repos/community-x86_64/PKGBUILD
    (from rev 227867, consul/trunk/PKGBUILD)
  consul/repos/community-x86_64/consul.service
    (from rev 227867, consul/trunk/consul.service)
Deleted:
  consul/repos/community-i686/PKGBUILD
  consul/repos/community-i686/consul.service
  consul/repos/community-x86_64/PKGBUILD
  consul/repos/community-x86_64/consul.service

---------------------------------+
 /PKGBUILD                       |   90 ++++++++++++++++++++++++++++++++++++++
 /consul.service                 |   28 +++++++++++
 community-i686/PKGBUILD         |   45 -------------------
 community-i686/consul.service   |   14 -----
 community-x86_64/PKGBUILD       |   45 -------------------
 community-x86_64/consul.service |   14 -----
 6 files changed, 118 insertions(+), 118 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-05-12 16:15:08 UTC (rev 227867)
+++ community-i686/PKGBUILD	2017-05-12 16:16:03 UTC (rev 227868)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=consul
-pkgver=0.8.2
-pkgrel=1
-pkgdesc="A tool for service discovery, monitoring and configuration."
-arch=('i686' 'x86_64')
-url="https://www.consul.io"
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/consul/archive/v$pkgver.tar.gz"
-        consul.service)
-sha512sums=('13bd28f0da488ee8fb3068515e2fddc7fe2d663c8848357b689332c44d757c1f3a017c604a68958f1fa22b5d6b58e3b09574a8fff9ab41d74ab6aec347b356d0'
-            '0f39434e73a3f5d79919e3fad28de834688765edebfce8793aa471f272af61d9cebd13237a7aeb4f8b89f1749a891a63cd710881d58a9590990deedd43dffdba')
-
-prepare() {
-  cd consul-$pkgver
-
-  mkdir build
-  mkdir -p .gopath/src/github.com/hashicorp
-  ln -sf "$PWD" .gopath/src/github.com/hashicorp/consul
-  export GOPATH="$PWD/.gopath"
-
-  sed -e "s/Version           = \"unknown\"/Version           = \"$pkgver\"/" \
-      -e "s/VersionPrerelease = \"unknown\"/VersionPrerelease = \"\"/" \
-      -e "s/release = \"dev\"/release = \"\"/" \
-      -i version/version.go
-}
-
-build() {
-  cd consul-$pkgver
-
-  go get github.com/mitchellh/cli
-  go build -o build/consul # -gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd consul-$pkgver
-  
-  install -Dm755 build/consul "$pkgdir"/usr/bin/consul
-  install -Dm644 "$srcdir"/consul.service "$pkgdir"/usr/lib/systemd/system/consul.service
-  install -d "$pkgdir"/etc/consul.d
-}

Copied: consul/repos/community-i686/PKGBUILD (from rev 227867, consul/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-05-12 16:16:03 UTC (rev 227868)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=consul
+pkgver=0.8.3
+pkgrel=1
+pkgdesc="A tool for service discovery, monitoring and configuration."
+arch=('i686' 'x86_64')
+url="https://www.consul.io"
+license=('MPL')
+depends=('glibc')
+makedepends=('git' 'go')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/consul/archive/v$pkgver.tar.gz"
+        consul.service)
+sha512sums=('84c72f5cdc9f82288b29b92e386324214bf71ef3952cbd3391f4c7c427cf5f385a3e472304cfb8c837bbfb009547ad3b736d6f66f0546a5f994d547d431bd4b8'
+            '0f39434e73a3f5d79919e3fad28de834688765edebfce8793aa471f272af61d9cebd13237a7aeb4f8b89f1749a891a63cd710881d58a9590990deedd43dffdba')
+
+prepare() {
+  cd consul-$pkgver
+
+  mkdir build
+  mkdir -p .gopath/src/github.com/hashicorp
+  ln -sf "$PWD" .gopath/src/github.com/hashicorp/consul
+  export GOPATH="$PWD/.gopath"
+
+  sed -e "s/Version           = \"unknown\"/Version           = \"$pkgver\"/" \
+      -e "s/VersionPrerelease = \"unknown\"/VersionPrerelease = \"\"/" \
+      -e "s/release = \"dev\"/release = \"\"/" \
+      -i version/version.go
+}
+
+build() {
+  cd consul-$pkgver
+
+  go get github.com/mitchellh/cli
+  go build -o build/consul # -gccgoflags "$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd consul-$pkgver
+  
+  install -Dm755 build/consul "$pkgdir"/usr/bin/consul
+  install -Dm644 "$srcdir"/consul.service "$pkgdir"/usr/lib/systemd/system/consul.service
+  install -d "$pkgdir"/etc/consul.d
+}

Deleted: community-i686/consul.service
===================================================================
--- community-i686/consul.service	2017-05-12 16:15:08 UTC (rev 227867)
+++ community-i686/consul.service	2017-05-12 16:16:03 UTC (rev 227868)
@@ -1,14 +0,0 @@
-[Unit]
-Description=Consul Agent
-Requires=network-online.target
-After=network-online.target
-
-[Service]
-EnvironmentFile=-/etc/default/consul
-Restart=on-failure
-ExecStart=/usr/bin/consul agent $CONSUL_FLAGS -config-dir=/etc/consul.d
-ExecReload=/usr/bin/kill -HUP $MAINPID
-KillSignal=SIGINT
-
-[Install]
-WantedBy=multi-user.target

Copied: consul/repos/community-i686/consul.service (from rev 227867, consul/trunk/consul.service)
===================================================================
--- community-i686/consul.service	                        (rev 0)
+++ community-i686/consul.service	2017-05-12 16:16:03 UTC (rev 227868)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Consul Agent
+Requires=network-online.target
+After=network-online.target
+
+[Service]
+EnvironmentFile=-/etc/default/consul
+Restart=on-failure
+ExecStart=/usr/bin/consul agent $CONSUL_FLAGS -config-dir=/etc/consul.d
+ExecReload=/usr/bin/kill -HUP $MAINPID
+KillSignal=SIGINT
+
+[Install]
+WantedBy=multi-user.target

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-05-12 16:15:08 UTC (rev 227867)
+++ community-x86_64/PKGBUILD	2017-05-12 16:16:03 UTC (rev 227868)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=consul
-pkgver=0.8.2
-pkgrel=1
-pkgdesc="A tool for service discovery, monitoring and configuration."
-arch=('i686' 'x86_64')
-url="https://www.consul.io"
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/consul/archive/v$pkgver.tar.gz"
-        consul.service)
-sha512sums=('13bd28f0da488ee8fb3068515e2fddc7fe2d663c8848357b689332c44d757c1f3a017c604a68958f1fa22b5d6b58e3b09574a8fff9ab41d74ab6aec347b356d0'
-            '0f39434e73a3f5d79919e3fad28de834688765edebfce8793aa471f272af61d9cebd13237a7aeb4f8b89f1749a891a63cd710881d58a9590990deedd43dffdba')
-
-prepare() {
-  cd consul-$pkgver
-
-  mkdir build
-  mkdir -p .gopath/src/github.com/hashicorp
-  ln -sf "$PWD" .gopath/src/github.com/hashicorp/consul
-  export GOPATH="$PWD/.gopath"
-
-  sed -e "s/Version           = \"unknown\"/Version           = \"$pkgver\"/" \
-      -e "s/VersionPrerelease = \"unknown\"/VersionPrerelease = \"\"/" \
-      -e "s/release = \"dev\"/release = \"\"/" \
-      -i version/version.go
-}
-
-build() {
-  cd consul-$pkgver
-
-  go get github.com/mitchellh/cli
-  go build -o build/consul # -gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd consul-$pkgver
-  
-  install -Dm755 build/consul "$pkgdir"/usr/bin/consul
-  install -Dm644 "$srcdir"/consul.service "$pkgdir"/usr/lib/systemd/system/consul.service
-  install -d "$pkgdir"/etc/consul.d
-}

Copied: consul/repos/community-x86_64/PKGBUILD (from rev 227867, consul/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-05-12 16:16:03 UTC (rev 227868)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=consul
+pkgver=0.8.3
+pkgrel=1
+pkgdesc="A tool for service discovery, monitoring and configuration."
+arch=('i686' 'x86_64')
+url="https://www.consul.io"
+license=('MPL')
+depends=('glibc')
+makedepends=('git' 'go')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/consul/archive/v$pkgver.tar.gz"
+        consul.service)
+sha512sums=('84c72f5cdc9f82288b29b92e386324214bf71ef3952cbd3391f4c7c427cf5f385a3e472304cfb8c837bbfb009547ad3b736d6f66f0546a5f994d547d431bd4b8'
+            '0f39434e73a3f5d79919e3fad28de834688765edebfce8793aa471f272af61d9cebd13237a7aeb4f8b89f1749a891a63cd710881d58a9590990deedd43dffdba')
+
+prepare() {
+  cd consul-$pkgver
+
+  mkdir build
+  mkdir -p .gopath/src/github.com/hashicorp
+  ln -sf "$PWD" .gopath/src/github.com/hashicorp/consul
+  export GOPATH="$PWD/.gopath"
+
+  sed -e "s/Version           = \"unknown\"/Version           = \"$pkgver\"/" \
+      -e "s/VersionPrerelease = \"unknown\"/VersionPrerelease = \"\"/" \
+      -e "s/release = \"dev\"/release = \"\"/" \
+      -i version/version.go
+}
+
+build() {
+  cd consul-$pkgver
+
+  go get github.com/mitchellh/cli
+  go build -o build/consul # -gccgoflags "$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd consul-$pkgver
+  
+  install -Dm755 build/consul "$pkgdir"/usr/bin/consul
+  install -Dm644 "$srcdir"/consul.service "$pkgdir"/usr/lib/systemd/system/consul.service
+  install -d "$pkgdir"/etc/consul.d
+}

Deleted: community-x86_64/consul.service
===================================================================
--- community-x86_64/consul.service	2017-05-12 16:15:08 UTC (rev 227867)
+++ community-x86_64/consul.service	2017-05-12 16:16:03 UTC (rev 227868)
@@ -1,14 +0,0 @@
-[Unit]
-Description=Consul Agent
-Requires=network-online.target
-After=network-online.target
-
-[Service]
-EnvironmentFile=-/etc/default/consul
-Restart=on-failure
-ExecStart=/usr/bin/consul agent $CONSUL_FLAGS -config-dir=/etc/consul.d
-ExecReload=/usr/bin/kill -HUP $MAINPID
-KillSignal=SIGINT
-
-[Install]
-WantedBy=multi-user.target

Copied: consul/repos/community-x86_64/consul.service (from rev 227867, consul/trunk/consul.service)
===================================================================
--- community-x86_64/consul.service	                        (rev 0)
+++ community-x86_64/consul.service	2017-05-12 16:16:03 UTC (rev 227868)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Consul Agent
+Requires=network-online.target
+After=network-online.target
+
+[Service]
+EnvironmentFile=-/etc/default/consul
+Restart=on-failure
+ExecStart=/usr/bin/consul agent $CONSUL_FLAGS -config-dir=/etc/consul.d
+ExecReload=/usr/bin/kill -HUP $MAINPID
+KillSignal=SIGINT
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list