Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuv/files/, dev-libs/libuv/
Date: Fri, 06 Jul 2018 11:59:15
Message-Id: 1530878329.7971221c99f4ce5d2b75c6553f0bcb4225dbdf80.jer@gentoo
1 commit: 7971221c99f4ce5d2b75c6553f0bcb4225dbdf80
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 6 11:58:49 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 6 11:58:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7971221c
7
8 dev-libs/libuv: Fix unexpected ABI change (bug #659872).
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 .../libuv/files/libuv-1.21.0-UV_FS_LCHOWN.patch | 32 ++++++++++++++++++++++
13 ...{libuv-1.21.0.ebuild => libuv-1.21.0-r1.ebuild} | 3 ++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-libs/libuv/files/libuv-1.21.0-UV_FS_LCHOWN.patch b/dev-libs/libuv/files/libuv-1.21.0-UV_FS_LCHOWN.patch
17 new file mode 100644
18 index 00000000000..edd996b70d8
19 --- /dev/null
20 +++ b/dev-libs/libuv/files/libuv-1.21.0-UV_FS_LCHOWN.patch
21 @@ -0,0 +1,32 @@
22 +diff --git a/docs/src/fs.rst b/docs/src/fs.rst
23 +index a390f1409..f383e5b10 100644
24 +--- a/docs/src/fs.rst
25 ++++ b/docs/src/fs.rst
26 +@@ -92,9 +92,9 @@ Data types
27 + UV_FS_READLINK,
28 + UV_FS_CHOWN,
29 + UV_FS_FCHOWN,
30 +- UV_FS_LCHOWN,
31 + UV_FS_REALPATH,
32 +- UV_FS_COPYFILE
33 ++ UV_FS_COPYFILE,
34 ++ UV_FS_LCHOWN
35 + } uv_fs_type;
36 +
37 + .. c:type:: uv_dirent_t
38 +diff --git a/include/uv.h b/include/uv.h
39 +index 91451ada7..efb7b61cf 100644
40 +--- a/include/uv.h
41 ++++ b/include/uv.h
42 +@@ -1141,9 +1141,9 @@ typedef enum {
43 + UV_FS_READLINK,
44 + UV_FS_CHOWN,
45 + UV_FS_FCHOWN,
46 +- UV_FS_LCHOWN,
47 + UV_FS_REALPATH,
48 +- UV_FS_COPYFILE
49 ++ UV_FS_COPYFILE,
50 ++ UV_FS_LCHOWN
51 + } uv_fs_type;
52 +
53 + /* uv_fs_t is a subclass of uv_req_t. */
54
55 diff --git a/dev-libs/libuv/libuv-1.21.0.ebuild b/dev-libs/libuv/libuv-1.21.0-r1.ebuild
56 similarity index 95%
57 rename from dev-libs/libuv/libuv-1.21.0.ebuild
58 rename to dev-libs/libuv/libuv-1.21.0-r1.ebuild
59 index 1edbef416b0..5a5b2d1a24a 100644
60 --- a/dev-libs/libuv/libuv-1.21.0.ebuild
61 +++ b/dev-libs/libuv/libuv-1.21.0-r1.ebuild
62 @@ -17,6 +17,9 @@ RESTRICT="test"
63
64 DEPEND="sys-devel/libtool
65 virtual/pkgconfig[${MULTILIB_USEDEP}]"
66 +PATCHES=(
67 + "${FILESDIR}"/${P}-UV_FS_LCHOWN.patch
68 +)
69
70 src_prepare() {
71 default