mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
Merge branch 'release'
This commit is contained in:
commit
ba8fba3d6a
4 changed files with 42 additions and 15 deletions
5
configure
vendored
5
configure
vendored
|
@ -394,6 +394,7 @@ EOF
|
||||||
printf "Yes.\n"
|
printf "Yes.\n"
|
||||||
else
|
else
|
||||||
printf "No.\n"
|
printf "No.\n"
|
||||||
|
errors=$((errors + 1))
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -f _compact.o _compact.cc
|
rm -f _compact.o _compact.cc
|
||||||
|
@ -683,8 +684,8 @@ EOF
|
||||||
if [ $have_python -eq 0 ]; then
|
if [ $have_python -eq 0 ]; then
|
||||||
echo " python interpreter"
|
echo " python interpreter"
|
||||||
fi
|
fi
|
||||||
if [ $have_xapian -eq 0 ]; then
|
if [ $have_xapian -eq 0 -o $have_xapian_compact -eq 0 ]; then
|
||||||
echo " Xapian library (including development files such as headers)"
|
echo " Xapian library (>= version 1.2.6, including development files such as headers)"
|
||||||
echo " https://xapian.org/"
|
echo " https://xapian.org/"
|
||||||
fi
|
fi
|
||||||
if [ $have_zlib -eq 0 ]; then
|
if [ $have_zlib -eq 0 ]; then
|
||||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
||||||
|
notmuch (0.23-2) unstable; urgency=medium
|
||||||
|
|
||||||
|
* upload to unstable
|
||||||
|
|
||||||
|
-- David Bremner <bremner@debian.org> Wed, 05 Oct 2016 21:27:00 -0300
|
||||||
|
|
||||||
notmuch (0.23-1) experimental; urgency=medium
|
notmuch (0.23-1) experimental; urgency=medium
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
|
|
|
@ -1143,7 +1143,6 @@ notmuch_database_close (notmuch_database_t *notmuch)
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if HAVE_XAPIAN_COMPACT
|
|
||||||
static int
|
static int
|
||||||
unlink_cb (const char *path,
|
unlink_cb (const char *path,
|
||||||
unused (const struct stat *sb),
|
unused (const struct stat *sb),
|
||||||
|
@ -1327,17 +1326,6 @@ notmuch_database_compact (const char *path,
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
notmuch_status_t
|
|
||||||
notmuch_database_compact (unused (const char *path),
|
|
||||||
unused (const char *backup_path),
|
|
||||||
unused (notmuch_compact_status_cb_t status_cb),
|
|
||||||
unused (void *closure))
|
|
||||||
{
|
|
||||||
_notmuch_database_log (notmuch, "notmuch was compiled against a xapian version lacking compaction support.\n");
|
|
||||||
return NOTMUCH_STATUS_UNSUPPORTED_OPERATION;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_database_destroy (notmuch_database_t *notmuch)
|
notmuch_database_destroy (notmuch_database_t *notmuch)
|
||||||
|
|
|
@ -1679,7 +1679,7 @@ notmuch_message_destroy (notmuch_message_t *message);
|
||||||
* @returns
|
* @returns
|
||||||
* - NOTMUCH_STATUS_NULL_POINTER: *value* may not be NULL.
|
* - NOTMUCH_STATUS_NULL_POINTER: *value* may not be NULL.
|
||||||
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_message_get_property (notmuch_message_t *message, const char *key, const char **value);
|
notmuch_message_get_property (notmuch_message_t *message, const char *key, const char **value);
|
||||||
|
@ -1691,6 +1691,7 @@ notmuch_message_get_property (notmuch_message_t *message, const char *key, const
|
||||||
* - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
|
* - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
|
||||||
* - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
|
* - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
|
||||||
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_message_add_property (notmuch_message_t *message, const char *key, const char *value);
|
notmuch_message_add_property (notmuch_message_t *message, const char *key, const char *value);
|
||||||
|
@ -1704,6 +1705,7 @@ notmuch_message_add_property (notmuch_message_t *message, const char *key, const
|
||||||
* - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
|
* - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
|
||||||
* - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
|
* - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
|
||||||
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_message_remove_property (notmuch_message_t *message, const char *key, const char *value);
|
notmuch_message_remove_property (notmuch_message_t *message, const char *key, const char *value);
|
||||||
|
@ -1719,6 +1721,7 @@ notmuch_message_remove_property (notmuch_message_t *message, const char *key, co
|
||||||
* read-only mode so message cannot be modified.
|
* read-only mode so message cannot be modified.
|
||||||
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
* - NOTMUCH_STATUS_SUCCESS: No error occured.
|
||||||
*
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_message_remove_all_properties (notmuch_message_t *message, const char *key);
|
notmuch_message_remove_all_properties (notmuch_message_t *message, const char *key);
|
||||||
|
@ -1757,6 +1760,8 @@ typedef struct _notmuch_string_map_iterator notmuch_message_properties_t;
|
||||||
* notmuch_message_properties_t object. (For consistency, we do
|
* notmuch_message_properties_t object. (For consistency, we do
|
||||||
* provide a notmuch_message_properities_destroy function, but there's
|
* provide a notmuch_message_properities_destroy function, but there's
|
||||||
* no good reason to call it if the message is about to be destroyed).
|
* no good reason to call it if the message is about to be destroyed).
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_message_properties_t *
|
notmuch_message_properties_t *
|
||||||
notmuch_message_get_properties (notmuch_message_t *message, const char *key, notmuch_bool_t exact);
|
notmuch_message_get_properties (notmuch_message_t *message, const char *key, notmuch_bool_t exact);
|
||||||
|
@ -1774,6 +1779,8 @@ notmuch_message_get_properties (notmuch_message_t *message, const char *key, not
|
||||||
* See the documentation of notmuch_message_properties_get for example
|
* See the documentation of notmuch_message_properties_get for example
|
||||||
* code showing how to iterate over a notmuch_message_properties_t
|
* code showing how to iterate over a notmuch_message_properties_t
|
||||||
* object.
|
* object.
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_bool_t
|
notmuch_bool_t
|
||||||
notmuch_message_properties_valid (notmuch_message_properties_t *properties);
|
notmuch_message_properties_valid (notmuch_message_properties_t *properties);
|
||||||
|
@ -1787,6 +1794,8 @@ notmuch_message_properties_valid (notmuch_message_properties_t *properties);
|
||||||
*
|
*
|
||||||
* See the documentation of notmuch_message_get_properties for example
|
* See the documentation of notmuch_message_get_properties for example
|
||||||
* code showing how to iterate over a notmuch_message_properties_t object.
|
* code showing how to iterate over a notmuch_message_properties_t object.
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
notmuch_message_properties_move_to_next (notmuch_message_properties_t *properties);
|
notmuch_message_properties_move_to_next (notmuch_message_properties_t *properties);
|
||||||
|
@ -1795,6 +1804,8 @@ notmuch_message_properties_move_to_next (notmuch_message_properties_t *propertie
|
||||||
* Return the key from the current (key,value) pair.
|
* Return the key from the current (key,value) pair.
|
||||||
*
|
*
|
||||||
* this could be useful if iterating for a prefix
|
* this could be useful if iterating for a prefix
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
const char *
|
const char *
|
||||||
notmuch_message_properties_key (notmuch_message_properties_t *properties);
|
notmuch_message_properties_key (notmuch_message_properties_t *properties);
|
||||||
|
@ -1803,6 +1814,8 @@ notmuch_message_properties_key (notmuch_message_properties_t *properties);
|
||||||
* Return the key from the current (key,value) pair.
|
* Return the key from the current (key,value) pair.
|
||||||
*
|
*
|
||||||
* This could be useful if iterating for a prefix.
|
* This could be useful if iterating for a prefix.
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
const char *
|
const char *
|
||||||
notmuch_message_properties_value (notmuch_message_properties_t *properties);
|
notmuch_message_properties_value (notmuch_message_properties_t *properties);
|
||||||
|
@ -1814,6 +1827,8 @@ notmuch_message_properties_value (notmuch_message_properties_t *properties);
|
||||||
* It's not strictly necessary to call this function. All memory from
|
* It's not strictly necessary to call this function. All memory from
|
||||||
* the notmuch_message_properties_t object will be reclaimed when the
|
* the notmuch_message_properties_t object will be reclaimed when the
|
||||||
* containing message object is destroyed.
|
* containing message object is destroyed.
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
notmuch_message_properties_destroy (notmuch_message_properties_t *properties);
|
notmuch_message_properties_destroy (notmuch_message_properties_t *properties);
|
||||||
|
@ -2012,6 +2027,7 @@ notmuch_filenames_destroy (notmuch_filenames_t *filenames);
|
||||||
/**
|
/**
|
||||||
* set config 'key' to 'value'
|
* set config 'key' to 'value'
|
||||||
*
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_database_set_config (notmuch_database_t *db, const char *key, const char *value);
|
notmuch_database_set_config (notmuch_database_t *db, const char *key, const char *value);
|
||||||
|
@ -2024,18 +2040,24 @@ notmuch_database_set_config (notmuch_database_t *db, const char *key, const char
|
||||||
*
|
*
|
||||||
* return value is allocated by malloc and should be freed by the
|
* return value is allocated by malloc and should be freed by the
|
||||||
* caller.
|
* caller.
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_database_get_config (notmuch_database_t *db, const char *key, char **value);
|
notmuch_database_get_config (notmuch_database_t *db, const char *key, char **value);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an iterator for all config items with keys matching a given prefix
|
* Create an iterator for all config items with keys matching a given prefix
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
notmuch_status_t
|
||||||
notmuch_database_get_config_list (notmuch_database_t *db, const char *prefix, notmuch_config_list_t **out);
|
notmuch_database_get_config_list (notmuch_database_t *db, const char *prefix, notmuch_config_list_t **out);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Is 'config_list' iterator valid (i.e. _key, _value, _move_to_next can be called).
|
* Is 'config_list' iterator valid (i.e. _key, _value, _move_to_next can be called).
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_bool_t
|
notmuch_bool_t
|
||||||
notmuch_config_list_valid (notmuch_config_list_t *config_list);
|
notmuch_config_list_valid (notmuch_config_list_t *config_list);
|
||||||
|
@ -2045,6 +2067,8 @@ notmuch_config_list_valid (notmuch_config_list_t *config_list);
|
||||||
*
|
*
|
||||||
* return value is owned by the iterator, and will be destroyed by the
|
* return value is owned by the iterator, and will be destroyed by the
|
||||||
* next call to notmuch_config_list_key or notmuch_config_list_destroy.
|
* next call to notmuch_config_list_key or notmuch_config_list_destroy.
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
const char *
|
const char *
|
||||||
notmuch_config_list_key (notmuch_config_list_t *config_list);
|
notmuch_config_list_key (notmuch_config_list_t *config_list);
|
||||||
|
@ -2054,6 +2078,8 @@ notmuch_config_list_key (notmuch_config_list_t *config_list);
|
||||||
*
|
*
|
||||||
* return value is owned by the iterator, and will be destroyed by the
|
* return value is owned by the iterator, and will be destroyed by the
|
||||||
* next call to notmuch_config_list_value or notmuch config_list_destroy
|
* next call to notmuch_config_list_value or notmuch config_list_destroy
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
const char *
|
const char *
|
||||||
notmuch_config_list_value (notmuch_config_list_t *config_list);
|
notmuch_config_list_value (notmuch_config_list_t *config_list);
|
||||||
|
@ -2061,18 +2087,24 @@ notmuch_config_list_value (notmuch_config_list_t *config_list);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* move 'config_list' iterator to the next pair
|
* move 'config_list' iterator to the next pair
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
notmuch_config_list_move_to_next (notmuch_config_list_t *config_list);
|
notmuch_config_list_move_to_next (notmuch_config_list_t *config_list);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* free any resources held by 'config_list'
|
* free any resources held by 'config_list'
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
notmuch_config_list_destroy (notmuch_config_list_t *config_list);
|
notmuch_config_list_destroy (notmuch_config_list_t *config_list);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* interrogate the library for compile time features
|
* interrogate the library for compile time features
|
||||||
|
*
|
||||||
|
* @since libnotmuch 4.4 (notmuch 0.23)
|
||||||
*/
|
*/
|
||||||
notmuch_bool_t
|
notmuch_bool_t
|
||||||
notmuch_built_with (const char *name);
|
notmuch_built_with (const char *name);
|
||||||
|
|
Loading…
Reference in a new issue