Pit is a command-line project manager that integrates with Git.
Basic Pit entities are projects, tasks, and notes. One project can have multiple tasks, and a task can have multiple notes. Each entity has a number of attributes. For example, project has name and status, task has name, status, priority, date, and time, and within note there is message body. All attributes except name and message body are optional and can be omitted. The attributes have no semantic meaning, and do not have a pre-defined set of values. For example, depending on the particular need, the time attribute could be used as projected time in weeks, hours spent on the task, or days left to finish the task. Pit tries to maintain a notion of "current" project, task, or note. When you create new project, it automatically becomes current. If you do not specify project number when creating a task, the new task will be associated with the current project. WWW: https://github.com/michaeldv/pit PR: ports/155702 Submitted by: Eric Freeman <freebsdports at chillibear.com>
This commit is contained in:
parent
e5f4edc079
commit
fd57463876
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=271703
4 changed files with 49 additions and 0 deletions
|
@ -2724,6 +2724,7 @@
|
|||
SUBDIR += pinstall
|
||||
SUBDIR += pipestatus
|
||||
SUBDIR += pire
|
||||
SUBDIR += pit
|
||||
SUBDIR += pkg-config
|
||||
SUBDIR += plan9port
|
||||
SUBDIR += pmd
|
||||
|
|
25
devel/pit/Makefile
Normal file
25
devel/pit/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Ports collection makefile for: pit
|
||||
# Date created: 19 Mar 2011
|
||||
# Whom: Eric Freeman <freebsdports@chillibear.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= pit
|
||||
PORTVERSION= 0.1.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://github.com/michaeldv/${PORTNAME}/tarball/
|
||||
DISTNAME= ${PORTVERSION}
|
||||
EXTRACT_SUFX= # none
|
||||
|
||||
MAINTAINER= freebsdports@chillibear.com
|
||||
COMMENT= Command-line project manager that integrates with Git
|
||||
|
||||
FETCH_ARGS= -pRr
|
||||
WRKSRC= "${WRKDIR}/michaeldv-${PORTNAME}-fd6b3ef"
|
||||
PLIST_FILES= bin/pit
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/bin/pit ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/pit/distinfo
Normal file
2
devel/pit/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (0.1.0) = aaa10ee27a5e9add2b5973acab6205e88c8c56c754df6856965b40a22985114c
|
||||
SIZE (0.1.0) = 23246
|
21
devel/pit/pkg-descr
Normal file
21
devel/pit/pkg-descr
Normal file
|
@ -0,0 +1,21 @@
|
|||
Pit is a command-line project manager that integrates with Git.
|
||||
|
||||
Basic Pit entities are projects, tasks, and notes. One project
|
||||
can have multiple tasks, and a task can have multiple notes.
|
||||
Each entity has a number of attributes. For example, project
|
||||
has name and status, task has name, status, priority, date, and
|
||||
time, and within note there is message body. All attributes
|
||||
except name and message body are optional and can be omitted.
|
||||
|
||||
The attributes have no semantic meaning, and do not have a
|
||||
pre-defined set of values. For example, depending on the
|
||||
particular need, the time attribute could be used as projected
|
||||
time in weeks, hours spent on the task, or days left to finish
|
||||
the task.
|
||||
|
||||
Pit tries to maintain a notion of "current" project, task, or
|
||||
note. When you create new project, it automatically becomes
|
||||
current. If you do not specify project number when creating a
|
||||
task, the new task will be associated with the current project.
|
||||
|
||||
WWW: https://github.com/michaeldv/pit
|
Loading…
Reference in a new issue