unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] change various googlecode occurences.
@ 2016-11-06 11:29 ng0
  2016-11-06 11:29 ` [PATCH 1/3] gnu: r-proto: Update project's home-page ng0
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: ng0 @ 2016-11-06 11:29 UTC (permalink / raw)
  To: guix-devel

[PATCH 1/3] gnu: r-proto: Update project's home-page.

The url this was changed to is linked on cran.

[PATCH 2/3] gnu: pingus: Update upstream location.

googlecode is still linked on the pingus website, but the development happens on github,
still active.

[PATCH 3/3] gnu: build: file-system: Change url of LUKS

The googlecode url produced a 404, this fixes it to the new location on gitlab.com.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/3] gnu: r-proto: Update project's home-page.
  2016-11-06 11:29 [PATCH] change various googlecode occurences ng0
@ 2016-11-06 11:29 ` ng0
  2016-11-06 11:29 ` [PATCH 2/3] gnu: pingus: Update upstream location ng0
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: ng0 @ 2016-11-06 11:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/statistics.scm (r-proto)[home-page]: Update project's home-page.
---
 gnu/packages/statistics.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index c276120..4ad19b9 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -512,7 +512,7 @@ panels or collapse high-dimensional arrays to simpler summary statistics.")
        (sha256
         (base32 "1l843p8vckjckdhgv37ngv47fga5jzy0n00pmipvp05nnaixk54j"))))
     (build-system r-build-system)
-    (home-page "http://r-proto.googlecode.com")
+    (home-page "https://github.com/hadley/proto")
     (synopsis "Prototype object-based programming")
     (description
      "Proto is an object oriented system using object-based, also called
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/3] gnu: pingus: Update upstream location.
  2016-11-06 11:29 [PATCH] change various googlecode occurences ng0
  2016-11-06 11:29 ` [PATCH 1/3] gnu: r-proto: Update project's home-page ng0
@ 2016-11-06 11:29 ` ng0
  2016-11-06 11:29 ` [PATCH 3/3] gnu: build: file-system: Change url of LUKS specification ng0
  2016-11-06 11:40 ` [PATCH] change various googlecode occurences ng0
  3 siblings, 0 replies; 5+ messages in thread
From: ng0 @ 2016-11-06 11:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/games.scm (pingus)[source]: Update source uri.
---
 gnu/packages/games.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index a663396..01852d0 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -233,11 +233,12 @@ that beneath its ruins lay buried an ancient evil.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "http://pingus.googlecode.com/files/pingus-"
-                           version ".tar.bz2"))
+       (uri (string-append "https://github.com/Pingus/pingus/archive/v"
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "0q34d2k6anzqvb0mf67x85q92lfx9jr71ry13dlp47jx0x9i573m"))
+         "0r9v6as5vi7skvvy7b0fcaimhdlzmik64pyy68plgljhsghqkkf4"))
        (patches (search-patches "pingus-sdl-libs-config.patch"))))
     (build-system gnu-build-system)
     (native-inputs `(("pkg-config" ,pkg-config)
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/3] gnu: build: file-system: Change url of LUKS specification.
  2016-11-06 11:29 [PATCH] change various googlecode occurences ng0
  2016-11-06 11:29 ` [PATCH 1/3] gnu: r-proto: Update project's home-page ng0
  2016-11-06 11:29 ` [PATCH 2/3] gnu: pingus: Update upstream location ng0
@ 2016-11-06 11:29 ` ng0
  2016-11-06 11:40 ` [PATCH] change various googlecode occurences ng0
  3 siblings, 0 replies; 5+ messages in thread
From: ng0 @ 2016-11-06 11:29 UTC (permalink / raw)
  To: guix-devel

* gnu/build/file-system.scm: Change url of LUKS specification.
---
 gnu/build/file-systems.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index bfc353a..0d55e91 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -139,7 +139,7 @@ if DEVICE does not contain an ext2 file system."
 ;;;
 
 ;; The LUKS header format is described in "LUKS On-Disk Format Specification":
-;; <http://wiki.cryptsetup.googlecode.com/git/LUKS-standard/>.  We follow
+;; <https://gitlab.com/cryptsetup/cryptsetup/wikis/Specification>.  We follow
 ;; version 1.2.1 of this document.
 
 (define-syntax %luks-endianness
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] change various googlecode occurences.
  2016-11-06 11:29 [PATCH] change various googlecode occurences ng0
                   ` (2 preceding siblings ...)
  2016-11-06 11:29 ` [PATCH 3/3] gnu: build: file-system: Change url of LUKS specification ng0
@ 2016-11-06 11:40 ` ng0
  3 siblings, 0 replies; 5+ messages in thread
From: ng0 @ 2016-11-06 11:40 UTC (permalink / raw)
  To: guix-devel

ng0 <ng0@we.make.ritual.n0.is> writes:

> [PATCH 1/3] gnu: r-proto: Update project's home-page.
>
> The url this was changed to is linked on cran.
>
> [PATCH 2/3] gnu: pingus: Update upstream location.
>
> googlecode is still linked on the pingus website, but the development happens on github,
> still active.

I will email upstream author about this next week, without CC the list.

> [PATCH 3/3] gnu: build: file-system: Change url of LUKS
>
> The googlecode url produced a 404, this fixes it to the new location on gitlab.com.
>
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-06 11:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-06 11:29 [PATCH] change various googlecode occurences ng0
2016-11-06 11:29 ` [PATCH 1/3] gnu: r-proto: Update project's home-page ng0
2016-11-06 11:29 ` [PATCH 2/3] gnu: pingus: Update upstream location ng0
2016-11-06 11:29 ` [PATCH 3/3] gnu: build: file-system: Change url of LUKS specification ng0
2016-11-06 11:40 ` [PATCH] change various googlecode occurences ng0

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).