PerfectSwift: swift package update runs endlesslyWhich server side swift framework is best?Perfect (Server-Side Swift) view enginesModels in Perfect (Server-Side Swift) and StORMHow to Cancel/Remove Redirecting the Client with Server side swift in perfect frameworkHow to hit post request in javascript , which hit server side swift server?How to read and write images to web root directory in Perfect-Swift?Server Side Swift with Perfect authentication and routesServer Side Swift Using Kitura FrameworkPerfect Assistant - Error in Importing Existing PackageUnable to redirect to url using Server Side Swift Perfect

Are there any double stars that I can actually see orbit each other?

Why does the trade federation become so alarmed upon learning the ambassadors are Jedi Knights?

How are "soeben" and "eben" different from one another?

Asking for higher salary after I increased my initial figure

Why is the collector feedback bias popular in electret-mic preamp circuits?

How to draw a gif with expanding circles that reveal lines connecting a non-centered point to the expanding circle using Tikz

Chandra, Awakened Inferno vs Gods Willing

writting to disk and compress with xz at the same time

Why doesn't Anakin's lightsaber explode when it's chopped in half on Geonosis?

Nested-Loop-Join: How many comparisons and how many pages-accesses?

Chess Construction Challenge #2-Check!

Remove intersect line for one circle using venndiagram2sets

What are the arguments for California’s nonpartisan blanket primaries other than giving Democrats more power?

Why limit to revolvers?

What caused Windows ME's terrible reputation?

Why hasn't the U.S. government paid war reparations to any country it attacked?

Does the Entangle spell require existing vegetation?

How to fit a linear model in the Bayesian way in Mathematica?

Was adding milk to tea started to reduce employee tea break time?

why run a service as a system user?

I do not have power to all my breakers

What's the phrasal verb for carbonated drinks exploding out of the can after being shaken?

How long do Apple retain notifications to be pushed to iOS devices until they expire?

Can a Reform Ger participate in Chabad programming?



PerfectSwift: swift package update runs endlessly


Which server side swift framework is best?Perfect (Server-Side Swift) view enginesModels in Perfect (Server-Side Swift) and StORMHow to Cancel/Remove Redirecting the Client with Server side swift in perfect frameworkHow to hit post request in javascript , which hit server side swift server?How to read and write images to web root directory in Perfect-Swift?Server Side Swift with Perfect authentication and routesServer Side Swift Using Kitura FrameworkPerfect Assistant - Error in Importing Existing PackageUnable to redirect to url using Server Side Swift Perfect






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I do have an older Perfect Swift project where my package.swift looks the following:



// Generated automatically by Perfect Assistant Application
// Date: 2017-09-24 18:44:24 +0000
import PackageDescription
let package = Package(
name: "SomeName",
targets: [],
dependencies: [
.Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 2),
.Package(url: "https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git", majorVersion: 1),
.Package(url: "https://github.com/PerfectlySoft/Perfect-CURL.git", majorVersion: 2),
.Package(url: "https://github.com/SwiftORM/StORM.git", majorVersion: 3),
.Package(url: "https://github.com/PerfectlySoft/Perfect-MySQL.git", majorVersion: 3),
.Package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", majorVersion: 1),
.Package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", majorVersion: 1)

]
)


when I run swift package build I get the following output and then the machine hangs for hours:



Updating https://github.com/PerfectlySoft/Perfect-HTTPServer.git
Updating https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git
Updating https://github.com/PerfectlySoft/Perfect-CURL.git
Updating https://github.com/PerfectlySoft/Perfect-RequestLogger.git
Updating https://github.com/SwiftORM/StORM.git
Updating https://github.com/PerfectlySoft/Perfect-MySQL.git
Updating https://github.com/PerfectlySoft/Perfect-SMTP.git
Updating https://github.com/PerfectlySoft/Perfect-Net.git
Updating https://github.com/PerfectlySoft/Perfect-HTTP.git
Updating https://github.com/PerfectlySoft/Perfect-Thread.git
Updating https://github.com/PerfectlySoft/Perfect-LinuxBridge.git
Updating https://github.com/PerfectlySoft/Perfect-Crypto.git
Updating https://github.com/PerfectlySoft/PerfectLib.git
Updating https://github.com/PerfectlySoft/Perfect-COpenSSL-Linux.git
Updating https://github.com/SwiftORM/MySQL-StORM.git
Updating https://github.com/PerfectlySoft/Perfect-Mustache.git
Updating https://github.com/iamjono/JSONConfig.git
Updating https://github.com/PerfectlySoft/Perfect-Session-MySQL.git
Updating https://github.com/iamjono/SwiftRandom.git
Updating https://github.com/PerfectlySoft/Perfect-Logger.git
Updating https://github.com/iamjono/SwiftMoment.git
Updating https://github.com/PerfectlySoft/Perfect-libcurl.git


