emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#39621: closed ([PATCH 2/4] gnu: Add tweeny.)


From: GNU bug Tracking System
Subject: bug#39621: closed ([PATCH 2/4] gnu: Add tweeny.)
Date: Sat, 15 Feb 2020 21:35:02 +0000

Your message dated Sat, 15 Feb 2020 22:34:00 +0100
with message-id 
<87o8tzfsc7.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me>
and subject line Re: bug#39621: Acknowledgement ([PATCH 2/4] gnu: Add tweeny.)
has caused the debbugs.gnu.org bug report #39621,
regarding [PATCH 2/4] gnu: Add tweeny.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39621: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39621
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH 2/4] gnu: Add tweeny. Date: Sat, 15 Feb 2020 22:30:28 +0100
* 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




--- End Message ---
--- Begin Message --- Subject: Re: bug#39621: Acknowledgement ([PATCH 2/4] gnu: Add tweeny.) Date: Sat, 15 Feb 2020 22:34:00 +0100
address@hidden (GNU bug Tracking System) writes:

> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
>  address@hidden
>
> If you wish to submit further information on this problem, please
> send it to address@hidden.
>
> Please do not send mail to address@hidden unless you wish
> to report a problem with the Bug-tracking system.
>
> -- 
> 39621: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39621
> GNU Bug Tracking System
> Contact address@hidden with problems


--- End Message ---

reply via email to

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