Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/mercurial/files/, dev-vcs/mercurial/
Date: Tue, 11 Dec 2018 10:50:28
Message-Id: 1544525415.0a2192f82e4497189a38da4f6cc2729d405cda82.polynomial-c@gentoo
1 commit: 0a2192f82e4497189a38da4f6cc2729d405cda82
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 11 10:46:03 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 11 10:50:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2192f8
7
8 dev-vcs/mercurial: Bump to version 4.8.1
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 dev-vcs/mercurial/Manifest | 1 +
14 .../files/mercurial-4.8.1-unbundle_zstd.patch | 15 +++
15 dev-vcs/mercurial/mercurial-4.8.1.ebuild | 145 +++++++++++++++++++++
16 3 files changed, 161 insertions(+)
17
18 diff --git a/dev-vcs/mercurial/Manifest b/dev-vcs/mercurial/Manifest
19 index ecbcc650dc1..82edb12aa70 100644
20 --- a/dev-vcs/mercurial/Manifest
21 +++ b/dev-vcs/mercurial/Manifest
22 @@ -2,3 +2,4 @@ DIST mercurial-4.5.2.tar.gz 5779915 BLAKE2B 9abc5a8bafc43bc8e930bb51aa2e57397cd5
23 DIST mercurial-4.6.2.tar.gz 6407989 BLAKE2B 22aa121b2544e3597f2ea4d3a7a80b3b8f5ca6f9de15326dbee555ca3d14b8a552042c4448aae17b1c015b4f302c3512c204f17a834b758f51fbcc2455ed4e6f SHA512 71afb9ed3f62b1b946563c55851dda1fc8b724afe82a4a253c7f4719ae9e1160d5f9644bed7fd27ee3a21d8e682352364fc9f47bafa552cd4cd7fac7c0d42bdd
24 DIST mercurial-4.7.1.tar.gz 6480135 BLAKE2B de34cdd34d5fa2a6f4e1f24730c99b5764b9ac15aef21284337924d13bd5b4b14684d729149c4b48bf8fde13679cf661d92da968943c3f04ea065729df42318c SHA512 04d3f97dd4a0f36c6f6d639d8eccc7e4f29b2dc211fa69e7fc17dae0eb954f2ddaaf04f70facc6b968a166db7c07ed80792575d7a27e80bc0c1a43fc38b5e536
25 DIST mercurial-4.7.2.tar.gz 6481684 BLAKE2B 1006e541b52148f44b14767a738f4add4d03c719bc6f96f3f245f6bfd401223b1e7444216304fba749b88611cd031cb14089d9938a5533477160226286dd401d SHA512 e8742e9555a6b57e96e61091757b4bcb574605c49082874bd4edb9114a70e5cb024c1360a75c24f1a9ae3bca3205316e6a264ae18d3c9946248bc1d2b042ad43
26 +DIST mercurial-4.8.1.tar.gz 6869733 BLAKE2B 754be4e004af2b62e7ea2cbb1bbe27d4c0f03039e9c4db5ac5e734cb2b13002d7d68a1e2794e2478ce49302f6cb90976bb43bca56a8db7b05eb4ead93a3a46de SHA512 a4485c22f9bb0bb752bf42941f613cb3542c66cbec5d7d49be2090ac544f5dca0f476e4535a56e3f4f4f5fc02fb12739e6d1c7b407264fc2ba4b19b0230b9f93
27
28 diff --git a/dev-vcs/mercurial/files/mercurial-4.8.1-unbundle_zstd.patch b/dev-vcs/mercurial/files/mercurial-4.8.1-unbundle_zstd.patch
29 new file mode 100644
30 index 00000000000..075645b2845
31 --- /dev/null
32 +++ b/dev-vcs/mercurial/files/mercurial-4.8.1-unbundle_zstd.patch
33 @@ -0,0 +1,15 @@
34 +--- mercurial-4.8.1/setup.py
35 ++++ mercurial-4.8.1/setup.py
36 +@@ -983,12 +983,6 @@
37 + ['hgext/fsmonitor/pywatchman/bser.c']),
38 + ]
39 +
40 +-sys.path.insert(0, 'contrib/python-zstandard')
41 +-import setup_zstd
42 +-extmodules.append(setup_zstd.get_c_extension(
43 +- name='mercurial.zstd',
44 +- root=os.path.abspath(os.path.dirname(__file__))))
45 +-
46 + try:
47 + from distutils import cygwinccompiler
48 +
49
50 diff --git a/dev-vcs/mercurial/mercurial-4.8.1.ebuild b/dev-vcs/mercurial/mercurial-4.8.1.ebuild
51 new file mode 100644
52 index 00000000000..db363dc02c1
53 --- /dev/null
54 +++ b/dev-vcs/mercurial/mercurial-4.8.1.ebuild
55 @@ -0,0 +1,145 @@
56 +# Copyright 1999-2018 Gentoo Authors
57 +# Distributed under the terms of the GNU General Public License v2
58 +
59 +EAPI=7
60 +
61 +PYTHON_COMPAT=( python2_7 )
62 +PYTHON_REQ_USE="threads"
63 +
64 +inherit bash-completion-r1 elisp-common eutils distutils-r1 flag-o-matic
65 +
66 +DESCRIPTION="Scalable distributed SCM"
67 +HOMEPAGE="https://www.mercurial-scm.org/"
68 +SRC_URI="https://www.mercurial-scm.org/release/${P}.tar.gz"
69 +
70 +LICENSE="GPL-2+"
71 +SLOT="0"
72 +KEYWORDS="~amd64 ~hppa ~ia64 ~mips ~ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
73 +IUSE="bugzilla emacs gpg test tk"
74 +
75 +RDEPEND="app-misc/ca-certificates
76 + dev-python/zstandard[${PYTHON_USEDEP}]
77 + bugzilla? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
78 + gpg? ( app-crypt/gnupg )
79 + tk? ( dev-lang/tk )"
80 +
81 +DEPEND="emacs? ( virtual/emacs )
82 + test? ( app-arch/unzip
83 + dev-python/pygments[${PYTHON_USEDEP}] )"
84 +
85 +SITEFILE="70${PN}-gentoo.el"
86 +
87 +PATCHES=(
88 + "${FILESDIR}/${PN}-3.0.1-po_fixes.patch"
89 + "${FILESDIR}/${PN}-4.8.1-unbundle_zstd.patch"
90 +)
91 +
92 +python_prepare_all() {
93 + # fix up logic that won't work in Gentoo Prefix (also won't outside in
94 + # certain cases), bug #362891
95 + sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die
96 +
97 + # Don't use bundled zstandard (#666972)
98 + rm -r contrib/python-zstandard || die
99 +
100 + distutils-r1_python_prepare_all
101 +}
102 +
103 +python_configure_all() {
104 + strip-flags -ftracer -ftree-vectorize
105 + # Note: make it impl-conditional if py3 is supported
106 + append-flags -fno-strict-aliasing
107 +
108 + "${PYTHON}" setup.py build_mo || die
109 +}
110 +
111 +python_compile_all() {
112 + rm -r contrib/win32 || die
113 + if use emacs; then
114 + cd contrib || die
115 + elisp-compile mercurial.el || die "elisp-compile failed!"
116 + fi
117 +}
118 +
119 +python_install_all() {
120 + distutils-r1_python_install_all
121 +
122 + newbashcomp contrib/bash_completion hg
123 +
124 + insinto /usr/share/zsh/site-functions
125 + newins contrib/zsh_completion _hg
126 +
127 + rm -f doc/*.?.txt
128 + dodoc CONTRIBUTORS
129 + cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/ || die
130 +
131 + dobin hgeditor
132 + dobin contrib/hgk
133 + python_foreach_impl python_doscript contrib/hg-ssh
134 +
135 + if use emacs; then
136 + elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!"
137 + elisp-site-file-install "${FILESDIR}"/${SITEFILE}
138 + fi
139 +
140 + local RM_CONTRIB=( hgk hg-ssh bash_completion zsh_completion wix plan9 *.el )
141 + for f in ${RM_CONTRIB[@]}; do
142 + rm -r contrib/${f} || die
143 + done
144 +
145 + dodoc -r contrib
146 + docompress -x /usr/share/doc/${PF}/contrib
147 + doman doc/*.?
148 +
149 + insinto /etc/mercurial/hgrc.d
150 + doins "${FILESDIR}/cacerts.rc"
151 +
152 + # symlink to system zstd
153 + local sitedir=$(python_get_sitedir)
154 + dosym ../zstd.so "${sitedir#${EPREFIX}}"/${PN}/zstd.so
155 +}
156 +
157 +src_test() {
158 + pushd tests &>/dev/null || die
159 + rm -rf *svn* # Subversion tests fail with 1.5
160 + rm -f test-archive* # Fails due to verbose tar output changes
161 + rm -f test-convert-baz* # GNU Arch baz
162 + rm -f test-convert-cvs* # CVS
163 + rm -f test-convert-darcs* # Darcs
164 + rm -f test-convert-git* # git
165 + rm -f test-convert-mtn* # monotone
166 + rm -f test-convert-tla* # GNU Arch tla
167 + #rm -f test-doctest* # doctest always fails with python 2.5.x
168 + rm -f test-largefiles* # tends to time out
169 +
170 + popd &>/dev/null || die
171 + distutils-r1_src_test
172 +}
173 +
174 +python_test() {
175 + local TEST_DIR
176 +
177 + rm -rf "${TMPDIR}"/test
178 + distutils_install_for_testing
179 + cd tests || die
180 + "${PYTHON}" run-tests.py --verbose \
181 + --tmpdir="${TMPDIR}"/test \
182 + --with-hg="${TEST_DIR}"/scripts/hg \
183 + || die "Tests fail with ${EPYTHON}"
184 +}
185 +
186 +pkg_postinst() {
187 + use emacs && elisp-site-regen
188 +
189 + elog "If you want to convert repositories from other tools using convert"
190 + elog "extension please install correct tool:"
191 + elog " dev-vcs/cvs"
192 + elog " dev-vcs/darcs"
193 + elog " dev-vcs/git"
194 + elog " dev-vcs/monotone"
195 + elog " dev-vcs/subversion"
196 +}
197 +
198 +pkg_postrm() {
199 + use emacs && elisp-site-regen
200 +}