HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Yeah, Porting Centre++
Operating System - HP-UX
1833864
Members
2284
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2008 08:51 AM
01-18-2008 08:51 AM
Yeah, Porting Centre++
As of today, Richard uploaded git to the porting center!
http://hpux.connect.org.uk/hppd/hpux/Development/Tools/git-1.5.3.8/
Git is a very modern super-fast Version Control System, comparable to the bigger and slower Subversion.
Both are not easy to build from scratch yourself (I tried, and gave up on subversion after way to many hours of cursing, and succeeded with git).
"A lot of dependencies listed (though I'm not convinced you need them all!)"
Enjoy, Have FUN! H.Merijn [ who switched to git from SCCS on HP-UX 11.00 ]
http://hpux.connect.org.uk/hppd/hpux/Development/Tools/git-1.5.3.8/
Git is a very modern super-fast Version Control System, comparable to the bigger and slower Subversion.
Both are not easy to build from scratch yourself (I tried, and gave up on subversion after way to many hours of cursing, and succeeded with git).
"A lot of dependencies listed (though I'm not convinced you need them all!)"
Enjoy, Have FUN! H.Merijn [ who switched to git from SCCS on HP-UX 11.00 ]
Enjoy, Have FUN! H.Merijn
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2008 09:25 AM
01-18-2008 09:25 AM
Re: Yeah, Porting Centre++
Hi Merijn:
Ah, the README is definitely worth the read!
Regards!
...JRF...
Ah, the README is definitely worth the read!
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2008 09:43 AM
01-18-2008 09:43 AM
Re: Yeah, Porting Centre++
Interesting - but what's wrong with using rcs?
It's built into HPUX so nothing to compile...
RCS is a set of utilities which will allow you to backup and retrieve
versions of a file, as well as share them with others without clobbering
each others' work. This accomplished by "surrendering" your files to
the RCS system, and then asking RCS to get them for you whenever you want them. RCS is a little like using the public library: to "borrow"
a file, you "check it out"; when you are done with it you "check it in".
Using RCS is very easy -- you only need to learn 2 commands, and only
one option!
BTW - I find the readme somewhat offensive...I know he was trying to be funny...but...I don't think his comments are necessary...2 thumbs down from me...
Rgds...Geoff
It's built into HPUX so nothing to compile...
RCS is a set of utilities which will allow you to backup and retrieve
versions of a file, as well as share them with others without clobbering
each others' work. This accomplished by "surrendering" your files to
the RCS system, and then asking RCS to get them for you whenever you want them. RCS is a little like using the public library: to "borrow"
a file, you "check it out"; when you are done with it you "check it in".
Using RCS is very easy -- you only need to learn 2 commands, and only
one option!
BTW - I find the readme somewhat offensive...I know he was trying to be funny...but...I don't think his comments are necessary...2 thumbs down from me...
Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2008 12:22 PM
01-18-2008 12:22 PM
Re: Yeah, Porting Centre++
RCS and SCCS are perfectly fit to do what you describe, but neither can deal very well with binary files, and both are not giving a lot of insight in history.
Neither do these somewhat older systems allow for distributed repositories, which is a blessing for backup's sake, overview, and teamwork.
The *new* systems, subversion, mercurial, bazaar, and git all have a way more modern approach and show the evolution of version control. They all come with what the modern programmer expects: a slick graphical user interface. The GUI is not as slick as p4v, the GUI of perforce, but perforce is expensive, and the 4 I just mentioned are open source.
What is probably more important, is that git invites to do more and more structural commits. Where RCS and SCCS allow to commit multiple files at once, they still effectively commit on a file-by-file basis. git and co all commit as a group, and browsing back through the commits will show the files of a change, which turns out to be very useful.
OK, for RCS and SCCS you can write scripts that analyze the files and generate a semi-structured historical view. In fact, in our process of this conversion, I wrote the perl module VCS::SCCS, which comes with a sccs2git utility that seamlessly converts a SCCS repository to a git repostitory, so you can see how well it fits you.
So, 2 point for the comment as such :)
BTW I asked Richard if git was a possible option to put on the Porting Center, and he gave a good reasoning for not doing so. After that, I forwarded those reasons to the git developers, and in a short but very effective conversation that followed, Richard, the developers, with my info from my own port, made Richard do the port on his own accord anyway! Many kudo's!
Enjoy, Have FUN! H.Merijn
Neither do these somewhat older systems allow for distributed repositories, which is a blessing for backup's sake, overview, and teamwork.
The *new* systems, subversion, mercurial, bazaar, and git all have a way more modern approach and show the evolution of version control. They all come with what the modern programmer expects: a slick graphical user interface. The GUI is not as slick as p4v, the GUI of perforce, but perforce is expensive, and the 4 I just mentioned are open source.
What is probably more important, is that git invites to do more and more structural commits. Where RCS and SCCS allow to commit multiple files at once, they still effectively commit on a file-by-file basis. git and co all commit as a group, and browsing back through the commits will show the files of a change, which turns out to be very useful.
OK, for RCS and SCCS you can write scripts that analyze the files and generate a semi-structured historical view. In fact, in our process of this conversion, I wrote the perl module VCS::SCCS, which comes with a sccs2git utility that seamlessly converts a SCCS repository to a git repostitory, so you can see how well it fits you.
So, 2 point for the comment as such :)
BTW I asked Richard if git was a possible option to put on the Porting Center, and he gave a good reasoning for not doing so. After that, I forwarded those reasons to the git developers, and in a short but very effective conversation that followed, Richard, the developers, with my info from my own port, made Richard do the port on his own accord anyway! Many kudo's!
Enjoy, Have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP