Skip to content

Commit

Permalink
Development switched from CVS to Git
Browse files Browse the repository at this point in the history
  • Loading branch information
jonjensen committed Sep 15, 2009
1 parent 81654e4 commit e1216e8
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 158 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ _$
^dist/mvmall(/|$)
^dist/simple(/|$)
^doc/.*[^d]
^\.git(/|$)
^\.gitignore$
^\.gitmodules$
^help(/|$)
^lib/src/config.cache$
^lib/src/config.h$
Expand Down
108 changes: 108 additions & 0 deletions README-DEVELOPMENT
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
------------------------------------------------------------------------------

Tracking Interchange development in Git

------------------------------------------------------------------------------

If you don't want to wait for an official release, you can use Git to follow
the latest Interchange development.

WARNING: There may be bugs introduced at any time! Thoroughly test any changes
before incorporating. Better yet, don't use Git changes for anything but
fixing relevant bugs, and run the latest stable release.


Browse Git tree online
----------------------

To browse the Interchange Git repository online, visit:

http://git.icdevgroup.org/interchange/


Clone a local copy
------------------

See instructions on cloning and working with a local Git working copy at:

http://www.icdevgroup.org/i/dev/download


Make a distribution tar file
----------------------------

It's best to build a distribution tar file to install from, rather than
installing straight from your Git working copy. To do so:

$ cd interchange
$ perl Makefile.PL nocopy
Writing Makefile for Interchange
$ make tardist
# much output ...
$ ls interch*.tar.gz
interchange-5.7.1.tar.gz


Unpack and install
------------------

Unpack the tar file and install as normal. See the README file and other
documentation for help. You should already be familiar with the Interchange
developer website at:

http://www.icdevgroup.org/

Make sure you don't put your Git working copy at $HOME/interchange
and then install on top of it, since $HOME/interchange is the default
install directory.


Updating
--------

Follow development discussions by joining the interchange-announce and
interchange-users mailing lists.

Keep track of ongoing code changes by joining the interchange-cvs mailing
list, or watching the interchange/interchange repository in GitHub.

In many cases, the major differences in the distribution will be easily
updateable. You can copy any changed files directly to these library
directories:

lib/Vend (and all subdirectories)
lib/UI (and all subdirectories)

You should check the files:

catalog_after.cfg (infrequently updated)
catalog_before.cfg (frequently updated)
interchange.cfg.dist (infrequently updated)
usertag/* (infrequently updated)

Finally, you should check differences in the bin/* files. While they
are not as frequently updated as the lib/* files, they do change. Run
diffs against the source files in scripts/*.PL, or do another install
to a blank directory and do a diff to that.


Keeping the catalog in sync
---------------------------

If you are patterning your order methods after one of the template
catalogs, you will want to check the products/*.txt and products/*.asc
files for changes. In particular, mv_metadata.asc is used to format
and present quite a few things in the user interface. You may have
to merge the databases, but there is an automated admin UI facility
that can help you do this.


Troubleshooting
---------------

If you get a complaint that a "file is not found" when trying to do a
'make tardist' or 'make dist', that means your MANIFEST file is out of
sync with the current codebase. Just do:

rm MANIFEST
make manifest
158 changes: 0 additions & 158 deletions README.cvs

This file was deleted.

0 comments on commit e1216e8

Please sign in to comment.