Skip to content

Commit

Permalink
collectd deps
Browse files Browse the repository at this point in the history
Signed-off-by: Batuhan Apaydin <batuhan.apaydin@chainguard.dev>
Co-authored-by: Furkan Turkal <furkan.turkal@chainguard.dev>
Signed-off-by: Batuhan Apaydin <batuhan.apaydin@chainguard.dev>
  • Loading branch information
developer-guy and Dentrax committed Jan 17, 2024
1 parent 571e455 commit 4147339
Show file tree
Hide file tree
Showing 14 changed files with 873 additions and 0 deletions.
43 changes: 43 additions & 0 deletions font-sony-misc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package:
name: font-sony-misc
version: 1.0.4
epoch: 0
description: X.org Sony fonts
copyright:
- license: HPND-sell-variant
environment:
contents:
packages:
- autoconf
- automake
- build-base
- busybox
- ca-certificates-bundle
- font-util-dev
- bdftopcf
- encodings
- font-alias
- mkfontscale
- fontconfig
pipeline:
- uses: fetch
with:
expected-sha256: e6b09f823fccb06e0bd0b2062283b6514153323bd8a7486e9c2e3f55ab84946b
uri: https://www.x.org/releases/individual/font/font-sony-misc-${{package.version}}.tar.xz
- uses: autoconf/configure
with:
opts: |
--with-fontdir=/usr/share/fonts/misc
- uses: autoconf/make
- runs: |
make DESTDIR="${{targets.destdir}}" \
MKFONTDIR=: \
MKFONTSCALE=: \
FCCACHE=: \
install
- uses: strip

update:
enabled: true
release-monitor:
identifier: 17217
84 changes: 84 additions & 0 deletions gpsd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
package:
name: gpsd
version: "3.25"
epoch: 0
description: GPS daemon
copyright:
- license: BSD-2-Clause

environment:
contents:
packages:
- asciidoctor
- autoconf
- automake
- build-base
- busybox
- ca-certificates-bundle
- libcap-dev
- ncurses-dev
- py3.12-setuptools
- python3
- python3-dev
- scons

pipeline:
- uses: fetch
with:
expected-sha256: b368b6a305e3f7a6382d23a0cbfc1d78923060b6b7f54cf7987a73c7b4a9afc2
uri: https://download-mirror.savannah.gnu.org/releases/gpsd/gpsd-${{package.version}}.tar.gz

- runs: |
mkdir -p pps-tools/sys
cp ./timepps.h pps-tools/sys/
- runs: |
CPPFLAGS="$CPPFLAGS -I./pps-tools/ -DHAVE_SYS_TIMEPPS_H"
scons -j${JOBS:-1} \
prefix=/usr \
target_python=python3 \
python_shebang=/usr/bin/python3 \
dbus_export=no \
systemd=no
- runs: |
mkdir -p "${{targets.destdir}}"/etc/init.d
mkdir -p "${{targets.destdir}}"/etc/conf.d
DESTDIR="${{targets.destdir}}" scons install
install -m755 -D ./gpsd.initd "${{targets.destdir}}"/etc/init.d/gpsd
install -m644 -D ./gpsd.confd "${{targets.destdir}}"/etc/conf.d/gpsd
subpackages:
- name: gpsd-dev
pipeline:
- uses: split/dev
dependencies:
runtime:
- gpsd
description: gpsd dev

- name: gpsd-doc
pipeline:
- uses: split/manpages
description: gpsd manpages

- name: py3-gpsd
pipeline:
- runs: |
mkdir -p "${{targets.subpkgdir}}"/usr/bin
for n in gpscat gpsfake gpsprof; do
mv "${{targets.destdir}}"/usr/bin/$n "${{targets.subpkgdir}}"/usr/bin/
done
description: gpsd library and clients for python

