I've been told...
With Drupal 7.
"Unable to download colorbox from https://github.com/jackmoore/colorbox/zipball/v1.3.16."
But the makefile says to download http://www.jacklmoore.com/colorbox/colorbox.zip which points to colorbox-1.3.30.zip.

Will investigate.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

j0nathan’s picture

Status: Active » Fixed

The URL http://colorpowered.com/colorbox/colorbox.zip from the Drupal module file colorbox/colorbox.make.example redirects to http://www.jacklmoore.com/colorbox. So this is not a valid URL to download the library.

I don't know where https://github.com/jackmoore/colorbox/zipball/v1.3.16 comes from.

The URL http://www.jacklmoore.com/colorbox/colorbox.zip works, so I put it back in our makefile.
http://drupalcode.org/project/kplatforms.git/commit/5deeb48

j0nathan’s picture

j0nathan’s picture

Status: Fixed » Needs work

I think I've found a path for the original issue.

When creating a platform with kplatforms.sh:

openoutreach cloned from git://git.drupal.org/project/openoutreach.git.			[ok]
Checked out tag 7.x-1.0-rc9.									[ok]
Found makefile: drupal-org.make									[ok]
[...]
Unable to download colorbox from https://github.com/jackmoore/colorbox/archive/master.zip.	[error]

From the makefile openoutreach/drupal-org.make :

libraries[colorbox][directory_name] = "colorbox"
libraries[colorbox][download][type] = "get"
libraries[colorbox][download][url] = "https://github.com/jackmoore/colorbox/archive/master.zip"
j0nathan’s picture

Title: Unable to download colorbox » Colorbox library download URL
FileSize
919 bytes

Here is a patch for "openoutreach/drupal-org.make".

j0nathan’s picture

Status: Needs work » Fixed

This is the commit regarding openoutreach:
http://drupalcode.org/project/kplatforms.git/commit/a3fec57

In kplatforms we now use git to download the library:
http://drupalcode.org/project/kplatforms.git/commit/36530e3

nedjo’s picture

Maybe that was a transient download error? It's packaging fine on drupal.org using the previous download URL.

j0nathan’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

j0nathan’s picture

Status: Closed (fixed) » Fixed
FileSize
921 bytes

Following #1991874: Stalling at "git clone git://github.com/jackmoore/colorbox.git", here is a new patch with https:// instead of git://.

j0nathan’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

  • Commit 2579c00 on 8.x-1.x, 8.x-2.x, lock by j0nathan:
    Updated Drupal 7 module colorbox. Related issues: #1901374 and #1891470.
    
  • Commit 5deeb48 on 8.x-1.x, 8.x-2.x, lock by j0nathan:
    Issue #1901374 : Put back right URL to download colorbox library.
    
  • Commit a3fec57 on 8.x-1.x, 8.x-2.x, lock by j0nathan:
    Issue #1901374 : new URL for colorbox library in openoutreach/drupal-org...
  • Commit 36530e3 on 8.x-1.x, 8.x-2.x, lock by j0nathan:
    Issue #1901374 : new URL with git for colorbox library in includes/7/...
  • Commit 9d744b8 on 8.x-1.x, 8.x-2.x, lock by j0nathan:
    Issue #1901374 : Colorbox library download URL.