commit 3d7a028c079bc07ee81a38a2122242f6d889f8598ea286f710eaba4d2f48ec9d Author: Adrian Schröter Date: Fri May 3 11:29:51 2024 +0200 Sync from SUSE:SLFO:Main canutils revision 0168d9d8079129140dcb007b2d15c24e diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/canutils.changes b/canutils.changes new file mode 100644 index 0000000..1c5516c --- /dev/null +++ b/canutils.changes @@ -0,0 +1,85 @@ +------------------------------------------------------------------- +Wed Mar 15 13:35:18 UTC 2023 - Jan Engelhardt + +- Update to release 2023.03 + * cangen: add support for SO_TXTIME + * canfdtest: Add extended frame format / message length / FD / + BRS support + * can-calc-bit-timing: add support for calculation of CAN-FD + bit timings + * cangen: new generation mode - partially randomized payload + (-D) + * cansniffer: add CAN FD support + +------------------------------------------------------------------- +Thu Aug 19 11:34:16 UTC 2021 - Jan Engelhardt + +- Update to release 2021.08.0 + * Support for new kernel features: + * Add len8_dlc support for Classical CAN frames (Linux v5.11+) + * Add ISOTP SF_BROADCAST support (Linux v5.11+) + +------------------------------------------------------------------- +Tue Dec 29 22:16:03 UTC 2020 - Jan Engelhardt + +- Update to release 2020.12.0 + * candump: Enable zero relative timestamps to be used in + log files. + * "-tz" and "-ta" are now valid options for the logfile format. + +------------------------------------------------------------------- +Mon Nov 30 12:46:23 UTC 2020 - Jan Engelhardt + +- Add "can-utils" provides, add documentation. + +------------------------------------------------------------------- +Tue Nov 17 10:12:59 UTC 2020 - Jan Engelhardt + +- Update to release 2020.11.0 + * No further changes to prior snapshot, just version bump. + +------------------------------------------------------------------- +Thu Oct 29 09:03:15 UTC 2020 - Jan Engelhardt + +- Update to snapshot 2020.04.02.g192 (4573e852f9) + * isotpsend: add support for blocking write flag + * add cansequence tool + +------------------------------------------------------------------- +Tue Sep 1 10:09:16 UTC 2020 - Jan Engelhardt + +- Update to version 2020.04.02.g119 (ea844bdc5e) + * Rename jcat et al to j1939cat + * j1939cat: add broadcast support + +------------------------------------------------------------------- +Mon Aug 24 08:05:00 UTC 2020 - Tuukka Pasanen + +- Update to version v2020.04.02 + * jcat: provide errqueue support + * jcat: add repeat support + * Add uds output functionality + * cangw: add new command line option -X to handle CAN FD rules + * cangw: add CAN FD support +- Drop 0001-fix-include-to-find-SIOCGSTAMP-with-latest-kernel.patch + +------------------------------------------------------------------- +Mon Aug 26 08:48:53 UTC 2019 - Jan Engelhardt + +- Add 0001-fix-include-to-find-SIOCGSTAMP-with-latest-kernel.patch + to unbreak build with modern linux-glibc-devel. + +------------------------------------------------------------------- +Sat Aug 25 06:41:34 UTC 2018 - jengelh@inai.de + +- Rename canutils-linuxcan to canutils + +------------------------------------------------------------------- +Wed Aug 15 09:05:03 UTC 2018 - tuukka.pasanen@ilmi.fi + +- Update to official release 2018.02.0 + +------------------------------------------------------------------- +Mon Nov 21 23:43:48 UTC 2016 - jengelh@inai.de + +- Initial package (version 0~g296) for build.opensuse.org diff --git a/canutils.spec b/canutils.spec new file mode 100644 index 0000000..0095172 --- /dev/null +++ b/canutils.spec @@ -0,0 +1,61 @@ +# +# spec file for package canutils +# +# Copyright (c) 2023 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: canutils +Version: 2023.03 +Release: 0 +Summary: Utilities for Controller Area Networks from the Linux-CAN project +License: BSD-3-Clause AND GPL-2.0-only +Group: Hardware/Other +URL: https://github.com/linux-can/can-utils +Source: https://github.com/linux-can/can-utils/archive/refs/tags/v%version.tar.gz +BuildRequires: libtool +BuildRequires: pkg-config +BuildRequires: xz +Obsoletes: canutils-linuxcan +Provides: can-utils = %version-%release +Provides: canutils-linuxcan + +%description +SocketCAN userspace utilities and tools. + +CAN is a message-based network protocol designed for vehicles +originally initially created by Robert Bosch GmbH. SocketCAN is a set +of CAN drivers and a networking stack contributed by Volkswagen +Research to the Linux kernel. + +This package contains some userspace utilities for the Linux +SocketCAN subsystem. + +%prep +%autosetup -n can-utils-%version -p1 + +%build +if test ! -e configure; then ./autogen.sh; fi +%configure --disable-static +%make_build + +%install +%make_install + +%files +%_bindir/* +%doc *.md +%license LICENSES/* + +%changelog diff --git a/v2023.03.tar.gz b/v2023.03.tar.gz new file mode 100644 index 0000000..8e7ccb2 --- /dev/null +++ b/v2023.03.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2790dfb57fe3ec22b6fd512838c6480c39f7c9ae193e59f1ae01221216505a7e +size 172270