public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/mgorny:master commit in: app-portage/gentoopm/
Date: Sat, 13 Aug 2011 11:14:46 +0000 (UTC)	[thread overview]
Message-ID: <98c2b1c429eb6303db46a5d35334cc4b2b85963b.mgorny@gentoo> (raw)

commit:     98c2b1c429eb6303db46a5d35334cc4b2b85963b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 13 11:02:36 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 13 11:02:36 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=98c2b1c4

app-portage/gentoopm: Split out a live ebuild for 0.1.x branch.

(Portage version: 2.2.0_alpha50_p1/git/Linux x86_64, signed Manifest commit with key 42B9401D)

---
 app-portage/gentoopm/Manifest                 |   11 ++--
 app-portage/gentoopm/gentoopm-0.1.9999.ebuild |   62 +++++++++++++++++++++++++
 2 files changed, 68 insertions(+), 5 deletions(-)

diff --git a/app-portage/gentoopm/Manifest b/app-portage/gentoopm/Manifest
index 29b8de0..eed0bce 100644
--- a/app-portage/gentoopm/Manifest
+++ b/app-portage/gentoopm/Manifest
@@ -1,14 +1,15 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA256
 
+EBUILD gentoopm-0.1.9999.ebuild 1208 RMD160 d6940ec8ae5ffc737cf87f0963f261f54237de87 SHA1 400814990d1709eeaa0b48e78e425eba3dd7df74 SHA256 481410b66af97d91a4139680448a23b2548a77e27c0284c389d37378a7cb7118
 EBUILD gentoopm-9999.ebuild 1190 RMD160 f5878c467abd4c9082858c52352d2a57907251c6 SHA1 eff4f080d187e224014b24090d894515c9486b87 SHA256 76b6f726a19333e5001ac1476c6d5fa991f2aca41dca2b5a54de3cc7f159167f
 MISC metadata.xml 542 RMD160 3986c1014d81eb527d33ff9ca5943211dc0eb970 SHA1 f80b85311931154ea0200d909fac9d9c7a01d80f SHA256 bba59334d5eb281b718a527e576cd55805d8ec92114d1c8b11e51115801a1653
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.18 (GNU/Linux)
 
-iJwEAQEIAAYFAk5FmAgACgkQfXuS5UK5QB1yZgP9HC/oAEJLmh/2lHc9toemA6b/
-rYmp/oWoz+9yjvaaMNUERch44yv5xko71sM+iad8yRnQKwBiPbtUvBqPafA6oCHu
-CuNIQ5F8vYtn6OjMrZEmizjSlZoMwq6AJDlxfNqFT6+Z2y7gR+Yvdn7PLNiP4WoK
-fWQ+wYPRUwMf7MRezGQ=
-=hCGb
+iJwEAQEIAAYFAk5GWcwACgkQfXuS5UK5QB2/pgP/fIAot1XSVHe5KdtluUMIg8Jb
+YY411Fvy1tyv2cKs8S7U/CBbOXPoRiPY9TUTymR2ZwTvO+wXBSFai9qY3dculaLu
+DjYzZFP1PmMqXxve2+cbYGmmX1dIaqpif9tS/28pdG2NAy4RJ6LKtvOr9Tw2yzMZ
+m3rDtXwJlnQJv3ON5VU=
+=MziQ
 -----END PGP SIGNATURE-----

diff --git a/app-portage/gentoopm/gentoopm-0.1.9999.ebuild b/app-portage/gentoopm/gentoopm-0.1.9999.ebuild
new file mode 100644
index 0000000..7583178
--- /dev/null
+++ b/app-portage/gentoopm/gentoopm-0.1.9999.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=3
+
+PYTHON_DEPEND='*:2.6'
+SUPPORT_PYTHON_ABIS=1
+RESTRICT_PYTHON_ABIS='2.4 2.5'
+DISTUTILS_SRC_TEST=setup.py
+
+inherit base distutils
+
+#if LIVE
+EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/${PN}.git
+	http://git.overlays.gentoo.org/gitroot/proj/${PN}.git
+	git://github.com/mgorny/${PN}.git
+	http://github.com/mgorny/${PN}.git"
+EGIT_BRANCH=0.1.x
+inherit git-2
+#endif
+
+DESCRIPTION="A common interface to Gentoo package managers"
+HOMEPAGE="https://github.com/mgorny/gentoopm/"
+SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="|| ( >=sys-apps/portage-2.1.10.3
+		sys-apps/pkgcore
+		>=sys-apps/paludis-0.64.2[python-bindings] )"
+DEPEND="doc? ( dev-python/epydoc )"
+PDEPEND="app-admin/eselect-package-manager"
+
+#if LIVE
+KEYWORDS=
+SRC_URI=
+#endif
+
+src_prepare() {
+	base_src_prepare
+	distutils_src_prepare
+}
+
+src_compile() {
+	distutils_src_compile
+
+	if use doc; then
+		"$(PYTHON -2)" setup.py doc || die
+	fi
+}
+
+src_install() {
+	distutils_src_install
+
+	if use doc; then
+		dohtml -r doc/* || die
+	fi
+}



             reply	other threads:[~2011-08-13 11:14 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-13 11:14 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-12-10 21:07 [gentoo-commits] dev/mgorny:master commit in: app-portage/gentoopm/ Michał Górny
2012-11-02 17:07 Michał Górny
2012-10-26 21:35 Michał Górny
2012-10-14 21:38 Michał Górny
2012-10-05 21:17 Michał Górny
2012-08-28  9:27 Michał Górny
2012-06-01 18:31 Michał Górny
2012-05-02 14:21 Michał Górny
2011-11-14 21:30 Michał Górny
2011-08-12 21:15 Michał Górny
2011-08-12 15:01 Michał Górny
2011-07-18 12:31 Michał Górny
2011-07-18  6:41 Michał Górny
2011-07-15 10:54 Michał Górny
2011-07-14 17:14 Michał Górny
2011-07-10 12:54 Michał Górny
2011-07-03 14:54 Michał Górny
2011-07-01 17:33 Michał Górny
2011-07-01 13:21 Michał Górny

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=98c2b1c429eb6303db46a5d35334cc4b2b85963b.mgorny@gentoo \
    --to=mgorny@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