dev-java / rxtx

Native library providing serial and parallel communication for Java

Official package sites : http://rxtx.qbang.org/ ·

v2.2_pre2-r2 :: 2 :: gentoo

Modified
License
LGPL-2.1+
Keywords
amd64 x86 ~ppc64
USE flags
doc lfd source

General

doc
Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally
lfd
Installs and uses LockFileServer daemon (lfd)
source
Zip the sources and install them

app-arch / zip : Info ZIP (encryption support)

dev-java / java-config : Java environment configuration query tool

virtual / jdk : Virtual for Java Development Kit (JDK)

app-arch / zip : Info ZIP (encryption support)

dev-java / java-config : Java environment configuration query tool

sys-apps / xinetd : Powerful replacement for inetd

virtual / jre : Virtual for Java Runtime Environment (JRE)

sci-geosciences / bt747 : MTK GPS Datalogger Device Control

543096
dev-java/rxtx-2.2_pre2 crashes on long device names
761103
dev-java/rxtx-2.2_pre2-r1 : lockdaemon.c:(.text+<snip>): undefined reference to minor
867409
dev-java/rxtx-2.2_pre2-r2:2 - /.../fuserImp.c: error: PATH_MAX undeclared (first use in this function)
874444
dev-java/rxtx-2.2_pre2-r2 - call to undeclared function major; ISO C99 and later do not support
898170
dev-java/rxtx-2.2_pre2-r2 fails to compile (MUSL-CLANG-SYSTEM): hang
939374
dev-java/rxtx-2.2_pre2-r2 calls cc directly
Repository mirror & CI · gentoo
Merge updates from master
Miroslav Šulc · gentoo
dev-java/rxtx: added missing include + scrubbed patches
Closes: https://bugs.gentoo.org/927898 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Repository mirror & CI · gentoo
Merge updates from master
matoro · gentoo
dev-java/rxtx: keyword 2.2_pre2-r2 for ~ppc64
This not only builds but works on ppc64. I tested this on my system with serial ports in use using the below program: $ cat Main.java import gnu.io.*; import java.util.*; public class Main { /** * @return A HashSet containing the CommPortIdentifier for all serial ports that are not currently being used. */ public static HashSet<CommPortIdentifier> getAvailableSerialPorts() { HashSet<CommPortIdentifier> h = new HashSet<CommPortIdentifier>(); Enumeration thePorts = CommPortIdentifier.getPortIdentifiers(); while (thePorts.hasMoreElements()) { CommPortIdentifier com = (CommPortIdentifier) thePorts.nextElement(); switch (com.getPortType()) { case CommPortIdentifier.PORT_SERIAL: try { CommPort thePort = com.open("CommUtil", 50); thePort.close(); h.add(com); } catch (PortInUseException e) { System.out.println("Port, " + com.getName() + ", is in use."); } catch (Exception e) { System.err.println("Failed to open port " + com.getName()); e.printStackTrace(); } } } return h; } public static void main(String[] args) { for (CommPortIdentifier element : getAvailableSerialPorts()) { System.out.println(element.getName()); } } } $ javac -cp /usr/share/rxtx-2/lib/RXTXcomm.jar Main.java $ java -Djava.library.path=/usr/lib64/rxtx-2 -cp .:/usr/share/rxtx-2/lib/RXTXcomm.jar Main /dev/ttyUSB0 /dev/ttyUSB1 Closes: https://bugs.gentoo.org/454608 Signed-off-by: matoro <matoro@users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/25356 Signed-off-by: Sam James <sam@gentoo.org>
Repository mirror & CI · gentoo
Merge updates from master
Sam James · gentoo
dev-java/rxtx: drop 2.2_pre2-r1
Closes: https://bugs.gentoo.org/833396 Signed-off-by: Sam James <sam@gentoo.org>
Repository mirror & CI · gentoo
Merge updates from master
Jakov Smolić · gentoo
dev-java/rxtx: Stabilize 2.2_pre2-r2 amd64, #833396
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Repository mirror & CI · gentoo
Merge updates from master
Jakov Smolić · gentoo
dev-java/rxtx: Stabilize 2.2_pre2-r2 x86, #833396
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Repository mirror & CI · gentoo
Merge updates from master
Yuan Liao · gentoo
dev-java/rxtx: Fix various build errors for Java 11+ and others, EAPI 8
- Fix compiler errors due to -Werror=format-security - Fix Javadoc generation errors - Replace 'javah' with 'javac -h' for JDK 10+ - Attempt to fix some random, nondeterministic build-time errors that were speculated to be caused by parallel 'make'. Those errors are not always reproducible and may go away during a retry, which might have stopped some users (including the commit author himself) from reporting them. Another random error popped up when the new ebuild revision was being tested, hence a fix that forces sequential build is attempted in the hope to prevent probable random errors. Bug: https://bugs.gentoo.org/550534 Bug: https://bugs.gentoo.org/642030 Bug: https://bugs.gentoo.org/831394 Bug: https://bugs.gentoo.org/833396 Signed-off-by: Yuan Liao <liaoyuan@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/24289 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Repository mirror & CI · gentoo
Merge updates from master
Miroslav Šulc · gentoo
dev-java/rxtx: removed obsolete 2.2_pre2
Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Agostino Sarubbo · gentoo
dev-java/rxtx: x86 stable wrt bug #741018
Package-Manager: Portage-2.3.103, Repoman-2.3.23 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
Repository mirror & CI · gentoo
Merge updates from master
Agostino Sarubbo · gentoo
dev-java/rxtx: amd64 stable wrt bug #741018
Package-Manager: Portage-2.3.103, Repoman-2.3.23 RepoMan-Options: --include-arches="amd64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
Robin H. Johnson · gentoo
Drop $Id$ per council decision in bug #611234.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
James Le Cuirot · gentoo
dev-java/rxtx: Fix USE=lfd issue (#550908), EAPI bump, cleanups
* lockdaemon.c should include limits.h * app-arch/zip can be implied using JAVA_PKG_IUSE * dev-java/ant-core isn't actually needed * sys-apps/xinetd is an RDEPEND, not DEPEND * Use the correct -source and -target flags * Remove useless elibtoolize * Remove useless sed * Add missing dies * dohtml is bad Package-Manager: portage-2.2.27
James Le Cuirot · gentoo
dev-java/rxtx: Remove old
Package-Manager: portage-2.2.27
Robin H. Johnson · gentoo
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed