From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 60369 invoked by alias); 20 Mar 2016 21:06:20 -0000 Mailing-List: contact cygwin-apps-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cygwin-apps-cvs-owner@sourceware.org Received: (qmail 60350 invoked by uid 9795); 20 Mar 2016 21:06:20 -0000 Date: Sun, 20 Mar 2016 21:06:00 -0000 Message-ID: <20160320210620.60312.qmail@sourceware.org> From: jturney@sourceware.org To: cygwin-apps-cvs@sourceware.org Subject: [xorg-doc - Cygwin XOrg documentation] branch master, updated. fcfcea7c3ed23276d34f3776f7cf53ff931f18e0 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 8a41b1d3e635ed7e473c00574b96dbc8812552f1 X-Git-Newrev: fcfcea7c3ed23276d34f3776f7cf53ff931f18e0 X-SW-Source: 2016-q1/txt/msg00050.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/xorg-doc.git;h=fcfcea7c3ed23276d34f3776f7cf53ff931f18e0 commit fcfcea7c3ed23276d34f3776f7cf53ff931f18e0 Author: Jon Turney Date: Sun Mar 20 20:21:56 2016 +0000 Remove extraneous per-directory .cvsignore Diff: --- cygport/cygwin-x-doc.cygport | 14 ----------- package-and-update | 52 ------------------------------------------ 2 files changed, 0 insertions(+), 66 deletions(-) diff --git a/cygport/cygwin-x-doc.cygport b/cygport/cygwin-x-doc.cygport deleted file mode 100644 index 00b3340..0000000 --- a/cygport/cygwin-x-doc.cygport +++ /dev/null @@ -1,14 +0,0 @@ -inherit autotools - -NAME=cygwin-x-doc -VERSION=`cat version` -RELEASE=1 - -CATEGORY="X11 Doc" -SUMMARY="Cygwin/X-specific documentation" -DESCRIPTION="Cygwin/X-specific documentation, including FAQ, User's Guide, -and Contributor's Guide in HTML, PS.GZ, PDF, TXT, and RTF formats." - -SRC_URI="${P}.tar.bz2" -CYGCONF_ARGS="--enable-hardcopy" -ARCH="noarch" diff --git a/package-and-update b/package-and-update deleted file mode 100755 index 2c1edf9..0000000 --- a/package-and-update +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh -x - -# directory in a checkout of the website repo we will install built documentation into -DOCDIR=$(realpath ../cygwin-htdocs/xfree/docs) - -# check for uncommitted changes, stop if there are any -git diff --quiet 2>/dev/null || exit -(cd ${DOCDIR} ; git diff --quiet 2>/dev/null) || exit - -# update version number -DATE=`date -u +%Y%m%d` -echo "1.1.$DATE" >version - -# regenerate ./configure -autoreconf -v --install --force || exit 1 - -# check in version -git add version -git commit -m "Bump version to 1.1.$DATE" -git tag -f VERSION_1_1_$DATE - -# clean and create build directory -rm -rf build -mkdir build -cd build - -# make dist tarball -../configure --enable-hardcopy --with-docdir=${DOCDIR} -make distcheck || exit - -# copy dist tarball to cygport directory -cp *.tar.bz2 ../cygport/ -cd .. - -# build cygport package using that tarball -cp version cygport/ -cd cygport -cygport cygwin-x-doc.cygport finish || exit -cygport cygwin-x-doc.cygport all || exit -cd - - -# build and install into DOCDIR -cd build -make -make install -cd - - -# update website -# XXX: removed files need handling manually -cd ${DOCDIR} -git add --all -git commit -m "Rebuild X documentation"