* [gentoo-commits] gentoo-x86 commit in net-irc/quassel: quassel-0.7.3.ebuild ChangeLog
@ 2011-09-08 19:22 Patrick Lauer (patrick)
0 siblings, 0 replies; 2+ messages in thread
From: Patrick Lauer (patrick) @ 2011-09-08 19:22 UTC (permalink / raw
To: gentoo-commits
patrick 11/09/08 19:22:26
Modified: ChangeLog
Added: quassel-0.7.3.ebuild
Log:
Bump
(Portage version: 2.2.0_alpha54/cvs/Linux x86_64)
Revision Changes Path
1.132 net-irc/quassel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/ChangeLog?r1=1.131&r2=1.132
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog 19 Aug 2011 11:43:49 -0000 1.131
+++ ChangeLog 8 Sep 2011 19:22:26 -0000 1.132
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/quassel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v 1.131 2011/08/19 11:43:49 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v 1.132 2011/09/08 19:22:26 patrick Exp $
+
+*quassel-0.7.3 (08 Sep 2011)
+
+ 08 Sep 2011; Patrick Lauer <patrick@gentoo.org> +quassel-0.7.3.ebuild:
+ Bump
19 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> files/quasselcore.init:
Fix initscript wrt ipv6. Patch by Diego (flameeyes). Fixes bug #379861.
1.1 net-irc/quassel/quassel-0.7.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild?rev=1.1&content-type=text/plain
Index: quassel-0.7.3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild,v 1.1 2011/09/08 19:22:26 patrick Exp $
EAPI=4
EGIT_REPO_URI="git://git.quassel-irc.org/quassel.git"
EGIT_BRANCH="master"
[[ "${PV}" == "9999" ]] && GIT_ECLASS="git-2"
QT_MINIMAL="4.6.0"
KDE_MINIMAL="4.4"
inherit cmake-utils eutils versionator ${GIT_ECLASS}
DESCRIPTION="Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity."
HOMEPAGE="http://quassel-irc.org/"
[[ "${PV}" == "9999" ]] || SRC_URI="http://quassel-irc.org/pub/${P/_/-}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~sparc-solaris"
SLOT="0"
IUSE="ayatana crypt dbus debug kde monolithic phonon postgres +server +ssl webkit X"
SERVER_RDEPEND="
crypt? (
app-crypt/qca:2
app-crypt/qca-ossl
)
!postgres? ( >=x11-libs/qt-sql-${QT_MINIMAL}:4[sqlite] dev-db/sqlite[threadsafe,-secure-delete] )
postgres? ( >=x11-libs/qt-sql-${QT_MINIMAL}:4[postgres] )
>=x11-libs/qt-script-${QT_MINIMAL}:4
"
GUI_RDEPEND="
>=x11-libs/qt-gui-${QT_MINIMAL}:4
ayatana? ( dev-libs/libindicate-qt )
dbus? (
>=x11-libs/qt-dbus-${QT_MINIMAL}:4
dev-libs/libdbusmenu-qt
)
kde? (
>=kde-base/kdelibs-${KDE_MINIMAL}
>=kde-base/oxygen-icons-${KDE_MINIMAL}
ayatana? ( kde-misc/plasma-widget-message-indicator )
)
phonon? ( || ( media-libs/phonon >=x11-libs/qt-phonon-${QT_MINIMAL} ) )
webkit? ( >=x11-libs/qt-webkit-${QT_MINIMAL}:4 )
"
RDEPEND="
>=x11-libs/qt-core-${QT_MINIMAL}:4[ssl?]
monolithic? (
${SERVER_RDEPEND}
${GUI_RDEPEND}
)
!monolithic? (
server? ( ${SERVER_RDEPEND} )
X? ( ${GUI_RDEPEND} )
)
"
DEPEND="${RDEPEND}"
DOCS="AUTHORS ChangeLog README"
S="${WORKDIR}/${P/_/-}"
REQUIRED_USE="
|| ( X server monolithic )
crypt? ( || ( server monolithic ) )
postgres? ( || ( server monolithic ) )
kde? ( || ( X monolithic ) )
phonon? ( || ( X monolithic ) )
dbus? ( || ( X monolithic ) )
ayatana? ( || ( X monolithic ) )
webkit? ( || ( X monolithic ) )
"
pkg_setup() {
if use server; then
QUASSEL_DIR=/var/lib/${PN}
QUASSEL_USER=${PN}
# create quassel:quassel user
enewgroup "${QUASSEL_USER}"
enewuser "${QUASSEL_USER}" -1 -1 "${QUASSEL_DIR}" "${QUASSEL_USER}"
fi
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with ayatana LIBINDICATE)
$(cmake-utils_use_want X QTCLIENT)
$(cmake-utils_use_want server CORE)
$(cmake-utils_use_want monolithic MONO)
$(cmake-utils_use_with webkit)
$(cmake-utils_use_with phonon)
$(cmake-utils_use_with kde)
$(cmake-utils_use_with dbus)
$(cmake-utils_use_with ssl OPENSSL)
$(cmake-utils_use_with !kde OXYGEN)
$(cmake-utils_use_with crypt)
"-DEMBED_DATA=OFF"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
if use server ; then
# prepare folders in /var/
keepdir "${QUASSEL_DIR}"
fowners "${QUASSEL_USER}":"${QUASSEL_USER}" "${QUASSEL_DIR}"
# init scripts
newinitd "${FILESDIR}"/quasselcore.init quasselcore || die "newinitd failed"
newconfd "${FILESDIR}"/quasselcore.conf quasselcore || die "newconfd failed"
# logrotate
insinto /etc/logrotate.d
newins "${FILESDIR}/quassel.logrotate" quassel || die "newins failed"
fi
}
pkg_postinst() {
if use monolithic && use ssl ; then
elog "Information on how to enable SSL support for client/core connections"
elog "is available at http://bugs.quassel-irc.org/wiki/quassel-irc."
fi
if use server; then
einfo "If you want to generate SSL certificate remember to run:"
einfo " emerge --config =${CATEGORY}/${PF}"
fi
# temporary info mesage
if use server && [[ $(get_version_component_range 2 ${REPLACING_VERSIONS}) -lt 7 ]]; then
echo
ewarn "Please note that all configuration moved from"
ewarn "/home/\${QUASSEL_USER}/.config/quassel-irc.org/"
ewarn "to: ${QUASSEL_DIR}."
echo
ewarn "For migration, stop the core, move quasselcore files (pretty much"
ewarn "everything apart from quasselclient.conf and settings.qss) into"
ewarn "new location and then start server again."
fi
}
pkg_config() {
if use server && use ssl; then
# generate the pem file only when it does not already exist
if [ ! -f "${QUASSEL_DIR}/quasselCert.pem" ]; then
einfo "Generating QUASSEL SSL certificate to: \"${QUASSEL_DIR}/quasselCert.pem\""
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-keyout "${QUASSEL_DIR}/quasselCert.pem" \
-out "${QUASSEL_DIR}/quasselCert.pem"
# permissions for the key
chown ${QUASSEL_USER}:${QUASSEL_USER} "${QUASSEL_DIR}/quasselCert.pem"
chmod 400 "${QUASSEL_DIR}/quasselCert.pem"
else
einfo "Certificate \"${QUASSEL_DIR}/quasselCert.pem\" already exists."
einfo "Remove it if you want to create new one."
fi
fi
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-irc/quassel: quassel-0.7.3.ebuild ChangeLog
@ 2011-11-04 15:45 Robert Piasek (dagger)
0 siblings, 0 replies; 2+ messages in thread
From: Robert Piasek (dagger) @ 2011-11-04 15:45 UTC (permalink / raw
To: gentoo-commits
dagger 11/11/04 15:45:09
Modified: quassel-0.7.3.ebuild ChangeLog
Log:
add paxctl -m to fix bug #346255
No revbump as it affects only few people
(Portage version: 2.1.10.32/cvs/Linux x86_64)
Revision Changes Path
1.3 net-irc/quassel/quassel-0.7.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild?r1=1.2&r2=1.3
Index: quassel-0.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- quassel-0.7.3.ebuild 8 Sep 2011 20:15:17 -0000 1.2
+++ quassel-0.7.3.ebuild 4 Nov 2011 15:45:09 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild,v 1.2 2011/09/08 20:15:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.7.3.ebuild,v 1.3 2011/11/04 15:45:09 dagger Exp $
EAPI=4
@@ -163,4 +163,7 @@
einfo "Remove it if you want to create new one."
fi
fi
+
+ # Make it work on systems with PAX
+ [[ -x /sbin/paxctl ]] && /sbin/paxctl -m /usr/bin/quasselcore
}
1.134 net-irc/quassel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/quassel/ChangeLog?r1=1.133&r2=1.134
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog 8 Sep 2011 20:15:17 -0000 1.133
+++ ChangeLog 4 Nov 2011 15:45:09 -0000 1.134
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/quassel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v 1.133 2011/09/08 20:15:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v 1.134 2011/11/04 15:45:09 dagger Exp $
+
+ 04 Nov 2011; Robert Piasek <dagger@gentoo.org> quassel-0.7.3.ebuild:
+ Add paxctl -m for quassel binary Fixes bug #346255
08 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org> -quassel-0.7.2.ebuild,
quassel-0.7.3.ebuild:
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-11-04 15:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-04 15:45 [gentoo-commits] gentoo-x86 commit in net-irc/quassel: quassel-0.7.3.ebuild ChangeLog Robert Piasek (dagger)
-- strict thread matches above, loose matches on Subject: below --
2011-09-08 19:22 Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox