[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/, dev-java/jnr-posix/files/

2023-04-10 Thread Miroslav Šulc
commit: 2cda747c4803bb70de88983ea181a54bbc178a1e
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sun Apr  9 19:37:27 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Apr 10 06:53:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cda747c

dev-java/jnr-posix: drop 3.1.15

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/jnr-posix/Manifest|   1 -
 .../files/jnr-posix-3.1.15-FileTest.patch  |  38 
 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 102 -
 3 files changed, 141 deletions(-)

diff --git a/dev-java/jnr-posix/Manifest b/dev-java/jnr-posix/Manifest
index 144578a163ba..b71b1747be9a 100644
--- a/dev-java/jnr-posix/Manifest
+++ b/dev-java/jnr-posix/Manifest
@@ -1,2 +1 @@
-DIST jnr-posix-3.1.15.tar.gz 120573 BLAKE2B 
8035308440e444876d8d955ec3dd0b9d41f770436b53f964795a183ed7bd676dda8787c37425c488af2aa0accc948b86d1773e7e97ee5bcdaf209383dfda24a6
 SHA512 
6c8cd6d43c509ef7c16901d02983b823464b3437019233021398b2a9dfc85923db87c585e2f8248f080447a990e308feff25bbbf2a7261019dcae66c22e14a91
 DIST jnr-posix-3.1.16.tar.gz 120553 BLAKE2B 
b430d4699b84e9c4139291c34c328ade600adade68081167d3b47ce52caa6f96a818702dcb26652d186d7de825b32b00f2f1329b79f9c459cbbb6f6a4260d9f3
 SHA512 
988221a9a499db64c2bc3fe4e798fb77ce1bce44a31b51ace4f1e52b9a76a3af9a1521477a64413b44f36da9ab5446feb1b2ffd4e7dc50be055f6092d9e1f977

diff --git a/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch 
b/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch
deleted file mode 100644
index a186087c626d..
--- a/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch
+++ /dev/null
@@ -1,38 +0,0 @@
 a/src/test/java/jnr/posix/FileTest.java
-+++ b/src/test/java/jnr/posix/FileTest.java
-@@ -215,7 +216,7 @@ public class FileTest {
- dir.delete();
- }
- 
--@Test
-+@Ignore @Test
- public void flockTest() throws Throwable {
- if (!Platform.IS_WINDOWS) {
- File tmp = File.createTempFile("flockTest", "tmp");
-@@ -236,7 +237,7 @@ public class FileTest {
- }
- }
- 
--@Test
-+@Ignore @Test
- public void dupTest() throws Throwable {
- File tmp = File.createTempFile("dupTest", "tmp");
- RandomAccessFile raf = new RandomAccessFile(tmp, "rw");
-@@ -303,7 +304,7 @@ public class FileTest {
- }
- }
- 
--@Test
-+@Ignore @Test
- public void fcntlDupfdWithArgTest() throws Throwable {
- if (!Platform.IS_WINDOWS) {
- File tmp = File.createTempFile("dupTest", "tmp");
-@@ -327,7 +328,7 @@ public class FileTest {
- }
- }
- 
--@Test
-+@Ignore @Test
- public void closeTest() throws Throwable {
- File tmp = File.createTempFile("closeTest", "tmp");
- int fd = 
getFdFromDescriptor(JavaLibCHelper.getDescriptorFromChannel(new 
RandomAccessFile(tmp, "rw").getChannel()));

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
deleted file mode 100644
index 0fd709bffe6a..
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri 
https://github.com/jnr/jnr-posix/archive/jnr-posix-3.1.15.tar.gz --slot 3.0 
--keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild jnr-posix-3.1.15.ebuild
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="com.github.jnr:jnr-posix:3.1.15"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Common cross-project/cross-platform POSIX APIs"
-HOMEPAGE="https://github.com/jnr/jnr-posix;
-SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
-
-LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
-SLOT="3.0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-CP_DEPEND="
-   >=dev-java/jnr-ffi-2.2.12:2
-   dev-java/jnr-constants:0
-"
-
-DEPEND="${CP_DEPEND}
-   >=virtual/jdk-11:*"
-
-RDEPEND="${CP_DEPEND}
-   >=virtual/jre-1.8:*"
-
-S="${WORKDIR}/${PN}-${P}"
-
-JAVA_SRC_DIR="src/main/java"
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-JAVA_TEST_SRC_DIR="src/test/java"
-
-src_test() {
-   sed \
-   -e '/import org.junit.Test/a import org.junit.Ignore;' \
-   -i src/test/java/jnr/posix/FileTest.java || die
-
-   if use ppc64; then
-   # Ignore testMessageHdrMultipleControl
-   # https://bugs.gentoo.org/866199
-   # https://github.com/jnr/jnr-posix/issues/178
-   sed \
-   -e '/testMessageHdrMultipleControl/i @Ignore' \
-   -e '/import org.junit.Test/a import org.junit.Ignore;' \
-   -i src/test/java/jnr/posix/LinuxPOSIXTest.java || die
-   fi
-
-   if use 

[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2023-04-09 Thread Arthur Zamarin
commit: 747d593b46991e90363fa462cfaf385c3fb6b51a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Apr  9 19:24:30 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Apr  9 19:24:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747d593b

dev-java/jnr-posix: Stabilize 3.1.16 amd64, #903523

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
index 0142cf6a0a6f..dde31b7e4fa4 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${P}"
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2023-04-09 Thread Arthur Zamarin
commit: b40d98768e0527db2323f9e869eb1572a1c5238e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Apr  9 19:09:00 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Apr  9 19:09:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b40d9876

dev-java/jnr-posix: Stabilize 3.1.16 ppc64, #903523

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
index a67b9c29f3bd..0142cf6a0a6f 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${P}"
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc64 x86"
+KEYWORDS="~amd64 ~arm arm64 ppc64 x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2023-04-09 Thread Arthur Zamarin
commit: e5bc51cceb9de9ab3149544ac163777ac7e52b23
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Apr  9 19:08:56 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Apr  9 19:08:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5bc51cc

dev-java/jnr-posix: Stabilize 3.1.16 x86, #903523

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
index c19ea8a07112..a67b9c29f3bd 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${P}"
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc64 x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2023-03-29 Thread Sam James
commit: c69e37bc3ce814cfa230cb3f27fbc2cfb6b7ea4c
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 29 11:33:07 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 29 11:33:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69e37bc

dev-java/jnr-posix: Stabilize 3.1.16 arm64, #903523

Signed-off-by: Sam James  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
index 8a1490e9b7d9..c19ea8a07112 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${P}"
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2023-02-27 Thread Florian Schmaus
commit: 568f4b59b2faa6d90ca477c3e3499821281ebf84
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sat Jan 28 17:57:04 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Feb 27 08:57:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568f4b59

dev-java/jnr-posix: add 3.1.16

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/29117
Signed-off-by: Florian Schmaus  gentoo.org>

 dev-java/jnr-posix/Manifest|  1 +
 dev-java/jnr-posix/jnr-posix-3.1.16.ebuild | 95 ++
 2 files changed, 96 insertions(+)

diff --git a/dev-java/jnr-posix/Manifest b/dev-java/jnr-posix/Manifest
index 99cac23713ca..144578a163ba 100644
--- a/dev-java/jnr-posix/Manifest
+++ b/dev-java/jnr-posix/Manifest
@@ -1 +1,2 @@
 DIST jnr-posix-3.1.15.tar.gz 120573 BLAKE2B 
8035308440e444876d8d955ec3dd0b9d41f770436b53f964795a183ed7bd676dda8787c37425c488af2aa0accc948b86d1773e7e97ee5bcdaf209383dfda24a6
 SHA512 
6c8cd6d43c509ef7c16901d02983b823464b3437019233021398b2a9dfc85923db87c585e2f8248f080447a990e308feff25bbbf2a7261019dcae66c22e14a91
+DIST jnr-posix-3.1.16.tar.gz 120553 BLAKE2B 
b430d4699b84e9c4139291c34c328ade600adade68081167d3b47ce52caa6f96a818702dcb26652d186d7de825b32b00f2f1329b79f9c459cbbb6f6a4260d9f3
 SHA512 
988221a9a499db64c2bc3fe4e798fb77ce1bce44a31b51ace4f1e52b9a76a3af9a1521477a64413b44f36da9ab5446feb1b2ffd4e7dc50be055f6092d9e1f977

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
new file mode 100644
index ..8a1490e9b7d9
--- /dev/null
+++ b/dev-java/jnr-posix/jnr-posix-3.1.16.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="com.github.jnr:jnr-posix:3.1.16"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Common cross-project/cross-platform POSIX APIs"
+HOMEPAGE="https://github.com/jnr/jnr-posix;
+SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
+S="${WORKDIR}/${PN}-${P}"
+
+LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
+SLOT="3.0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+CP_DEPEND="
+   >=dev-java/jnr-ffi-2.2.12:2
+   dev-java/jnr-constants:0
+"
+
+DEPEND="${CP_DEPEND}
+   >=virtual/jdk-11:*"
+
+RDEPEND="${CP_DEPEND}
+   >=virtual/jre-1.8:*"
+
+JAVA_AUTOMATIC_MODULE_NAME="org.jnrproject.posix"
+JAVA_SRC_DIR="src/main/java"
+
+JAVA_TEST_GENTOO_CLASSPATH="junit-4"
+JAVA_TEST_SRC_DIR="src/test/java"
+
+src_test() {
+   sed \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -i src/test/java/jnr/posix/FileTest.java || die
+
+   if use ppc64; then
+   # Ignore testMessageHdrMultipleControl
+   # https://bugs.gentoo.org/866199
+   # https://github.com/jnr/jnr-posix/issues/178
+   sed \
+   -e '/testMessageHdrMultipleControl/i @Ignore' \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -i src/test/java/jnr/posix/LinuxPOSIXTest.java || die
+   fi
+
+   if use arm; then
+   # https://bugs.gentoo.org/866692
+   sed \
+   -e '/utimensatRelativePath()/i @Ignore' \
+   -e '/utimesDefaultValuesTest()/i @Ignore' \
+   -e '/futimeTest()/i @Ignore' \
+   -e '/utimesTest()/i @Ignore' \
+   -e '/utimesPointerTest()/i @Ignore' \
+   -e '/utimensatAbsolutePath()/i @Ignore' \
+   -e '/futimens()/i @Ignore' \
+   -i src/test/java/jnr/posix/FileTest.java || die
+   sed \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -e '/ioprioThreadedTest()/i @Ignore' \
+   -e '/testPosixFadvise()/i @Ignore' \
+   -i src/test/java/jnr/posix/LinuxPOSIXTest.java || die
+   sed \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -e '/testSetRlimitPointerLinux()/i @Ignore' \
+   -e '/testGetRLimitPointer()/i @Ignore' \
+   -i src/test/java/jnr/posix/ProcessTest.java || die
+   fi
+
+   JAVA_TEST_EXCLUDES=(
+   # 
https://github.com/jnr/jnr-posix/blob/jnr-posix-3.1.16/pom.xml#L185
+   # **/windows/*Test.java
+   "jnr.posix.windows.WindowsFileTest"
+   "jnr.posix.windows.WindowsHelpersTest"
+   )
+   local vm_version="$(java-config -g PROVIDES_VERSION)"
+   if [[ "${vm_version}" -ge "17" ]] ; then
+   JAVA_TEST_EXTRA_ARGS+=( 
--add-opens=java.base/java.io=ALL-UNNAMED )
+   JAVA_TEST_EXTRA_ARGS+=( 

[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/, dev-java/jnr-posix/files/

2022-09-02 Thread Arthur Zamarin
commit: f5fc4bbbe17a489f4e629dc3a0cf3c4e17a67d1d
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Fri Sep  2 17:40:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep  2 17:57:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5fc4bbb

dev-java/jnr-posix: drop 3.0.10-r1

Closes: https://bugs.gentoo.org/827224
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/Manifest|   1 -
 dev-java/jnr-posix/files/jnr-posix_maven-build.xml | 256 -
 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild  |  54 -
 3 files changed, 311 deletions(-)

diff --git a/dev-java/jnr-posix/Manifest b/dev-java/jnr-posix/Manifest
index 2e180c60d0a4..99cac23713ca 100644
--- a/dev-java/jnr-posix/Manifest
+++ b/dev-java/jnr-posix/Manifest
@@ -1,2 +1 @@
-DIST jnr-posix-3.0.10.tar.gz 85912 BLAKE2B 
b87ff78ccf10718bd1faf9e308421ba3ab5e90dee5e244fb1b7f53592da8ad98973cc50e6469bcea59e1202ee82b3f77522eb95e23584ff70cc66099ef1c4266
 SHA512 
a282c164b0b9ace8aba508a48d08d53beb0ddcd4baf5389412941a1e1430d75df9bdd35935a6982d4bb1910c0fdad55910ba028b1b5388c55e19a6c4ed2ba6a1
 DIST jnr-posix-3.1.15.tar.gz 120573 BLAKE2B 
8035308440e444876d8d955ec3dd0b9d41f770436b53f964795a183ed7bd676dda8787c37425c488af2aa0accc948b86d1773e7e97ee5bcdaf209383dfda24a6
 SHA512 
6c8cd6d43c509ef7c16901d02983b823464b3437019233021398b2a9dfc85923db87c585e2f8248f080447a990e308feff25bbbf2a7261019dcae66c22e14a91

diff --git a/dev-java/jnr-posix/files/jnr-posix_maven-build.xml 
b/dev-java/jnr-posix/files/jnr-posix_maven-build.xml
deleted file mode 100644
index 82260e156394..
--- a/dev-java/jnr-posix/files/jnr-posix_maven-build.xml
+++ /dev/null
@@ -1,256 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-  
-  
-
-  
-  
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-
-  
-  
-  
-
-  
-  
-  
-
-  
-
-
-
-
-
-
-
-
-
-
-  
-  
-
-
-
-
-
-
-
-
-
-
-
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-
-  
-
-  
-  
-
-  
-
-  
-  
-  
-
-  
-
-
-  
-
-  
-  
-
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-
-  
-  
-  
-  
-
-
-
-  
-  
-
-  
-  
-  
-  
-
-  
-  
-
-  
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-
-  
-
-
-  
-
-
-  
-
-  
-
-  
-=== WARNING 
===
- JUnit is not present in your $ANT_HOME/lib directory. Tests not 
executed.
-
===
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-
-  
-
-  
-
-

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
deleted file mode 100644
index 8e1f57eabfc9..
--- a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source test"
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-JAVA_ANT_CLASSPATH_TAGS="${JAVA_ANT_CLASSPATH_TAGS} javadoc"
-JAVA_ANT_ENCODING="UTF-8"
-
-EANT_EXTRA_ARGS="-Dmaven.build.finalName=${PN}"
-EANT_GENTOO_CLASSPATH="jnr-constants,jnr-ffi-2"
-EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Lightweight cross-platform POSIX emulation layer for Java"
-HOMEPAGE="https://github.com/jnr/jnr-posix;
-SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
-SLOT="3.0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
-
-CDEPEND="dev-java/jnr-constants:0
-   dev-java/jnr-ffi:2"
-
-RDEPEND="${CDEPEND}
-   >=virtual/jre-1.8:*"
-
-DEPEND="${CDEPEND}
-   >=virtual/jdk-1.8:*
-   test? (
-   dev-java/ant-junit4:0
-   dev-java/junit:4
-   )"
-
-src_prepare() {
-   default
-
-   cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die
-}
-
-src_test() {
-   ANT_TASKS="ant-junit4" eant test -DJunit.present=true
-}
-
-src_install() {
-   java-pkg_dojar target/${PN}.jar
-   dodoc README.txt
-
-   use doc && java-pkg_dojavadoc target/site/apidocs
-   use source && java-pkg_dosrc src/main/java/*
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-09-02 Thread Arthur Zamarin
commit: fa119ce63af45778c558cdaa3faff0afb1c95005
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep  2 17:24:03 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep  2 17:24:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa119ce6

dev-java/jnr-posix: Keyword 3.1.15 arm, #866201

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
index 4d490fc87f4d..0fd709bffe6a 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="amd64 arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/files/, dev-java/jnr-posix/

2022-09-02 Thread Arthur Zamarin
commit: 510c51a40d4a0b3e8b09b377af13cec13d9b9811
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sun Aug 28 06:51:45 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep  2 17:23:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=510c51a4

dev-java/jnr-posix: exclude failing tests on arm

Closes: https://bugs.gentoo.org/866692
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/27034
Signed-off-by: Arthur Zamarin  gentoo.org>

 .../files/jnr-posix-3.1.15-FileTest.patch  | 10 
 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 27 ++
 2 files changed, 27 insertions(+), 10 deletions(-)

diff --git a/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch 
b/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch
index eba2a6fc450a..a186087c626d 100644
--- a/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch
+++ b/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch
@@ -1,15 +1,5 @@
-diff --git a/src/test/java/jnr/posix/FileTest.java 
b/src/test/java/jnr/posix/FileTest.java
-index afadb07..7eb8af7 100644
 --- a/src/test/java/jnr/posix/FileTest.java
 +++ b/src/test/java/jnr/posix/FileTest.java
-@@ -8,6 +8,7 @@ import jnr.ffi.Pointer;
- import jnr.posix.util.Platform;
- import org.junit.BeforeClass;
- import org.junit.Test;
-+import org.junit.Ignore;
- 
- import java.io.*;
- import java.nio.ByteBuffer;
 @@ -215,7 +216,7 @@ public class FileTest {
  dir.delete();
  }

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
index 5902204899ec..4d490fc87f4d 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -39,6 +39,10 @@ JAVA_TEST_GENTOO_CLASSPATH="junit-4"
 JAVA_TEST_SRC_DIR="src/test/java"
 
 src_test() {
+   sed \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -i src/test/java/jnr/posix/FileTest.java || die
+
if use ppc64; then
# Ignore testMessageHdrMultipleControl
# https://bugs.gentoo.org/866199
@@ -49,6 +53,29 @@ src_test() {
-i src/test/java/jnr/posix/LinuxPOSIXTest.java || die
fi
 
+   if use arm; then
+   # https://bugs.gentoo.org/866692
+   sed \
+   -e '/utimensatRelativePath()/i @Ignore' \
+   -e '/utimesDefaultValuesTest()/i @Ignore' \
+   -e '/futimeTest()/i @Ignore' \
+   -e '/utimesTest()/i @Ignore' \
+   -e '/utimesPointerTest()/i @Ignore' \
+   -e '/utimensatAbsolutePath()/i @Ignore' \
+   -e '/futimens()/i @Ignore' \
+   -i src/test/java/jnr/posix/FileTest.java || die
+   sed \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -e '/ioprioThreadedTest()/i @Ignore' \
+   -e '/testPosixFadvise()/i @Ignore' \
+   -i src/test/java/jnr/posix/LinuxPOSIXTest.java || die
+   sed \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -e '/testSetRlimitPointerLinux()/i @Ignore' \
+   -e '/testGetRLimitPointer()/i @Ignore' \
+   -i src/test/java/jnr/posix/ProcessTest.java || die
+   fi
+
JAVA_TEST_EXCLUDES=(
# 
https://github.com/jnr/jnr-posix/blob/jnr-posix-3.1.15/pom.xml#L185
# **/windows/*Test.java



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-08-24 Thread Arthur Zamarin
commit: b3589283e0b540adaaa0f3054e5780d7395d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 24 17:23:02 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 24 17:23:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3589283

dev-java/jnr-posix: Stabilize 3.1.15 ppc64, #825494

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
index 4ca0c477f1f2..5902204899ec 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="amd64 arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ppc64 x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-08-24 Thread Miroslav Šulc
commit: 4a1ae2f864044003ca7e3d11b46681d5bb179534
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Aug 24 06:39:26 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Aug 24 17:22:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a1ae2f8

dev-java/jnr-posix: ignore one test on ppc64

Ignore testMessageHdrMultipleControl
https://github.com/jnr/jnr-posix/issues/178
Closes: https://bugs.gentoo.org/866199
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/26995
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
index 3f90b95f3507..4ca0c477f1f2 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -39,6 +39,16 @@ JAVA_TEST_GENTOO_CLASSPATH="junit-4"
 JAVA_TEST_SRC_DIR="src/test/java"
 
 src_test() {
+   if use ppc64; then
+   # Ignore testMessageHdrMultipleControl
+   # https://bugs.gentoo.org/866199
+   # https://github.com/jnr/jnr-posix/issues/178
+   sed \
+   -e '/testMessageHdrMultipleControl/i @Ignore' \
+   -e '/import org.junit.Test/a import org.junit.Ignore;' \
+   -i src/test/java/jnr/posix/LinuxPOSIXTest.java || die
+   fi
+
JAVA_TEST_EXCLUDES=(
# 
https://github.com/jnr/jnr-posix/blob/jnr-posix-3.1.15/pom.xml#L185
# **/windows/*Test.java



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-07-09 Thread Arthur Zamarin
commit: a98066824ab82523fa07e7ef94f2f692c0e2d54f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jul  9 09:37:09 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jul  9 09:37:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9806682

dev-java/jnr-posix: Stabilize 3.1.15 arm64, #856901

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
index a73708573ab2..3f90b95f3507 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-07-08 Thread Agostino Sarubbo
commit: 8e4a2ad224bae2e451886187d615e23250b07869
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jul  8 06:44:59 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jul  8 06:44:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e4a2ad2

dev-java/jnr-posix: x86 stable wrt bug #856901

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
index fa9199c4c0d2..a73708573ab2 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-07-08 Thread Agostino Sarubbo
commit: a87d37c2a9705b6940f43ad1650f6a574ab1a47e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jul  8 06:43:41 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jul  8 06:43:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a87d37c2

dev-java/jnr-posix: amd64 stable wrt bug #856901

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
index 5e4a34bbddea..fa9199c4c0d2 100644
--- a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
 
 LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 
 CP_DEPEND="
>=dev-java/jnr-ffi-2.2.12:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/, dev-java/jnr-posix/files/

2022-06-08 Thread Florian Schmaus
commit: 2783d0d7e30cd6e107273828faa663d6365bdeb0
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sun Jan  2 15:22:12 2022 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Wed Jun  8 08:12:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2783d0d7

dev-java/jnr-posix: add 3.1.15

Bug: https://bugs.gentoo.org/827224
Those 2 errors from #827224 no longer occur.

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Florian Schmaus  gentoo.org>

 dev-java/jnr-posix/Manifest|  1 +
 .../files/jnr-posix-3.1.15-FileTest.patch  | 48 
 dev-java/jnr-posix/jnr-posix-3.1.15.ebuild | 65 ++
 3 files changed, 114 insertions(+)

diff --git a/dev-java/jnr-posix/Manifest b/dev-java/jnr-posix/Manifest
index 8d1346b1a5b2..2e180c60d0a4 100644
--- a/dev-java/jnr-posix/Manifest
+++ b/dev-java/jnr-posix/Manifest
@@ -1 +1,2 @@
 DIST jnr-posix-3.0.10.tar.gz 85912 BLAKE2B 
b87ff78ccf10718bd1faf9e308421ba3ab5e90dee5e244fb1b7f53592da8ad98973cc50e6469bcea59e1202ee82b3f77522eb95e23584ff70cc66099ef1c4266
 SHA512 
a282c164b0b9ace8aba508a48d08d53beb0ddcd4baf5389412941a1e1430d75df9bdd35935a6982d4bb1910c0fdad55910ba028b1b5388c55e19a6c4ed2ba6a1
+DIST jnr-posix-3.1.15.tar.gz 120573 BLAKE2B 
8035308440e444876d8d955ec3dd0b9d41f770436b53f964795a183ed7bd676dda8787c37425c488af2aa0accc948b86d1773e7e97ee5bcdaf209383dfda24a6
 SHA512 
6c8cd6d43c509ef7c16901d02983b823464b3437019233021398b2a9dfc85923db87c585e2f8248f080447a990e308feff25bbbf2a7261019dcae66c22e14a91

diff --git a/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch 
b/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch
new file mode 100644
index ..eba2a6fc450a
--- /dev/null
+++ b/dev-java/jnr-posix/files/jnr-posix-3.1.15-FileTest.patch
@@ -0,0 +1,48 @@
+diff --git a/src/test/java/jnr/posix/FileTest.java 
b/src/test/java/jnr/posix/FileTest.java
+index afadb07..7eb8af7 100644
+--- a/src/test/java/jnr/posix/FileTest.java
 b/src/test/java/jnr/posix/FileTest.java
+@@ -8,6 +8,7 @@ import jnr.ffi.Pointer;
+ import jnr.posix.util.Platform;
+ import org.junit.BeforeClass;
+ import org.junit.Test;
++import org.junit.Ignore;
+ 
+ import java.io.*;
+ import java.nio.ByteBuffer;
+@@ -215,7 +216,7 @@ public class FileTest {
+ dir.delete();
+ }
+ 
+-@Test
++@Ignore @Test
+ public void flockTest() throws Throwable {
+ if (!Platform.IS_WINDOWS) {
+ File tmp = File.createTempFile("flockTest", "tmp");
+@@ -236,7 +237,7 @@ public class FileTest {
+ }
+ }
+ 
+-@Test
++@Ignore @Test
+ public void dupTest() throws Throwable {
+ File tmp = File.createTempFile("dupTest", "tmp");
+ RandomAccessFile raf = new RandomAccessFile(tmp, "rw");
+@@ -303,7 +304,7 @@ public class FileTest {
+ }
+ }
+ 
+-@Test
++@Ignore @Test
+ public void fcntlDupfdWithArgTest() throws Throwable {
+ if (!Platform.IS_WINDOWS) {
+ File tmp = File.createTempFile("dupTest", "tmp");
+@@ -327,7 +328,7 @@ public class FileTest {
+ }
+ }
+ 
+-@Test
++@Ignore @Test
+ public void closeTest() throws Throwable {
+ File tmp = File.createTempFile("closeTest", "tmp");
+ int fd = 
getFdFromDescriptor(JavaLibCHelper.getDescriptorFromChannel(new 
RandomAccessFile(tmp, "rw").getChannel()));

diff --git a/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
new file mode 100644
index ..5e4a34bbddea
--- /dev/null
+++ b/dev-java/jnr-posix/jnr-posix-3.1.15.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Skeleton command:
+# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri 
https://github.com/jnr/jnr-posix/archive/jnr-posix-3.1.15.tar.gz --slot 3.0 
--keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild jnr-posix-3.1.15.ebuild
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="com.github.jnr:jnr-posix:3.1.15"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Common cross-project/cross-platform POSIX APIs"
+HOMEPAGE="https://github.com/jnr/jnr-posix;
+SRC_URI="https://github.com/jnr/${PN}/archive/${P}.tar.gz;
+
+LICENSE="EPL-2.0 GPL-2 LGPL-2.1"
+SLOT="3.0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+CP_DEPEND="
+   >=dev-java/jnr-ffi-2.2.12:2
+   dev-java/jnr-constants:0
+"
+
+DEPEND="${CP_DEPEND}
+   >=virtual/jdk-11:*"
+
+RDEPEND="${CP_DEPEND}
+   >=virtual/jre-1.8:*"
+
+S="${WORKDIR}/${PN}-${P}"
+
+JAVA_SRC_DIR="src/main/java"
+
+JAVA_TEST_GENTOO_CLASSPATH="junit-4"
+JAVA_TEST_SRC_DIR="src/test/java"
+
+src_test() {
+   JAVA_TEST_EXCLUDES=(
+   # 
https://github.com/jnr/jnr-posix/blob/jnr-posix-3.1.15/pom.xml#L185
+   # **/windows/*Test.java
+   "jnr.posix.windows.WindowsFileTest"
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-01-10 Thread Arthur Zamarin
commit: 39c6fc4a72a7a4dc23765383d1151e652f0b12f8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 10 19:10:25 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 10 19:10:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39c6fc4a

dev-java/jnr-posix: Keyword 3.0.10-r1 arm, #828049

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
index 287e02e6d650..8e1f57eabfc9 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="amd64 arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2022-01-02 Thread Miroslav Šulc
commit: 2163ef491f1c4441372e0a8aeeff99fc3ad39537
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Jan  2 08:06:46 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Jan  2 08:06:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2163ef49

dev-java/jnr-posix: removed obsolete 3.0.10

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10.ebuild | 53 --
 1 file changed, 53 deletions(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
deleted file mode 100644
index 908bb554f1a5..
--- a/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Lightweight cross-platform POSIX emulation layer for Java"
-HOMEPAGE="https://github.com/jnr/jnr-posix;
-SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
-SLOT="3.0"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
-
-CDEPEND="dev-java/jnr-constants:0
-   dev-java/jnr-ffi:2"
-
-RDEPEND="${CDEPEND}
-   >=virtual/jre-1.6"
-
-DEPEND="${CDEPEND}
-   >=virtual/jdk-1.6
-   test? (
-   dev-java/ant-junit
-   dev-java/junit:4
-   )"
-
-java_prepare() {
-   cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-JAVA_ANT_CLASSPATH_TAGS="${JAVA_ANT_CLASSPATH_TAGS} javadoc"
-JAVA_ANT_ENCODING="UTF-8"
-
-EANT_EXTRA_ARGS="-Dmaven.build.finalName=${PN}"
-EANT_GENTOO_CLASSPATH="jnr-constants,jnr-ffi-2"
-EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4"
-
-src_test() {
-   java-pkg-2_src_test
-}
-
-src_install() {
-   java-pkg_dojar target/${PN}.jar
-   dodoc README.txt
-
-   use doc && java-pkg_dojavadoc target/site/apidocs
-   use source && java-pkg_dosrc src/main/java/*
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2021-12-31 Thread Arthur Zamarin
commit: 1881d1ae05c7e8acc64138aa3daab4b8cab7e165
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 31 09:37:38 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 31 09:37:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1881d1ae

dev-java/jnr-posix: Stabilize 3.0.10-r1 ppc64, #826850

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
index 3c685ec9c53a..287e02e6d650 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="amd64 arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2021-11-26 Thread Arthur Zamarin
commit: c225cf0337598b890d5d69c91927e30f04731de9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Nov 26 19:06:30 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Nov 26 19:06:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c225cf03

dev-java/jnr-posix: Keyword 3.0.10-r1 ppc64, #826846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
index cc7d5a2639f6..3c685ec9c53a 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="amd64 arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2021-11-24 Thread Sam James
commit: 0a8f27545133358411c03e542172997775c2010f
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 25 04:14:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 25 04:14:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8f2754

dev-java/jnr-posix: Stabilize 3.0.10-r1 amd64, #826850

Signed-off-by: Sam James  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
index 717b49144f69..cc7d5a2639f6 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="~amd64 arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2021-11-24 Thread Sam James
commit: 169acf282b662c7b1a58bbab7edd7fbe8d56d6cc
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 25 04:13:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 25 04:13:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169acf28

dev-java/jnr-posix: Stabilize 3.0.10-r1 arm64, #826850

Signed-off-by: Sam James  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
index f13e3ae9dd14..717b49144f69 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~amd64 arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2021-11-24 Thread Sam James
commit: b7e8f606f560906730b84f1eb7f0b55ff6ff9019
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 25 04:10:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 25 04:10:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e8f606

dev-java/jnr-posix: Stabilize 3.0.10-r1 x86, #826850

Signed-off-by: Sam James  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
index 56aef1d07026..f13e3ae9dd14 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2021-11-18 Thread Arthur Zamarin
commit: d3d01630517dc2c42f6f50e6e44959fa54873579
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Nov 19 07:23:42 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Nov 19 07:24:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3d01630

dev-java/jnr-posix: Keyword 3.0.10 ppc64, #822945

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
index d42fb953dfb4..908bb554f1a5 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2021-11-13 Thread Sam James
commit: 2b17547c38822412736acd591d7c6b29cb666e92
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 13 06:45:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 13 08:28:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b17547c

dev-java/jnr-posix: build with Java 8+, update EAPI 5 -> 7

Signed-off-by: Sam James  gentoo.org>

 dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild | 54 +++
 1 file changed, 54 insertions(+)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
new file mode 100644
index 000..56aef1d0702
--- /dev/null
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+JAVA_PKG_IUSE="doc source test"
+JAVA_ANT_REWRITE_CLASSPATH="yes"
+JAVA_ANT_CLASSPATH_TAGS="${JAVA_ANT_CLASSPATH_TAGS} javadoc"
+JAVA_ANT_ENCODING="UTF-8"
+
+EANT_EXTRA_ARGS="-Dmaven.build.finalName=${PN}"
+EANT_GENTOO_CLASSPATH="jnr-constants,jnr-ffi-2"
+EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4"
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="Lightweight cross-platform POSIX emulation layer for Java"
+HOMEPAGE="https://github.com/jnr/jnr-posix;
+SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
+SLOT="3.0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+
+CDEPEND="dev-java/jnr-constants:0
+   dev-java/jnr-ffi:2"
+
+RDEPEND="${CDEPEND}
+   >=virtual/jre-1.8:*"
+
+DEPEND="${CDEPEND}
+   >=virtual/jdk-1.8:*
+   test? (
+   dev-java/ant-junit4:0
+   dev-java/junit:4
+   )"
+
+src_prepare() {
+   default
+
+   cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die
+}
+
+src_test() {
+   ANT_TASKS="ant-junit4" eant test -DJunit.present=true
+}
+
+src_install() {
+   java-pkg_dojar target/${PN}.jar
+   dodoc README.txt
+
+   use doc && java-pkg_dojavadoc target/site/apidocs
+   use source && java-pkg_dosrc src/main/java/*
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2017-07-17 Thread Alexis Ballier
commit: 923aba3060462ec498d39f4939fb99b4460b6a89
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Jul 17 11:28:15 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Jul 17 11:28:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=923aba30

dev-java/jnr-posix: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-java/jnr-posix/jnr-posix-3.0.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild 
b/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
index 238c884de4d..d42fb953dfb 100644
--- a/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
+++ b/dev-java/jnr-posix/jnr-posix-3.0.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
 SLOT="3.0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
 
 CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:2"



[gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-posix/

2016-10-30 Thread James Le Cuirot
commit: 109eb6161a60ea76528ceb95b42bfe1acfa59def
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Oct 30 20:14:08 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Oct 30 20:29:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109eb616

dev-java/jnr-posix: Remove old

Package-Manager: portage-2.3.2

 dev-java/jnr-posix/Manifest  |  2 -
 dev-java/jnr-posix/jnr-posix-1.1.8-r1.ebuild | 60 
 dev-java/jnr-posix/jnr-posix-2.4.0.ebuild| 58 ---
 3 files changed, 120 deletions(-)

diff --git a/dev-java/jnr-posix/Manifest b/dev-java/jnr-posix/Manifest
index 600a28d..dc92984 100644
--- a/dev-java/jnr-posix/Manifest
+++ b/dev-java/jnr-posix/Manifest
@@ -1,3 +1 @@
-DIST jnr-posix-1.1.8.tar.gz 206617 SHA256 
c66c469cd97ed5a1f1cee10f71ea4a50c18c96f47019d93508aaef3d2a6fa9b1 SHA512 
566289eefcf4c277145621aefcd5c412b38e2feb5d1c0297ee9b3945223278aca4ee4914c55c638230ec968ead3c952773aeb49072b3883c0bb04fe7c0d7cae5
 WHIRLPOOL 
d74ba3c21c419cf9c0f02abbe76728a61f622a8c8e03da84c661ad9690cce1f8238003d15e0349ed12220c581fdbfc05c9b3cc436286bb400a40b30500ce5783
-DIST jnr-posix-2.4.0.tar.gz 64601 SHA256 
773e5d70c538493a6e8dad2b74e039368d3536b7159d24d02128d2201e15537f SHA512 
5e59eaa30b7177cee8fcd57ecd88038e0c043bb5f929cbcc808f24088b19b0ba464dc2af68d7cf94f7508281d1bc6ea26f1f39b8651727b75fae6eeb71c2c2dd
 WHIRLPOOL 
aa0711d8706032aea264682c414f46409e71abe1fa6e447b3c2d52f0af6e58442073e8e72721098f87ebaa116a5677830d3a50934799a28acf2b85d9b4e1aece
 DIST jnr-posix-3.0.10.tar.gz 85912 SHA256 
bb68f39e911563458cea6334cb32733618836b5f96d996528a300a457a1e3746 SHA512 
a282c164b0b9ace8aba508a48d08d53beb0ddcd4baf5389412941a1e1430d75df9bdd35935a6982d4bb1910c0fdad55910ba028b1b5388c55e19a6c4ed2ba6a1
 WHIRLPOOL 
169a774516eda1176e8b631bbb16bcaebef287bf5c9ce1da871071df40081842e5405e7c4dae15f1c7054554b2d8e907bfeb3dba20db176912082cba1b83a525

diff --git a/dev-java/jnr-posix/jnr-posix-1.1.8-r1.ebuild 
b/dev-java/jnr-posix/jnr-posix-1.1.8-r1.ebuild
deleted file mode 100644
index 8b92a94..
--- a/dev-java/jnr-posix/jnr-posix-1.1.8-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Lightweight cross-platform POSIX emulation layer for Java"
-HOMEPAGE="https://github.com/jnr/;
-SRC_URI="https://github.com/jnr/${PN}/tarball/${PV} -> ${P}.tar.gz"
-
-LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
-SLOT="1.1"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE=""
-
-COMMON_DEP="
-   dev-java/jnr-constants:0.8.2
-   dev-java/jnr-ffi:0.5"
-RDEPEND="${COMMON_DEP}
-   >=virtual/jre-1.5"
-DEPEND="${COMMON_DEP}
-   >=virtual/jdk-1.5
-   test? (
-   dev-java/ant-junit
-   dev-java/junit:4
-   )"
-
-src_unpack() {
-   unpack ${A}
-   mv jnr-jnr-posix-* ${P} || die
-}
-
-java_prepare() {
-   cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-JAVA_ANT_CLASSPATH_TAGS="${JAVA_ANT_CLASSPATH_TAGS} javadoc"
-JAVA_ANT_ENCODING="UTF-8"
-
-EANT_GENTOO_CLASSPATH="jnr-constants-0.8.2,jnr-ffi-0.5"
-EANT_EXTRA_ARGS="-Dmaven.build.finalName=${PN} -Dmaven.build.srcDir.0=src"
-
-EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4"
-EANT_TEST_EXTRA_ARGS="-Dmaven.build.testDir.0=test"
-src_test() {
-   java-pkg-2_src_test
-}
-
-src_install() {
-   java-pkg_dojar target/${PN}.jar
-   dodoc README.txt
-
-   use doc && java-pkg_dojavadoc target/site/apidocs
-   use source && java-pkg_dosrc src/*
-}

diff --git a/dev-java/jnr-posix/jnr-posix-2.4.0.ebuild 
b/dev-java/jnr-posix/jnr-posix-2.4.0.ebuild
deleted file mode 100644
index 1036558..
--- a/dev-java/jnr-posix/jnr-posix-2.4.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-ant-2 vcs-snapshot
-
-DESCRIPTION="Lightweight cross-platform POSIX emulation layer for Java"
-HOMEPAGE="https://github.com/jnr/jnr-posix;
-SRC_URI="https://github.com/jnr/${PN}/tarball/${PV} -> ${P}.tar.gz"
-
-LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )"
-SLOT="2.4"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE=""
-
-COMMON_DEP="
-   dev-java/jnr-constants:0
-   dev-java/jnr-ffi:0.7"
-RDEPEND="${COMMON_DEP}
-   >=virtual/jre-1.5"
-DEPEND="${COMMON_DEP}
-   >=virtual/jdk-1.5
-   test? (
-   dev-java/ant-junit
-   dev-java/junit:4
-   )"
-
-java_prepare() {
-   cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-JAVA_ANT_CLASSPATH_TAGS="${JAVA_ANT_CLASSPATH_TAGS} javadoc"
-JAVA_ANT_ENCODING="UTF-8"
-