Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/
Date: Wed, 28 Mar 2018 07:57:51
Message-Id: 1522223859.8ff7e057a7d5f36b941a7a28a156f70d35783e6e.zmedico@gentoo
1 commit: 8ff7e057a7d5f36b941a7a28a156f70d35783e6e
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 28 07:50:10 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 28 07:57:39 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ff7e057
7
8 app-portage/repoman: version bump to 2.3.7
9
10 #552720 - allow https for metadata.dtd URI
11
12 Package-Manager: Portage-2.3.25_p1, Repoman-2.3.7
13
14 app-portage/repoman/Manifest | 1 +
15 app-portage/repoman/repoman-2.3.7.ebuild | 60 ++++++++++++++++++++++++++++++++
16 2 files changed, 61 insertions(+)
17
18 diff --git a/app-portage/repoman/Manifest b/app-portage/repoman/Manifest
19 index aa2827fc580..52f25ab072a 100644
20 --- a/app-portage/repoman/Manifest
21 +++ b/app-portage/repoman/Manifest
22 @@ -3,3 +3,4 @@ DIST repoman-2.3.0.tar.bz2 75285 BLAKE2B 980fadf2247869358f76f6708117b8a9591763e
23 DIST repoman-2.3.3.tar.bz2 78045 BLAKE2B 5c2e770af3ba0c93ce24c710fb32e8b9d937ad8dcb75cdd6461721163d012937c14745f248543bd2dafe154b649100aba1cb626c0de3bb47294d053bb19bd3a8 SHA512 17212c19b14817a8a004619dd56ad557457d45919da45edfb27538304e68187fe1104f0b6ccc2b29fa1709645a7a82c75676b118b20d79dc790b0eb2ebf5a2ce
24 DIST repoman-2.3.4.tar.bz2 78764 BLAKE2B 0fb6bd75463fe10dd41ab1fcdfd0857341dbe973e796f2f97e636df2c29dd633d7199eb22b4605b34d6e56624ac5a75f4783ff7119c421e2303aacf7adae4877 SHA512 1a434eea6361cc06ba3c27ccd31aa02875af1a577860490f8de666b0160370f09d1c46cea95d577163845e12c5672486b176c0009c32e735e16752d67bf4d96c
25 DIST repoman-2.3.6.tar.bz2 78961 BLAKE2B c11953ced4d6bcd5e6e6a5b2dacb8802446f3acfd1842854b33fa8c0a64fa636a0b278b4fd3010b7070a7e2f00ae841ea331925ca20175e7c7e571082195d3d1 SHA512 490078d4621073e448d037373617911093bc4c3262961c4da00f201f880069c0b70c019abd86c15954ff0c547b0ea49434ee97cd972c2baff82f7cfed1a987b3
26 +DIST repoman-2.3.7.tar.bz2 80514 BLAKE2B 9342b5be35523f1eb597c94ad33425fd9f1bc81cf7b48c0194d96d2afc2cc27962e9cfbea14492c5e16856c79ab6429988201b269ef0444c17c6d91c9c11feaa SHA512 9caeb06cfe55e38566154923b785c1e3053722b50d7423241950b73c810781d111848e64815001abe218e6073a96ca462debdc99acc05123987cf4d4be0a0420
27
28 diff --git a/app-portage/repoman/repoman-2.3.7.ebuild b/app-portage/repoman/repoman-2.3.7.ebuild
29 new file mode 100644
30 index 00000000000..51f20a852af
31 --- /dev/null
32 +++ b/app-portage/repoman/repoman-2.3.7.ebuild
33 @@ -0,0 +1,60 @@
34 +# Copyright 1999-2018 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
40 +PYTHON_REQ_USE='bzip2(+)'
41 +
42 +inherit distutils-r1
43 +
44 +if [[ ${PV} == *9999 ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git"
47 + S="${WORKDIR}/${P}/repoman"
48 +else
49 + SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2"
50 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +fi
52 +
53 +DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"
54 +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"
55 +
56 +LICENSE="GPL-2"
57 +SLOT="0"
58 +IUSE=""
59 +
60 +RDEPEND="
61 + >=sys-apps/portage-2.3.25[${PYTHON_USEDEP}]
62 + >=dev-python/lxml-3.6.0[${PYTHON_USEDEP}]
63 +"
64 +DEPEND="${RDEPEND}"
65 +
66 +python_test() {
67 + esetup.py test
68 +}
69 +
70 +python_install() {
71 + # Install sbin scripts to bindir for python-exec linking
72 + # they will be relocated in pkg_preinst()
73 + distutils-r1_python_install \
74 + --system-prefix="${EPREFIX}/usr" \
75 + --bindir="$(python_get_scriptdir)" \
76 + --docdir="${EPREFIX}/usr/share/doc/${PF}" \
77 + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
78 + --sbindir="$(python_get_scriptdir)" \
79 + --sysconfdir="${EPREFIX}/etc" \
80 + "${@}"
81 +}
82 +
83 +pkg_postinst() {
84 + einfo ""
85 + einfo "This release of repoman is from the new portage/repoman split"
86 + einfo "release code base."
87 + einfo "This new repoman code base is still being developed. So its API's"
88 + einfo "are not to be considered stable and are subject to change."
89 + einfo "The code released has been tested and considered ready for use."
90 + einfo "This however does not guarantee it to be completely bug free."
91 + einfo "Please report any bugs you may encounter."
92 + einfo ""
93 +}