pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/lang go19, go110, go116, go117: remove
details: https://anonhg.NetBSD.org/pkgsrc/rev/bc04cc562ea5
branches: trunk
changeset: 386121:bc04cc562ea5
user: bsiegert <bsiegert%pkgsrc.org@localhost>
date: Sat Oct 01 11:25:51 2022 +0000
description:
go19, go110, go116, go117: remove
Go 1.9 and 1.10 are no longer useful because they do not support
module-based builds, which is most other packages now.
Go 1.16 and 1.17 are end of life.
ok to remove from gdt@ on tech-pkg@.
diffstat:
lang/Makefile | 6 +-
lang/go110/ALTERNATIVES | 4 -
lang/go110/DESCR | 10 -
lang/go110/Makefile | 106 -
lang/go110/PLIST | 8002 -------
lang/go110/PLIST.Linux | 2 -
lang/go110/PLIST.OpenBSD | 2 -
lang/go110/PLIST.SunOS | 2 -
lang/go110/distinfo | 11 -
lang/go110/patches/patch-misc_io_clangwrap.sh | 16 -
lang/go110/patches/patch-src_cmd_dist_util.go | 16 -
lang/go110/patches/patch-src_cmd_link_internal_ld_elf.go | 104 -
lang/go110/patches/patch-src_crypto_x509_root__bsd.go | 10 -
lang/go110/patches/patch-src_runtime_os__netbsd.go | 21 -
lang/go110/patches/patch-src_syscall_zsysnum__solaris__amd64.go | 14 -
lang/go116/ALTERNATIVES | 2 -
lang/go116/DESCR | 10 -
lang/go116/Makefile | 112 -
lang/go116/PLIST | 9787 ---------
lang/go116/PLIST.Darwin | 2 -
lang/go116/PLIST.SunOS | 2 -
lang/go116/distinfo | 10 -
lang/go116/patches/patch-misc_ios_clangwrap.sh | 13 -
lang/go116/patches/patch-src_cmd_dist_util.go | 16 -
lang/go116/patches/patch-src_crypto_x509_root__bsd.go | 12 -
lang/go116/patches/patch-src_crypto_x509_root__solaris.go | 21 -
lang/go116/patches/patch-src_syscall_zsysnum__solaris__amd64.go | 14 -
lang/go117/ALTERNATIVES | 2 -
lang/go117/DESCR | 10 -
lang/go117/Makefile | 125 -
lang/go117/PLIST | 10647 ----------
lang/go117/PLIST.Darwin | 2 -
lang/go117/PLIST.SunOS | 2 -
lang/go117/distinfo | 10 -
lang/go117/patches/patch-misc_ios_clangwrap.sh | 13 -
lang/go117/patches/patch-src_cmd_dist_util.go | 16 -
lang/go117/patches/patch-src_crypto_x509_root__bsd.go | 12 -
lang/go117/patches/patch-src_crypto_x509_root__solaris.go | 21 -
lang/go117/patches/patch-src_syscall_zsysnum__solaris__amd64.go | 14 -
lang/go19/ALTERNATIVES | 2 -
lang/go19/DESCR | 10 -
lang/go19/Makefile | 102 -
lang/go19/PLIST | 7485 -------
lang/go19/PLIST.Linux | 2 -
lang/go19/PLIST.SunOS | 2 -
lang/go19/distinfo | 11 -
lang/go19/patches/patch-misc_io_clangwrap.sh | 16 -
lang/go19/patches/patch-src_cmd_dist_util.go | 16 -
lang/go19/patches/patch-src_cmd_link_internal_ld_elf.go | 85 -
lang/go19/patches/patch-src_crypto_x509_root__bsd.go | 10 -
lang/go19/patches/patch-src_runtime_os__netbsd.go | 21 -
lang/go19/patches/patch-src_runtime_rt0__netbsd__arm.s | 13 -
52 files changed, 1 insertions(+), 36975 deletions(-)
diffs (truncated from 37197 to 300 lines):
diff -r f81383cd76e2 -r bc04cc562ea5 lang/Makefile
--- a/lang/Makefile Sat Oct 01 11:20:05 2022 +0000
+++ b/lang/Makefile Sat Oct 01 11:25:51 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.655 2022/09/02 17:03:34 wiz Exp $
+# $NetBSD: Makefile,v 1.656 2022/10/01 11:25:51 bsiegert Exp $
#
COMMENT= Programming languages
@@ -97,13 +97,9 @@
SUBDIR+= gnucobol
SUBDIR+= go
SUBDIR+= go-bin
-SUBDIR+= go110
-SUBDIR+= go116
-SUBDIR+= go117
SUBDIR+= go118
SUBDIR+= go119
SUBDIR+= go14
-SUBDIR+= go19
SUBDIR+= gpc
SUBDIR+= gprolog
SUBDIR+= guile18
diff -r f81383cd76e2 -r bc04cc562ea5 lang/go110/ALTERNATIVES
--- a/lang/go110/ALTERNATIVES Sat Oct 01 11:20:05 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-bin/go @PREFIX@/go110/bin/go
-bin/go110 @PREFIX@/go110/bin/go
-bin/gofmt @PREFIX@/go110/bin/gofmt
-bin/gofmt110 @PREFIX@/go110/bin/gofmt
diff -r f81383cd76e2 -r bc04cc562ea5 lang/go110/DESCR
--- a/lang/go110/DESCR Sat Oct 01 11:20:05 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-The Go programming language is an open source project to make
-programmers more productive.
-
-Go is expressive, concise, clean, and efficient. Its concurrency
-mechanisms make it easy to write programs that get the most out of
-multicore and networked machines, while its novel type system enables
-flexible and modular program construction. Go compiles quickly to
-machine code yet has the convenience of garbage collection and the power
-of run-time reflection. It's a fast, statically typed, compiled language
-that feels like a dynamically typed, interpreted language.
diff -r f81383cd76e2 -r bc04cc562ea5 lang/go110/Makefile
--- a/lang/go110/Makefile Sat Oct 01 11:20:05 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,106 +0,0 @@
-# $NetBSD: Makefile,v 1.9 2022/06/28 11:34:12 wiz Exp $
-
-PKGREVISION= 4
-.include "../../lang/go/version.mk"
-.include "../../lang/go/bootstrap.mk"
-
-DISTNAME= go${GO110_VERSION}.src
-PKGNAME= go110-${GO110_VERSION}
-CATEGORIES= lang
-MASTER_SITES= https://storage.googleapis.com/golang/
-
-MAINTAINER= bsiegert%NetBSD.org@localhost
-HOMEPAGE= https://golang.org/
-COMMENT= The Go programming language
-LICENSE= modified-bsd
-
-GOVERSSUFFIX= 110
-WRKSRC= ${WRKDIR}/go
-USE_TOOLS+= bash:run perl:run pax
-
-# uses ulimit -T
-# BUILD_DEPENDS+= bash>=4.2nb3:../../shells/bash
-
-# cgo compiles under TMPDIR
-TMPDIR?= /tmp
-BUILDLINK_PASSTHRU_DIRS+= ${TMPDIR}
-
-GOROOT_FINAL= ${PREFIX}/go${GOVERSSUFFIX}
-INSTALLATION_DIRS= bin go${GOVERSSUFFIX}
-
-REPLACE_BASH+= doc/articles/wiki/test.bash
-REPLACE_BASH+= doc/codewalk/run
-REPLACE_BASH+= lib/time/update.bash
-REPLACE_BASH+= misc/arm/a
-REPLACE_BASH+= misc/benchcmp
-REPLACE_BASH+= misc/cgo/fortran/test.bash
-REPLACE_BASH+= misc/cgo/testgodefs/test.bash
-REPLACE_BASH+= misc/cgo/testplugin/test.bash
-REPLACE_BASH+= misc/nacl/go_nacl_386_exec
-REPLACE_BASH+= misc/nacl/go_nacl_amd64p32_exec
-REPLACE_BASH+= misc/nacl/go_nacl_arm_exec
-REPLACE_BASH+= src/all.bash
-REPLACE_BASH+= src/androidtest.bash
-REPLACE_BASH+= src/bootstrap.bash
-REPLACE_BASH+= src/buildall.bash
-REPLACE_BASH+= src/clean.bash
-REPLACE_BASH+= src/cmd/go/mkalldocs.sh
-REPLACE_BASH+= src/cmd/vendor/github.com/google/pprof/test.sh
-REPLACE_BASH+= src/internal/trace/mkcanned.bash
-REPLACE_BASH+= src/iostest.bash
-REPLACE_BASH+= src/make.bash
-REPLACE_BASH+= src/naclmake.bash
-REPLACE_BASH+= src/nacltest.bash
-REPLACE_BASH+= src/race.bash
-REPLACE_BASH+= src/run.bash
-REPLACE_BASH+= src/runtime/mknacl.sh
-REPLACE_BASH+= src/syscall/mkall.sh
-REPLACE_BASH+= src/syscall/mkerrors.sh
-REPLACE_BASH+= src/syscall/mksysnum_plan9.sh
-
-REPLACE_PERL+= src/net/http/cgi/testdata/test.cgi
-REPLACE_PERL+= src/regexp/syntax/make_perl_groups.pl
-REPLACE_PERL+= src/syscall/*.pl
-REPLACE_PERL+= test/errchk
-
-# uses own linker, which does not support relro on NetBSD
-CHECK_RELRO_SKIP+= go${GOVERSSUFFIX}/bin/go
-CHECK_RELRO_SKIP+= go${GOVERSSUFFIX}/bin/gofmt
-CHECK_RELRO_SKIP+= go${GOVERSSUFFIX}/pkg/bootstrap/bin/asm
-CHECK_RELRO_SKIP+= go${GOVERSSUFFIX}/pkg/bootstrap/bin/compile
-CHECK_RELRO_SKIP+= go${GOVERSSUFFIX}/pkg/bootstrap/bin/link
-CHECK_RELRO_SKIP+= go${GOVERSSUFFIX}/pkg/bootstrap/bin/cgo
-# also does not support SSP at this time
-CHECK_SSP_SKIP= ${CHECK_RELRO_SKIP}
-
-# uses /bin/rc (for Plan 9)
-CHECK_INTERPRETER_SKIP+= go${GOVERSSUFFIX}/include/plan9/mklibc.rc
-CHECK_INTERPRETER_SKIP+= go${GOVERSSUFFIX}/src/all.rc
-CHECK_INTERPRETER_SKIP+= go${GOVERSSUFFIX}/src/clean.rc
-CHECK_INTERPRETER_SKIP+= go${GOVERSSUFFIX}/src/make.rc
-CHECK_INTERPRETER_SKIP+= go${GOVERSSUFFIX}/src/run.rc
-
-PLIST_VARS+= pty route
-
-.if ${OPSYS} != "SunOS"
-PLIST.pty= yes
-.endif
-
-.if ${OPSYS} != "Linux" && ${OPSYS} != "SunOS"
-PLIST.route= yes
-.endif
-
-do-build:
- cd ${WRKSRC}/src && env GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP:Q} GOROOT_FINAL=${GOROOT_FINAL:Q} ${GOOPT} ${BASH} ./make.bash
-# for RELRO build:
-# cd ${WRKSRC}/src && env GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP:Q} GOROOT_FINAL=${GOROOT_FINAL:Q} GO_LDFLAGS="-buildmode=pie" ${GOOPT} ${BASH} ./make.bash
-
-do-install:
- cd ${WRKSRC} && rm -rf .hgignore .hgtags pkg/obj
- cd ${WRKSRC} && pax -rw . ${DESTDIR}${GOROOT_FINAL}
- find ${DESTDIR}${GOROOT_FINAL} -name \*.orig -exec rm {} \;
-
-do-test:
- cd ${WRKSRC}/src && GOROOT=${WRKSRC} PATH=${WRKSRC}/bin:${PATH} ${GOOPT} ${BASH} run.bash --no-rebuild --banner ""
-
-.include "../../mk/bsd.pkg.mk"
diff -r f81383cd76e2 -r bc04cc562ea5 lang/go110/PLIST
--- a/lang/go110/PLIST Sat Oct 01 11:20:05 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,8002 +0,0 @@
-@comment $NetBSD: PLIST,v 1.3 2018/12/15 10:23:32 bsiegert Exp $
-go110/AUTHORS
-go110/CONTRIBUTING.md
-go110/CONTRIBUTORS
-go110/LICENSE
-go110/PATENTS
-go110/README.md
-go110/VERSION
-go110/api/README
-go110/api/except.txt
-go110/api/go1.1.txt
-go110/api/go1.10.txt
-go110/api/go1.2.txt
-go110/api/go1.3.txt
-go110/api/go1.4.txt
-go110/api/go1.5.txt
-go110/api/go1.6.txt
-go110/api/go1.7.txt
-go110/api/go1.8.txt
-go110/api/go1.9.txt
-go110/api/go1.txt
-go110/api/next.txt
-go110/bin/go
-go110/bin/gofmt
-go110/doc/articles/go_command.html
-go110/doc/articles/index.html
-go110/doc/articles/race_detector.html
-go110/doc/articles/wiki/edit.html
-go110/doc/articles/wiki/final-noclosure.go
-go110/doc/articles/wiki/final-noerror.go
-go110/doc/articles/wiki/final-parsetemplate.go
-go110/doc/articles/wiki/final-template.go
-go110/doc/articles/wiki/final-test.patch
-go110/doc/articles/wiki/final.go
-go110/doc/articles/wiki/get.go
-go110/doc/articles/wiki/http-sample.go
-go110/doc/articles/wiki/index.html
-go110/doc/articles/wiki/notemplate.go
-go110/doc/articles/wiki/part1-noerror.go
-go110/doc/articles/wiki/part1.go
-go110/doc/articles/wiki/part2.go
-go110/doc/articles/wiki/part3-errorhandling.go
-go110/doc/articles/wiki/part3.go
-go110/doc/articles/wiki/test.bash
-go110/doc/articles/wiki/test_Test.txt.good
-go110/doc/articles/wiki/test_edit.good
-go110/doc/articles/wiki/test_view.good
-go110/doc/articles/wiki/view.html
-go110/doc/asm.html
-go110/doc/cmd.html
-go110/doc/code.html
-go110/doc/codewalk/codewalk.css
-go110/doc/codewalk/codewalk.js
-go110/doc/codewalk/codewalk.xml
-go110/doc/codewalk/functions.xml
-go110/doc/codewalk/markov.go
-go110/doc/codewalk/markov.xml
-go110/doc/codewalk/pig.go
-go110/doc/codewalk/popout.png
-go110/doc/codewalk/run
-go110/doc/codewalk/sharemem.xml
-go110/doc/codewalk/urlpoll.go
-go110/doc/conduct.html
-go110/doc/contrib.html
-go110/doc/contribute.html
-go110/doc/debugging_with_gdb.html
-go110/doc/devel/pre_go1.html
-go110/doc/devel/release.html
-go110/doc/devel/weekly.html
-go110/doc/diagnostics.html
-go110/doc/docs.html
-go110/doc/editors.html
-go110/doc/effective_go.html
-go110/doc/gccgo_contribute.html
-go110/doc/gccgo_install.html
-go110/doc/go-logo-black.png
-go110/doc/go-logo-blue.png
-go110/doc/go-logo-white.png
-go110/doc/go1.1.html
-go110/doc/go1.10.html
-go110/doc/go1.2.html
-go110/doc/go1.3.html
-go110/doc/go1.4.html
-go110/doc/go1.5.html
-go110/doc/go1.6.html
-go110/doc/go1.7.html
-go110/doc/go1.8.html
-go110/doc/go1.9.html
-go110/doc/go1.html
-go110/doc/go1compat.html
-go110/doc/go_faq.html
-go110/doc/go_mem.html
-go110/doc/go_spec.html
-go110/doc/gopher/README
-go110/doc/gopher/appenginegopher.jpg
-go110/doc/gopher/appenginegophercolor.jpg
-go110/doc/gopher/appenginelogo.gif
-go110/doc/gopher/biplane.jpg
-go110/doc/gopher/bumper.png
-go110/doc/gopher/bumper192x108.png
-go110/doc/gopher/bumper320x180.png
-go110/doc/gopher/bumper480x270.png
-go110/doc/gopher/bumper640x360.png
-go110/doc/gopher/doc.png
-go110/doc/gopher/favicon.svg
-go110/doc/gopher/fiveyears.jpg
-go110/doc/gopher/frontpage.png
-go110/doc/gopher/gopherbw.png
-go110/doc/gopher/gophercolor.png
-go110/doc/gopher/gophercolor16x16.png
-go110/doc/gopher/help.png
-go110/doc/gopher/pencil/gopherhat.jpg
-go110/doc/gopher/pencil/gopherhelmet.jpg
-go110/doc/gopher/pencil/gophermega.jpg
-go110/doc/gopher/pencil/gopherrunning.jpg
-go110/doc/gopher/pencil/gopherswim.jpg
-go110/doc/gopher/pencil/gopherswrench.jpg
-go110/doc/gopher/pkg.png
-go110/doc/gopher/project.png
-go110/doc/gopher/ref.png
-go110/doc/gopher/run.png
-go110/doc/gopher/talks.png
-go110/doc/help.html
-go110/doc/ie.css
-go110/doc/install-source.html
-go110/doc/install.html
-go110/doc/play/fib.go
-go110/doc/play/hello.go
-go110/doc/play/life.go
-go110/doc/play/peano.go
-go110/doc/play/pi.go
-go110/doc/play/sieve.go
-go110/doc/play/solitaire.go
-go110/doc/play/tree.go
-go110/doc/progs/cgo1.go
-go110/doc/progs/cgo2.go
-go110/doc/progs/cgo3.go
-go110/doc/progs/cgo4.go
-go110/doc/progs/defer.go
-go110/doc/progs/defer2.go
-go110/doc/progs/eff_bytesize.go
Home |
Main Index |
Thread Index |
Old Index