Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/adodb/
Date: Tue, 30 Jul 2019 22:32:05
Message-Id: 1564525913.4485ecec6600722f93b1f70216c5d0d9905a402c.whissi@gentoo
1 commit: 4485ecec6600722f93b1f70216c5d0d9905a402c
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 30 22:18:40 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 30 22:31:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4485ecec
7
8 dev-php/adodb: security cleanup
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/adodb/Manifest | 3 ---
14 dev-php/adodb/adodb-5.20.12.ebuild | 40 --------------------------------------
15 dev-php/adodb/adodb-5.20.13.ebuild | 40 --------------------------------------
16 dev-php/adodb/adodb-5.20.9.ebuild | 40 --------------------------------------
17 4 files changed, 123 deletions(-)
18
19 diff --git a/dev-php/adodb/Manifest b/dev-php/adodb/Manifest
20 index c92d3593bb8..94c42a34852 100644
21 --- a/dev-php/adodb/Manifest
22 +++ b/dev-php/adodb/Manifest
23 @@ -1,4 +1 @@
24 -DIST adodb-5.20.12.tar.gz 464962 BLAKE2B 51b1bec4c9bda427988848cd0ff810058e159c75946ea4d14d1ab639545f0c95a8a1a2b8193c8c0403e37fc2e3b858f97b255b9b615b65786d1593269e9da731 SHA512 ac8f36dba459bac15f16ecfd1ece69edc922e67b6aec3641a0c8ffc50c6b1c437ecce2e5652c31f2e472f7abefb3ac5a8a2bef188959007442799784ab764c1e
25 -DIST adodb-5.20.13.tar.gz 465568 BLAKE2B 7acfe36586fcf0e0291ce9dd6446c6f0922b9c7144b86d8eb0d78db98247fc9ac6aa9b1623822628096c2be0e0e9c554e9c3acbc05d9ddcda1b5c598b8b3652b SHA512 0824de6abf73a8e3fbdde30ca1455264a49e3b711e81c8232bd82c082c0d3f255aea35a167685cd01e80216622db1167c17a518d57b1ed260eaa498cab0b9fca
26 DIST adodb-5.20.14.tar.gz 465896 BLAKE2B acd8494141584b0c02c2e30aa59b3916ae811b8095ca724d22f44ed2cb1456b8e8afc7ff9af41e7476f4a93809e762c44a175fd3775b69654107813342b3a47a SHA512 fa9b764742f3edf15e79da7a34ca52b19f51454fa20bc963cce963cdd40f7e78671e993cd672a21e9917aa2440c63601fbf768b5259dccb64b458a5be6f4b0eb
27 -DIST adodb-5.20.9.tar.gz 464257 BLAKE2B 38a37e4a5b1ac86b37cbd164c79e2112c78fb22530a225d2cac4f916703d4c2bd300a47a214344d8ae9e5c94467ec34cab96ab36a10ad8dad581ec74c73ae111 SHA512 bc40113012c27b759ff35e7395404d1756720e9daef7df4d33147b9950e9ffd032274ccd8808fe303ba75feeaf727e2deb50fc6d79826db96ce568a70007f30f
28
29 diff --git a/dev-php/adodb/adodb-5.20.12.ebuild b/dev-php/adodb/adodb-5.20.12.ebuild
30 deleted file mode 100644
31 index f6b55b30633..00000000000
32 --- a/dev-php/adodb/adodb-5.20.12.ebuild
33 +++ /dev/null
34 @@ -1,40 +0,0 @@
35 -# Copyright 1999-2018 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -MY_PN="ADOdb"
41 -DESCRIPTION="Database abstraction layer for PHP"
42 -HOMEPAGE="https://github.com/ADOdb"
43 -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="BSD LGPL-2.1+"
46 -SLOT="0"
47 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
48 -IUSE=""
49 -
50 -# If you want to be picky, we should require that PHP be built with at
51 -# least one database driver enabled; otherwise adodb isn't going to be
52 -# able to do anything. But, the database USE flags for dev-lang/php are
53 -# a mess. What we would *like* to do is have a set of USE flags for
54 -# adodb that then propagate to PHP itself... for example, adodb[mysql]
55 -# could require php[mysql]. To do that would require that we duplicate
56 -# the database USE flag mess for adodb -- not desirable. Instead we punt
57 -# and let the user install adodb unconditionally. If he doesn't have
58 -# database support in PHP, it just won't work.
59 -RDEPEND="dev-lang/php:*"
60 -
61 -S="${WORKDIR}/${MY_PN}-${PV}"
62 -
63 -src_install() {
64 - DOCS="README.md docs/changelog*.md xmlschema*.dtd session/*.sql"
65 - DOCS+=" session/*.txt session/*.xml pear/auth_adodb_example.php"
66 - DOCS+=" pear/readme.Auth.txt"
67 -
68 - dodoc $DOCS
69 - rm -f $DOCS || die "failed to remove docs before installation"
70 -
71 - insinto "/usr/share/php/${PN}"
72 - doins *.php
73 - doins -r contrib datadict drivers lang pear perf replicate session xsl
74 -}
75
76 diff --git a/dev-php/adodb/adodb-5.20.13.ebuild b/dev-php/adodb/adodb-5.20.13.ebuild
77 deleted file mode 100644
78 index f6b55b30633..00000000000
79 --- a/dev-php/adodb/adodb-5.20.13.ebuild
80 +++ /dev/null
81 @@ -1,40 +0,0 @@
82 -# Copyright 1999-2018 Gentoo Foundation
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=6
86 -
87 -MY_PN="ADOdb"
88 -DESCRIPTION="Database abstraction layer for PHP"
89 -HOMEPAGE="https://github.com/ADOdb"
90 -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
91 -
92 -LICENSE="BSD LGPL-2.1+"
93 -SLOT="0"
94 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
95 -IUSE=""
96 -
97 -# If you want to be picky, we should require that PHP be built with at
98 -# least one database driver enabled; otherwise adodb isn't going to be
99 -# able to do anything. But, the database USE flags for dev-lang/php are
100 -# a mess. What we would *like* to do is have a set of USE flags for
101 -# adodb that then propagate to PHP itself... for example, adodb[mysql]
102 -# could require php[mysql]. To do that would require that we duplicate
103 -# the database USE flag mess for adodb -- not desirable. Instead we punt
104 -# and let the user install adodb unconditionally. If he doesn't have
105 -# database support in PHP, it just won't work.
106 -RDEPEND="dev-lang/php:*"
107 -
108 -S="${WORKDIR}/${MY_PN}-${PV}"
109 -
110 -src_install() {
111 - DOCS="README.md docs/changelog*.md xmlschema*.dtd session/*.sql"
112 - DOCS+=" session/*.txt session/*.xml pear/auth_adodb_example.php"
113 - DOCS+=" pear/readme.Auth.txt"
114 -
115 - dodoc $DOCS
116 - rm -f $DOCS || die "failed to remove docs before installation"
117 -
118 - insinto "/usr/share/php/${PN}"
119 - doins *.php
120 - doins -r contrib datadict drivers lang pear perf replicate session xsl
121 -}
122
123 diff --git a/dev-php/adodb/adodb-5.20.9.ebuild b/dev-php/adodb/adodb-5.20.9.ebuild
124 deleted file mode 100644
125 index b37e311bd85..00000000000
126 --- a/dev-php/adodb/adodb-5.20.9.ebuild
127 +++ /dev/null
128 @@ -1,40 +0,0 @@
129 -# Copyright 1999-2017 Gentoo Foundation
130 -# Distributed under the terms of the GNU General Public License v2
131 -
132 -EAPI=6
133 -
134 -MY_PN="ADOdb"
135 -DESCRIPTION="Database abstraction layer for PHP"
136 -HOMEPAGE="http://www.adodb.org/"
137 -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
138 -
139 -LICENSE="BSD LGPL-2.1"
140 -SLOT="0"
141 -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
142 -IUSE=""
143 -
144 -# If you want to be picky, we should require that PHP be built with at
145 -# least one database driver enabled; otherwise adodb isn't going to be
146 -# able to do anything. But, the database USE flags for dev-lang/php are
147 -# a mess. What we would *like* to do is have a set of USE flags for
148 -# adodb that then propagate to PHP itself... for example, adodb[mysql]
149 -# could require php[mysql]. To do that would require that we duplicate
150 -# the database USE flag mess for adodb -- not desirable. Instead we punt
151 -# and let the user install adodb unconditionally. If he doesn't have
152 -# database support in PHP, it just won't work.
153 -RDEPEND="dev-lang/php:*"
154 -
155 -S="${WORKDIR}/${MY_PN}-${PV}"
156 -
157 -src_install() {
158 - DOCS="README.md docs/changelog*.md xmlschema*.dtd session/*.sql"
159 - DOCS+=" session/*.txt session/*.xml pear/auth_adodb_example.php"
160 - DOCS+=" pear/readme.Auth.txt"
161 -
162 - dodoc $DOCS
163 - rm -f $DOCS || die "failed to remove docs before installation"
164 -
165 - insinto "/usr/share/php/${PN}"
166 - doins *.php
167 - doins -r contrib datadict drivers lang pear perf replicate session xsl
168 -}