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:
parent
dd7f1d95b1
commit
4de804d157
1
NEWS
1
NEWS
@ -21,6 +21,7 @@ VERSION DESCRIPTION
|
|||||||
- added pactest testing suite
|
- added pactest testing suite
|
||||||
- abs - supports cvsup/csup, expanded configuration
|
- abs - supports cvsup/csup, expanded configuration
|
||||||
- makepkg fixes:
|
- makepkg fixes:
|
||||||
|
- new configuration file options format
|
||||||
- support alternate integrity checks
|
- support alternate integrity checks
|
||||||
- extract files using filetype, not extension
|
- extract files using filetype, not extension
|
||||||
- added noextract array
|
- added noextract array
|
||||||
|
1
TODO.dan
1
TODO.dan
@ -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
|
-- http://everything2.com/?node_id=556079
|
||||||
|
|
||||||
Quick hits:
|
Quick hits:
|
||||||
* log_progress and cb_trans_progress - same function? not quite but close
|
|
||||||
* unsigned int vs. unsigned
|
* unsigned int vs. unsigned
|
||||||
* 'ldd' & 'ldd -u' - many linkages
|
* 'ldd' & 'ldd -u' - many linkages
|
||||||
* possibly split utilities/extras from pacman package
|
* possibly split utilities/extras from pacman package
|
||||||
|
@ -56,7 +56,7 @@ BUILDENV=(fakeroot !distcc color !ccache)
|
|||||||
#-- libtool: Leave libtool (.la) files in binaries
|
#-- libtool: Leave libtool (.la) files in binaries
|
||||||
#-- emptydirs: Leave empty directories 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
|
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
|
||||||
INTEGRITY_CHECK=(md5 sha1)
|
INTEGRITY_CHECK=(md5 sha1)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
add.c
|
add.c
|
||||||
alpm.c
|
alpm.c
|
||||||
|
alpm_list.c
|
||||||
backup.c
|
backup.c
|
||||||
be_files.c
|
be_files.c
|
||||||
cache.c
|
cache.c
|
||||||
@ -9,7 +10,6 @@ deps.c
|
|||||||
error.c
|
error.c
|
||||||
group.c
|
group.c
|
||||||
handle.c
|
handle.c
|
||||||
list.c
|
|
||||||
log.c
|
log.c
|
||||||
md5.c
|
md5.c
|
||||||
md5driver.c
|
md5driver.c
|
||||||
|
@ -862,7 +862,8 @@ if [ "$(check_option docs)" = "n" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# move /usr/share/man files to /usr/man
|
# 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
|
mkdir -p pkg/usr/man
|
||||||
cp -a pkg/usr/share/man/* pkg/usr/man/
|
cp -a pkg/usr/share/man/* pkg/usr/man/
|
||||||
rm -rf pkg/usr/share/man
|
rm -rf pkg/usr/share/man
|
||||||
@ -964,6 +965,13 @@ for it in "${backup[@]}"; do
|
|||||||
echo "backup = $it" >>.PKGINFO
|
echo "backup = $it" >>.PKGINFO
|
||||||
done
|
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
|
# check for an install script
|
||||||
if [ "$install" != "" ]; then
|
if [ "$install" != "" ]; then
|
||||||
msg "Copying install script..."
|
msg "Copying install script..."
|
||||||
|
@ -98,9 +98,8 @@ void dump_pkg_full(pmpkg_t *pkg, int level)
|
|||||||
if(level > 1) {
|
if(level > 1) {
|
||||||
/* call new backup function */
|
/* call new backup function */
|
||||||
dump_pkg_backups(pkg);
|
dump_pkg_backups(pkg);
|
||||||
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Display the content of a sync package
|
/* Display the content of a sync package
|
||||||
|
@ -125,7 +125,7 @@ int pacman_query(alpm_list_t *targets)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(config->op_q_upgrade) {
|
if(config->op_q_upgrade) {
|
||||||
MSG(NL, _("Checking for package upgrades"));
|
MSG(NL, _("Checking for package upgrades..."));
|
||||||
alpm_list_t *syncpkgs;
|
alpm_list_t *syncpkgs;
|
||||||
|
|
||||||
if((syncpkgs = alpm_get_upgrades()) != NULL) {
|
if((syncpkgs = alpm_get_upgrades()) != NULL) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user