You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jo...@apache.org on 2016/09/22 22:50:29 UTC

[2/2] git commit: [flex-utilities] [refs/heads/develop] - npm-flexjs: fixed broken URLs for guava and jburg JARs

npm-flexjs: fixed broken URLs for guava and jburg JARs


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/3f60486c
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/3f60486c
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/3f60486c

Branch: refs/heads/develop
Commit: 3f60486ccf39311d1e6adee5266c44ffb6527d80
Parents: 08389f3
Author: Josh Tynjala <jo...@apache.org>
Authored: Thu Sep 22 15:50:16 2016 -0700
Committer: Josh Tynjala <jo...@apache.org>
Committed: Thu Sep 22 15:50:16 2016 -0700

----------------------------------------------------------------------
 npm-flexjs/dependencies/ApacheFalcon.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/3f60486c/npm-flexjs/dependencies/ApacheFalcon.js
----------------------------------------------------------------------
diff --git a/npm-flexjs/dependencies/ApacheFalcon.js b/npm-flexjs/dependencies/ApacheFalcon.js
index dff2fba..6a80291 100644
--- a/npm-flexjs/dependencies/ApacheFalcon.js
+++ b/npm-flexjs/dependencies/ApacheFalcon.js
@@ -78,14 +78,14 @@ var falconDependencies = [
         unzip:true
     },
     {
-        url:'http://search.maven.org/remotecontent?filepath=/com/google/guava/guava/17.0/',
+        url:'http://search.maven.org/remotecontent?filepath=com/google/guava/guava/17.0/',
         remoteFileName:'guava-17.0.jar',
         destinationPath:constants.FLEXJS_FOLDER + falconLibExternalFolder,
         destinationFileName:'guava.jar',
         unzip:false
     },
     {
-        url:'http://search.maven.org/remotecontent?filepath=/net/sourceforge/jburg/jburg/1.10.2',
+        url:'http://search.maven.org/remotecontent?filepath=net/sourceforge/jburg/jburg/1.10.2/',
         remoteFileName:'jburg-1.10.2.jar',
         destinationPath:constants.FLEXJS_FOLDER + falconLibExternalFolder,
         destinationFileName:'jburg.jar',


Re: [2/2] git commit: [flex-utilities] [refs/heads/develop] - npm-flexjs: fixed broken URLs for guava and jburg JARs

Posted by OmPrakash Muppirala <bi...@gmail.com>.
I pushed out an update to npm with these fixes.

Thanks,
Om

On Thu, Sep 22, 2016 at 4:42 PM, OmPrakash Muppirala <bi...@gmail.com>
wrote:

> Good catch!
>
> Thanks,
> Om
>
> On Thu, Sep 22, 2016 at 4:07 PM, Josh Tynjala <jo...@gmail.com>
> wrote:
>
>> I discovered that the current version of FlexJS 0.7 on NPM cannot build
>> SWFs because a couple of dependencies failed to download (guava and
>> jburg).
>> The URLs were returning 404 status, but the install script didn't detect
>> the issue. Transpiling to JS works correctly with the NPM version.
>>
>> FlexJS 0.7 from the Flex SDK Installer does not have this issue.
>>
>> - Josh
>>
>> On Thu, Sep 22, 2016 at 3:50 PM, <jo...@apache.org> wrote:
>>
>> > npm-flexjs: fixed broken URLs for guava and jburg JARs
>> >
>> >
>> > Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
>> > Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/
>> > commit/3f60486c
>> > Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/3
>> f60486c
>> > Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/3
>> f60486c
>> >
>> > Branch: refs/heads/develop
>> > Commit: 3f60486ccf39311d1e6adee5266c44ffb6527d80
>> > Parents: 08389f3
>> > Author: Josh Tynjala <jo...@apache.org>
>> > Authored: Thu Sep 22 15:50:16 2016 -0700
>> > Committer: Josh Tynjala <jo...@apache.org>
>> > Committed: Thu Sep 22 15:50:16 2016 -0700
>> >
>> > ----------------------------------------------------------------------
>> >  npm-flexjs/dependencies/ApacheFalcon.js | 4 ++--
>> >  1 file changed, 2 insertions(+), 2 deletions(-)
>> > ----------------------------------------------------------------------
>> >
>> >
>> > http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/
>> > 3f60486c/npm-flexjs/dependencies/ApacheFalcon.js
>> > ----------------------------------------------------------------------
>> > diff --git a/npm-flexjs/dependencies/ApacheFalcon.js
>> > b/npm-flexjs/dependencies/ApacheFalcon.js
>> > index dff2fba..6a80291 100644
>> > --- a/npm-flexjs/dependencies/ApacheFalcon.js
>> > +++ b/npm-flexjs/dependencies/ApacheFalcon.js
>> > @@ -78,14 +78,14 @@ var falconDependencies = [
>> >          unzip:true
>> >      },
>> >      {
>> > -        url:'http://search.maven.org/remotecontent?filepath=/com/
>> > google/guava/guava/17.0/',
>> > +        url:'http://search.maven.org/remotecontent?filepath=com/
>> > google/guava/guava/17.0/',
>> >          remoteFileName:'guava-17.0.jar',
>> >          destinationPath:constants.FLEXJS_FOLDER +
>> > falconLibExternalFolder,
>> >          destinationFileName:'guava.jar',
>> >          unzip:false
>> >      },
>> >      {
>> > -        url:'http://search.maven.org/remotecontent?filepath=/net/
>> > sourceforge/jburg/jburg/1.10.2',
>> > +        url:'http://search.maven.org/remotecontent?filepath=net/
>> > sourceforge/jburg/jburg/1.10.2/',
>> >          remoteFileName:'jburg-1.10.2.jar',
>> >          destinationPath:constants.FLEXJS_FOLDER +
>> > falconLibExternalFolder,
>> >          destinationFileName:'jburg.jar',
>> >
>> >
>>
>
>

Re: [2/2] git commit: [flex-utilities] [refs/heads/develop] - npm-flexjs: fixed broken URLs for guava and jburg JARs

Posted by OmPrakash Muppirala <bi...@gmail.com>.
Good catch!

Thanks,
Om

On Thu, Sep 22, 2016 at 4:07 PM, Josh Tynjala <jo...@gmail.com> wrote:

> I discovered that the current version of FlexJS 0.7 on NPM cannot build
> SWFs because a couple of dependencies failed to download (guava and jburg).
> The URLs were returning 404 status, but the install script didn't detect
> the issue. Transpiling to JS works correctly with the NPM version.
>
> FlexJS 0.7 from the Flex SDK Installer does not have this issue.
>
> - Josh
>
> On Thu, Sep 22, 2016 at 3:50 PM, <jo...@apache.org> wrote:
>
> > npm-flexjs: fixed broken URLs for guava and jburg JARs
> >
> >
> > Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
> > Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/
> > commit/3f60486c
> > Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/
> 3f60486c
> > Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/
> 3f60486c
> >
> > Branch: refs/heads/develop
> > Commit: 3f60486ccf39311d1e6adee5266c44ffb6527d80
> > Parents: 08389f3
> > Author: Josh Tynjala <jo...@apache.org>
> > Authored: Thu Sep 22 15:50:16 2016 -0700
> > Committer: Josh Tynjala <jo...@apache.org>
> > Committed: Thu Sep 22 15:50:16 2016 -0700
> >
> > ----------------------------------------------------------------------
> >  npm-flexjs/dependencies/ApacheFalcon.js | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > ----------------------------------------------------------------------
> >
> >
> > http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/
> > 3f60486c/npm-flexjs/dependencies/ApacheFalcon.js
> > ----------------------------------------------------------------------
> > diff --git a/npm-flexjs/dependencies/ApacheFalcon.js
> > b/npm-flexjs/dependencies/ApacheFalcon.js
> > index dff2fba..6a80291 100644
> > --- a/npm-flexjs/dependencies/ApacheFalcon.js
> > +++ b/npm-flexjs/dependencies/ApacheFalcon.js
> > @@ -78,14 +78,14 @@ var falconDependencies = [
> >          unzip:true
> >      },
> >      {
> > -        url:'http://search.maven.org/remotecontent?filepath=/com/
> > google/guava/guava/17.0/',
> > +        url:'http://search.maven.org/remotecontent?filepath=com/
> > google/guava/guava/17.0/',
> >          remoteFileName:'guava-17.0.jar',
> >          destinationPath:constants.FLEXJS_FOLDER +
> > falconLibExternalFolder,
> >          destinationFileName:'guava.jar',
> >          unzip:false
> >      },
> >      {
> > -        url:'http://search.maven.org/remotecontent?filepath=/net/
> > sourceforge/jburg/jburg/1.10.2',
> > +        url:'http://search.maven.org/remotecontent?filepath=net/
> > sourceforge/jburg/jburg/1.10.2/',
> >          remoteFileName:'jburg-1.10.2.jar',
> >          destinationPath:constants.FLEXJS_FOLDER +
> > falconLibExternalFolder,
> >          destinationFileName:'jburg.jar',
> >
> >
>

Re: [2/2] git commit: [flex-utilities] [refs/heads/develop] - npm-flexjs: fixed broken URLs for guava and jburg JARs

Posted by Josh Tynjala <jo...@gmail.com>.
I discovered that the current version of FlexJS 0.7 on NPM cannot build
SWFs because a couple of dependencies failed to download (guava and jburg).
The URLs were returning 404 status, but the install script didn't detect
the issue. Transpiling to JS works correctly with the NPM version.

FlexJS 0.7 from the Flex SDK Installer does not have this issue.

- Josh

On Thu, Sep 22, 2016 at 3:50 PM, <jo...@apache.org> wrote:

> npm-flexjs: fixed broken URLs for guava and jburg JARs
>
>
> Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
> Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/
> commit/3f60486c
> Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/3f60486c
> Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/3f60486c
>
> Branch: refs/heads/develop
> Commit: 3f60486ccf39311d1e6adee5266c44ffb6527d80
> Parents: 08389f3
> Author: Josh Tynjala <jo...@apache.org>
> Authored: Thu Sep 22 15:50:16 2016 -0700
> Committer: Josh Tynjala <jo...@apache.org>
> Committed: Thu Sep 22 15:50:16 2016 -0700
>
> ----------------------------------------------------------------------
>  npm-flexjs/dependencies/ApacheFalcon.js | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> ----------------------------------------------------------------------
>
>
> http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/
> 3f60486c/npm-flexjs/dependencies/ApacheFalcon.js
> ----------------------------------------------------------------------
> diff --git a/npm-flexjs/dependencies/ApacheFalcon.js
> b/npm-flexjs/dependencies/ApacheFalcon.js
> index dff2fba..6a80291 100644
> --- a/npm-flexjs/dependencies/ApacheFalcon.js
> +++ b/npm-flexjs/dependencies/ApacheFalcon.js
> @@ -78,14 +78,14 @@ var falconDependencies = [
>          unzip:true
>      },
>      {
> -        url:'http://search.maven.org/remotecontent?filepath=/com/
> google/guava/guava/17.0/',
> +        url:'http://search.maven.org/remotecontent?filepath=com/
> google/guava/guava/17.0/',
>          remoteFileName:'guava-17.0.jar',
>          destinationPath:constants.FLEXJS_FOLDER +
> falconLibExternalFolder,
>          destinationFileName:'guava.jar',
>          unzip:false
>      },
>      {
> -        url:'http://search.maven.org/remotecontent?filepath=/net/
> sourceforge/jburg/jburg/1.10.2',
> +        url:'http://search.maven.org/remotecontent?filepath=net/
> sourceforge/jburg/jburg/1.10.2/',
>          remoteFileName:'jburg-1.10.2.jar',
>          destinationPath:constants.FLEXJS_FOLDER +
> falconLibExternalFolder,
>          destinationFileName:'jburg.jar',
>
>