• Synth and git and updating

    From Louis Epstein@21:1/5 to All on Sat Oct 16 17:09:50 2021
    So until git happened I was updating my applications
    by updating ports,
    then synth prepare-system,
    then pkg upgrade -R synth
    with a check for particular programs I might want to postpone.

    When git happened I created a /usr/ports/pregit
    from the old /usr/ports
    and a /usr/ports/git for the new version.

    But what is the command line to get new ports now?

    In the meantime I've just been running off pkg update
    which only handles the remote repository but I think I'm
    now outdated on OS for that (will upgrade there too).

    (There's a particular program that I want to get some old-version
    stuff with done before I get the new version that the system would
    force on me if I upgraded various other things...but I do need
    to proceed).

    -=-=-
    The World Trade Center towers MUST rise again,
    at least as tall as before...or terror has triumphed.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From The Doctor@21:1/5 to le@top.put.com on Sat Oct 16 22:41:41 2021
    In article <skf10u$j4s$4@reader1.panix.com>,
    Louis Epstein <le@top.put.com> wrote:
    So until git happened I was updating my applications
    by updating ports,
    then synth prepare-system,
    then pkg upgrade -R synth
    with a check for particular programs I might want to postpone.

    When git happened I created a /usr/ports/pregit
    from the old /usr/ports
    and a /usr/ports/git for the new version.

    But what is the command line to get new ports now?

    In the meantime I've just been running off pkg update
    which only handles the remote repository but I think I'm
    now outdated on OS for that (will upgrade there too).


    install net/gitup and look up gitup in freebsd.org .

    (There's a particular program that I want to get some old-version
    stuff with done before I get the new version that the system would
    force on me if I upgraded various other things...but I do need
    to proceed).

    -=-=-
    The World Trade Center towers MUST rise again,
    at least as tall as before...or terror has triumphed.


    --
    Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca
    Yahweh, Queen & country!Never Satan President Republic!Beware AntiChrist rising!
    Look at Psalms 14 and 53 on Atheism https://www.empire.kred/ROOTNK?t=94a1f39b Alberta on 18 Oct vote no to the referenda and stop the UCP/CPC and NDP municipally! Beware https://mindspring.com

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Louis Epstein@21:1/5 to The Doctor on Sun Oct 24 18:56:41 2021
    The Doctor <doctor@doctor.nl2k.ab.ca> wrote:
    In article <skf10u$j4s$4@reader1.panix.com>,
    Louis Epstein <le@top.put.com> wrote:
    So until git happened I was updating my applications
    by updating ports,
    then synth prepare-system,
    then pkg upgrade -R synth
    with a check for particular programs I might want to postpone.

    When git happened I created a /usr/ports/pregit
    from the old /usr/ports
    and a /usr/ports/git for the new version.

    But what is the command line to get new ports now?

    In the meantime I've just been running off pkg update
    which only handles the remote repository but I think I'm
    now outdated on OS for that (will upgrade there too).


    install net/gitup and look up gitup in freebsd.org .

    I have a /usr/local/bin/gitup but I'm not clear on just what
    I have to enter to get the current ports tree and have
    synth prepare-system apply it from where I have it.

    (There's a particular program that I want to get some old-version
    stuff with done before I get the new version that the system would
    force on me if I upgraded various other things...but I do need
    to proceed).

    -=-=-
    The World Trade Center towers MUST rise again,
    at least as tall as before...or terror has triumphed.



    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From The Doctor@21:1/5 to le@top.put.com on Mon Nov 1 14:44:06 2021
    In article <sl4a99$1c9$1@reader1.panix.com>,
    Louis Epstein <le@top.put.com> wrote:
    The Doctor <doctor@doctor.nl2k.ab.ca> wrote:
    In article <skf10u$j4s$4@reader1.panix.com>,
    Louis Epstein <le@top.put.com> wrote:
    So until git happened I was updating my applications
    by updating ports,
    then synth prepare-system,
    then pkg upgrade -R synth
    with a check for particular programs I might want to postpone.

    When git happened I created a /usr/ports/pregit
    from the old /usr/ports
    and a /usr/ports/git for the new version.

    But what is the command line to get new ports now?

    In the meantime I've just been running off pkg update
    which only handles the remote repository but I think I'm
    now outdated on OS for that (will upgrade there too).


    install net/gitup and look up gitup in freebsd.org .

    I have a /usr/local/bin/gitup but I'm not clear on just what
    I have to enter to get the current ports tree and have
    synth prepare-system apply it from where I have it.


    IIRC, the FreeBSD handbook has detail of gitup.

    Here is my

    /usr/local/etc/gitup.conf


    # $FreeBSD$
    #
    # Default configuration options for gitup.conf.
    {
    "defaults" : {
    "host" : "git.freebsd.org",
    "port" : 443,
    "verbosity" : 1,
    "work_directory" : "/var/db/gitup",
    },

    "ports" : {
    "host" : "github.com",
    "repository" : "/freebsd/freebsd-ports.git",
    "branch" : "main",
    "target" : "/usr/ports",
    "ignores" : [
    "distfiles",
    "packages",
    ],
    },

    "quarterly" : {
    "host" : "github.com",
    "repository" : "/freebsd/freebsd-ports.git",
    "branch" : "quarterly",
    "target" : "/usr/ports",
    "ignores" : [
    "distfiles",
    "packages",
    ]
    },

    "release" : {
    "repository" : "/src.git",
    "branch" : "releng/11.4",
    "target" : "/usr/src",
    "ignores" : [
    "sys/amd64/conf",
    "sys/arm64/conf",
    "sys/i386/conf",
    "sys/pc98/conf",
    "sys/powerpc/conf",
    "sys/riscv/conf",
    "sys/sparc64/conf",
    ]
    },

    "stable" : {
    "repository" : "/src.git",
    "branch" : "stable/12",
    "target" : "/usr/src",
    "ignores" : [
    "sys/amd64/conf",
    "sys/arm64/conf",
    "sys/i386/conf",
    "sys/pc98/conf",
    "sys/powerpc/conf",
    "sys/riscv/conf",
    "sys/sparc64/conf",
    ]
    },

    "current" : {
    "repository" : "/src.git",
    "branch" : "main",
    "target" : "/usr/src",
    "ignores" : [
    "sys/amd64/conf",
    "sys/arm64/conf",
    "sys/i386/conf",
    "sys/pc98/conf",
    "sys/powerpc/conf",
    "sys/riscv/conf",
    "sys/sparc64/conf",
    ]
    }
    }


    (There's a particular program that I want to get some old-version
    stuff with done before I get the new version that the system would
    force on me if I upgraded various other things...but I do need
    to proceed).

    -=-=-
    The World Trade Center towers MUST rise again,
    at least as tall as before...or terror has triumphed.




    --
    Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca
    Yahweh, Queen & country!Never Satan President Republic!Beware AntiChrist rising!
    Look at Psalms 14 and 53 on Atheism https://www.empire.kred/ROOTNK?t=94a1f39b How can one get to heaven while championing disobedience? -unknown Beware https://mindspring.com

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)