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: net-misc/autoupnp/
Date: Wed, 27 Jul 2011 18:49:43 +0000 (UTC)	[thread overview]
Message-ID: <2977f8053258da1b43beaf25fa4f6be194a2623b.mgorny@gentoo> (raw)

commit:     2977f8053258da1b43beaf25fa4f6be194a2623b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 27 18:50:52 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jul 27 18:50:52 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=2977f805

net-misc/autoupnp: Introduce a live ebuild for autoupnp.

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

---
 net-misc/autoupnp/Manifest             |   14 ++++++++
 net-misc/autoupnp/autoupnp-9999.ebuild |   52 ++++++++++++++++++++++++++++++++
 net-misc/autoupnp/metadata.xml         |   16 ++++++++++
 3 files changed, 82 insertions(+), 0 deletions(-)

diff --git a/net-misc/autoupnp/Manifest b/net-misc/autoupnp/Manifest
new file mode 100644
index 0000000..1aef863
--- /dev/null
+++ b/net-misc/autoupnp/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA256
+
+EBUILD autoupnp-9999.ebuild 900 RMD160 502c80eb505acfce988392de0aa2e899b60be593 SHA1 0ac0506422f94cace138d882c9ef56832df892be SHA256 24d9cf96e72318c1c112e02c5c8989904a8cc6cab387f3a6f1ac89ce06c5ba5b
+MISC metadata.xml 539 RMD160 3c6e22ccb9af265d63f9d40b8cfe6fb9d2bdd0aa SHA1 2f8730c12bc15f243483bf044a239b80efce4a2b SHA256 eb121bcefb309db28901da9a89fc598df902f1394be709863019830814b67970
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (GNU/Linux)
+
+iJwEAQEIAAYFAk4wXgwACgkQfXuS5UK5QB1lEgP/RLf2aTo8jBSVqlIT4N894aJU
+5GRkh9qAX2dRRr0zDTDNyxJ4lKK2SHVSjFecEJAbrzZY9oyJZQA+CoPuJQgX46Eb
+4PtqMIkAohEv1km5hsFNekKydJuShuoDwMW3snNBOKtO8mv9l4ocP4kuXZpjkeiZ
+tmubM2Rtvwm8Fzt5sg4=
+=gODv
+-----END PGP SIGNATURE-----

diff --git a/net-misc/autoupnp/autoupnp-9999.ebuild b/net-misc/autoupnp/autoupnp-9999.ebuild
new file mode 100644
index 0000000..6944071
--- /dev/null
+++ b/net-misc/autoupnp/autoupnp-9999.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+inherit autotools-utils
+
+#if LIVE
+EGIT_REPO_URI="git://github.com/mgorny/${PN}.git
+	http://github.com/mgorny/${PN}.git"
+inherit autotools git-2
+#endif
+
+DESCRIPTION="Automatic open port forwarder using UPnP"
+HOMEPAGE="https://github.com/mgorny/autoupnp/"
+SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libnotify"
+
+RDEPEND="net-libs/miniupnpc
+	libnotify? ( x11-libs/libnotify )"
+DEPEND="${RDEPEND}"
+
+DOCS=( README )
+
+#if LIVE
+KEYWORDS=
+SRC_URI=
+#endif
+
+src_prepare() {
+	autotools-utils_src_prepare
+#if LIVE
+	eautoreconf
+#endif
+}
+
+src_configure() {
+	myeconfargs=(
+		$(use_with libnotify)
+	)
+
+	autotools-utils_src_configure
+}
+
+src_install() {
+	autotools-utils_src_install
+	remove_libtool_files all
+}

diff --git a/net-misc/autoupnp/metadata.xml b/net-misc/autoupnp/metadata.xml
new file mode 100644
index 0000000..c5bf6c1
--- /dev/null
+++ b/net-misc/autoupnp/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>no-herd</herd>
+	<maintainer>
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
+	<upstream>
+		<maintainer status="active">
+			<email>mgorny@gentoo.org</email>
+			<name>Michał Górny</name>
+		</maintainer>
+		<bugs-to>http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20Linux&amp;component=Applications&amp;short_desc=net-misc/autoupnp:%20</bugs-to>
+	</upstream>
+</pkgmetadata>



             reply	other threads:[~2011-07-27 18:49 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-27 18:49 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-08-17 20:35 [gentoo-commits] dev/mgorny:master commit in: net-misc/autoupnp/ Michał Górny
2011-09-16 21:59 Michał Górny
2012-08-30  9:54 Michał Górny
2012-08-31  9:15 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=2977f8053258da1b43beaf25fa4f6be194a2623b.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