public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Devan Franchini" <twitch153@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/layman/
Date: Tue, 10 May 2016 01:29:34 +0000 (UTC)	[thread overview]
Message-ID: <1462840121.b204f541fb5151950f76b4070d7e95d58a27f731.twitch153@gentoo> (raw)

commit:     b204f541fb5151950f76b4070d7e95d58a27f731
Author:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
AuthorDate: Tue May 10 00:26:53 2016 +0000
Commit:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
CommitDate: Tue May 10 00:28:41 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b204f541

Version bump to 2.4.1

Package-Manager: portage-2.2.27

 app-portage/layman/Manifest            |  1 +
 app-portage/layman/layman-2.4.1.ebuild | 89 ++++++++++++++++++++++++++++++++++
 2 files changed, 90 insertions(+)

diff --git a/app-portage/layman/Manifest b/app-portage/layman/Manifest
index ffa4da6..416c82c 100644
--- a/app-portage/layman/Manifest
+++ b/app-portage/layman/Manifest
@@ -3,3 +3,4 @@ DIST layman-2.1.0.tar.gz 94150 SHA256 cb96306c84da1d49ff54a31f7511c62c859565361b
 DIST layman-2.2.0.tar.gz 116210 SHA256 4a10cfd3eb354e993886369995ae9b1243418e0370c6aabd4d0ef6c5b387b7a2 SHA512 34cac041d7b64274debdbc42cab079fd3bb3aee511ea9e80db726df0f828207d79a5262788483ced5cbf49924e3aa4f19fe21439c98dceea973d8f83473c2e41 WHIRLPOOL 8c5d3cbbfef35c6294dfac899cb42f49e0761745573721e38b7d6c9ac48031f95bbb961c9d8dd9d309e4672cc1e5b050107ba025a9f28127e5d7d6d9a73a6e9a
 DIST layman-2.3.0.tar.gz 119223 SHA256 76559b8e202c012d124deac01b92bbe70b550afe711144a3b1e301c5d8bbd0f2 SHA512 d110fb1781017d87e995098ecb48c4223347323d67534b584a393dc4354b761a6d960fd31e6e6787b5f37fa7e63b357c49486042c7cb527f78dd5beb5373627d WHIRLPOOL 76c82f08b18830e925ffd4c97b490753de2e7d0b3c71a82a0a75fd776ed3af84d2ba2fe06dab25e5e4d2ea400b0f0b66eda65f1f4eded0521ec579a1a0c1b17f
 DIST layman-2.4.0.tar.gz 130052 SHA256 0dd9dbcd05b5bf062139308cb812507b2c3310dd81f25c9cdc4c8f643b3f74c8 SHA512 011ac0e7dfed8415b875898ff1eecfe77ba5a68ccac208d8f5c693b9b880355ffef572490bb98ede62092bea1a84298bbd72e6c93a234fdfa319e96551e7eb07 WHIRLPOOL 0fdcd09ef4347f9450897237befd6fa73187a3e5ed0eff6b08345846ff270cd9751a3f38277f7b53baffb3b9a3e18e10f08ebe33c228ed7f7ccd01ce81d05a76
+DIST layman-2.4.1.tar.gz 130388 SHA256 545792a15a0a2514c79f1b3090aceef15e413c656f294b6ff84f8a36da7aa2da SHA512 bdb713d4c7d3773129b45a385068278958040759bb564e48cfda4dda9da5224ccaa7833fce3d06151ed1fecddbb6f1a059db6e71534d0e887dff12640af6c806 WHIRLPOOL b6ef18f8f3633e9bb2a08df620306441f8352174dc66f2bbb68613cff0796e0914f7008de4f185167815ba3267c3b63a4fe22d2bcd794f70cd78bc20e706d7d8

