Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/lsyncd/files/, app-admin/lsyncd/, profiles/
Date: Mon, 10 Dec 2018 16:45:24
Message-Id: 1544460296.34324e533a69ce8347e3551ec50155213306b0d6.whissi@gentoo
1 commit: 34324e533a69ce8347e3551ec50155213306b0d6
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 10 14:59:53 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 10 16:44:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34324e53
7
8 app-admin/lsyncd: bump to v2.2.3
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 app-admin/lsyncd/Manifest | 1 +
14 app-admin/lsyncd/files/lsyncd-2.3.3-mandir.patch | 9 ++++++++
15 app-admin/lsyncd/lsyncd-2.2.3.ebuild | 28 ++++++++++++++++++++++++
16 profiles/package.mask | 4 ++++
17 4 files changed, 42 insertions(+)
18
19 diff --git a/app-admin/lsyncd/Manifest b/app-admin/lsyncd/Manifest
20 index bf5367effef..daef9d30145 100644
21 --- a/app-admin/lsyncd/Manifest
22 +++ b/app-admin/lsyncd/Manifest
23 @@ -1,3 +1,4 @@
24 DIST lsyncd-2.2.0.tar.gz 81034 BLAKE2B 26666d04729e31d60ec340c207d5c22b2f53571a146d3f548bf7a33061bcec59aabafae40242f79a971297780fb7de56b5ff1fbccdb4c2152878f1b318a058b9 SHA512 75a138c2e85c4c5a3d6b215cb8df1668e5ffb6c8099f79caf555369d12348e2bdff29c1b01d62613bddd5b5a67f2a44e2fe86412048bc622088912e3fa783e81
25 DIST lsyncd-2.2.1.tar.gz 81005 BLAKE2B 797c225b484139df53d3d1173d0cc3b4ba632a076e937902799247e422643f0bcefe22570d311afb4c8fb98151467a1ab624a97f728c851c02bc0dbc601f2238 SHA512 c07c322fb802911a2bb78221ff20ac1c0658cea27a23d34a95de45902211784d3bdc79c246ce0809e6167ddd20a3573c1ca6a81cabc46a29622a200c8d3ddfa5
26 DIST lsyncd-2.2.2.tar.gz 82231 BLAKE2B 44cb269e1b726595b4332471335dc2a600efa2ebd39d7857d9c0c4adebefed923f60b177511e9e06113a4ff3400e45a979315bcd61169a7a2b9945b1aa944a86 SHA512 489d4fc91787a53f1480749fce6a281406aedb7e3617cd5f383b30c47870b2a8a912317a3faee5ad5f6358c10a136a69e07ee854f753846be1e11023cea5fed0
27 +DIST lsyncd-2.2.3.tar.gz 85165 BLAKE2B 9b3ce9ad882f12a0cf800ca0418092807c5c30451fe273eae18486b2ab245fbdc77dee937983bf78f678e20448dda39771c4bca96d8efe010cc45d470a30eba3 SHA512 2193a342f8aa7d8cfb55378c9c59ca61d2d8e4026263fd6e6560c730c712cef1f189305a3f9bca58f5b9c9ffae5af12e1d75e5355d5bdae86a47ad9595b8169a
28
29 diff --git a/app-admin/lsyncd/files/lsyncd-2.3.3-mandir.patch b/app-admin/lsyncd/files/lsyncd-2.3.3-mandir.patch
30 new file mode 100644
31 index 00000000000..240ad6dce8f
32 --- /dev/null
33 +++ b/app-admin/lsyncd/files/lsyncd-2.3.3-mandir.patch
34 @@ -0,0 +1,9 @@
35 +--- a/CMakeLists.txt
36 ++++ b/CMakeLists.txt
37 +@@ -107,5 +107,5 @@ add_executable( lsyncd ${LSYNCD_SRC} )
38 + target_link_libraries( lsyncd ${LUA_LIBRARIES} )
39 +
40 + install( TARGETS lsyncd RUNTIME DESTINATION bin )
41 +-install( FILES doc/manpage/lsyncd.1 DESTINATION man )
42 ++install( FILES doc/manpage/lsyncd.1 DESTINATION share/man/man1 )
43 +
44
45 diff --git a/app-admin/lsyncd/lsyncd-2.2.3.ebuild b/app-admin/lsyncd/lsyncd-2.2.3.ebuild
46 new file mode 100644
47 index 00000000000..67ccfb4ab94
48 --- /dev/null
49 +++ b/app-admin/lsyncd/lsyncd-2.2.3.ebuild
50 @@ -0,0 +1,28 @@
51 +# Copyright 1999-2018 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI="6"
55 +
56 +CMAKE_IN_SOURCE_BUILD="YES_PLEASE_OMG"
57 +inherit cmake-utils
58 +
59 +DESCRIPTION="Live Syncing (Mirror) Daemon"
60 +HOMEPAGE="https://github.com/axkibe/lsyncd"
61 +SRC_URI="https://github.com/axkibe/lsyncd/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
62 +
63 +LICENSE="GPL-2"
64 +SLOT="0"
65 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 +
67 +CDEPEND=">=dev-lang/lua-5.2[deprecated]"
68 +DEPEND="${CDEPEND}
69 + app-text/asciidoc
70 + virtual/pkgconfig"
71 +RDEPEND="${CDEPEND}
72 + net-misc/rsync"
73 +
74 +PATCHES=(
75 + "${FILESDIR}"/${PN}-2.3.3-mandir.patch
76 +)
77 +
78 +S=${WORKDIR}/${PN}-release-${PV}
79
80 diff --git a/profiles/package.mask b/profiles/package.mask
81 index fcadb03e8e2..6b687d7e279 100644
82 --- a/profiles/package.mask
83 +++ b/profiles/package.mask
84 @@ -29,6 +29,10 @@
85
86 #--- END OF EXAMPLES ---
87
88 +# Thomas Deutschmann <whissi@g.o> (10 Dec 2018)
89 +# Requires >=dev-lang/lua-5.2 which is masked
90 +>=app-admin/lsyncd-2.2.3
91 +
92 # Hans de Graaff <graaff@g.o> (9 Dec 2018)
93 # Old component for Rails that is no longer used and no longer
94 # maintained upstream. Masked for removal in 30 days.