Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/fast_yaml/
Date: Sat, 31 Aug 2019 14:27:55
Message-Id: 1567261665.c381cbb5ee395e7f01ff395e3d1081efbb252b6e.hanno@gentoo
1 commit: c381cbb5ee395e7f01ff395e3d1081efbb252b6e
2 Author: Hanno <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 31 14:27:45 2019 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 31 14:27:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c381cbb5
7
8 dev-erlang/fast_yaml: Version bump.
9
10 Add upstream commit to avoid producing invalid yaml.
11 Ebuild provided by Andrey Tikhomirov in bug #626260.
12
13 Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
14 Package-Manager: Portage-2.3.74, Repoman-2.3.17
15
16 dev-erlang/fast_yaml/Manifest | 1 +
17 dev-erlang/fast_yaml/fast_yaml-1.0.20.ebuild | 28 ++++++++++++++++++++++++++++
18 2 files changed, 29 insertions(+)
19
20 diff --git a/dev-erlang/fast_yaml/Manifest b/dev-erlang/fast_yaml/Manifest
21 index c681c574367..9b4bcb81477 100644
22 --- a/dev-erlang/fast_yaml/Manifest
23 +++ b/dev-erlang/fast_yaml/Manifest
24 @@ -1,4 +1,5 @@
25 DIST fast_yaml-1.0.17.tar.gz 49925 BLAKE2B 654a8f6ed516fc851a78a360c5f57faa302b068dbb84f9f26f3b0b8204e2cd55569ca27699181415453de469e524348b0db990736647df41843070446a20c9de SHA512 596e834a63b9ca78eee9b5021c711fdac2d7bd148dbbd6b0c162ec87f94dc41ebf7c8cd3d86c8a2c94da07d0926d31601d63123103678d42905243bb86c5f4a4
26 +DIST fast_yaml-1.0.20.tar.gz 54476 BLAKE2B 553b433a4cbfa859b25f39e74766047f490cd11d327f73e948237fd4321e7a9f160656cb312b60fc1379c8e35f3c613ad76dc0a44a2f73b8ca09ce61a8e036e7 SHA512 583c36caf0dd492518b631bc4882530a12f83bc1de952aa8b053f4c3fb828be65d127954a5277b320a0ef28cf8b8df6db88e76b323f2774af061a9e9bd88e061
27 DIST fast_yaml-1.0.3.tar.gz 49351 BLAKE2B ef705ef36f3ab2e43ac434abcce58f8fc3e0f1b0c0cfa88596c9b34b76ece0a2277a5f97046c789176231010711f906d5ec961b2053622404418e6a6d9380778 SHA512 321de1c0ff830de8a556bd661e600a66bccd944d6503a87a02111bcfb0b23c8c60b128296e7bb07ea39f923a04ebc7cd15e33971ca6691f16a75340c0695aee9
28 DIST fast_yaml-1.0.5.tar.gz 49463 BLAKE2B d321ef3bbb4b51ad058b4c4125d7f53e65d5267fb0d3a6eedf2ab7b302d0b5cb9b1a2ac1cb60959ec74e8cc32684b6bf31f5247c26e61d810159d0b731541e96 SHA512 9d6b173f6086b2543273493cca460f161d16a4c3cfd8f84945a7040991fecd24a193bf0af47f3d0a326d2ebea3d46fcf5cfa0ff21607ee98e9a0bb6f2a535bab
29 DIST fast_yaml-1.0.6.tar.gz 49461 BLAKE2B e79acf46f9ab85fc99774d727d3d64dfbfb583eb3e9a5379e95bde44a3a3703a1ad8aa22d9629d11f2c4346c8b0136b8076b67a4bd70a6a39c576f2df81bcf68 SHA512 04a466ebac30ee08827c9ba6d18861867571eda599e68937bbc8c924dab2387444db1f02da3cbf493ef63f03bc73cb6de32a90ee54901d269b3230611ee9600e
30
31 diff --git a/dev-erlang/fast_yaml/fast_yaml-1.0.20.ebuild b/dev-erlang/fast_yaml/fast_yaml-1.0.20.ebuild
32 new file mode 100644
33 index 00000000000..5dfaaa97934
34 --- /dev/null
35 +++ b/dev-erlang/fast_yaml/fast_yaml-1.0.20.ebuild
36 @@ -0,0 +1,28 @@
37 +# Copyright 1999-2019 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=6
41 +
42 +inherit rebar
43 +
44 +DESCRIPTION="Fast Yaml native library for Erlang and Elixir"
45 +HOMEPAGE="https://github.com/processone/fast_yaml"
46 +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
47 + -> ${P}.tar.gz"
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
52 +
53 +DEPEND=">=dev-erlang/p1_utils-1.0.16
54 + >=dev-lang/erlang-18.0
55 + dev-libs/libyaml"
56 +RDEPEND="${DEPEND}"
57 +
58 +DOCS=( CHANGELOG.md README.md )
59 +
60 +# from upstream:
61 +# https://github.com/processone/fast_yaml/commit/e789f68895f71b7ad31057177810ca0161bf790e
62 +PATCHES=(
63 + "${FILESDIR}/${P}-dont-escape-simple-quote.patch"
64 +)