- name: gpsd-clients
pipeline:
- runs: |
mkdir -p "${{targets.subpkgdir}}"/usr/bin
mv "${{targets.destdir}}"/usr/bin/* "${{targets.subpkgdir}}"/usr/bin
description: gpsd clients

update:
enabled: true
release-monitor:
identifier: 6846
7 changes: 7 additions & 0 deletions gpsd/gpsd.confd
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

# Config file for gpsd server
GPSD_OPTIONS=""
DEVICES=""
GPSD_SOCKET="/var/run/gpsd.sock"
39 changes: 39 additions & 0 deletions gpsd/gpsd.initd
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
after dbus
before ntpd
need loopback
}

PIDFILE=/var/run/${SVCNAME}.pid
DAEMON=/usr/sbin/gpsd

checkconfig() {
# Note: these GPSD_xxx var names should be kept in sync with the udev rules.
if [ -z "${GPSD_SOCKET}" ] && [ -z "${DEVICES}" ]; then
GPSD_SOCKET="/var/run/gpsd.sock"
fi

if [ -n "${GPSD_SOCKET}" ]; then
GPSD_OPTIONS="${GPSD_OPTIONS} -F ${GPSD_SOCKET}"
fi
}

start() {
checkconfig
ebegin "Starting gpsd"

start-stop-daemon --start --quiet --pidfile ${PIDFILE} --exec ${DAEMON} -- \
${GPSD_OPTIONS} -P ${PIDFILE} ${DEVICES}
eend $?
}

stop() {
ebegin "Stopping gpsd"
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile ${PIDFILE}
eend $?
rm -f ${PIDFILE}
}
216 changes: 216 additions & 0 deletions gpsd/timepps.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,216 @@
/*
* timepps.h -- PPS API main header
*
* Copyright (C) 2005-2007 Rodolfo Giometti <giometti@linux.it>
* Copyright (C) 2009-2011 Alexander Gordeev <alex@gordick.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Source: https://github.com/ago/pps-tools/ - Retreived 2022-09-03
*/

#ifndef _SYS_TIMEPPS_H_
#define _SYS_TIMEPPS_H_

#include <errno.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <linux/types.h>
#include <linux/pps.h>

#define LINUXPPS 1 /* signal we are using LinuxPPS */

/*
* New data structures
*/

struct ntp_fp {
unsigned int integral;
unsigned int fractional;
};

union pps_timeu {
struct timespec tspec;
struct ntp_fp ntpfp;
unsigned long longpad[3];
};

struct pps_info {
unsigned long assert_sequence; /* seq. num. of assert event */
unsigned long clear_sequence; /* seq. num. of clear event */
union pps_timeu assert_tu; /* time of assert event */
union pps_timeu clear_tu; /* time of clear event */
int current_mode; /* current mode bits */
};

struct pps_params {
int api_version; /* API version # */
int mode; /* mode bits */
union pps_timeu assert_off_tu; /* offset compensation for assert */
union pps_timeu clear_off_tu; /* offset compensation for clear */
};

typedef int pps_handle_t; /* represents a PPS source */
typedef unsigned long pps_seq_t; /* sequence number */
typedef struct ntp_fp ntp_fp_t; /* NTP-compatible time stamp */
typedef union pps_timeu pps_timeu_t; /* generic data type for time stamps */
typedef struct pps_info pps_info_t;
typedef struct pps_params pps_params_t;

#define assert_timestamp assert_tu.tspec
#define clear_timestamp clear_tu.tspec

#define assert_timestamp_ntpfp assert_tu.ntpfp
#define clear_timestamp_ntpfp clear_tu.ntpfp

#define assert_offset assert_off_tu.tspec
#define clear_offset clear_off_tu.tspec

#define assert_offset_ntpfp assert_off_tu.ntpfp
#define clear_offset_ntpfp clear_off_tu.ntpfp

/*
* The PPS API
*/

static __inline int time_pps_create(int source, pps_handle_t *handle)
{
int ret;
struct pps_kparams dummy;

if (!handle) {
errno = EINVAL;
return -1;
}

/* First we check if current device is a valid PPS one by
* doing a dummy PPS_GETPARAMS...
*/
ret = ioctl(source, PPS_GETPARAMS, &dummy);
if (ret) {
errno = EOPNOTSUPP;
return -1;
}

/* ... then since in LinuxPPS there are no differences between a
* "PPS source" and a "PPS handle", we simply return the same value.
*/
*handle = source;

return 0;
}

