git » go-1.20.git » commit 7b7f3d9

bpiotrowski adopted and moved the go package from [community] to [extra], against the will of the (then) two co-maintainers of the go package.

author Alexander Rødseth
2018-11-21 10:29:53 UTC
committer Alexander Rødseth
2018-11-21 10:29:53 UTC
parent 70480426d3ef5c57d1fccb476c0a8e9f99b65d11

bpiotrowski adopted and moved the go package from [community] to [extra], against the will of the (then) two co-maintainers of the go package.

He then proceeded to remove the list of maintainers and contributors from the top of the PKGBUILD.

The package was also split into "go" and "go-pie".

Now that the package is back in [community], I'm adding back the list of maintainers and contributors.

Also updated the URL to https:// instead of http://, combined two "rm" commands to a single command and added the missing license file to the go-pie package.

PKGBUILD +23 -11

diff --git a/PKGBUILD b/PKGBUILD
index 3b21bbc..5a54aa6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,27 @@
-# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
+# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
+# Maintainer: Pierre Neidhardt <ambrevar@gmail.com>
 # Maintainer: Morten Linderud <foxboron@archlinux.org>
+# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
+# Contributor: Vesa Kaihlavirta <vegai@iki.fi>
+# Contributor: Rémy Oudompheng <remy@archlinux.org>
+# Contributor: Andres Perera <andres87p gmail>
+# Contributor: Matthew Bauer <mjbauer95@gmail.com>
+# Contributor: Christian Himpel <chressie@gmail.com>
+# Contributor: Mike Rosset <mike.rosset@gmail.com>
+# Contributor: Daniel YC Lin <dlin.tw@gmail.com>
+# Contributor: John Luebs <jkluebs@gmail.com>
 
 pkgbase=go
 pkgname=(go go-pie)
 epoch=2
 pkgver=1.11.2
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
-url='http://golang.org/'
+url='https://golang.org/'
 license=(BSD)
 makedepends=(git go)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-        default-buildmode-pie.patch)
+source=("https://storage.googleapis.com/golang/go$pkgver.src.tar.gz"
+        'default-buildmode-pie.patch')
 sha256sums=('042fba357210816160341f1002440550e952eb12678f7c9e7e9d389437942550'
             '9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
 
@@ -24,10 +34,10 @@ export GOROOT_BOOTSTRAP=/usr/lib/go
 export GOCACHE=off
 
 prepare() {
-  cp -r $pkgbase ${pkgbase}-pie
+  cp -r $pkgbase $pkgbase-pie
 
-  cd ${pkgbase}-pie
-  patch -p1 -i "$srcdir"/default-buildmode-pie.patch
+  cd $pkgbase-pie
+  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
 }
 
 build() {
@@ -68,14 +78,14 @@ _package() {
   ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
   ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
 
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/go/LICENSE"
   install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
 
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap"
-  rm -rf "$pkgdir/usr/lib/go/pkg/tool/*/api"
+  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
 
   # TODO: Figure out if really needed
   rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
 }
 
 package_go() {
@@ -91,3 +101,5 @@ package_go-pie() {
 
   _package $pkgname
 }
+
+# vim: ts=2 sw=2 et