diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-02-21 00:13:38 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-02-21 00:13:38 +0000 |
commit | 5329c4154ba0d54588a26f1b7f793b141b68ed2f (patch) | |
tree | e9656ae0f83d90fd19c8d2604ad837b357da32b6 /net-nds | |
parent | Add ~arm-linux keywords. (diff) | |
download | gentoo-2-5329c4154ba0d54588a26f1b7f793b141b68ed2f.tar.gz gentoo-2-5329c4154ba0d54588a26f1b7f793b141b68ed2f.tar.bz2 gentoo-2-5329c4154ba0d54588a26f1b7f793b141b68ed2f.zip |
Version bump, wrt bug #382989, add myself as proxy maintainer, reformat metadata
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-nds')
-rw-r--r-- | net-nds/shelldap/ChangeLog | 9 | ||||
-rw-r--r-- | net-nds/shelldap/metadata.xml | 26 | ||||
-rw-r--r-- | net-nds/shelldap/shelldap-0.7_p20130220.ebuild | 36 |
3 files changed, 60 insertions, 11 deletions
diff --git a/net-nds/shelldap/ChangeLog b/net-nds/shelldap/ChangeLog index 20fa1e521c97..d158fa71bbdb 100644 --- a/net-nds/shelldap/ChangeLog +++ b/net-nds/shelldap/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-nds/shelldap # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/shelldap/ChangeLog,v 1.3 2013/02/16 12:58:46 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/shelldap/ChangeLog,v 1.4 2013/02/21 00:13:38 pinkbyte Exp $ + +*shelldap-0.7_p20130220 (20 Feb 2013) + + 20 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> + +shelldap-0.7_p20130220.ebuild, metadata.xml: + Version bump, wrt bug #382989, add myself as proxy maintainer, reformat + metadata 16 Feb 2013; Pacho Ramos <pacho@gentoo.org> -shelldap-0.2_p20100615.ebuild, metadata.xml: diff --git a/net-nds/shelldap/metadata.xml b/net-nds/shelldap/metadata.xml index b71b919c09dc..bfad85b9c783 100644 --- a/net-nds/shelldap/metadata.xml +++ b/net-nds/shelldap/metadata.xml @@ -1,15 +1,21 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>proxy-maintainers</herd> -<maintainer> -<email>azamat.hackimov@gmail.com</email> -<name>Azamat Hackimov</name> -</maintainer> -<longdescription lang="en"> -A handy shell-like interface for browsing LDAP servers and editing their -content. It keeps command history, has sane autocompletes, credential caching, -site-wide and individual configs, and it's fun to say. -</longdescription> + <herd>proxy-maintainers</herd> + <maintainer> + <email>azamat.hackimov@gmail.com</email> + <name>Azamat Hackimov</name> + <description>Maintainer. Assign bugs to him</description> + </maintainer> + <maintainer> + <email>pinkbyte@gentoo.org</email> + <name>Sergey Popov</name> + <description>Proxy maintainer. CC him on bugs</description> + </maintainer> + <longdescription lang="en"> + A handy shell-like interface for browsing LDAP servers and editing their + content. It keeps command history, has sane autocompletes, credential caching, + site-wide and individual configs, and it's fun to say. + </longdescription> </pkgmetadata> diff --git a/net-nds/shelldap/shelldap-0.7_p20130220.ebuild b/net-nds/shelldap/shelldap-0.7_p20130220.ebuild new file mode 100644 index 000000000000..22e10459cec3 --- /dev/null +++ b/net-nds/shelldap/shelldap-0.7_p20130220.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/shelldap/shelldap-0.7_p20130220.ebuild,v 1.1 2013/02/21 00:13:38 pinkbyte Exp $ + +EAPI=5 + +REVISION="bf9d6fa1b1d4" + +DESCRIPTION="A handy shell-like interface for browsing LDAP servers and editing their content." +HOMEPAGE="http://projects.martini.nu/shelldap/" +SRC_URI="http://code.martini.nu/shelldap/archive/${REVISION}.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="dev-perl/Algorithm-Diff + dev-perl/perl-ldap + dev-perl/TermReadKey + dev-perl/Term-ReadLine-Gnu + dev-perl/Term-Shell + dev-perl/YAML-Syck + virtual/perl-Digest-MD5" + +S="${WORKDIR}/${PN}-${REVISION}" + +src_compile() { + pod2man --name "${PN}" < "${PN}" > "${PN}.1" || die 'creating manpage failed' +} + +src_install() { + doman "${PN}.1" + dobin "${PN}" +} |