Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | added a section to create a spec file and build the rpm files (CVS 504) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e529143967a6fd4e65dea6a5ff68a7aa |
User & Date: | doughenry 2002-03-29 01:29:54.000 |
Context
2002-03-29
| ||
18:16 | Combine the homerpm.sh file in with publish.sh. Update the website files to refer to the new RPMs that are now being built. Fix a small problem with the spec file. (CVS 505) (check-in: 57d4c77047 user: drh tags: trunk) | |
01:29 | added a section to create a spec file and build the rpm files (CVS 504) (check-in: e529143967 user: doughenry tags: trunk) | |
01:28 | these files are needed by publish.sh to build rpms (CVS 503) (check-in: 3c25359376 user: doughenry tags: trunk) | |
Changes
Changes to publish.sh.
︙ | ︙ | |||
136 137 138 139 140 141 142 143 144 145 146 147 148 149 | cd .. EXCLUDE=`find sqlite -print | grep CVS | sed 's,sqlite/, --exclude sqlite/,'` tar czf $ORIGIN/sqlite.tar.gz $EXCLUDE sqlite cd $ORIGIN vers=`cat $srcdir/VERSION` rm -f sqlite-$vers.tar.gz ln sqlite.tar.gz sqlite-$vers.tar.gz # Build the website # cp $srcdir/../historical/* . rm -rf doc make doc ln sqlite.bin.gz sqlite.zip sqlite*.tar.gz tclsqlite.so.gz tclsqlite.zip doc | > > > > > > > > > > > > > > > > > > > > > > | 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | cd .. EXCLUDE=`find sqlite -print | grep CVS | sed 's,sqlite/, --exclude sqlite/,'` tar czf $ORIGIN/sqlite.tar.gz $EXCLUDE sqlite cd $ORIGIN vers=`cat $srcdir/VERSION` rm -f sqlite-$vers.tar.gz ln sqlite.tar.gz sqlite-$vers.tar.gz # # Build RPMS (binary) and Source RPM # # this script sets up the home directory so normal users can build rpms # by default this would only be allowed by root. This really only needs # done once, but each time shouldn't hurt anything. $srcdir/homerpm.sh # create the spec file from the template sed s/SQLITE_VERSION/$vers/g $srcdir/spec.template > $HOME/rpm/SPECS/sqlite.spec # copy the source tarball to the rpm directory cp sqlite-$vers.tar.gz $HOME/rpm/SOURCES/. # build all the rpms rpm -ba $HOME/rpm/SPECS/sqlite.spec >& rpm-$vers.log # this part I'm not sure about, looks like the rpms may need copied here or # linked to? # Build the website # cp $srcdir/../historical/* . rm -rf doc make doc ln sqlite.bin.gz sqlite.zip sqlite*.tar.gz tclsqlite.so.gz tclsqlite.zip doc |
︙ | ︙ |