What can I do to make this run again? swift --version gets



Swift version 4.2.1-dev (LLVM 4ba03d9389, Clang 78aa734eee, Swift f4134ebef6)
Target: x86_64-unknown-linux-gnu









share|improve this question




























    1















    I do have an older Perfect Swift project where my package.swift looks the following:



    // Generated automatically by Perfect Assistant Application
    // Date: 2017-09-24 18:44:24 +0000
    import PackageDescription
    let package = Package(
    name: "SomeName",
    targets: [],
    dependencies: [
    .Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 2),
    .Package(url: "https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git", majorVersion: 1),
    .Package(url: "https://github.com/PerfectlySoft/Perfect-CURL.git", majorVersion: 2),
    .Package(url: "https://github.com/SwiftORM/StORM.git", majorVersion: 3),
    .Package(url: "https://github.com/PerfectlySoft/Perfect-MySQL.git", majorVersion: 3),
    .Package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", majorVersion: 1),
    .Package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", majorVersion: 1)

    ]
    )


    when I run swift package build I get the following output and then the machine hangs for hours:



    Updating https://github.com/PerfectlySoft/Perfect-HTTPServer.git
    Updating https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git
    Updating https://github.com/PerfectlySoft/Perfect-CURL.git
    Updating https://github.com/PerfectlySoft/Perfect-RequestLogger.git
    Updating https://github.com/SwiftORM/StORM.git
    Updating https://github.com/PerfectlySoft/Perfect-MySQL.git
    Updating https://github.com/PerfectlySoft/Perfect-SMTP.git
    Updating https://github.com/PerfectlySoft/Perfect-Net.git
    Updating https://github.com/PerfectlySoft/Perfect-HTTP.git
    Updating https://github.com/PerfectlySoft/Perfect-Thread.git
    Updating https://github.com/PerfectlySoft/Perfect-LinuxBridge.git
    Updating https://github.com/PerfectlySoft/Perfect-Crypto.git
    Updating https://github.com/PerfectlySoft/PerfectLib.git
    Updating https://github.com/PerfectlySoft/Perfect-COpenSSL-Linux.git
    Updating https://github.com/SwiftORM/MySQL-StORM.git
    Updating https://github.com/PerfectlySoft/Perfect-Mustache.git
    Updating https://github.com/iamjono/JSONConfig.git
    Updating https://github.com/PerfectlySoft/Perfect-Session-MySQL.git
    Updating https://github.com/iamjono/SwiftRandom.git
    Updating https://github.com/PerfectlySoft/Perfect-Logger.git
    Updating https://github.com/iamjono/SwiftMoment.git
    Updating https://github.com/PerfectlySoft/Perfect-libcurl.git


    What can I do to make this run again? swift --version gets



    Swift version 4.2.1-dev (LLVM 4ba03d9389, Clang 78aa734eee, Swift f4134ebef6)
    Target: x86_64-unknown-linux-gnu









    share|improve this question
























      1












      1








      1








      I do have an older Perfect Swift project where my package.swift looks the following:



      // Generated automatically by Perfect Assistant Application
      // Date: 2017-09-24 18:44:24 +0000
      import PackageDescription
      let package = Package(
      name: "SomeName",
      targets: [],
      dependencies: [
      .Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 2),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git", majorVersion: 1),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-CURL.git", majorVersion: 2),
      .Package(url: "https://github.com/SwiftORM/StORM.git", majorVersion: 3),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-MySQL.git", majorVersion: 3),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", majorVersion: 1),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", majorVersion: 1)

      ]
      )


      when I run swift package build I get the following output and then the machine hangs for hours:



      Updating https://github.com/PerfectlySoft/Perfect-HTTPServer.git
      Updating https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git
      Updating https://github.com/PerfectlySoft/Perfect-CURL.git
      Updating https://github.com/PerfectlySoft/Perfect-RequestLogger.git
      Updating https://github.com/SwiftORM/StORM.git
      Updating https://github.com/PerfectlySoft/Perfect-MySQL.git
      Updating https://github.com/PerfectlySoft/Perfect-SMTP.git
      Updating https://github.com/PerfectlySoft/Perfect-Net.git
      Updating https://github.com/PerfectlySoft/Perfect-HTTP.git
      Updating https://github.com/PerfectlySoft/Perfect-Thread.git
      Updating https://github.com/PerfectlySoft/Perfect-LinuxBridge.git
      Updating https://github.com/PerfectlySoft/Perfect-Crypto.git
      Updating https://github.com/PerfectlySoft/PerfectLib.git
      Updating https://github.com/PerfectlySoft/Perfect-COpenSSL-Linux.git
      Updating https://github.com/SwiftORM/MySQL-StORM.git
      Updating https://github.com/PerfectlySoft/Perfect-Mustache.git
      Updating https://github.com/iamjono/JSONConfig.git
      Updating https://github.com/PerfectlySoft/Perfect-Session-MySQL.git
      Updating https://github.com/iamjono/SwiftRandom.git
      Updating https://github.com/PerfectlySoft/Perfect-Logger.git
      Updating https://github.com/iamjono/SwiftMoment.git
      Updating https://github.com/PerfectlySoft/Perfect-libcurl.git


      What can I do to make this run again? swift --version gets



      Swift version 4.2.1-dev (LLVM 4ba03d9389, Clang 78aa734eee, Swift f4134ebef6)
      Target: x86_64-unknown-linux-gnu









      share|improve this question














      I do have an older Perfect Swift project where my package.swift looks the following:



      // Generated automatically by Perfect Assistant Application
      // Date: 2017-09-24 18:44:24 +0000
      import PackageDescription
      let package = Package(
      name: "SomeName",
      targets: [],
      dependencies: [
      .Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 2),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git", majorVersion: 1),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-CURL.git", majorVersion: 2),
      .Package(url: "https://github.com/SwiftORM/StORM.git", majorVersion: 3),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-MySQL.git", majorVersion: 3),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", majorVersion: 1),
      .Package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", majorVersion: 1)

      ]
      )


      when I run swift package build I get the following output and then the machine hangs for hours:



      Updating https://github.com/PerfectlySoft/Perfect-HTTPServer.git
      Updating https://github.com/PerfectlySoft/Perfect-LocalAuthentication-MySQL.git
      Updating https://github.com/PerfectlySoft/Perfect-CURL.git
      Updating https://github.com/PerfectlySoft/Perfect-RequestLogger.git
      Updating https://github.com/SwiftORM/StORM.git
      Updating https://github.com/PerfectlySoft/Perfect-MySQL.git
      Updating https://github.com/PerfectlySoft/Perfect-SMTP.git
      Updating https://github.com/PerfectlySoft/Perfect-Net.git
      Updating https://github.com/PerfectlySoft/Perfect-HTTP.git
      Updating https://github.com/PerfectlySoft/Perfect-Thread.git
      Updating https://github.com/PerfectlySoft/Perfect-LinuxBridge.git
      Updating https://github.com/PerfectlySoft/Perfect-Crypto.git
      Updating https://github.com/PerfectlySoft/PerfectLib.git
      Updating https://github.com/PerfectlySoft/Perfect-COpenSSL-Linux.git
      Updating https://github.com/SwiftORM/MySQL-StORM.git
      Updating https://github.com/PerfectlySoft/Perfect-Mustache.git
      Updating https://github.com/iamjono/JSONConfig.git
      Updating https://github.com/PerfectlySoft/Perfect-Session-MySQL.git
      Updating https://github.com/iamjono/SwiftRandom.git
      Updating https://github.com/PerfectlySoft/Perfect-Logger.git
      Updating https://github.com/iamjono/SwiftMoment.git
      Updating https://github.com/PerfectlySoft/Perfect-libcurl.git


      What can I do to make this run again? swift --version gets



      Swift version 4.2.1-dev (LLVM 4ba03d9389, Clang 78aa734eee, Swift f4134ebef6)
      Target: x86_64-unknown-linux-gnu






      perfect server-side-swift






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 26 at 6:53









      swalknerswalkner

      3,20525 gold badges92 silver badges172 bronze badges




      3,20525 gold badges92 silver badges172 bronze badges






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Try .package(url: "package_url", from: "version") instead.






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351342%2fperfectswift-swift-package-update-runs-endlessly%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Try .package(url: "package_url", from: "version") instead.






            share|improve this answer



























              0














              Try .package(url: "package_url", from: "version") instead.






              share|improve this answer

























                0












                0








                0







                Try .package(url: "package_url", from: "version") instead.






                share|improve this answer













                Try .package(url: "package_url", from: "version") instead.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Apr 2 at 18:27









                NFestosoNFestoso

                488 bronze badges




                488 bronze badges


















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351342%2fperfectswift-swift-package-update-runs-endlessly%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript