summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen de Groot <yngwin@gentoo.org>2008-11-07 21:48:39 +0000
committerBen de Groot <yngwin@gentoo.org>2008-11-07 21:48:39 +0000
commit26bccdf47d02580d1489eb94a4c2f2ce8acb1871 (patch)
tree89bc4ba4ed786f8044dc3c5b347b692551fdf9a4 /app-text
parentRemoving x11-themes/lxappearance which moved to lxde-base (diff)
downloadgentoo-2-26bccdf47d02580d1489eb94a4c2f2ce8acb1871.tar.gz
gentoo-2-26bccdf47d02580d1489eb94a4c2f2ce8acb1871.tar.bz2
gentoo-2-26bccdf47d02580d1489eb94a4c2f2ce8acb1871.zip
Version bump. Drop previous version. 2.12 is next stable candidate.
(Portage version: 2.2_rc13/cvs/Linux 2.6.26-hh3 i686)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/wgetpaste/ChangeLog8
-rw-r--r--app-text/wgetpaste/wgetpaste-2.12.ebuild (renamed from app-text/wgetpaste/wgetpaste-2.11.ebuild)20
2 files changed, 26 insertions, 2 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog
index 3b0faa58e8fe..8a0dbb15965c 100644
--- a/app-text/wgetpaste/ChangeLog
+++ b/app-text/wgetpaste/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-text/wgetpaste
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.77 2008/08/16 19:59:57 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.78 2008/11/07 21:48:39 yngwin Exp $
+
+*wgetpaste-2.12 (07 Nov 2008)
+
+ 07 Nov 2008; Ben de Groot <yngwin@gentoo.org> -wgetpaste-2.11.ebuild,
+ +wgetpaste-2.12.ebuild:
+ Version bump. Drop previous version. 2.12 is next stable candidate.
*wgetpaste-2.11 (16 Aug 2008)
diff --git a/app-text/wgetpaste/wgetpaste-2.11.ebuild b/app-text/wgetpaste/wgetpaste-2.12.ebuild
index 847a46cae633..c938f2a9c1f6 100644
--- a/app-text/wgetpaste/wgetpaste-2.11.ebuild
+++ b/app-text/wgetpaste/wgetpaste-2.12.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.11.ebuild,v 1.1 2008/08/16 19:59:57 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.12.ebuild,v 1.1 2008/11/07 21:48:39 yngwin Exp $
DESCRIPTION="Command-line interface to various pastebins"
HOMEPAGE="http://wgetpaste.zlin.dk/"
@@ -19,3 +19,21 @@ S=${WORKDIR}
src_install() {
newbin ${P} ${PN}
}
+
+pkg_postinst() {
+ local f oldfiles=()
+ for f in "${ROOT}"etc/wgetpaste{,.d/*.bash}; do
+ oldfiles+=("${f}")
+ done
+
+ if [[ -n ${oldfiles[@]} ]]; then
+ ewarn "The config files for wgetpaste have changed to *.conf."
+ ewarn
+ for f in "${oldfiles[@]}"; do
+ ewarn "Please move ${f} to ${f%.bash}.conf"
+ done
+ ewarn
+ ewarn "Users with personal config files will need to do the same for"
+ ewarn "~/.wgetpaste and ~/.wgetpaste.d/*.bash."
+ fi
+}