guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add trac.


From: guix-commits
Subject: branch master updated: gnu: Add trac.
Date: Mon, 15 Apr 2024 06:23:08 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 53dba8c808 gnu: Add trac.
53dba8c808 is described below

commit 53dba8c808c24f0997064ee9632ac4fa7fd2cf32
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sat Apr 6 00:56:13 2024 +0000

    gnu: Add trac.
    
    * gnu/packages/version-control.scm (trac): New variable.
    
    Change-Id: I51b86a6b8a913c18f785dbd92a936b8964bebdbc
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/version-control.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 19f128d45f..96ca1df552 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1538,6 +1538,33 @@ shell and OS versions so the script writer can be 
confident that the script
 will work.")
     (license license:lgpl2.1)))
 
+(define-public trac
+  (package
+    (name "trac")
+    (version "1.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "Trac" version))
+       (sha256
+        (base32 "013kqa93kd1giswir9qsasm5080x5x5x4ab86ky8zmkhyrhkrmv1"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:test-flags #~(list "-k"
+                                ;; XXX: these two tests fail, check why.
+                                (string-append
+                                 "not test_remove_composite_keys"
+                                 " and not test_remove_simple_keys"))))
+    (native-inputs (list python-psycopg2 python-pymysql python-pytest))
+    (propagated-inputs (list python-jinja2 python-multipart))
+    (home-page "https://trac.edgewall.org";)
+    (synopsis "Integrated SCM, wiki, issue tracker and project environment")
+    (description "Trac is a minimalistic web-based software project management
+and bug/issue tracking system.  It provides an interface to the Git and
+Subversion revision control systems, an integrated wiki, flexible issue
+tracking and convenient report facilities.")
+    (license license:bsd-3)))
+
 (define-public git-flow
   (package
     (name "git-flow")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]