[arch-commits] Commit in packer-io/repos (4 files)

Christian Rebischke shibumi at archlinux.org
Sun Jul 16 19:56:42 UTC 2017


    Date: Sunday, July 16, 2017 @ 19:56:41
  Author: shibumi
Revision: 245416

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

Added:
  packer-io/repos/community-i686/
  packer-io/repos/community-i686/PKGBUILD
    (from rev 245415, packer-io/trunk/PKGBUILD)
  packer-io/repos/community-x86_64/
  packer-io/repos/community-x86_64/PKGBUILD
    (from rev 245415, packer-io/trunk/PKGBUILD)

---------------------------+
 community-i686/PKGBUILD   |   83 ++++++++++++++++++++++++++++++++++++++++++++
 community-x86_64/PKGBUILD |   83 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 166 insertions(+)

Copied: packer-io/repos/community-i686/PKGBUILD (from rev 245415, packer-io/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-07-16 19:56:41 UTC (rev 245416)
@@ -0,0 +1,83 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="tool for creating identical machine images for multiple platforms from a single source configuration"
+arch=('i686' 'x86_64')
+url="https://github.com/hashicorp/packer"
+license=('MPL')
+makedepends=('git' 'go')
+depends=('glibc')
+_go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
+_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
+_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
+_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
+_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
+_cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
+_prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
+_go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
+_speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
+_go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
+source=("git+https://github.com/hashicorp/packer#tag=v${pkgver}"
+        "git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit}"
+        "git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit}"
+        "git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit}"
+        "git+https://github.com/kardianos/osext#commit=${_osext_commit}"
+        "git+https://github.com/mitchellh/panicwrap#commit=${_panicwrap_commit}"
+        "git+https://github.com/mitchellh/cli#commit=${_cli_commit}"
+        "git+https://github.com/mitchellh/prefixedio#commit=${_prefixedio_commit}"
+        "git+https://github.com/armon/go-radix#commit=${_go_radix_commit}"
+        "git+https://github.com/bgentry/speakeasy#commit=${_speakeasy_commit}"
+        "git+https://github.com/mattn/go-isatty#commit=${_go_isatty_commit}")
+sha512sums=('SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP')
+
+
+prepare() {
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p "src/github.com/mitchellh"
+  mkdir -p "src/github.com/hashicorp"
+  mkdir -p "src/github.com/kardianos"
+  mkdir -p "src/github.com/armon"
+  mkdir -p "src/github.com/bgentry"
+  mkdir -p "src/github.com/mattn"
+  mv ${_pkgname} src/github.com/hashicorp
+  mv go-checkpoint src/github.com/hashicorp
+  mv go-cleanhttp src/github.com/hashicorp
+  mv go-uuid src/github.com/hashicorp
+  mv osext src/github.com/kardianos
+  mv panicwrap src/github.com/mitchellh
+  mv cli src/github.com/mitchellh
+  mv prefixedio src/github.com/mitchellh
+  mv go-radix src/github.com/armon
+  mv speakeasy src/github.com/bgentry
+  mv go-isatty src/github.com/mattn
+  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i "${srcdir}/src/github.com/hashicorp/${_pkgname}/Makefile"
+}
+build() {
+  cd "src/github.com/hashicorp/${_pkgname}"
+  make dev
+}
+
+check() {
+  cd "src/github.com/hashicorp/${_pkgname}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/bin/"
+  install -Dm755 packer "${pkgdir}/usr/bin/packer-io"
+}
+
+# vim:set et sw=2 ts=2 tw=79:

Copied: packer-io/repos/community-x86_64/PKGBUILD (from rev 245415, packer-io/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-07-16 19:56:41 UTC (rev 245416)
@@ -0,0 +1,83 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="tool for creating identical machine images for multiple platforms from a single source configuration"
+arch=('i686' 'x86_64')
+url="https://github.com/hashicorp/packer"
+license=('MPL')
+makedepends=('git' 'go')
+depends=('glibc')
+_go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
+_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
+_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
+_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
+_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
+_cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
+_prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
+_go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
+_speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
+_go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
+source=("git+https://github.com/hashicorp/packer#tag=v${pkgver}"
+        "git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit}"
+        "git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit}"
+        "git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit}"
+        "git+https://github.com/kardianos/osext#commit=${_osext_commit}"
+        "git+https://github.com/mitchellh/panicwrap#commit=${_panicwrap_commit}"
+        "git+https://github.com/mitchellh/cli#commit=${_cli_commit}"
+        "git+https://github.com/mitchellh/prefixedio#commit=${_prefixedio_commit}"
+        "git+https://github.com/armon/go-radix#commit=${_go_radix_commit}"
+        "git+https://github.com/bgentry/speakeasy#commit=${_speakeasy_commit}"
+        "git+https://github.com/mattn/go-isatty#commit=${_go_isatty_commit}")
+sha512sums=('SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP')
+
+
+prepare() {
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p "src/github.com/mitchellh"
+  mkdir -p "src/github.com/hashicorp"
+  mkdir -p "src/github.com/kardianos"
+  mkdir -p "src/github.com/armon"
+  mkdir -p "src/github.com/bgentry"
+  mkdir -p "src/github.com/mattn"
+  mv ${_pkgname} src/github.com/hashicorp
+  mv go-checkpoint src/github.com/hashicorp
+  mv go-cleanhttp src/github.com/hashicorp
+  mv go-uuid src/github.com/hashicorp
+  mv osext src/github.com/kardianos
+  mv panicwrap src/github.com/mitchellh
+  mv cli src/github.com/mitchellh
+  mv prefixedio src/github.com/mitchellh
+  mv go-radix src/github.com/armon
+  mv speakeasy src/github.com/bgentry
+  mv go-isatty src/github.com/mattn
+  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i "${srcdir}/src/github.com/hashicorp/${_pkgname}/Makefile"
+}
+build() {
+  cd "src/github.com/hashicorp/${_pkgname}"
+  make dev
+}
+
+check() {
+  cd "src/github.com/hashicorp/${_pkgname}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/bin/"
+  install -Dm755 packer "${pkgdir}/usr/bin/packer-io"
+}
+
+# vim:set et sw=2 ts=2 tw=79:



More information about the arch-commits mailing list