diff options
author | Yigit Sever | 2023-01-23 23:45:48 +0300 |
---|---|---|
committer | Yigit Sever | 2023-01-23 23:45:48 +0300 |
commit | c2e77baada5e3f1dfd329a669d2bcf21795f36fd (patch) | |
tree | 50a417801c90674e1c6dabb1bac605262369a9ec /htpdate | |
parent | c2c8050a8d6d6ba7002d8d181e39e1c682b93f86 (diff) | |
download | packages-c2e77baada5e3f1dfd329a669d2bcf21795f36fd.tar.gz packages-c2e77baada5e3f1dfd329a669d2bcf21795f36fd.tar.bz2 packages-c2e77baada5e3f1dfd329a669d2bcf21795f36fd.zip |
Deleted package: htpdate
Diffstat (limited to 'htpdate')
-rw-r--r-- | htpdate/.SRCINFO | 15 | ||||
-rw-r--r-- | htpdate/.gitignore | 4 | ||||
-rw-r--r-- | htpdate/PKGBUILD | 29 | ||||
-rw-r--r-- | htpdate/htpdate.service | 11 |
4 files changed, 0 insertions, 59 deletions
diff --git a/htpdate/.SRCINFO b/htpdate/.SRCINFO deleted file mode 100644 index be3270b..0000000 --- a/htpdate/.SRCINFO +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | pkgbase = htpdate | ||
2 | pkgdesc = HTTP Time protocol | ||
3 | pkgver = 1.3.6 | ||
4 | pkgrel = 1 | ||
5 | url = https://github.com/twekkel/htpdate | ||
6 | arch = i686 | ||
7 | arch = x86_64 | ||
8 | license = GPL2 | ||
9 | depends = glibc | ||
10 | source = htpdate-1.3.6.tar.gz::https://github.com/twekkel/htpdate/archive/v1.3.6.tar.gz | ||
11 | source = htpdate.service | ||
12 | sha256sums = 3cdc558ec8e53ef374a42490b2f28c0b23981fa8754a6d7182044707828ad1e9 | ||
13 | sha256sums = 2f12bdf0745fbf7c52f465e78b47635fbdc6fa372e63fb94a6063a5f67ff8c8b | ||
14 | |||
15 | pkgname = htpdate | ||
diff --git a/htpdate/.gitignore b/htpdate/.gitignore deleted file mode 100644 index aece887..0000000 --- a/htpdate/.gitignore +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | /update | ||
2 | /htpdate-*.tar.* | ||
3 | /pkg/ | ||
4 | /src/ | ||
diff --git a/htpdate/PKGBUILD b/htpdate/PKGBUILD deleted file mode 100644 index bc2db96..0000000 --- a/htpdate/PKGBUILD +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | # Maintainer: Yigit Sever <yigit at yigitsever dot com> | ||
2 | # Contributor: Dominik Schrempf <dominik.schrempf at gmail dot com> | ||
3 | # Contributor: Jonathan Ryan <jryan at curious-computing dot com> | ||
4 | # Contributor: Hussam Al-Tayeb <hussam at visp dot net dot lb> | ||
5 | |||
6 | pkgname=htpdate | ||
7 | pkgver=1.3.6 | ||
8 | pkgrel=1 | ||
9 | pkgdesc="HTTP Time protocol" | ||
10 | arch=('i686' 'x86_64') | ||
11 | url="https://github.com/twekkel/htpdate" | ||
12 | license=(GPL2) | ||
13 | depends=('glibc') | ||
14 | source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz" | ||
15 | "htpdate.service") | ||
16 | sha256sums=('3cdc558ec8e53ef374a42490b2f28c0b23981fa8754a6d7182044707828ad1e9' | ||
17 | '2f12bdf0745fbf7c52f465e78b47635fbdc6fa372e63fb94a6063a5f67ff8c8b') | ||
18 | |||
19 | build() { | ||
20 | cd ${pkgname}-${pkgver} | ||
21 | make | ||
22 | } | ||
23 | |||
24 | package() { | ||
25 | install -D -m644 htpdate.service ${pkgdir}/usr/lib/systemd/system/htpdate.service | ||
26 | cd ${pkgname}-${pkgver} | ||
27 | install -D -m755 htpdate ${pkgdir}/usr/bin/htpdate | ||
28 | install -D -m644 htpdate.8 ${pkgdir}/usr/share/man/man8/htpdate.8 | ||
29 | } | ||
diff --git a/htpdate/htpdate.service b/htpdate/htpdate.service deleted file mode 100644 index 509b072..0000000 --- a/htpdate/htpdate.service +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | [Unit] | ||
2 | Description=Htpdate daemon | ||
3 | |||
4 | [Service] | ||
5 | Type=forking | ||
6 | PIDFile=/run/htpdate.pid | ||
7 | ExecStart=/usr/bin/htpdate -D -a -s -i /run/htpdate.pid www.linux.org www.freebsd.org ntp.neu.edu.cn www.kernel.org | ||
8 | |||
9 | [Install] | ||
10 | WantedBy=multi-user.target | ||
11 | |||