This is the mail archive of the cygwin-apps-cvs mailing list for the cygwin-apps project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[xorg-doc - Cygwin XOrg documentation] branch master, updated. fcfcea7c3ed23276d34f3776f7cf53ff931f18e0




https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/xorg-doc.git;h=fcfcea7c3ed23276d34f3776f7cf53ff931f18e0

commit fcfcea7c3ed23276d34f3776f7cf53ff931f18e0
Author: Jon Turney <jon.turney@dronecode.org.uk>
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"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]