Package Details: linuxptp 4.2-1

Git Clone URL: https://aur.archlinux.org/linuxptp.git (read-only, click to copy)
Package Base: linuxptp
Description: An implementation of the Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux.
Upstream URL: http://linuxptp.sourceforge.net/
Keywords: ptp tsn
Licenses: GPL
Submitter: ventosus
Maintainer: 2bluesc
Last Packager: 2bluesc
Votes: 11
Popularity: 0.000188
First Submitted: 2014-11-21 10:59 (UTC)
Last Updated: 2024-03-18 22:44 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

pcmoore commented on 2024-03-18 22:15 (UTC)

It looks like there is now a v4.2 release, any chance we can get an updated package soon?

2bluesc commented on 2023-10-01 06:58 (UTC) (edited on 2023-10-01 06:58 (UTC) by 2bluesc)

Version 4.1 has been released, patch and complete PKGBUILD here:

https://gist.github.com/596ee5af0d41661cdb05538325f029b3

@ventosus can you please update the package or add me as a maintainer or co-maintainer so I can help update this package?

blackhole commented on 2023-08-10 14:24 (UTC) (edited on 2023-08-10 14:25 (UTC) by blackhole)

For those interested, the PKGBUILD for version 4.0 based on Ubuntu package:


pkgname=linuxptp
pkgver=4.0
pkgrel=1
pkgdesc='An implementation of the Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux.'
arch=('i686' 'x86_64' 'aarch64')
url='http://linuxptp.sourceforge.net/'
license=('GPL')
depends=('glibc')
makedepends=()
source=("http://archive.ubuntu.com/ubuntu/pool/universe/l/"$pkgname"/"$pkgname"_"$pkgver"-"$pkgrel"_amd64.deb")
sha256sums=('c176f4da42199b7961239a4c4a1d23d3aaaddf92d5c6d479d007bd54cf68071c')

package() {
  bsdtar xf data.tar.zst -C "$pkgdir"
  rm -f "$pkgdir"/usr/share/doc/linuxptp/changelog.Debian.gz
  rm -f "$pkgdir"/usr/share/doc/linuxptp/README.Debian
  install -d $pkgdir/usr/bin
  cp -r "$pkgdir"/usr/sbin/* "$pkgdir"/usr/bin/
  rm -rf "$pkgdir"/usr/sbin
  install -d $pkgdir/usr/lib
  cp -r "$pkgdir"/lib/* "$pkgdir"/usr/lib/
  rm -rf "$pkgdir"/lib
}

mys_721tx commented on 2023-05-29 09:42 (UTC)

Could you also add the systemd service files? Ubuntu's package has some example: http://archive.ubuntu.com/ubuntu/pool/universe/l/linuxptp/linuxptp_3.1.1-4.debian.tar.xz

blackhole commented on 2022-04-28 09:47 (UTC)

Could you add aarch64 to arch? Here is compiling fine

ventosus commented on 2021-07-15 22:12 (UTC)

thanks, updated to 3.1.1

rgacogne commented on 2021-07-12 15:59 (UTC)

Hi! Two security issues have been found in 3.1 1, it would be nice to upgrade to 3.1.1 :)

alex.forencich commented on 2020-07-26 18:49 (UTC)

Please rename the downloaded file based on the version by setting source to

source=("${pkgname}-${pkgver}.tgz::https://sourceforge.net/projects/${pkgname}/files/v${pkgver}/${pkgname}-${pkgver}.tgz/download")

Without this, many AUR helpers will complain about the hash not matching when the actual problem is the file wasn't downloaded.

schnafte commented on 2020-07-24 13:08 (UTC)

source scheme changed to: https://sourceforge.net/projects/${pkgname}/files/v${pkgver}/${pkgname}-${pkgver}.tgz/download

ventosus commented on 2015-01-07 20:52 (UTC)

Thanks bidulock, updated. We are now also installing to /usr/bin instead of the default /usr/sbin which is deprecated.