1
0
forked from ports/opt

task: update to 2.6.0

This commit is contained in:
Juergen Daubert 2021-10-03 09:40:20 +02:00
parent ed17783fe4
commit 3b5b077f23
3 changed files with 16 additions and 12 deletions

View File

@ -36,8 +36,10 @@ drwxr-xr-x root/root usr/share/task/rc/
-rw-r--r-- root/root usr/share/task/rc/holidays.es-US.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.fi-FI.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.fr-BE.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.fr-CA.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.fr-FR.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.hr-HR.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.hu-HU.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.is-IS.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.it-IT.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.nb-NO.rc
@ -45,8 +47,11 @@ drwxr-xr-x root/root usr/share/task/rc/
-rw-r--r-- root/root usr/share/task/rc/holidays.nl-NL.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.pl-PL.rc
lrwxrwxrwx root/root usr/share/task/rc/holidays.por-PRT.rc -> holidays.pt-PT.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.pt-BR.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.pt-PT.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.ru-RU.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.sk-SK.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.sv-FI.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.sv-SE.rc
-rw-r--r-- root/root usr/share/task/rc/holidays.tr-TR.rc
-rw-r--r-- root/root usr/share/task/rc/light-16.theme
@ -76,6 +81,4 @@ drwxr-xr-x root/root usr/share/task/scripts/vim/syntax/
-rw-r--r-- root/root usr/share/task/scripts/vim/syntax/taskdata.vim
-rw-r--r-- root/root usr/share/task/scripts/vim/syntax/taskedit.vim
-rw-r--r-- root/root usr/share/task/scripts/vim/syntax/taskrc.vim
drwxr-xr-x root/root usr/share/task/scripts/zsh/
-rw-r--r-- root/root usr/share/task/scripts/zsh/_task
-rw-r--r-- root/root usr/share/task/task-ref.pdf

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/W647I1GpPC8JoITNPmF9lBY1qyHIPnc/mvWRxMGT+5rbk7QAXc4DFnVr2IBxV0jLs4wi9cMLFSXIv+KlZzNnQU=
SHA256 (Pkgfile) = 913703fc59dd52edb62fe9b8ef0e749ff38a7491feeeb6b7db45bc522f73a762
SHA256 (.footprint) = c72f46c5e938eecf3496f38a1e282298e68484c7c5186eaf0ea0e003104bd764
SHA256 (task-2.5.3.tar.gz) = 7243d75e0911d9e2c9119ad94a61a87f041e4053e197f7280c42410aa1ee963b
RWSE3ohX2g5d/WWy9kC65JZ88enPajR+TD2VUvJZ995+Zw/EvI63p2KKw5lsxeXr79AJckwldRxSiQ99JVmdNHx0lx1yuH0iIwQ=
SHA256 (Pkgfile) = 55d1378e7106a8e433bcfaa0d52dd30d98ae2c23b4796f4d6b87d4cd899b4766
SHA256 (.footprint) = 6e5ceb153278f5ebff752e832cc6627fbbc564622bc3d917cef89d973aa30cd7
SHA256 (task-2.6.0.tar.gz) = 3d0b445d45ffc578c3fefadc82501e35de898d09e8cd7460709077751e55b9c5

View File

@ -1,14 +1,14 @@
# Description: Powerful task manager for the command-line
# URL: https://taskwarrior.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: util-linux cmake
# URL: https://taskwarrior.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: util-linux cmake
name=task
version=2.5.3
version=2.6.0
release=1
source=(https://github.com/GothenburgBitFactory/taskwarrior/releases/download/v$version/$name-$version.tar.gz)
build () {
build() {
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
@ -16,9 +16,10 @@ build () {
-D TASK_DOCDIR=share/task \
-D ENABLE_SYNC=OFF
cmake --build build
cmake --build build -j ${JOBS:-1}
DESTDIR=$PKG cmake --install build
prt-get isinst zsh || rm -r $PKG/usr/share/zsh
rm $PKG/usr/share/task/{AUTHORS,COPYING,ChangeLog,NEWS,README.md,INSTALL,LICENSE}
rm $PKG/usr/share/task/scripts/{add-ons,vim,hooks}/README
}