How to upgrade gettext / autopoint on Ubuntu 15.04












1















I'm trying to compile a project that has a dependancy on gettext 0.19.3. I currently have 0.19.2 installed.



I've tried:




  • sudo apt-get install gettext

  • sudo apt-get install autopoint

  • sudo apt-get install --only-upgrade gettext

  • sudo apt-get install --only-upgrade autopoint


None of those commands will cause gettext to update. The terminal always says



gettext is already the newest version
0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.


How do I install 0.19.3 or 0.19.4?










share|improve this question
















bumped to the homepage by Community 1 hour ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    1















    I'm trying to compile a project that has a dependancy on gettext 0.19.3. I currently have 0.19.2 installed.



    I've tried:




    • sudo apt-get install gettext

    • sudo apt-get install autopoint

    • sudo apt-get install --only-upgrade gettext

    • sudo apt-get install --only-upgrade autopoint


    None of those commands will cause gettext to update. The terminal always says



    gettext is already the newest version
    0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.


    How do I install 0.19.3 or 0.19.4?










    share|improve this question
















    bumped to the homepage by Community 1 hour ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      1












      1








      1








      I'm trying to compile a project that has a dependancy on gettext 0.19.3. I currently have 0.19.2 installed.



      I've tried:




      • sudo apt-get install gettext

      • sudo apt-get install autopoint

      • sudo apt-get install --only-upgrade gettext

      • sudo apt-get install --only-upgrade autopoint


      None of those commands will cause gettext to update. The terminal always says



      gettext is already the newest version
      0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.


      How do I install 0.19.3 or 0.19.4?










      share|improve this question
















      I'm trying to compile a project that has a dependancy on gettext 0.19.3. I currently have 0.19.2 installed.



      I've tried:




      • sudo apt-get install gettext

      • sudo apt-get install autopoint

      • sudo apt-get install --only-upgrade gettext

      • sudo apt-get install --only-upgrade autopoint


      None of those commands will cause gettext to update. The terminal always says



      gettext is already the newest version
      0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.


      How do I install 0.19.3 or 0.19.4?







      gettext






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 30 '17 at 22:14









      Karl Richter

      2,44483569




      2,44483569










      asked Jun 18 '15 at 1:11









      RedshirtRedshirt

      10613




      10613





      bumped to the homepage by Community 1 hour ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 1 hour ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          2 Answers
          2






          active

          oldest

          votes


















          0














          Goto launchpad and choose the mirror which is close to you. Then just download autopoint and install it through dpkg.



          Example:



          wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
          sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
          sudo apt-get install -f # resolve any missing dependencies





          share|improve this answer































            -1














            *first check your gettext version using 'gettext --version'
            *then extract it and using command lines execute those comands.



            *Prepare Gettext for compilation:



            ./configure --prefix=/usr    
            --disable-static
            --docdir=/usr/share/doc/gettext-0.19.7


            *Compile the package:



            make


            *Install the package:



            make install
            chmod -v 0755 /usr/lib/preloadable_libintl.so





            share|improve this answer





















            • 1





              This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option

              – gesell
              Oct 20 '16 at 12:48











            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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%2faskubuntu.com%2fquestions%2f637833%2fhow-to-upgrade-gettext-autopoint-on-ubuntu-15-04%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Goto launchpad and choose the mirror which is close to you. Then just download autopoint and install it through dpkg.



            Example:



            wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
            sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
            sudo apt-get install -f # resolve any missing dependencies





            share|improve this answer




























              0














              Goto launchpad and choose the mirror which is close to you. Then just download autopoint and install it through dpkg.



              Example:



              wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
              sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
              sudo apt-get install -f # resolve any missing dependencies





              share|improve this answer


























                0












                0








                0







                Goto launchpad and choose the mirror which is close to you. Then just download autopoint and install it through dpkg.



                Example:



                wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
                sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
                sudo apt-get install -f # resolve any missing dependencies





                share|improve this answer













                Goto launchpad and choose the mirror which is close to you. Then just download autopoint and install it through dpkg.



                Example:



                wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
                sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
                sudo apt-get install -f # resolve any missing dependencies






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 4 '18 at 12:57









                mjamja

                513415




                513415

























                    -1














                    *first check your gettext version using 'gettext --version'
                    *then extract it and using command lines execute those comands.



                    *Prepare Gettext for compilation:



                    ./configure --prefix=/usr    
                    --disable-static
                    --docdir=/usr/share/doc/gettext-0.19.7


                    *Compile the package:



                    make


                    *Install the package:



                    make install
                    chmod -v 0755 /usr/lib/preloadable_libintl.so





                    share|improve this answer





















                    • 1





                      This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option

                      – gesell
                      Oct 20 '16 at 12:48
















                    -1














                    *first check your gettext version using 'gettext --version'
                    *then extract it and using command lines execute those comands.



                    *Prepare Gettext for compilation:



                    ./configure --prefix=/usr    
                    --disable-static
                    --docdir=/usr/share/doc/gettext-0.19.7


                    *Compile the package:



                    make


                    *Install the package:



                    make install
                    chmod -v 0755 /usr/lib/preloadable_libintl.so





                    share|improve this answer





















                    • 1





                      This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option

                      – gesell
                      Oct 20 '16 at 12:48














                    -1












                    -1








                    -1







                    *first check your gettext version using 'gettext --version'
                    *then extract it and using command lines execute those comands.



                    *Prepare Gettext for compilation:



                    ./configure --prefix=/usr    
                    --disable-static
                    --docdir=/usr/share/doc/gettext-0.19.7


                    *Compile the package:



                    make


                    *Install the package:



                    make install
                    chmod -v 0755 /usr/lib/preloadable_libintl.so





                    share|improve this answer















                    *first check your gettext version using 'gettext --version'
                    *then extract it and using command lines execute those comands.



                    *Prepare Gettext for compilation:



                    ./configure --prefix=/usr    
                    --disable-static
                    --docdir=/usr/share/doc/gettext-0.19.7


                    *Compile the package:



                    make


                    *Install the package:



                    make install
                    chmod -v 0755 /usr/lib/preloadable_libintl.so






                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Mar 3 '16 at 10:27









                    Pilot6

                    52.2k15107197




                    52.2k15107197










                    answered Mar 3 '16 at 5:50









                    SanjeewaSanjeewa

                    1




                    1








                    • 1





                      This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option

                      – gesell
                      Oct 20 '16 at 12:48














                    • 1





                      This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option

                      – gesell
                      Oct 20 '16 at 12:48








                    1




                    1





                    This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option

                    – gesell
                    Oct 20 '16 at 12:48





                    This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option

                    – gesell
                    Oct 20 '16 at 12:48


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • 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%2faskubuntu.com%2fquestions%2f637833%2fhow-to-upgrade-gettext-autopoint-on-ubuntu-15-04%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

                    How did Captain America manage to do this?

                    迪纳利

                    南乌拉尔铁路局