static __inline int time_pps_destroy(pps_handle_t handle)
{
return close(handle);
}

static __inline int time_pps_getparams(pps_handle_t handle,
pps_params_t *ppsparams)
{
int ret;
struct pps_kparams __ppsparams = {};

ret = ioctl(handle, PPS_GETPARAMS, &__ppsparams);

ppsparams->api_version = __ppsparams.api_version;
ppsparams->mode = __ppsparams.mode;
ppsparams->assert_off_tu.tspec.tv_sec = __ppsparams.assert_off_tu.sec;
ppsparams->assert_off_tu.tspec.tv_nsec = __ppsparams.assert_off_tu.nsec;
ppsparams->clear_off_tu.tspec.tv_sec = __ppsparams.clear_off_tu.sec;
ppsparams->clear_off_tu.tspec.tv_nsec = __ppsparams.clear_off_tu.nsec;

return ret;
}

static __inline int time_pps_setparams(pps_handle_t handle,
const pps_params_t *ppsparams)
{
struct pps_kparams __ppsparams = {};

__ppsparams.api_version = ppsparams->api_version;
__ppsparams.mode = ppsparams->mode;
__ppsparams.assert_off_tu.sec = ppsparams->assert_off_tu.tspec.tv_sec;
__ppsparams.assert_off_tu.nsec = ppsparams->assert_off_tu.tspec.tv_nsec;
__ppsparams.clear_off_tu.sec = ppsparams->clear_off_tu.tspec.tv_sec;
__ppsparams.clear_off_tu.nsec = ppsparams->clear_off_tu.tspec.tv_nsec;

return ioctl(handle, PPS_SETPARAMS, &__ppsparams);
}

/* Get capabilities for handle */
static __inline int time_pps_getcap(pps_handle_t handle, int *mode)
{
return ioctl(handle, PPS_GETCAP, mode);
}

static __inline int time_pps_fetch(pps_handle_t handle, const int tsformat,
pps_info_t *ppsinfobuf,
const struct timespec *timeout)
{
struct pps_fdata __fdata = {};
int ret;

/* Sanity checks */
if (tsformat != PPS_TSFMT_TSPEC) {
errno = EINVAL;
return -1;
}

if (timeout) {
__fdata.timeout.sec = timeout->tv_sec;
__fdata.timeout.nsec = timeout->tv_nsec;
} else
__fdata.timeout.flags = PPS_TIME_INVALID;

ret = ioctl(handle, PPS_FETCH, &__fdata);

ppsinfobuf->assert_sequence = __fdata.info.assert_sequence;
ppsinfobuf->clear_sequence = __fdata.info.clear_sequence;
ppsinfobuf->assert_tu.tspec.tv_sec = __fdata.info.assert_tu.sec;
ppsinfobuf->assert_tu.tspec.tv_nsec = __fdata.info.assert_tu.nsec;
ppsinfobuf->clear_tu.tspec.tv_sec = __fdata.info.clear_tu.sec;
ppsinfobuf->clear_tu.tspec.tv_nsec = __fdata.info.clear_tu.nsec;
ppsinfobuf->current_mode = __fdata.info.current_mode;

return ret;
}

#ifdef PPS_KC_BIND

static __inline int time_pps_kcbind(pps_handle_t handle,
const int kernel_consumer,
const int edge, const int tsformat)
{
struct pps_bind_args __bind_args = {};

__bind_args.tsformat = tsformat;
__bind_args.edge = edge;
__bind_args.consumer = kernel_consumer;

return ioctl(handle, PPS_KC_BIND, &__bind_args);
}

#else /* !PPS_KC_BIND */

static __inline int time_pps_kcbind(pps_handle_t handle,
const int kernel_consumer,
const int edge, const int tsformat)
{
/* LinuxPPS doesn't implement kernel consumer feature */
errno = EOPNOTSUPP;
return -1;
}

#endif /* PPS_KC_BIND */

#endif /* _SYS_TIMEPPS_H_ */
Loading

0 comments on commit 4147339

Please sign in to comment.