monsieurp    15/08/01 16:33:30

  Modified:             ChangeLog
  Added:                bcmail-1.52.ebuild
  Log:
  Version bump. Fixes bug 535882.
  
  Signed-off-by: Patrice Clement <monsie...@gentoo.org>
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
93491BB8)

Revision  Changes    Path
1.48                 dev-java/bcmail/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcmail/ChangeLog?rev=1.48&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcmail/ChangeLog?rev=1.48&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcmail/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/bcmail/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   14 Jun 2015 17:52:47 -0000      1.47
+++ ChangeLog   1 Aug 2015 16:33:30 -0000       1.48
@@ -1,6 +1,11 @@
 # ChangeLog for dev-java/bcmail
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/bcmail/ChangeLog,v 1.47 2015/06/14 
17:52:47 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/bcmail/ChangeLog,v 1.48 2015/08/01 
16:33:30 monsieurp Exp $
+
+*bcmail-1.52 (01 Aug 2015)
+
+  01 Aug 2015; Patrice Clement <monsie...@gentoo.org> +bcmail-1.52.ebuild:
+  Version bump. Fixes bug 535882.
 
   14 Jun 2015; Patrice Clement <monsie...@gentoo.org> bcmail-1.50.ebuild:
   Stable for x86 via ALLARCHES. Fix bug 481960.



1.1                  dev-java/bcmail/bcmail-1.52.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcmail/bcmail-1.52.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcmail/bcmail-1.52.ebuild?rev=1.1&content-type=text/plain

Index: bcmail-1.52.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/bcmail/bcmail-1.52.ebuild,v 1.1 
2015/08/01 16:33:30 monsieurp Exp $

EAPI="5"

JAVA_PKG_IUSE="doc source test"

inherit java-pkg-2 java-ant-2

MY_P="${PN}-jdk15on-${PV/./}"

DESCRIPTION="Java cryptography APIs"
HOMEPAGE="http://www.bouncycastle.org/java.html";
SRC_URI="http://www.bouncycastle.org/download/${MY_P}.tar.gz";

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos"

CDEPEND=">=dev-java/bcprov-${PV}:0[test?]
                ~dev-java/bcpkix-${PV}:0[test?]
                dev-java/sun-jaf:0
                java-virtuals/javamail:0"

DEPEND=">=virtual/jdk-1.6
        app-arch/unzip
        test? (
                dev-java/junit:0
        )
        ${CDEPEND}"

RDEPEND=">=virtual/jre-1.6
        ${CDEPEND}"

S="${WORKDIR}/${MY_P}"

# Package can't be build with test as bcprov and bcpkix can't be built with 
test.
RESTRICT="test"

src_unpack() {
        default
        cd "${S}"
        unpack ./src.zip
}

java_prepare() {
        mkdir "${S}"/classes

        if use test; then
                java-pkg_jar-from --build-only junit
        fi
}

src_compile() {
        find org -name "*.java" > "${T}"/src.list

        local cp="$(java-pkg_getjars bcprov,bcpkix,sun-jaf,javamail)"
        if use test ; then
                cp="${cp}:junit.jar"
        else
                sed -i '/\/test\//d' "${T}"/src.list || die "Failed to remove 
test classes"
        fi

        ejavac -d "${S}"/classes -cp ${cp} "@${T}"/src.list

        cd "${S}"/classes
        jar -cf "${S}"/${PN}.jar * || die "failed to create jar"
}

src_test() {
        local cp="${PN}.jar:bcprov.jar:bcpkix.jar:junit.jar"

        java -cp ${cp} org.bouncycastle.mail.smime.test.AllTests | tee 
mail.tests

        grep -q FAILURES *.tests && die "Tests failed."
}

src_install() {
        java-pkg_dojar "${S}"/${PN}.jar

        use source && java-pkg_dosrc org
        use doc && java-pkg_dojavadoc docs
}




Reply via email to