diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2013-05-09 10:44:39 +0000 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2013-05-09 10:44:39 +0000 |
commit | 467a87e6ab05e219b6adf4942998fd58112a22ef (patch) | |
tree | c90a38126a9c2b6ec5893ed2719ac4ecd297e25c /app-admin | |
parent | extend DESCRIPTION field as proposed on bug 458528 by Jonas Stein (diff) | |
download | gentoo-2-467a87e6ab05e219b6adf4942998fd58112a22ef.tar.gz gentoo-2-467a87e6ab05e219b6adf4942998fd58112a22ef.tar.bz2 gentoo-2-467a87e6ab05e219b6adf4942998fd58112a22ef.zip |
Version bump. Fix bug 321114.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key D1BBFDA0)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/eselect-postgresql/ChangeLog | 10 | ||||
-rw-r--r-- | app-admin/eselect-postgresql/eselect-postgresql-1.1.1.ebuild | 38 |
2 files changed, 46 insertions, 2 deletions
diff --git a/app-admin/eselect-postgresql/ChangeLog b/app-admin/eselect-postgresql/ChangeLog index 2d9aa7309b41..e9423f151f67 100644 --- a/app-admin/eselect-postgresql/ChangeLog +++ b/app-admin/eselect-postgresql/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/eselect-postgresql -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-postgresql/ChangeLog,v 1.28 2012/05/12 18:14:45 aballier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-postgresql/ChangeLog,v 1.29 2013/05/09 10:44:39 titanofold Exp $ + +*eselect-postgresql-1.1.1 (09 May 2013) + + 09 May 2013; Aaron W. Swenson <titanofold@gentoo.org> + +eselect-postgresql-1.1.1.ebuild: + Version bump. Fix bug 321114. 12 May 2012; Alexis Ballier <aballier@gentoo.org> eselect-postgresql-1.0.10.ebuild: diff --git a/app-admin/eselect-postgresql/eselect-postgresql-1.1.1.ebuild b/app-admin/eselect-postgresql/eselect-postgresql-1.1.1.ebuild new file mode 100644 index 000000000000..6894858db2f3 --- /dev/null +++ b/app-admin/eselect-postgresql/eselect-postgresql-1.1.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-postgresql/eselect-postgresql-1.1.1.ebuild,v 1.1 2013/05/09 10:44:39 titanofold Exp $ + +EAPI="4" + +DESCRIPTION="Utility to select the default PostgreSQL slot" +HOMEPAGE="http://www.gentoo.org/" +SRC_URI="http://dev.gentoo.org/~titanofold/${P}.tbz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris" +IUSE="" + +RDEPEND="app-admin/eselect + !!dev-db/libpq" + +S="${WORKDIR}" + +src_install() { + keepdir /etc/eselect/postgresql + + insinto /usr/share/eselect/modules + doins postgresql.eselect + + dosym /usr/bin/eselect /usr/bin/postgresql-config +} + +pkg_postinst() { + ewarn "If you are updating from app-admin/eselect-postgresql-0.4 or older, run:" + ewarn + ewarn " eselect postgresql update" + ewarn + ewarn "To get your system in a proper state." + elog "You should set your desired PostgreSQL slot:" + elog " eselect postgresql list" + elog " eselect postgresql set <slot>" +} |