diff --git a/app-portage/layman/layman-2.4.1.ebuild b/app-portage/layman/layman-2.4.1.ebuild
new file mode 100644
index 0000000..79dcd8c
--- /dev/null
+++ b/app-portage/layman/layman-2.4.1.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
+PYTHON_REQ_USE="xml(+),sqlite?"
+
+inherit eutils distutils-r1 linux-info prefix
+
+DESCRIPTION="Tool to manage Gentoo overlays"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Layman"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+IUSE="bazaar cvs darcs +git gpg g-sorcery mercurial sqlite squashfs subversion sync-plugin-portage test"
+
+DEPEND="test? ( dev-vcs/subversion )
+	"
+
+RDEPEND="
+	bazaar? ( dev-vcs/bzr )
+	cvs? ( dev-vcs/cvs )
+	darcs? ( dev-vcs/darcs )
+	git? ( dev-vcs/git )
+	mercurial? ( dev-vcs/mercurial )
+	g-sorcery? ( app-portage/g-sorcery )
+	subversion? (
+		|| (
+			>=dev-vcs/subversion-1.5.4[http]
+			>=dev-vcs/subversion-1.5.4[webdav-neon]
+			>=dev-vcs/subversion-1.5.4[webdav-serf]
+		)
+	)
+	gpg? ( =dev-python/pyGPG-0.2 )
+	sync-plugin-portage?  ( >=sys-apps/portage-2.2.16[${PYTHON_USEDEP}] )
+	!sync-plugin-portage? ( sys-apps/portage[${PYTHON_USEDEP}] )
+	>=dev-python/ssl-fetch-0.4[${PYTHON_USEDEP}]
+	"
+
+layman_check_kernel_config() {
+	local CONFIG_CHECK
+	use squashfs && CONFIG_CHECK+=" ~BLK_DEV_LOOP ~SQUASHFS"
+	[[ -n ${CONFIG_CHECK} ]] && check_extra_config
+}
+
+pkg_pretend() {
+	layman_check_kernel_config
+}
+
+pkg_setup() {
+	layman_check_kernel_config
+}
+
+python_prepare_all()  {
+	python_setup
+	esetup.py setup_plugins
+	distutils-r1_python_prepare_all
+	eprefixify etc/layman.cfg layman/config.py
+}
+
+python_test() {
+	suite=layman/tests/external.py
+	PYTHONPATH="." "${PYTHON}" ${suite} || die "test suite '${suite}' failed"
+	unset suite
+}
+
+python_install_all() {
+	distutils-r1_python_install_all
+
+	insinto /etc/layman
+	doins etc/layman.cfg
+
+	doman doc/layman.8
+	dohtml doc/layman.8.html
+
+	keepdir /var/lib/layman
+	keepdir /etc/layman/overlays
+}
+
+pkg_postinst() {
+	# now run layman's update utility
+	einfo "Running layman-updater..."
+	"${EROOT}"/usr/bin/layman-updater
+	einfo
+}


             reply	other threads:[~2016-05-10  1:29 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-10  1:29 Devan Franchini [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-05-21  5:35 [gentoo-commits] repo/gentoo:master commit in: app-portage/layman/ Sam James
2023-05-21  5:35 Sam James
2023-02-01 15:23 Benda XU
2023-02-01 10:05 Benda XU
2022-10-18  3:34 Sam James
2022-10-01  1:33 Sam James
2022-10-01  1:02 Sam James
2022-04-27 21:57 Andreas K. Hüttel
2022-02-01 22:01 Craig Andrews
2021-09-14 14:15 Yixun Lan
2021-01-06 13:23 Fabian Groffen
2020-12-27 14:01 Fabian Groffen
2020-11-17 22:37 Brian Dolbec
2020-07-19 19:40 Brian Dolbec
2020-05-19  8:04 Andreas K. Hüttel
2020-05-08 18:12 Brian Dolbec
2020-05-08 17:15 Agostino Sarubbo
2020-05-08 17:10 Agostino Sarubbo
2020-05-08  9:36 Sergei Trofimovich
2020-05-07 19:37 Mart Raudsepp
2020-05-06  7:18 Sergei Trofimovich
2020-05-06  7:01 Sergei Trofimovich
2020-04-27 14:01 Mikle Kolyada
2020-04-24 23:53 Brian Dolbec
2020-04-24 21:41 Brian Dolbec
2020-04-18 17:55 Craig Andrews
2020-04-15 18:59 Mike Gilbert
2020-02-26 12:18 Michał Górny
2019-05-18 10:02 Michał Górny
2019-05-16  0:40 Anthony G. Basile
2019-01-15 18:58 Craig Andrews
2019-01-15 16:36 Craig Andrews
2018-10-16  9:18 Tobias Klausmann
2018-03-21 18:12 Michał Górny
2018-03-18 11:00 Sergei Trofimovich
2017-12-25 14:43 David Seifert
2017-05-11 21:57 Zac Medico
2017-04-29 11:39 Jeroen Roovers
2017-03-30  0:28 Matt Turner
2017-03-11 17:07 Agostino Sarubbo
2017-03-04 14:02 Agostino Sarubbo
2017-02-17  6:03 Markus Meier
2017-02-16 20:34 Michael Weber
2017-02-14 15:39 Agostino Sarubbo
2017-02-14 14:52 Agostino Sarubbo
2017-02-02  6:30 Patrick Lauer
2017-02-02  2:11 Brian Dolbec
2017-02-02  1:57 Brian Dolbec
2016-07-13  1:50 Mike Gilbert
2016-05-03  7:37 Brian Dolbec
2016-05-02 17:30 Brian Dolbec
2016-05-02  4:00 Devan Franchini
2016-03-23 21:23 Stephen Klimaszewski
2015-11-11  0:35 Devan Franchini
2015-11-11  0:35 Devan Franchini
2015-11-10 23:23 Devan Franchini
2015-10-16 21:10 Devan Franchini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1462840121.b204f541fb5151950f76b4070d7e95d58a27f731.twitch153@gentoo \
    --to=twitch153@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox