1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-02-28 17:31:52 -05:00

* Makepkg updates, and small bugfix on man page compression.

* Change libtool default to makepkg2 behavior.
* Other small changes.
This commit is contained in:
Dan McGee 2007-02-06 22:36:13 +00:00
parent dd7f1d95b1
commit 4de804d157
7 changed files with 14 additions and 7 deletions

1
NEWS
View File

@ -21,6 +21,7 @@ VERSION DESCRIPTION
- added pactest testing suite
- abs - supports cvsup/csup, expanded configuration
- makepkg fixes:
- new configuration file options format
- support alternate integrity checks
- extract files using filetype, not extension
- added noextract array

View File

@ -46,7 +46,6 @@ This is my personal TODO list. No guarantees if it is out of date and things
-- http://everything2.com/?node_id=556079
Quick hits:
* log_progress and cb_trans_progress - same function? not quite but close
* unsigned int vs. unsigned
* 'ldd' & 'ldd -u' - many linkages
* possibly split utilities/extras from pacman package

View File

@ -56,7 +56,7 @@ BUILDENV=(fakeroot !distcc color !ccache)
#-- libtool: Leave libtool (.la) files in binaries
#-- emptydirs: Leave empty directories in binaries
#
OPTIONS=(strip !docs !libtool emptydirs)
OPTIONS=(strip !docs libtool emptydirs)
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
INTEGRITY_CHECK=(md5 sha1)

View File

@ -1,5 +1,6 @@
add.c
alpm.c
alpm_list.c
backup.c
be_files.c
cache.c
@ -9,7 +10,6 @@ deps.c
error.c
group.c
handle.c
list.c
log.c
md5.c
md5driver.c

View File

@ -862,7 +862,8 @@ if [ "$(check_option docs)" = "n" ]; then
fi
# move /usr/share/man files to /usr/man
if [ -d pkg/usr/share/man ]; then
if [ -d $startdir/pkg/usr/share/man ]; then
cd $startdir
mkdir -p pkg/usr/man
cp -a pkg/usr/share/man/* pkg/usr/man/
rm -rf pkg/usr/share/man
@ -964,6 +965,13 @@ for it in "${backup[@]}"; do
echo "backup = $it" >>.PKGINFO
done
# TODO maybe remove this at some point
# warn if license array is not present or empty
if [ "$license" = "" ]; then
warning "Please add a license line to your $BUILDSCRIPT!"
plain "example for GPL'ed software: license=('GPL')."
fi
# check for an install script
if [ "$install" != "" ]; then
msg "Copying install script..."

View File

@ -98,9 +98,8 @@ void dump_pkg_full(pmpkg_t *pkg, int level)
if(level > 1) {
/* call new backup function */
dump_pkg_backups(pkg);
}
printf("\n");
}
}
/* Display the content of a sync package

View File

@ -125,7 +125,7 @@ int pacman_query(alpm_list_t *targets)
}
if(config->op_q_upgrade) {
MSG(NL, _("Checking for package upgrades"));
MSG(NL, _("Checking for package upgrades..."));
alpm_list_t *syncpkgs;
if((syncpkgs = alpm_get_upgrades()) != NULL) {