GNU bug report logs -
#39619
[PATCH 0/4] Add nheko matrix client
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#39619: [PATCH 2/4] gnu: Add tweeny.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 39621 <at> debbugs.gnu.org.
--
39619: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39619
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hello,
Nicolò Balzarotti <anothersms <at> gmail.com> writes:
> lmdbxx was patch #3, but I created some noise sending replying to
> guix-patches and creating multiple issues. I'm sending it again with
> other fixes applied.
OK. I applied your patches with the two small changes below:
> + (add-before 'configure 'disable-network-tests
> + (lambda _
> + (substitute* "CMakeLists.txt"
> + (("add_test\\([BasicConnectivity|ClientAPI|MediaAPI|Encryption]")
> + "# add_test"))
I changed the regexp to:
"add_test\\((BasicConnectivity|ClientAPI|MediaAPI|Encryption)"
instead.
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/drycpp/lmdbxx.git")
> + (commit (string-append version))))
I removed the `string-append' call.
I also added copyright lines for you in "cpp.scm" and "databases.scm".
Thank you!
Regards,
--
Nicolas Goaziou
[Message part 3 (message/rfc822, inline)]
* gnu/packages/cpp.scm (tweeny): New variable.
---
gnu/packages/cpp.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index ae1e3e3356..8098553828 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -410,3 +410,31 @@ SObjectizer supports not only the Actor Model but also the Publish-Subscribe
Model and CSP-like channels. The goal of SObjectizer is to simplify
development of concurrent and multithreaded applications in C++.")
(license license:bsd-3)))
+
+(define-public tweeny
+ (package
+ (name "tweeny")
+ (version "3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mobius3/tweeny.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1adm4c17pi7xf3kf6sjyxibz5rdg1ka236p72xsm6js4j9gzlbp4"))))
+ (arguments '(#:tests? #f)) ; no check target
+ (build-system cmake-build-system)
+ (home-page "https://mobius3.github.io/tweeny/")
+ (synopsis "Modern C++ tweening library")
+ (description "@code{Tweeny} is an inbetweening library designed for the
+creation of complex animations for games and other beautiful interactive
+software. It leverages features of modern @code{C++} to empower developers with
+an intuitive API for declaring tweenings of any type of value, as long as they
+support arithmetic operations. The goal of @code{Tweeny} is to provide means to
+create fluid interpolations when animating position, scale, rotation, frames or
+other values of screen objects, by setting their values as the tween starting
+point and then, after each tween step, plugging back the result.")
+ (license license:expat)))
--
2.25.0
This bug report was last modified 5 years and 86 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.