Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/autoconf-archive/autoconf-archive
A mirror of the GNU Autoconf Archive, a collection of more than 500 macros for GNU Autoconf that have been contributed as free software by friendly supporters of the cause from all over the Internet.
https://github.com/autoconf-archive/autoconf-archive
autoconf-archive autotools gnu-autoconf portability system-programming unix
Last synced: about 9 hours ago
JSON representation
A mirror of the GNU Autoconf Archive, a collection of more than 500 macros for GNU Autoconf that have been contributed as free software by friendly supporters of the cause from all over the Internet.
- Host: GitHub
- URL: https://github.com/autoconf-archive/autoconf-archive
- Owner: autoconf-archive
- License: gpl-3.0
- Created: 2014-10-15T09:26:30.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T08:39:52.000Z (about 22 hours ago)
- Last Synced: 2024-11-09T09:23:54.607Z (about 22 hours ago)
- Topics: autoconf-archive, autotools, gnu-autoconf, portability, system-programming, unix
- Language: M4
- Homepage: http://www.gnu.org/software/autoconf-archive/
- Size: 3.34 MB
- Stars: 96
- Watchers: 11
- Forks: 168
- Open Issues: 6
-
Metadata Files:
- Readme: README-maint
- Changelog: NEWS
- License: COPYING
Awesome Lists containing this project
README
#+TITLE: GNU Autoconf Archive Maintainer README -*-mode:org;fill-column:79;-*-
#+STARTUP: showall* How to build the archive from Git.
Ensure that the following packages are installed in your system:
- Autoconf, Automake, Gnulib, and GNU Make.
- Git (1.6.x.x or later)
- Python (2.6 or later)
Python 2.6 is needed for textwrap.TextWrapper break_on_hyphens option only.
This is being worked on decrease python version requirements.- texinfo (5.0 or later)
Now run the following commands:
: git clone ssh://[@]git.sv.gnu.org/srv/git/autoconf-archive
: cd autoconf-archive
: ./bootstrap.sh # set up autotools and gnulib environment
: ./configure # determine system properties
: make maintainer-all # create/update all generated files that will be in a release
: make # update texinfo documentationIf "bootstrap.sh" fails because it can't find "gnulib-tool", then you should
clone the "gnulib" project into the top-level directory of the autoconf-archive
repository by running:: git clone git://git.savannah.gnu.org/gnulib.git
* How to update the web site.
Check out the web site from CVS:
: cvs -z3 -d:ext:[@]cvs.savannah.gnu.org:/web/autoconf-archive co -d html autoconf-archive
Run the following commands:
: make web-manual # generate an HTML rendering of the user documentation
: ./fix-website.sh # massage file names generated by texinfo
: # copy the new files into the CVS checkout
: rsync -vrcH --exclude CVS --delete-after doc/manual/html/ html/
: (cd html ; cvs commit -m "generated from autoconf-archive $(git describe)")* How to make a release.
1. Determine the appropriate version number, i.e. today's date in ISO
formatting.2. Update the date stamps in the README file.
2. Update the NEWS file. The script that generates release tarballs checks
that the current version number in mentioned in that file. If NEWS isn't
up-to-date, the script will fail.3. Ensure that there are no uncommitted changes in 'maint' or 'master'. Then
create a signed tag using the naming scheme 'v..
example:
: git tag v2009.07.31 -s -m 'Autoconf Archive Version 2009.07.31'
4. Run "make stable". Other possible release types are "beta" and "major".
5. Use the command line call printed out by gnulib to upload the tarballs to
the GNU ftp server.