Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Removed references to the now-removed Wishlist file. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c6ca15d636cb57a1e1ab2fa5714b7aac |
User & Date: | tangent 2018-07-27 05:52:26 |
Context
2018-07-27
| ||
06:09 | "make dist" was leaving out HACKERS.md. Fixed. check-in: 57f4e9ac0f user: tangent tags: trunk | |
05:52 | Removed references to the now-removed Wishlist file. check-in: c6ca15d636 user: tangent tags: trunk | |
05:51 | Updated link to SSQLSv2 plan from SSQLS chapter of the userman check-in: 7391fc92ec user: tangent tags: trunk | |
Changes
Changes to mysql++.bkl.
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 |
<!-- Copy files into package directory -->
<!-- top directory -->
<command>
cp -RL *.bat *.in *.txt abi.xml aclocal.m4 Bakefiles.bkgen \
bootstrap ChangeLog.md cleanmf config.guess config.h config.sub \
configure* dtest exrun install* Makefile.* mysql++.* osver \
Wishlist $(PKGNAME)
</command>
<!-- VC++ project file subdirs -->
<command>
for d in vc200? ; do \
mkdir -p $(PKGNAME)/$(DDD) ; \
cp $(DDD)/*.sln $(DDD)/*.vcproj $(PKGNAME)/$(DDD) ; \
|
| |
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 |
<!-- Copy files into package directory --> <!-- top directory --> <command> cp -RL *.bat *.in *.txt abi.xml aclocal.m4 Bakefiles.bkgen \ bootstrap ChangeLog.md cleanmf config.guess config.h config.sub \ configure* dtest exrun install* Makefile.* mysql++.* osver \ $(PKGNAME) </command> <!-- VC++ project file subdirs --> <command> for d in vc200? ; do \ mkdir -p $(PKGNAME)/$(DDD) ; \ cp $(DDD)/*.sln $(DDD)/*.vcproj $(PKGNAME)/$(DDD) ; \ |
Changes to mysql++.ebuild.
47 48 49 50 51 52 53 54 55 56 57 58 |
emake || die "unable to make"
}
src_install() {
emake DESTDIR="${D}" install || die
# install the docs and HTML pages
dodoc README* CREDITS ChangeLog.md HACKERS Wishlist
dodoc doc/*
cp -ra doc/html "${D}"/usr/share/doc/${PF}/html
prepalldocs
}
|
| |
47 48 49 50 51 52 53 54 55 56 57 58 |
emake || die "unable to make"
}
src_install() {
emake DESTDIR="${D}" install || die
# install the docs and HTML pages
dodoc README* CREDITS ChangeLog.md HACKERS.md
dodoc doc/*
cp -ra doc/html "${D}"/usr/share/doc/${PF}/html
prepalldocs
}
|
Changes to mysql++.spec.in.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
%files
%defattr(-,root,root,-)
%doc ChangeLog.md COPYING.txt CREDITS.txt LICENSE.txt README.txt
%{_libdir}/libmysqlpp.so.*
%files devel
%defattr(-,root,root,-)
%doc doc/examples doc/README-devel-RPM.txt README-examples.txt Wishlist
%{_includedir}/mysql++
%{_libdir}/libmysqlpp.so
%files manuals
%defattr(-,root,root,-)
%doc doc/html doc/pdf doc/README-manuals-RPM.txt
|
| |
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
%files %defattr(-,root,root,-) %doc ChangeLog.md COPYING.txt CREDITS.txt LICENSE.txt README.txt %{_libdir}/libmysqlpp.so.* %files devel %defattr(-,root,root,-) %doc doc/examples doc/README-devel-RPM.txt README-examples.txt %{_includedir}/mysql++ %{_libdir}/libmysqlpp.so %files manuals %defattr(-,root,root,-) %doc doc/html doc/pdf doc/README-manuals-RPM.txt |