Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-go/go-sqlite3/
Date: Mon, 16 May 2022 00:07:25
Message-Id: 1652659564.c78a5b604e4806bde714d41de87209ba5cb7e87f.zmedico@gentoo
1 commit: c78a5b604e4806bde714d41de87209ba5cb7e87f
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 00:04:39 2022 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 00:06:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c78a5b60
7
8 dev-go/go-sqlite3: treeclean
9
10 Closes: https://bugs.gentoo.org/844673
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 dev-go/go-sqlite3/Manifest | 2 --
14 .../go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild | 17 -----------
15 .../go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild | 34 ----------------------
16 dev-go/go-sqlite3/metadata.xml | 10 -------
17 profiles/package.deprecated | 5 ----
18 5 files changed, 68 deletions(-)
19
20 diff --git a/dev-go/go-sqlite3/Manifest b/dev-go/go-sqlite3/Manifest
21 deleted file mode 100644
22 index 606c5142d9d7..000000000000
23 --- a/dev-go/go-sqlite3/Manifest
24 +++ /dev/null
25 @@ -1,2 +0,0 @@
26 -DIST go-sqlite3-1.1.0_p20160131.tar.gz 1847546 BLAKE2B 84b7919ad14b6ac214d7ca414a63d6f73d89b97adbc6450c00165302ab84e54906608918f8d803551ceed237e9085fe104d31124d57712ff9ddf19e97d62cde8 SHA512 9596012111b23865191904b7b0817ddbd88fc61383a3dfcf737d3d1be95c1a1d57b779ffbb9fa83303245a992c56e427396ffccb759a440822fffa516cae0b3d
27 -DIST go-sqlite3-1.1.0_p20160307.tar.gz 1847839 BLAKE2B 1e01d313497ffed552093a0ee380a5d2d04a3c067dfaeab245bcea52bc6b1c64c2f1397ecabc43366039fcab2ea9133ae5a25f6c375d32bc50172757647c5466 SHA512 e4613f8c18c4f5c60b09facfd6f6c36e14029538eef6deef94d57d0c0aeeed86023f36ed0fb0b7e5340ecbaad4f9b5815c5182cc19f85f52349610caaa998665
28
29 diff --git a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild
30 deleted file mode 100644
31 index ab83da1830d2..000000000000
32 --- a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild
33 +++ /dev/null
34 @@ -1,17 +0,0 @@
35 -# Copyright 1999-2021 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -inherit golang-build golang-vcs-snapshot
40 -
41 -EGO_PN="github.com/mattn/go-sqlite3/..."
42 -EGIT_COMMIT="c5aee9649735e8dadac55eb968ccebd9fa29a881"
43 -ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
44 -KEYWORDS="~amd64"
45 -
46 -DESCRIPTION="Go sqlite3 driver using database/sql"
47 -HOMEPAGE="https://github.com/mattn/go-sqlite3"
48 -SRC_URI="${ARCHIVE_URI}"
49 -LICENSE="MIT"
50 -SLOT="0/${PVR}"
51 -IUSE=""
52
53 diff --git a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
54 deleted file mode 100644
55 index b610a062780c..000000000000
56 --- a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
57 +++ /dev/null
58 @@ -1,34 +0,0 @@
59 -# Copyright 1999-2021 Gentoo Authors
60 -# Distributed under the terms of the GNU General Public License v2
61 -
62 -EAPI=7
63 -inherit golang-build golang-vcs-snapshot
64 -
65 -EGO_PN="github.com/mattn/go-sqlite3/..."
66 -EGIT_COMMIT="10876d7dac65f02064c03d7372a2f1dfb90043fe"
67 -ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
68 -KEYWORDS="~amd64"
69 -
70 -DESCRIPTION="Go sqlite3 driver using database/sql"
71 -HOMEPAGE="https://github.com/mattn/go-sqlite3"
72 -SRC_URI="${ARCHIVE_URI}"
73 -LICENSE="MIT"
74 -SLOT="0/${PVR}"
75 -IUSE=""
76 -
77 -src_compile() {
78 - GOPATH="${S}" \
79 - go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" || die
80 -}
81 -
82 -src_install() {
83 - golang_install_pkgs
84 -}
85 -
86 -golang_install_pkgs() {
87 - insinto $(dirname "$(get_golibdir)/src/${EGO_PN%/*}")
88 - rm -rf "${S}"/src/${EGO_PN%/*}/.git*
89 - doins -r "${S}"/src/${EGO_PN%/*}
90 - insinto $(dirname "$(get_golibdir)/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}")
91 - doins -r "${S}"/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}{,.a}
92 -}
93
94 diff --git a/dev-go/go-sqlite3/metadata.xml b/dev-go/go-sqlite3/metadata.xml
95 deleted file mode 100644
96 index f0b790a855ec..000000000000
97 --- a/dev-go/go-sqlite3/metadata.xml
98 +++ /dev/null
99 @@ -1,10 +0,0 @@
100 -<?xml version="1.0" encoding="UTF-8"?>
101 -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
102 -<pkgmetadata>
103 - <maintainer type="person">
104 - <email>zmedico@g.o</email>
105 - </maintainer>
106 - <upstream>
107 - <remote-id type="github">mattn/go-sqlite3</remote-id>
108 - </upstream>
109 -</pkgmetadata>
110
111 diff --git a/profiles/package.deprecated b/profiles/package.deprecated
112 index b8ed2952a8d3..ffaa1783d770 100644
113 --- a/profiles/package.deprecated
114 +++ b/profiles/package.deprecated
115 @@ -91,8 +91,3 @@ gnome-base/gnome-vfs
116 # Andreas Sturmlechner <asturm@g.o> (2020-03-08)
117 # x11-libs/gtkglext is in the process of being removed, tracker bug #698950
118 x11-libs/gtkglext
119 -
120 -# Zac Medico <zmedico@g.o> (2019-12-06)
121 -# These golang libraries should be vendored either by upstream or via
122 -# the EGO_VENDOR variable.
123 -dev-go/go-sqlite3