Unresolved dependencies when installing AceStream

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite












I'm using ''Debian GNU/Linux stretch/sid''.



I'm trying to install AceStream, following these steps.



But when I added this line to /etc/apt/sources.list:



deb http://repo.acestream.org/debian/ sid main


and got the public key like this:



sudo wget -O - http://repo.acestream.org/keys/acestream.public.key | sudo apt-key add -


the attempt to apt-get install acestream-engine failed with the following result:



Following packages have unresolved dependencies:
acestream-engine : Requires: python2.7-apsw but cannot be installed


(this is translated from my language, not the exact result)



I tried googling python2.7-apsw, but it is some kind of virtual package and I'm not sure how to deal with this










share|improve this question



























    up vote
    2
    down vote

    favorite












    I'm using ''Debian GNU/Linux stretch/sid''.



    I'm trying to install AceStream, following these steps.



    But when I added this line to /etc/apt/sources.list:



    deb http://repo.acestream.org/debian/ sid main


    and got the public key like this:



    sudo wget -O - http://repo.acestream.org/keys/acestream.public.key | sudo apt-key add -


    the attempt to apt-get install acestream-engine failed with the following result:



    Following packages have unresolved dependencies:
    acestream-engine : Requires: python2.7-apsw but cannot be installed


    (this is translated from my language, not the exact result)



    I tried googling python2.7-apsw, but it is some kind of virtual package and I'm not sure how to deal with this










    share|improve this question

























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I'm using ''Debian GNU/Linux stretch/sid''.



      I'm trying to install AceStream, following these steps.



      But when I added this line to /etc/apt/sources.list:



      deb http://repo.acestream.org/debian/ sid main


      and got the public key like this:



      sudo wget -O - http://repo.acestream.org/keys/acestream.public.key | sudo apt-key add -


      the attempt to apt-get install acestream-engine failed with the following result:



      Following packages have unresolved dependencies:
      acestream-engine : Requires: python2.7-apsw but cannot be installed


      (this is translated from my language, not the exact result)



      I tried googling python2.7-apsw, but it is some kind of virtual package and I'm not sure how to deal with this










      share|improve this question















      I'm using ''Debian GNU/Linux stretch/sid''.



      I'm trying to install AceStream, following these steps.



      But when I added this line to /etc/apt/sources.list:



      deb http://repo.acestream.org/debian/ sid main


      and got the public key like this:



      sudo wget -O - http://repo.acestream.org/keys/acestream.public.key | sudo apt-key add -


      the attempt to apt-get install acestream-engine failed with the following result:



      Following packages have unresolved dependencies:
      acestream-engine : Requires: python2.7-apsw but cannot be installed


      (this is translated from my language, not the exact result)



      I tried googling python2.7-apsw, but it is some kind of virtual package and I'm not sure how to deal with this







      debian apt






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 21 at 3:10









      Rui F Ribeiro

      36.7k1271116




      36.7k1271116










      asked Apr 17 '16 at 13:49









      Jytug

      1334




      1334




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          4
          down vote



          accepted










          Submit a bug report to acestream, their acestream-engine package is broken. python2.7-apsw does not exist in debian sid. the package they should be depending upon is called python-apsw.



          Alternatively (or additionally), you can use the debian equivs package to build a dummy python2.7-apsw package that has no contents but depends on python-apsw



          Package: equivs
          Description-en: Circumvent Debian package dependencies
          This package provides a tool to create trivial Debian packages.
          Typically these packages contain only dependency information, but they
          can also include normal installed files like other packages do.
          .
          One use for this is to create a metapackage: a package whose sole
          purpose is to declare dependencies and conflicts on other packages so
          that these will be automatically installed, upgraded, or removed.
          .
          Another use is to circumvent dependency checking: by letting dpkg
          think a particular package name and version is installed when it
          isn't, you can work around bugs in other packages' dependencies.
          (Please do still file such bugs, though.)





          share|improve this answer




















          • @Jytug Modifying the packaging and rebuilding the package may also be an option, assuming they make the packaging available.
            – Faheem Mitha
            Apr 17 '16 at 23:38










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          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',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f277088%2funresolved-dependencies-when-installing-acestream%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          4
          down vote



          accepted










          Submit a bug report to acestream, their acestream-engine package is broken. python2.7-apsw does not exist in debian sid. the package they should be depending upon is called python-apsw.



          Alternatively (or additionally), you can use the debian equivs package to build a dummy python2.7-apsw package that has no contents but depends on python-apsw



          Package: equivs
          Description-en: Circumvent Debian package dependencies
          This package provides a tool to create trivial Debian packages.
          Typically these packages contain only dependency information, but they
          can also include normal installed files like other packages do.
          .
          One use for this is to create a metapackage: a package whose sole
          purpose is to declare dependencies and conflicts on other packages so
          that these will be automatically installed, upgraded, or removed.
          .
          Another use is to circumvent dependency checking: by letting dpkg
          think a particular package name and version is installed when it
          isn't, you can work around bugs in other packages' dependencies.
          (Please do still file such bugs, though.)





          share|improve this answer




















          • @Jytug Modifying the packaging and rebuilding the package may also be an option, assuming they make the packaging available.
            – Faheem Mitha
            Apr 17 '16 at 23:38














          up vote
          4
          down vote



          accepted










          Submit a bug report to acestream, their acestream-engine package is broken. python2.7-apsw does not exist in debian sid. the package they should be depending upon is called python-apsw.



          Alternatively (or additionally), you can use the debian equivs package to build a dummy python2.7-apsw package that has no contents but depends on python-apsw



          Package: equivs
          Description-en: Circumvent Debian package dependencies
          This package provides a tool to create trivial Debian packages.
          Typically these packages contain only dependency information, but they
          can also include normal installed files like other packages do.
          .
          One use for this is to create a metapackage: a package whose sole
          purpose is to declare dependencies and conflicts on other packages so
          that these will be automatically installed, upgraded, or removed.
          .
          Another use is to circumvent dependency checking: by letting dpkg
          think a particular package name and version is installed when it
          isn't, you can work around bugs in other packages' dependencies.
          (Please do still file such bugs, though.)





          share|improve this answer




















          • @Jytug Modifying the packaging and rebuilding the package may also be an option, assuming they make the packaging available.
            – Faheem Mitha
            Apr 17 '16 at 23:38












          up vote
          4
          down vote



          accepted







          up vote
          4
          down vote



          accepted






          Submit a bug report to acestream, their acestream-engine package is broken. python2.7-apsw does not exist in debian sid. the package they should be depending upon is called python-apsw.



          Alternatively (or additionally), you can use the debian equivs package to build a dummy python2.7-apsw package that has no contents but depends on python-apsw



          Package: equivs
          Description-en: Circumvent Debian package dependencies
          This package provides a tool to create trivial Debian packages.
          Typically these packages contain only dependency information, but they
          can also include normal installed files like other packages do.
          .
          One use for this is to create a metapackage: a package whose sole
          purpose is to declare dependencies and conflicts on other packages so
          that these will be automatically installed, upgraded, or removed.
          .
          Another use is to circumvent dependency checking: by letting dpkg
          think a particular package name and version is installed when it
          isn't, you can work around bugs in other packages' dependencies.
          (Please do still file such bugs, though.)





          share|improve this answer












          Submit a bug report to acestream, their acestream-engine package is broken. python2.7-apsw does not exist in debian sid. the package they should be depending upon is called python-apsw.



          Alternatively (or additionally), you can use the debian equivs package to build a dummy python2.7-apsw package that has no contents but depends on python-apsw



          Package: equivs
          Description-en: Circumvent Debian package dependencies
          This package provides a tool to create trivial Debian packages.
          Typically these packages contain only dependency information, but they
          can also include normal installed files like other packages do.
          .
          One use for this is to create a metapackage: a package whose sole
          purpose is to declare dependencies and conflicts on other packages so
          that these will be automatically installed, upgraded, or removed.
          .
          Another use is to circumvent dependency checking: by letting dpkg
          think a particular package name and version is installed when it
          isn't, you can work around bugs in other packages' dependencies.
          (Please do still file such bugs, though.)






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Apr 17 '16 at 22:28









          cas

          37.9k44395




          37.9k44395











          • @Jytug Modifying the packaging and rebuilding the package may also be an option, assuming they make the packaging available.
            – Faheem Mitha
            Apr 17 '16 at 23:38
















          • @Jytug Modifying the packaging and rebuilding the package may also be an option, assuming they make the packaging available.
            – Faheem Mitha
            Apr 17 '16 at 23:38















          @Jytug Modifying the packaging and rebuilding the package may also be an option, assuming they make the packaging available.
          – Faheem Mitha
          Apr 17 '16 at 23:38




          @Jytug Modifying the packaging and rebuilding the package may also be an option, assuming they make the packaging available.
          – Faheem Mitha
          Apr 17 '16 at 23:38

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f277088%2funresolved-dependencies-when-installing-acestream%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          Peggy Mitchell

          Palaiologos

          The Forum (Inglewood, California)