* [gentoo-commits] gentoo-x86 commit in dev-util/nsis: nsis-2.46-r1.ebuild ChangeLog
@ 2013-06-02 0:55 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 5+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2013-06-02 0:55 UTC (permalink / raw
To: gentoo-commits
alonbl 13/06/02 00:55:01
Modified: ChangeLog
Added: nsis-2.46-r1.ebuild
Log:
support building on 64bit platform, bug#425030
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Revision Changes Path
1.41 dev-util/nsis/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 1 Jun 2013 12:14:40 -0000 1.40
+++ ChangeLog 2 Jun 2013 00:55:01 -0000 1.41
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/nsis
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.40 2013/06/01 12:14:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.41 2013/06/02 00:55:01 alonbl Exp $
+
+*nsis-2.46-r1 (02 Jun 2013)
+
+ 02 Jun 2013; Alon Bar-Lev <alonbl@gentoo.org> +nsis-2.46-r1.ebuild,
+ nsis-2.46.ebuild:
+ support building on 64bit platform, bug#425030
01 Jun 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Cleanup due bug #151880
1.1 dev-util/nsis/nsis-2.46-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.1&content-type=text/plain
Index: nsis-2.46-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.1 2013/06/02 00:55:01 alonbl Exp $
EAPI="5"
mingw32_variants=$(echo {,i{6,5,4,3}86-{,pc-,w32-,w64-}}mingw32)
inherit eutils
DESCRIPTION="Nullsoft Scriptable Install System"
HOMEPAGE="http://nsis.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2
http://f0rt.users.sourceforge.net/makensis_64bit.patch
http://f0rt.users.sourceforge.net/nsis_w64-mingw.patch"
LICENSE="ZLIB BZIP2 CPL-1.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="bzip2 config-log doc zlib"
RESTRICT="strip"
# NSIS Menu uses wxwindows but it's all broken, so disable for now
# wxwindows? ( x11-libs/wxGTK )
RDEPEND="bzip2? ( app-arch/bzip2 )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
>=dev-util/scons-0.98"
S="${WORKDIR}"/${P}-src
mingw_CTARGET() {
local i
for i in ${mingw32_variants} ; do
type -P ${i}-g++ > /dev/null && echo ${i} && return
done
}
pkg_pretend() {
[[ -n $(mingw_CTARGET) ]] && return 0
eerror "Before you could emerge nsis, you need to install mingw"
eerror "Run the following commands:"
eerror " emerge crossdev"
eerror " USE='cxx -hardened' crossdev --stable --libc '[latest] -t i686-w64-mingw32"
die "mingw is needed"
}
src_prepare() {
epatch "${FILESDIR}"/${P}-gcc47.patch
epatch "${DISTDIR}/makensis_64bit.patch"
epatch "${DISTDIR}/nsis_w64-mingw.patch"
# a dirty but effective way of killing generated docs
use doc || echo > Docs/src/SConscript
}
get_additional_options() {
echo \
PREFIX=/usr \
PREFIX_CONF=/etc \
PREFIX_DOC=/usr/share/doc/${PF} \
PREFIX_DEST=\"${D}\" \
VERSION=${PV} \
DEBUG=no \
STRIP=no
echo \
SKIPSTUBS=\"$(use zlib || echo zlib) $(use bzip2 || echo bzip2)\" \
SKIPUTILS=\"NSIS Menu\"
use config-log && echo NSIS_CONFIG_LOG=yes
local tcpfx=$($(mingw_CTARGET)-gcc -print-file-name=libshell32.a)
tcpfx=${tcpfx%/lib/libshell32.a}
echo \
PREFIX_PLUGINAPI_INC=${tcpfx}/include \
PREFIX_PLUGINAPI_LIB=${tcpfx}/lib
echo CROSS_W32=$(mingw_CTARGET)-
}
do_scons() {
local cmd=$1
eval set -- $(get_additional_options)
echo scons $(get_additional_options) ${cmd}
scons "$@" ${cmd}
}
src_compile() {
do_scons || die "scons failed"
}
src_install() {
do_scons install || die "scons failed"
use doc || rm -rf "${D}"/usr/share/doc/${PF}/{Docs,Examples}
fperms -R go-w,a-x,a+X /usr/share/${PN}/ /usr/share/doc/${PF}/ /etc/nsisconf.nsh
env -uRESTRICT prepstrip "${D}/usr/bin"
src_strip_win32
}
src_strip_win32() {
# need to strip win32 binaries ourselves ... should fold this
# back in to prepstrip at some point
local STRIP_PROG=$(mingw_CTARGET)-strip
local STRIP_FLAGS="--strip-unneeded"
echo
echo "strip: ${STRIP_PROG} ${STRIP_FLAGS}"
local FILE
for FILE in $(find "${D}" -iregex '.*\.\(dll\|exe\|a\)$') ; do
echo " /${FILE#${D}}"
${STRIP_PROG} ${STRIP_FLAGS} "${FILE}"
done
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/nsis: nsis-2.46-r1.ebuild ChangeLog
@ 2013-12-20 20:00 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 5+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2013-12-20 20:00 UTC (permalink / raw
To: gentoo-commits
alonbl 13/12/20 20:00:17
Modified: nsis-2.46-r1.ebuild ChangeLog
Log:
Add note to build with cxx
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Revision Changes Path
1.2 dev-util/nsis/nsis-2.46-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?r1=1.1&r2=1.2
Index: nsis-2.46-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nsis-2.46-r1.ebuild 2 Jun 2013 00:55:01 -0000 1.1
+++ nsis-2.46-r1.ebuild 20 Dec 2013 20:00:17 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.1 2013/06/02 00:55:01 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.2 2013/12/20 20:00:17 alonbl Exp $
EAPI="5"
mingw32_variants=$(echo {,i{6,5,4,3}86-{,pc-,w32-,w64-}}mingw32)
@@ -38,10 +38,10 @@
pkg_pretend() {
[[ -n $(mingw_CTARGET) ]] && return 0
- eerror "Before you could emerge nsis, you need to install mingw"
+ eerror "Before you could emerge nsis, you need to install mingw with C++ support"
eerror "Run the following commands:"
eerror " emerge crossdev"
- eerror " USE='cxx -hardened' crossdev --stable --libc '[latest] -t i686-w64-mingw32"
+ eerror " USE='cxx' crossdev --stable --libc '[latest]' -t i686-w64-mingw32"
die "mingw is needed"
}
1.42 dev-util/nsis/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 2 Jun 2013 00:55:01 -0000 1.41
+++ ChangeLog 20 Dec 2013 20:00:17 -0000 1.42
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/nsis
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.41 2013/06/02 00:55:01 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.42 2013/12/20 20:00:17 alonbl Exp $
+
+ 20 Dec 2013; Alon Bar-Lev <alonbl@gentoo.org> nsis-2.46-r1.ebuild:
+ Add note to build with cxx
*nsis-2.46-r1 (02 Jun 2013)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/nsis: nsis-2.46-r1.ebuild ChangeLog
@ 2014-01-18 18:59 Pacho Ramos (pacho)
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-01-18 18:59 UTC (permalink / raw
To: gentoo-commits
pacho 14/01/18 18:59:49
Modified: nsis-2.46-r1.ebuild ChangeLog
Log:
amd64 stable, bug #495676
(Portage version: 2.2.8/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.3 dev-util/nsis/nsis-2.46-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?r1=1.2&r2=1.3
Index: nsis-2.46-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nsis-2.46-r1.ebuild 20 Dec 2013 20:00:17 -0000 1.2
+++ nsis-2.46-r1.ebuild 18 Jan 2014 18:59:49 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.2 2013/12/20 20:00:17 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.3 2014/01/18 18:59:49 pacho Exp $
EAPI="5"
mingw32_variants=$(echo {,i{6,5,4,3}86-{,pc-,w32-,w64-}}mingw32)
@@ -15,7 +15,7 @@
LICENSE="ZLIB BZIP2 CPL-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="bzip2 config-log doc zlib"
RESTRICT="strip"
1.43 dev-util/nsis/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?r1=1.42&r2=1.43
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog 20 Dec 2013 20:00:17 -0000 1.42
+++ ChangeLog 18 Jan 2014 18:59:49 -0000 1.43
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/nsis
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.42 2013/12/20 20:00:17 alonbl Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.43 2014/01/18 18:59:49 pacho Exp $
+
+ 18 Jan 2014; Pacho Ramos <pacho@gentoo.org> nsis-2.46-r1.ebuild:
+ amd64 stable, bug #495676
20 Dec 2013; Alon Bar-Lev <alonbl@gentoo.org> nsis-2.46-r1.ebuild:
Add note to build with cxx
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/nsis: nsis-2.46-r1.ebuild ChangeLog
@ 2014-01-26 11:02 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-26 11:02 UTC (permalink / raw
To: gentoo-commits
ago 14/01/26 11:02:46
Modified: nsis-2.46-r1.ebuild ChangeLog
Log:
Stable for x86, wrt bug #495676
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 dev-util/nsis/nsis-2.46-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?r1=1.3&r2=1.4
Index: nsis-2.46-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nsis-2.46-r1.ebuild 18 Jan 2014 18:59:49 -0000 1.3
+++ nsis-2.46-r1.ebuild 26 Jan 2014 11:02:46 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.3 2014/01/18 18:59:49 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.4 2014/01/26 11:02:46 ago Exp $
EAPI="5"
mingw32_variants=$(echo {,i{6,5,4,3}86-{,pc-,w32-,w64-}}mingw32)
@@ -15,7 +15,7 @@
LICENSE="ZLIB BZIP2 CPL-1.0"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="bzip2 config-log doc zlib"
RESTRICT="strip"
1.44 dev-util/nsis/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 18 Jan 2014 18:59:49 -0000 1.43
+++ ChangeLog 26 Jan 2014 11:02:46 -0000 1.44
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/nsis
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.43 2014/01/18 18:59:49 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.44 2014/01/26 11:02:46 ago Exp $
+
+ 26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> nsis-2.46-r1.ebuild:
+ Stable for x86, wrt bug #495676
18 Jan 2014; Pacho Ramos <pacho@gentoo.org> nsis-2.46-r1.ebuild:
amd64 stable, bug #495676
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/nsis: nsis-2.46-r1.ebuild ChangeLog
@ 2014-09-26 12:54 Pacho Ramos (pacho)
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-09-26 12:54 UTC (permalink / raw
To: gentoo-commits
pacho 14/09/26 12:54:56
Modified: nsis-2.46-r1.ebuild ChangeLog
Log:
Fix building (#505996 by Luke-Jr)
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path
1.5 dev-util/nsis/nsis-2.46-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild?r1=1.4&r2=1.5
Index: nsis-2.46-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nsis-2.46-r1.ebuild 26 Jan 2014 11:02:46 -0000 1.4
+++ nsis-2.46-r1.ebuild 26 Sep 2014 12:54:56 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.4 2014/01/26 11:02:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/nsis-2.46-r1.ebuild,v 1.5 2014/09/26 12:54:56 pacho Exp $
EAPI="5"
mingw32_variants=$(echo {,i{6,5,4,3}86-{,pc-,w32-,w64-}}mingw32)
@@ -50,6 +50,8 @@
epatch "${DISTDIR}/makensis_64bit.patch"
epatch "${DISTDIR}/nsis_w64-mingw.patch"
+ sed -i 's/SetDefault/Append/' "${S}/Source/exehead/SConscript" || die #505996
+
# a dirty but effective way of killing generated docs
use doc || echo > Docs/src/SConscript
}
1.46 dev-util/nsis/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nsis/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 22 Mar 2014 19:03:27 -0000 1.45
+++ ChangeLog 26 Sep 2014 12:54:56 -0000 1.46
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/nsis
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.45 2014/03/22 19:03:27 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nsis/ChangeLog,v 1.46 2014/09/26 12:54:56 pacho Exp $
+
+ 26 Sep 2014; Pacho Ramos <pacho@gentoo.org> nsis-2.46-r1.ebuild:
+ Fix building (#505996 by Luke-Jr)
22 Mar 2014; Michael Palimaka <kensington@gentoo.org> -nsis-2.46.ebuild:
Remove old.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-09-26 12:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-18 18:59 [gentoo-commits] gentoo-x86 commit in dev-util/nsis: nsis-2.46-r1.ebuild ChangeLog Pacho Ramos (pacho)
-- strict thread matches above, loose matches on Subject: below --
2014-09-26 12:54 Pacho Ramos (pacho)
2014-01-26 11:02 Agostino Sarubbo (ago)
2013-12-20 20:00 Alon Bar-Lev (alonbl)
2013-06-02 0:55 Alon Bar-Lev (alonbl)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox