dev-php/ca-bundle: bump to 1.1.2
authorTomas Mozes <hydrapolic@gmail.com>
Fri, 7 Sep 2018 11:11:05 +0000 (13:11 +0200)
committerThomas Deutschmann <whissi@gentoo.org>
Thu, 20 Sep 2018 12:00:11 +0000 (14:00 +0200)
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.10

dev-php/ca-bundle/Manifest
dev-php/ca-bundle/ca-bundle-1.1.2.ebuild [new file with mode: 0644]

index a2c9ffb29515e646af1736af7506eb4df60c0990..f359e245ab8650025c932cbbda1c80af640befd3 100644 (file)
@@ -1 +1,2 @@
 DIST ca-bundle-1.0.3.tar.gz 151659 BLAKE2B a8755af7041a1e093d06f6bf3bfdcd7461bd50ab5347f48285fb6e69d6e621c82c458c73625ed36d6745e91b0c7fabae37318da3674c47bb2813b78aa9483379 SHA512 e33629345d63121b7a6a46b0812afefad5adbc24fd5516eeb7471dd93b7e4126f144b6fc933b526796607fdc3fc9a99f5703188e15d905654d629591c555ad86
+DIST ca-bundle-1.1.2.tar.gz 129296 BLAKE2B 54912144510c7d2c09647540542cdaba24ae9ce1638c74d1f796bee7e82a7161c11ad8561aae6290c13c8e818acae55cfcab3d75d0572906632c6ca456376068 SHA512 4ab7ee419fe0a45b526fe985ecf87f2c8834538c21d008736b8daceec987caf87f525d60208639ade66c39d2fd3c774f54f0bf784cadbd5c81954e8df48ab058
diff --git a/dev-php/ca-bundle/ca-bundle-1.1.2.ebuild b/dev-php/ca-bundle/ca-bundle-1.1.2.ebuild
new file mode 100644 (file)
index 0000000..60dc4dd
--- /dev/null
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Find the system CA bundle or fall back to the Mozilla one"
+HOMEPAGE="https://github.com/composer/ca-bundle"
+SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+       dev-lang/php:*
+       dev-php/fedora-autoloader"
+
+src_install() {
+       insinto /usr/share/php/Composer/CaBundle
+       doins src/CaBundle.php "${FILESDIR}/autoload.php"
+       dodoc README.md
+}