[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: fribidi: Update to 1.0.1.
From: |
Marius Bakke |
Subject: |
02/02: gnu: fribidi: Update to 1.0.1. |
Date: |
Sun, 25 Feb 2018 12:38:03 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit a2f0b01221c7256ca0bbb2ad9895c53168176a60
Author: Marius Bakke <address@hidden>
Date: Sun Feb 25 17:56:21 2018 +0100
gnu: fribidi: Update to 1.0.1.
* gnu/packages/fribidi.scm (fribidi): Update to 1.0.1.
[source](uri): Change to new GitHub URI.
[home-page]: Update to redirected URL.
---
gnu/packages/fribidi.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/fribidi.scm b/gnu/packages/fribidi.scm
index 735fdab..c8a91be 100644
--- a/gnu/packages/fribidi.scm
+++ b/gnu/packages/fribidi.scm
@@ -26,15 +26,16 @@
(define-public fribidi
(package
(name "fribidi")
- (version "0.19.7")
+ (version "1.0.1")
(source
(origin
(method url-fetch)
(uri
- (string-append "http://fribidi.org/download/" name "-" version
+ (string-append "https://github.com/fribidi/fribidi/releases"
+ "/download/v" version "/fribidi-" version
".tar.bz2"))
(sha256
- (base32 "13jsb5qadlhsaxkbrb49nqslmbh904vvzhsm5mm2ghmv29i2l8h8"))))
+ (base32 "1r3ll7apx4b8bhvdkwi71y06df9kvr4q3asvajswvdlh0pbq5cf1"))))
(build-system gnu-build-system)
(synopsis "Implementation of the Unicode bidirectional algorithm")
@@ -42,5 +43,5 @@
"GNU FriBidi is an implementation of the Unicode Bidirectional
Algorithm. This algorithm is used to properly display text in left-to-right
or right-to-left ordering as necessary.")
- (home-page "http://fribidi.org/")
+ (home-page "https://github.com/fribidi/fribidi")
(license lgpl2.1+)))