From: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
To: 64510@debbugs.gnu.org
Cc: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>,
Maxim Cournoyer <maxim.cournoyer@gmail.com>
Subject: [bug#64510] [PATCH v3] gnu: Add simtrace-1
Date: Fri, 12 Jan 2024 06:47:53 +0100 [thread overview]
Message-ID: <988cdb8a1f4374b6adde2ecd9755f32ae046250d.1705038349.git.GNUtoo@cyberdimension.org> (raw)
In-Reply-To: <ff689141cb75d35ed673a6867b2551db3cfe9368.1688738697.git.GNUtoo@cyberdimension.org>
* gnu/packages/telephony.scm (simtrace-1): New variable.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I7e415cd43ea1df5d5ea4ea7cfb814951aa570313
---
ChangeLog v2->v3:
- Replaced texlive by texlive-* packages.
---
gnu/packages/telephony.scm | 92 ++++++++++++++++++++++++++++++++++++++
1 file changed, 92 insertions(+)
diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 41e83384ec..9771bdbb67 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -78,6 +78,7 @@ (define-module (gnu packages telephony)
#:use-module (gnu packages samba)
#:use-module (gnu packages security-token)
#:use-module (gnu packages speech)
+ #:use-module (gnu packages tex)
#:use-module (gnu packages tls)
#:use-module (gnu packages xiph)
#:use-module (gnu packages xorg)
@@ -1046,6 +1047,97 @@ (define-public libosmocore
(home-page "https://osmocom.org/projects/libosmocore/wiki/Libosmocore")
(license license:gpl2+)))
+(define-public simtrace-1
+ (package
+ (name "simtrace-1")
+ (version "1.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitea.osmocom.org/sim-card/simtrace")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "03wjdavp7fbr7jzzhqx6di9v87yvfi19i3kpn798vlpbw7iwkjry"))))
+ (arguments
+ (list
+ #:tests? #f ;no tests
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "DESTDIR=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir "host")))
+ (add-after 'chdir 'fix-makefile
+ (lambda _ (substitute* "Makefile" (("/usr") ""))))
+ (delete 'configure)
+ (add-after 'build 'build-usermanual
+ (lambda* (#:key inputs native-inputs #:allow-other-keys)
+ (substitute* "../docs/usermanual.xml"
+ (("http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/docbookx.dtd")))
+ ;; At the beginning of the document, a table is
+ ;; constructed with the build time in it. This
+ ;; comes from '\newcommand{\DBKdate}{\today}' in
+ ;; share/dblatex/latex/contrib/db2latex/db2latex.sty
+ ;; in /gnu/store/[...]-dblatex-[...]. We used the
+ ;; commit time for the date instead.
+ (invoke
+ (which "faketime") "2019-10-01"
+ (which "dblatex")
+ "../docs/usermanual.xml")))
+ (add-after 'build-usermanual 'install-usermanual
+ (lambda _
+ (install-file
+ "../docs/usermanual.pdf"
+ (string-append #$output "/share/doc/simtrace-1/"))))
+ (add-after 'install 'install-man
+ (lambda _
+ (install-file
+ "simtrace.1"
+ (string-append #$output "/man/man1/")))))))
+ (build-system gnu-build-system)
+ (native-inputs
+ (list dblatex docbook-xml-4.2 libfaketime pkg-config
+ (texlive-updmap.cfg
+ (list texlive-appendix
+ texlive-changebar
+ texlive-courier
+ texlive-eepic
+ texlive-fancybox
+ texlive-fancyvrb
+ texlive-float
+ texlive-footmisc
+ texlive-helvetic
+ texlive-jknapltx
+ texlive-listings
+ texlive-multirow
+ texlive-overpic
+ texlive-pdflscape
+ texlive-pdfpages
+ texlive-rsfs
+ texlive-subfigure
+ texlive-times
+ texlive-titlesec))))
+ (inputs (list libosmocore libusb lksctp-tools talloc))
+ (synopsis
+ "Sniff the communication between phones and SIM cards with SIMtrace 1")
+ (description
+ "This contains the simtrace utility.
+It is compatible with the SIMtrace 1 hardware that contains an Atmel AT91SAM7S
+micro-controller. It is not compatible with the SIMtrace 2 hardware that uses
+an Atmel ATSAM3S micro-controller instead. The simtrace utility can display
+the SIM PDUs directly and/or send them to a given IP address to enable users
+to view SIM PDUs in Wireshark. It also contains a complete user manual for
+the SIMtrace 1 hardware.")
+ (home-page "https://osmocom.org/projects/simtrace/wiki/SIMtrace")
+ ;; The utility is GPLv2-only according to the source files headers, and the
+ ;; manual is under the cc-by-sa 3.0
+ (license (list license:gpl2 license:cc-by-sa3.0))))
+
(define-public xgoldmon
;; There are no releases nor tags.
(let ((revision "1")
base-commit: 40f5a3ce437083e4f259878735c2c55f41708e81
--
2.41.0
next prev parent reply other threads:[~2024-01-12 5:49 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-07 14:09 [bug#64510] [PATCH v1] gnu: Add simtrace-1 Denis 'GNUtoo' Carikli
2023-10-05 10:12 ` Christopher Baines
2023-10-06 12:53 ` Denis 'GNUtoo' Carikli
2023-10-06 13:07 ` Denis 'GNUtoo' Carikli
2023-10-06 16:16 ` [bug#64510] [PATCH v2] " Denis 'GNUtoo' Carikli
2023-10-11 17:16 ` [bug#64510] [PATCH v1] " Ludovic Courtès
2023-10-11 17:19 ` Ludovic Courtès
2024-01-12 5:47 ` Denis 'GNUtoo' Carikli [this message]
2024-01-24 0:05 ` [bug#64510] [PATCH v3] " Denis 'GNUtoo' Carikli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=988cdb8a1f4374b6adde2ecd9755f32ae046250d.1705038349.git.GNUtoo@cyberdimension.org \
--to=gnutoo@cyberdimension.org \
--cc=64510@debbugs.gnu.org \
--cc=maxim.cournoyer@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.