]> Pileus Git - ~andy/sunrise/commitdiff
Initial alpha commit of replacement for sunrise-commit
authorAlex Tarkovsky <alextarkovsky@gmail.org>
Thu, 5 Jul 2007 01:00:30 +0000 (01:00 +0000)
committerAlex Tarkovsky <alextarkovsky@gmail.org>
Thu, 5 Jul 2007 01:00:30 +0000 (01:00 +0000)
svn path=/sunrise/; revision=4155

app-portage/pusher/ChangeLog [new file with mode: 0644]
app-portage/pusher/Manifest [new file with mode: 0644]
app-portage/pusher/metadata.xml [new file with mode: 0644]
app-portage/pusher/pusher-0.1_alpha1.ebuild [new file with mode: 0644]

diff --git a/app-portage/pusher/ChangeLog b/app-portage/pusher/ChangeLog
new file mode 100644 (file)
index 0000000..955e2a8
--- /dev/null
@@ -0,0 +1,8 @@
+# ChangeLog for app-portage/pusher
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  05 Jul 2007; Alex Tarkovsky <alextarkovsky@gmail.com> +metadata.xml,
+  +pusher-0.1_alpha1.ebuild:
+  Initial alpha commit of replacement for sunrise-commit
+
diff --git a/app-portage/pusher/Manifest b/app-portage/pusher/Manifest
new file mode 100644 (file)
index 0000000..09ac99e
--- /dev/null
@@ -0,0 +1,4 @@
+DIST pusher-0.1_alpha1.tar.bz2 44533 RMD160 c0b5ade91cb1ff2972d07cbe49426e8cdd6b3890 SHA1 d423fd09c4462545019105d5adbf4c1eb5f91d88 SHA256 94fe41e94c799f27096b93aaca65ffc07b6f9b65b13234f5094f71d118f4e898
+EBUILD pusher-0.1_alpha1.ebuild 1137 RMD160 10e6b6e14a501900df7503b623b29e15e8efb2bb SHA1 259bcd1888c42b89f78cd1384cf48be8347bfe66 SHA256 70de9708a99efda8f405e4205765affde7a60d51bf829a5cb79e6052d9a053bf
+MISC ChangeLog 277 RMD160 353b2991e5c679c0cd79f4972cb0171a73022623 SHA1 9429ec4877031800a42fb21c5da2462efdd1ab45 SHA256 0bae119915eefc90682cc149df52ae295777153735965e1f1270f2c65c736d81
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/app-portage/pusher/metadata.xml b/app-portage/pusher/metadata.xml
new file mode 100644 (file)
index 0000000..7e32869
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>maintainer-wanted</herd>
+</pkgmetadata>
diff --git a/app-portage/pusher/pusher-0.1_alpha1.ebuild b/app-portage/pusher/pusher-0.1_alpha1.ebuild
new file mode 100644 (file)
index 0000000..6268d36
--- /dev/null
@@ -0,0 +1,39 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+NEED_PYTHON=2.4
+
+inherit distutils
+
+DESCRIPTION="Automates commit and QA procedures for Gentoo ebuild repositories"
+HOMEPAGE="http://gentooexperimental.org/~shillelagh/"
+SRC_URI="http://gentooexperimental.org/~shillelagh/${P}.tar.bz2"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc subversion" #"cvs doc git paludis pkgcore subversion"
+
+DEPEND=">=app-portage/gentoolkit-dev-0.2.6.6
+       >=sys-apps/portage-2.1
+       subversion? ( dev-python/pysvn )"
+       #cvs?        ( dev-util/cvs )
+       #git?        ( dev-util/git )
+       #paludis?    ( sys-apps/paludis )
+       #pkgcore?    ( sys-apps/pkgcore )
+RDEPEND="${DEPEND}"
+
+src_install() {
+       distutils_src_install
+       insinto /etc/pusher
+       doins etc/pusher.conf
+       use doc && dohtml -r doc/html/*
+}
+
+pkg_postinst() {
+       distutils_pkg_postinst
+       ewarn "This version is uber-alpha, so make sure you know how to use your revision"
+       ewarn "control client's revert features before you use Pusher. ;)"
+       einfo "Plug-ins for CVS, Git, Qualudis and Pcheck aren't implemented in this version."
+}