commit
3204945db8
@ -0,0 +1,578 @@
|
|||||||
|
From ca89ee36a1a2bedded5d4fbde46be8b680755c35 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Fabio Valentini <decathorpe@gmail.com>
|
||||||
|
Date: Wed, 1 Mar 2023 15:18:10 +0100
|
||||||
|
Subject: [PATCH] unconditionally enable building with bindgen and pkg-config
|
||||||
|
|
||||||
|
---
|
||||||
|
build.rs | 467 +------------------------------------------------------
|
||||||
|
1 file changed, 8 insertions(+), 459 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/build.rs b/build.rs
|
||||||
|
index e154a8d..15f0430 100644
|
||||||
|
--- a/build.rs
|
||||||
|
+++ b/build.rs
|
||||||
|
@@ -1,312 +1,14 @@
|
||||||
|
use std::env;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
-/// Tells whether we're building for Windows. This is more suitable than a plain
|
||||||
|
-/// `cfg!(windows)`, since the latter does not properly handle cross-compilation
|
||||||
|
-///
|
||||||
|
-/// Note that there is no way to know at compile-time which system we'll be
|
||||||
|
-/// targetting, and this test must be made at run-time (of the build script) See
|
||||||
|
-/// https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
|
||||||
|
-fn win_target() -> bool {
|
||||||
|
- env::var("CARGO_CFG_WINDOWS").is_ok()
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-/// Tells whether we're building for Android.
|
||||||
|
-/// See [`win_target`]
|
||||||
|
-#[cfg(any(feature = "bundled", feature = "bundled-windows"))]
|
||||||
|
-fn android_target() -> bool {
|
||||||
|
- env::var("CARGO_CFG_TARGET_OS").map_or(false, |v| v == "android")
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-/// Tells whether a given compiler will be used `compiler_name` is compared to
|
||||||
|
-/// the content of `CARGO_CFG_TARGET_ENV` (and is always lowercase)
|
||||||
|
-///
|
||||||
|
-/// See [`win_target`]
|
||||||
|
-fn is_compiler(compiler_name: &str) -> bool {
|
||||||
|
- env::var("CARGO_CFG_TARGET_ENV").map_or(false, |v| v == compiler_name)
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
fn main() {
|
||||||
|
let out_dir = env::var("OUT_DIR").unwrap();
|
||||||
|
let out_path = Path::new(&out_dir).join("bindgen.rs");
|
||||||
|
- if cfg!(feature = "in_gecko") {
|
||||||
|
- // When inside mozilla-central, we are included into the build with
|
||||||
|
- // sqlite3.o directly, so we don't want to provide any linker arguments.
|
||||||
|
- std::fs::copy("sqlite3/bindgen_bundled_version.rs", out_path)
|
||||||
|
- .expect("Could not copy bindings to output directory");
|
||||||
|
- return;
|
||||||
|
- }
|
||||||
|
- if cfg!(all(
|
||||||
|
- feature = "sqlcipher",
|
||||||
|
- not(feature = "bundled-sqlcipher")
|
||||||
|
- )) {
|
||||||
|
- if cfg!(feature = "bundled") || (win_target() && cfg!(feature = "bundled-windows")) {
|
||||||
|
- println!(
|
||||||
|
- "cargo:warning=For backwards compatibility, feature 'sqlcipher' overrides
|
||||||
|
- features 'bundled' and 'bundled-windows'. If you want a bundled build of
|
||||||
|
- SQLCipher (available for the moment only on Unix), use feature 'bundled-sqlcipher'
|
||||||
|
- or 'bundled-sqlcipher-vendored-openssl' to also bundle OpenSSL crypto."
|
||||||
|
- );
|
||||||
|
- }
|
||||||
|
- build_linked::main(&out_dir, &out_path);
|
||||||
|
- } else if cfg!(feature = "bundled")
|
||||||
|
- || (win_target() && cfg!(feature = "bundled-windows"))
|
||||||
|
- || cfg!(feature = "bundled-sqlcipher")
|
||||||
|
- {
|
||||||
|
- #[cfg(any(
|
||||||
|
- feature = "bundled",
|
||||||
|
- feature = "bundled-windows",
|
||||||
|
- feature = "bundled-sqlcipher"
|
||||||
|
- ))]
|
||||||
|
- build_bundled::main(&out_dir, &out_path);
|
||||||
|
- #[cfg(not(any(
|
||||||
|
- feature = "bundled",
|
||||||
|
- feature = "bundled-windows",
|
||||||
|
- feature = "bundled-sqlcipher"
|
||||||
|
- )))]
|
||||||
|
- panic!("The runtime test should not run this branch, which has not compiled any logic.")
|
||||||
|
- } else {
|
||||||
|
- build_linked::main(&out_dir, &out_path);
|
||||||
|
- }
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-#[cfg(any(
|
||||||
|
- feature = "bundled",
|
||||||
|
- feature = "bundled-windows",
|
||||||
|
- feature = "bundled-sqlcipher"
|
||||||
|
-))]
|
||||||
|
-mod build_bundled {
|
||||||
|
- use std::env;
|
||||||
|
- use std::ffi::OsString;
|
||||||
|
- use std::path::{Path, PathBuf};
|
||||||
|
-
|
||||||
|
- use super::{is_compiler, win_target};
|
||||||
|
-
|
||||||
|
- pub fn main(out_dir: &str, out_path: &Path) {
|
||||||
|
- let lib_name = super::lib_name();
|
||||||
|
-
|
||||||
|
- // This is just a sanity check, the top level `main` should ensure this.
|
||||||
|
- assert!(!(cfg!(feature = "bundled-windows") && !cfg!(feature = "bundled") && !win_target()),
|
||||||
|
- "This module should not be used: we're not on Windows and the bundled feature has not been enabled");
|
||||||
|
-
|
||||||
|
- #[cfg(feature = "buildtime_bindgen")]
|
||||||
|
- {
|
||||||
|
- use super::{bindings, HeaderLocation};
|
||||||
|
- let header = HeaderLocation::FromPath(format!("{}/sqlite3.h", lib_name));
|
||||||
|
- bindings::write_to_out_dir(header, out_path);
|
||||||
|
- }
|
||||||
|
- #[cfg(not(feature = "buildtime_bindgen"))]
|
||||||
|
- {
|
||||||
|
- use std::fs;
|
||||||
|
- fs::copy(format!("{}/bindgen_bundled_version.rs", lib_name), out_path)
|
||||||
|
- .expect("Could not copy bindings to output directory");
|
||||||
|
- }
|
||||||
|
- // println!("cargo:rerun-if-changed=sqlite3/sqlite3.c");
|
||||||
|
- // println!("cargo:rerun-if-changed=sqlcipher/sqlite3.c");
|
||||||
|
- println!("cargo:rerun-if-changed={}/sqlite3.c", lib_name);
|
||||||
|
- println!("cargo:rerun-if-changed=sqlite3/wasm32-wasi-vfs.c");
|
||||||
|
- let mut cfg = cc::Build::new();
|
||||||
|
- cfg.file(format!("{}/sqlite3.c", lib_name))
|
||||||
|
- .flag("-DSQLITE_CORE")
|
||||||
|
- .flag("-DSQLITE_DEFAULT_FOREIGN_KEYS=1")
|
||||||
|
- .flag("-DSQLITE_ENABLE_API_ARMOR")
|
||||||
|
- .flag("-DSQLITE_ENABLE_COLUMN_METADATA")
|
||||||
|
- .flag("-DSQLITE_ENABLE_DBSTAT_VTAB")
|
||||||
|
- .flag("-DSQLITE_ENABLE_FTS3")
|
||||||
|
- .flag("-DSQLITE_ENABLE_FTS3_PARENTHESIS")
|
||||||
|
- .flag("-DSQLITE_ENABLE_FTS5")
|
||||||
|
- .flag("-DSQLITE_ENABLE_JSON1")
|
||||||
|
- .flag("-DSQLITE_ENABLE_LOAD_EXTENSION=1")
|
||||||
|
- .flag("-DSQLITE_ENABLE_MEMORY_MANAGEMENT")
|
||||||
|
- .flag("-DSQLITE_ENABLE_RTREE")
|
||||||
|
- .flag("-DSQLITE_ENABLE_STAT2")
|
||||||
|
- .flag("-DSQLITE_ENABLE_STAT4")
|
||||||
|
- .flag("-DSQLITE_SOUNDEX")
|
||||||
|
- .flag("-DSQLITE_THREADSAFE=1")
|
||||||
|
- .flag("-DSQLITE_USE_URI")
|
||||||
|
- .flag("-DHAVE_USLEEP=1")
|
||||||
|
- .flag("-D_POSIX_THREAD_SAFE_FUNCTIONS") // cross compile with MinGW
|
||||||
|
- .warnings(false);
|
||||||
|
-
|
||||||
|
- if cfg!(feature = "bundled-sqlcipher") {
|
||||||
|
- cfg.flag("-DSQLITE_HAS_CODEC").flag("-DSQLITE_TEMP_STORE=2");
|
||||||
|
-
|
||||||
|
- let target = env::var("TARGET").unwrap();
|
||||||
|
- let host = env::var("HOST").unwrap();
|
||||||
|
-
|
||||||
|
- let is_windows = host.contains("windows") && target.contains("windows");
|
||||||
|
- let is_apple = host.contains("apple") && target.contains("apple");
|
||||||
|
-
|
||||||
|
- let lib_dir = env("OPENSSL_LIB_DIR").map(PathBuf::from);
|
||||||
|
- let inc_dir = env("OPENSSL_INCLUDE_DIR").map(PathBuf::from);
|
||||||
|
- let mut use_openssl = false;
|
||||||
|
-
|
||||||
|
- let (lib_dir, inc_dir) = match (lib_dir, inc_dir) {
|
||||||
|
- (Some(lib_dir), Some(inc_dir)) => {
|
||||||
|
- use_openssl = true;
|
||||||
|
- (lib_dir, inc_dir)
|
||||||
|
- }
|
||||||
|
- (lib_dir, inc_dir) => match find_openssl_dir(&host, &target) {
|
||||||
|
- None => {
|
||||||
|
- if is_windows && !cfg!(feature = "bundled-sqlcipher-vendored-openssl") {
|
||||||
|
- panic!("Missing environment variable OPENSSL_DIR or OPENSSL_DIR is not set")
|
||||||
|
- } else {
|
||||||
|
- (PathBuf::new(), PathBuf::new())
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
- Some(openssl_dir) => {
|
||||||
|
- let lib_dir = lib_dir.unwrap_or_else(|| openssl_dir.join("lib"));
|
||||||
|
- let inc_dir = inc_dir.unwrap_or_else(|| openssl_dir.join("include"));
|
||||||
|
-
|
||||||
|
- assert!(
|
||||||
|
- Path::new(&lib_dir).exists(),
|
||||||
|
- "OpenSSL library directory does not exist: {}",
|
||||||
|
- lib_dir.to_string_lossy()
|
||||||
|
- );
|
||||||
|
-
|
||||||
|
- if !Path::new(&inc_dir).exists() {
|
||||||
|
- panic!(
|
||||||
|
- "OpenSSL include directory does not exist: {}",
|
||||||
|
- inc_dir.to_string_lossy()
|
||||||
|
- );
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- use_openssl = true;
|
||||||
|
- (lib_dir, inc_dir)
|
||||||
|
- }
|
||||||
|
- },
|
||||||
|
- };
|
||||||
|
-
|
||||||
|
- if cfg!(feature = "bundled-sqlcipher-vendored-openssl") {
|
||||||
|
- cfg.include(env::var("DEP_OPENSSL_INCLUDE").unwrap());
|
||||||
|
- // cargo will resolve downstream to the static lib in
|
||||||
|
- // openssl-sys
|
||||||
|
- } else if is_windows {
|
||||||
|
- // Windows without `-vendored-openssl` takes this to link against a prebuilt
|
||||||
|
- // OpenSSL lib
|
||||||
|
- cfg.include(inc_dir.to_string_lossy().as_ref());
|
||||||
|
- let lib = lib_dir.join("libcrypto.lib");
|
||||||
|
- cfg.flag(lib.to_string_lossy().as_ref());
|
||||||
|
- } else if use_openssl {
|
||||||
|
- cfg.include(inc_dir.to_string_lossy().as_ref());
|
||||||
|
- // branch not taken on Windows, just `crypto` is fine.
|
||||||
|
- println!("cargo:rustc-link-lib=dylib=crypto");
|
||||||
|
- println!("cargo:rustc-link-search={}", lib_dir.to_string_lossy());
|
||||||
|
- } else if is_apple {
|
||||||
|
- cfg.flag("-DSQLCIPHER_CRYPTO_CC");
|
||||||
|
- println!("cargo:rustc-link-lib=framework=Security");
|
||||||
|
- println!("cargo:rustc-link-lib=framework=CoreFoundation");
|
||||||
|
- } else {
|
||||||
|
- // branch not taken on Windows, just `crypto` is fine.
|
||||||
|
- println!("cargo:rustc-link-lib=dylib=crypto");
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- // on android sqlite can't figure out where to put the temp files.
|
||||||
|
- // the bundled sqlite on android also uses `SQLITE_TEMP_STORE=3`.
|
||||||
|
- // https://android.googlesource.com/platform/external/sqlite/+/2c8c9ae3b7e6f340a19a0001c2a889a211c9d8b2/dist/Android.mk
|
||||||
|
- if super::android_target() {
|
||||||
|
- cfg.flag("-DSQLITE_TEMP_STORE=3");
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- if cfg!(feature = "with-asan") {
|
||||||
|
- cfg.flag("-fsanitize=address");
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- // If explicitly requested: enable static linking against the Microsoft Visual
|
||||||
|
- // C++ Runtime to avoid dependencies on vcruntime140.dll and similar libraries.
|
||||||
|
- if cfg!(target_feature = "crt-static") && is_compiler("msvc") {
|
||||||
|
- cfg.static_crt(true);
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- // Older versions of visual studio don't support c99 (including isnan), which
|
||||||
|
- // causes a build failure when the linker fails to find the `isnan`
|
||||||
|
- // function. `sqlite` provides its own implementation, using the fact
|
||||||
|
- // that x != x when x is NaN.
|
||||||
|
- //
|
||||||
|
- // There may be other platforms that don't support `isnan`, they should be
|
||||||
|
- // tested for here.
|
||||||
|
- if is_compiler("msvc") {
|
||||||
|
- use cc::windows_registry::{find_vs_version, VsVers};
|
||||||
|
- let vs_has_nan = match find_vs_version() {
|
||||||
|
- Ok(ver) => ver != VsVers::Vs12,
|
||||||
|
- Err(_msg) => false,
|
||||||
|
- };
|
||||||
|
- if vs_has_nan {
|
||||||
|
- cfg.flag("-DHAVE_ISNAN");
|
||||||
|
- }
|
||||||
|
- } else {
|
||||||
|
- cfg.flag("-DHAVE_ISNAN");
|
||||||
|
- }
|
||||||
|
- if !win_target() {
|
||||||
|
- cfg.flag("-DHAVE_LOCALTIME_R");
|
||||||
|
- }
|
||||||
|
- // Target wasm32-wasi can't compile the default VFS
|
||||||
|
- if is_compiler("wasm32-wasi") {
|
||||||
|
- cfg.flag("-DSQLITE_OS_OTHER")
|
||||||
|
- // https://github.com/rust-lang/rust/issues/74393
|
||||||
|
- .flag("-DLONGDOUBLE_TYPE=double");
|
||||||
|
- if cfg!(feature = "wasm32-wasi-vfs") {
|
||||||
|
- cfg.file("sqlite3/wasm32-wasi-vfs.c");
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
- if cfg!(feature = "unlock_notify") {
|
||||||
|
- cfg.flag("-DSQLITE_ENABLE_UNLOCK_NOTIFY");
|
||||||
|
- }
|
||||||
|
- if cfg!(feature = "preupdate_hook") {
|
||||||
|
- cfg.flag("-DSQLITE_ENABLE_PREUPDATE_HOOK");
|
||||||
|
- }
|
||||||
|
- if cfg!(feature = "session") {
|
||||||
|
- cfg.flag("-DSQLITE_ENABLE_SESSION");
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- if let Ok(limit) = env::var("SQLITE_MAX_VARIABLE_NUMBER") {
|
||||||
|
- cfg.flag(&format!("-DSQLITE_MAX_VARIABLE_NUMBER={}", limit));
|
||||||
|
- }
|
||||||
|
- println!("cargo:rerun-if-env-changed=SQLITE_MAX_VARIABLE_NUMBER");
|
||||||
|
-
|
||||||
|
- if let Ok(limit) = env::var("SQLITE_MAX_EXPR_DEPTH") {
|
||||||
|
- cfg.flag(&format!("-DSQLITE_MAX_EXPR_DEPTH={}", limit));
|
||||||
|
- }
|
||||||
|
- println!("cargo:rerun-if-env-changed=SQLITE_MAX_EXPR_DEPTH");
|
||||||
|
-
|
||||||
|
- if let Ok(extras) = env::var("LIBSQLITE3_FLAGS") {
|
||||||
|
- for extra in extras.split_whitespace() {
|
||||||
|
- if extra.starts_with("-D") || extra.starts_with("-U") {
|
||||||
|
- cfg.flag(extra);
|
||||||
|
- } else if extra.starts_with("SQLITE_") {
|
||||||
|
- cfg.flag(&format!("-D{}", extra));
|
||||||
|
- } else {
|
||||||
|
- panic!("Don't understand {} in LIBSQLITE3_FLAGS", extra);
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
- println!("cargo:rerun-if-env-changed=LIBSQLITE3_FLAGS");
|
||||||
|
-
|
||||||
|
- cfg.compile(lib_name);
|
||||||
|
-
|
||||||
|
- println!("cargo:lib_dir={}", out_dir);
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- fn env(name: &str) -> Option<OsString> {
|
||||||
|
- let prefix = env::var("TARGET").unwrap().to_uppercase().replace('-', "_");
|
||||||
|
- let prefixed = format!("{}_{}", prefix, name);
|
||||||
|
- let var = env::var_os(&prefixed);
|
||||||
|
-
|
||||||
|
- match var {
|
||||||
|
- None => env::var_os(name),
|
||||||
|
- _ => var,
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- fn find_openssl_dir(_host: &str, _target: &str) -> Option<PathBuf> {
|
||||||
|
- let openssl_dir = env("OPENSSL_DIR");
|
||||||
|
- openssl_dir.map(PathBuf::from)
|
||||||
|
- }
|
||||||
|
+ build_linked::main(&out_dir, &out_path);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn env_prefix() -> &'static str {
|
||||||
|
- if cfg!(any(feature = "sqlcipher", feature = "bundled-sqlcipher")) {
|
||||||
|
+ if cfg!(feature = "sqlcipher") {
|
||||||
|
"SQLCIPHER"
|
||||||
|
} else {
|
||||||
|
"SQLITE3"
|
||||||
|
@@ -314,10 +16,8 @@ fn env_prefix() -> &'static str {
|
||||||
|
}
|
||||||
|
|
||||||
|
fn lib_name() -> &'static str {
|
||||||
|
- if cfg!(any(feature = "sqlcipher", feature = "bundled-sqlcipher")) {
|
||||||
|
+ if cfg!(feature = "sqlcipher") {
|
||||||
|
"sqlcipher"
|
||||||
|
- } else if cfg!(all(windows, feature = "winsqlite3")) {
|
||||||
|
- "winsqlite3"
|
||||||
|
} else {
|
||||||
|
"sqlite3"
|
||||||
|
}
|
||||||
|
@@ -350,45 +50,19 @@ impl From<HeaderLocation> for String {
|
||||||
|
}
|
||||||
|
|
||||||
|
mod build_linked {
|
||||||
|
- #[cfg(feature = "vcpkg")]
|
||||||
|
- extern crate vcpkg;
|
||||||
|
-
|
||||||
|
- use super::{bindings, env_prefix, is_compiler, lib_name, win_target, HeaderLocation};
|
||||||
|
+ use super::{bindings, env_prefix, lib_name, HeaderLocation};
|
||||||
|
use std::env;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
pub fn main(_out_dir: &str, out_path: &Path) {
|
||||||
|
let header = find_sqlite();
|
||||||
|
- if (cfg!(any(
|
||||||
|
- feature = "bundled_bindings",
|
||||||
|
- feature = "bundled",
|
||||||
|
- feature = "bundled-sqlcipher"
|
||||||
|
- )) || (win_target() && cfg!(feature = "bundled-windows")))
|
||||||
|
- && !cfg!(feature = "buildtime_bindgen")
|
||||||
|
- {
|
||||||
|
- // Generally means the `bundled_bindings` feature is enabled.
|
||||||
|
- // Most users are better off with turning
|
||||||
|
- // on buildtime_bindgen instead, but this is still supported as we
|
||||||
|
- // have runtime version checks and there are good reasons to not
|
||||||
|
- // want to run bindgen.
|
||||||
|
- std::fs::copy(
|
||||||
|
- format!("{}/bindgen_bundled_version.rs", lib_name()),
|
||||||
|
- out_path,
|
||||||
|
- )
|
||||||
|
- .expect("Could not copy bindings to output directory");
|
||||||
|
- } else {
|
||||||
|
- bindings::write_to_out_dir(header, out_path);
|
||||||
|
- }
|
||||||
|
+ bindings::write_to_out_dir(header, out_path);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn find_link_mode() -> &'static str {
|
||||||
|
- // If the user specifies SQLITE3_STATIC (or SQLCIPHER_STATIC), do static
|
||||||
|
- // linking, unless it's explicitly set to 0.
|
||||||
|
- match &env::var(format!("{}_STATIC", env_prefix())) {
|
||||||
|
- Ok(v) if v != "0" => "static",
|
||||||
|
- _ => "dylib",
|
||||||
|
- }
|
||||||
|
+ "dylib"
|
||||||
|
}
|
||||||
|
+
|
||||||
|
// Prints the necessary cargo link commands and returns the path to the header.
|
||||||
|
fn find_sqlite() -> HeaderLocation {
|
||||||
|
let link_lib = lib_name();
|
||||||
|
@@ -396,9 +70,6 @@ mod build_linked {
|
||||||
|
println!("cargo:rerun-if-env-changed={}_INCLUDE_DIR", env_prefix());
|
||||||
|
println!("cargo:rerun-if-env-changed={}_LIB_DIR", env_prefix());
|
||||||
|
println!("cargo:rerun-if-env-changed={}_STATIC", env_prefix());
|
||||||
|
- if cfg!(feature = "vcpkg") && is_compiler("msvc") {
|
||||||
|
- println!("cargo:rerun-if-env-changed=VCPKGRS_DYNAMIC");
|
||||||
|
- }
|
||||||
|
|
||||||
|
// dependents can access `DEP_SQLITE3_LINK_TARGET` (`sqlite3` being the
|
||||||
|
// `links=` value in our Cargo.toml) to get this value. This might be
|
||||||
|
@@ -406,11 +77,6 @@ mod build_linked {
|
||||||
|
// on is available, for example.
|
||||||
|
println!("cargo:link-target={}", link_lib);
|
||||||
|
|
||||||
|
- if win_target() && cfg!(feature = "winsqlite3") {
|
||||||
|
- println!("cargo:rustc-link-lib=dylib={}", link_lib);
|
||||||
|
- return HeaderLocation::Wrapper;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
// Allow users to specify where to find SQLite.
|
||||||
|
if let Ok(dir) = env::var(format!("{}_LIB_DIR", env_prefix())) {
|
||||||
|
// Try to use pkg-config to determine link commands
|
||||||
|
@@ -424,10 +90,6 @@ mod build_linked {
|
||||||
|
return HeaderLocation::FromEnvironment;
|
||||||
|
}
|
||||||
|
|
||||||
|
- if let Some(header) = try_vcpkg() {
|
||||||
|
- return header;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
// See if pkg-config can do everything for us.
|
||||||
|
if let Ok(mut lib) = pkg_config::Config::new()
|
||||||
|
.print_system_libs(false)
|
||||||
|
@@ -448,48 +110,8 @@ mod build_linked {
|
||||||
|
HeaderLocation::Wrapper
|
||||||
|
}
|
||||||
|
}
|
||||||
|
-
|
||||||
|
- fn try_vcpkg() -> Option<HeaderLocation> {
|
||||||
|
- if cfg!(feature = "vcpkg") && is_compiler("msvc") {
|
||||||
|
- // See if vcpkg can find it.
|
||||||
|
- if let Ok(mut lib) = vcpkg::Config::new().probe(lib_name()) {
|
||||||
|
- if let Some(mut header) = lib.include_paths.pop() {
|
||||||
|
- header.push("sqlite3.h");
|
||||||
|
- return Some(HeaderLocation::FromPath(header.to_string_lossy().into()));
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
- None
|
||||||
|
- } else {
|
||||||
|
- None
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
}
|
||||||
|
|
||||||
|
-#[cfg(not(feature = "buildtime_bindgen"))]
|
||||||
|
-mod bindings {
|
||||||
|
- #![allow(dead_code)]
|
||||||
|
- use super::HeaderLocation;
|
||||||
|
-
|
||||||
|
- use std::fs;
|
||||||
|
- use std::path::Path;
|
||||||
|
-
|
||||||
|
- static PREBUILT_BINDGEN_PATHS: &[&str] = &[
|
||||||
|
- "bindgen-bindings/bindgen_3.6.8.rs",
|
||||||
|
- #[cfg(feature = "min_sqlite_version_3_6_23")]
|
||||||
|
- "bindgen-bindings/bindgen_3.6.23.rs",
|
||||||
|
- #[cfg(feature = "min_sqlite_version_3_7_7")]
|
||||||
|
- "bindgen-bindings/bindgen_3.7.7.rs",
|
||||||
|
- #[cfg(feature = "min_sqlite_version_3_7_16")]
|
||||||
|
- "bindgen-bindings/bindgen_3.7.16.rs",
|
||||||
|
- ];
|
||||||
|
-
|
||||||
|
- pub fn write_to_out_dir(_header: HeaderLocation, out_path: &Path) {
|
||||||
|
- let in_path = PREBUILT_BINDGEN_PATHS[PREBUILT_BINDGEN_PATHS.len() - 1];
|
||||||
|
- fs::copy(in_path, out_path).expect("Could not copy bindings to output directory");
|
||||||
|
- }
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-#[cfg(feature = "buildtime_bindgen")]
|
||||||
|
mod bindings {
|
||||||
|
use super::HeaderLocation;
|
||||||
|
use bindgen::callbacks::{IntKind, ParseCallbacks};
|
||||||
|
@@ -498,8 +120,6 @@ mod bindings {
|
||||||
|
use std::io::Write;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
- use super::win_target;
|
||||||
|
-
|
||||||
|
#[derive(Debug)]
|
||||||
|
struct SqliteTypeChooser;
|
||||||
|
|
||||||
|
@@ -513,18 +133,6 @@ mod bindings {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- // Are we generating the bundled bindings? Used to avoid emitting things
|
||||||
|
- // that would be problematic in bundled builds. This env var is set by
|
||||||
|
- // `upgrade.sh`.
|
||||||
|
- fn generating_bundled_bindings() -> bool {
|
||||||
|
- // Hacky way to know if we're generating the bundled bindings
|
||||||
|
- println!("cargo:rerun-if-env-changed=LIBSQLITE3_SYS_BUNDLING");
|
||||||
|
- match std::env::var("LIBSQLITE3_SYS_BUNDLING") {
|
||||||
|
- Ok(v) => v != "0",
|
||||||
|
- Err(_) => false,
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
pub fn write_to_out_dir(header: HeaderLocation, out_path: &Path) {
|
||||||
|
let header: String = header.into();
|
||||||
|
let mut output = Vec::new();
|
||||||
|
@@ -534,7 +142,7 @@ mod bindings {
|
||||||
|
.parse_callbacks(Box::new(SqliteTypeChooser))
|
||||||
|
.rustfmt_bindings(true);
|
||||||
|
|
||||||
|
- if cfg!(any(feature = "sqlcipher", feature = "bundled-sqlcipher")) {
|
||||||
|
+ if cfg!(feature = "sqlcipher") {
|
||||||
|
bindings = bindings.clang_arg("-DSQLITE_HAS_CODEC");
|
||||||
|
}
|
||||||
|
if cfg!(feature = "unlock_notify") {
|
||||||
|
@@ -546,65 +154,6 @@ mod bindings {
|
||||||
|
if cfg!(feature = "session") {
|
||||||
|
bindings = bindings.clang_arg("-DSQLITE_ENABLE_SESSION");
|
||||||
|
}
|
||||||
|
- if win_target() && cfg!(feature = "winsqlite3") {
|
||||||
|
- bindings = bindings
|
||||||
|
- .clang_arg("-DBINDGEN_USE_WINSQLITE3")
|
||||||
|
- .blocklist_item("NTDDI_.+")
|
||||||
|
- .blocklist_item("WINAPI_FAMILY.*")
|
||||||
|
- .blocklist_item("_WIN32_.+")
|
||||||
|
- .blocklist_item("_VCRT_COMPILER_PREPROCESSOR")
|
||||||
|
- .blocklist_item("_SAL_VERSION")
|
||||||
|
- .blocklist_item("__SAL_H_VERSION")
|
||||||
|
- .blocklist_item("_USE_DECLSPECS_FOR_SAL")
|
||||||
|
- .blocklist_item("_USE_ATTRIBUTES_FOR_SAL")
|
||||||
|
- .blocklist_item("_CRT_PACKING")
|
||||||
|
- .blocklist_item("_HAS_EXCEPTIONS")
|
||||||
|
- .blocklist_item("_STL_LANG")
|
||||||
|
- .blocklist_item("_HAS_CXX17")
|
||||||
|
- .blocklist_item("_HAS_CXX20")
|
||||||
|
- .blocklist_item("_HAS_NODISCARD")
|
||||||
|
- .blocklist_item("WDK_NTDDI_VERSION")
|
||||||
|
- .blocklist_item("OSVERSION_MASK")
|
||||||
|
- .blocklist_item("SPVERSION_MASK")
|
||||||
|
- .blocklist_item("SUBVERSION_MASK")
|
||||||
|
- .blocklist_item("WINVER")
|
||||||
|
- .blocklist_item("__security_cookie")
|
||||||
|
- .blocklist_type("size_t")
|
||||||
|
- .blocklist_type("__vcrt_bool")
|
||||||
|
- .blocklist_type("wchar_t")
|
||||||
|
- .blocklist_function("__security_init_cookie")
|
||||||
|
- .blocklist_function("__report_gsfailure")
|
||||||
|
- .blocklist_function("__va_start");
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- // When cross compiling unless effort is taken to fix the issue, bindgen
|
||||||
|
- // will find the wrong headers. There's only one header included by the
|
||||||
|
- // amalgamated `sqlite.h`: `stdarg.h`.
|
||||||
|
- //
|
||||||
|
- // Thankfully, there's almost no case where rust code needs to use
|
||||||
|
- // functions taking `va_list` (It's nearly impossible to get a `va_list`
|
||||||
|
- // in Rust unless you get passed it by C code for some reason).
|
||||||
|
- //
|
||||||
|
- // Arguably, we should never be including these, but we include them for
|
||||||
|
- // the cases where they aren't totally broken...
|
||||||
|
- let target_arch = std::env::var("TARGET").unwrap();
|
||||||
|
- let host_arch = std::env::var("HOST").unwrap();
|
||||||
|
- let is_cross_compiling = target_arch != host_arch;
|
||||||
|
-
|
||||||
|
- // Note that when generating the bundled file, we're essentially always
|
||||||
|
- // cross compiling.
|
||||||
|
- if generating_bundled_bindings() || is_cross_compiling {
|
||||||
|
- // Get rid of va_list, as it's not
|
||||||
|
- bindings = bindings
|
||||||
|
- .blocklist_function("sqlite3_vmprintf")
|
||||||
|
- .blocklist_function("sqlite3_vsnprintf")
|
||||||
|
- .blocklist_function("sqlite3_str_vappendf")
|
||||||
|
- .blocklist_type("va_list")
|
||||||
|
- .blocklist_type("__builtin_va_list")
|
||||||
|
- .blocklist_type("__gnuc_va_list")
|
||||||
|
- .blocklist_type("__va_list_tag")
|
||||||
|
- .blocklist_item("__GNUC_VA_LIST");
|
||||||
|
- }
|
||||||
|
|
||||||
|
bindings
|
||||||
|
.generate()
|
||||||
|
--
|
||||||
|
2.39.2
|
||||||
|
|
Binary file not shown.
@ -0,0 +1,89 @@
|
|||||||
|
--- libsqlite3-sys-0.25.2/Cargo.toml 1970-01-01T00:00:01+00:00
|
||||||
|
+++ libsqlite3-sys-0.25.2/Cargo.toml 2023-03-07T15:11:16.358560+00:00
|
||||||
|
@@ -26,67 +26,28 @@
|
||||||
|
categories = ["external-ffi-bindings"]
|
||||||
|
license = "MIT"
|
||||||
|
repository = "https://github.com/rusqlite/rusqlite"
|
||||||
|
-
|
||||||
|
-[dependencies.openssl-sys]
|
||||||
|
-version = "0.9"
|
||||||
|
-optional = true
|
||||||
|
+exclude = [
|
||||||
|
+ "/bindgen-bindings/",
|
||||||
|
+ "/upgrade.sh",
|
||||||
|
+ "/upgrade_sqlcipher.sh",
|
||||||
|
+ "/Upgrade.md",
|
||||||
|
+]
|
||||||
|
|
||||||
|
[build-dependencies.bindgen]
|
||||||
|
-version = "0.60"
|
||||||
|
+version = "0.63"
|
||||||
|
features = ["runtime"]
|
||||||
|
-optional = true
|
||||||
|
default-features = false
|
||||||
|
-
|
||||||
|
-[build-dependencies.cc]
|
||||||
|
-version = "1.0"
|
||||||
|
-optional = true
|
||||||
|
|
||||||
|
[build-dependencies.pkg-config]
|
||||||
|
version = "0.3.19"
|
||||||
|
-optional = true
|
||||||
|
-
|
||||||
|
-[build-dependencies.vcpkg]
|
||||||
|
-version = "0.2"
|
||||||
|
-optional = true
|
||||||
|
|
||||||
|
[features]
|
||||||
|
-buildtime_bindgen = [
|
||||||
|
- "bindgen",
|
||||||
|
- "pkg-config",
|
||||||
|
- "vcpkg",
|
||||||
|
-]
|
||||||
|
-bundled = [
|
||||||
|
- "cc",
|
||||||
|
- "bundled_bindings",
|
||||||
|
-]
|
||||||
|
-bundled-sqlcipher = ["bundled"]
|
||||||
|
-bundled-sqlcipher-vendored-openssl = [
|
||||||
|
- "bundled-sqlcipher",
|
||||||
|
- "openssl-sys/vendored",
|
||||||
|
-]
|
||||||
|
-bundled-windows = [
|
||||||
|
- "cc",
|
||||||
|
- "bundled_bindings",
|
||||||
|
-]
|
||||||
|
-bundled_bindings = []
|
||||||
|
+buildtime_bindgen = []
|
||||||
|
default = ["min_sqlite_version_3_6_8"]
|
||||||
|
-in_gecko = []
|
||||||
|
-min_sqlite_version_3_6_23 = [
|
||||||
|
- "pkg-config",
|
||||||
|
- "vcpkg",
|
||||||
|
-]
|
||||||
|
-min_sqlite_version_3_6_8 = [
|
||||||
|
- "pkg-config",
|
||||||
|
- "vcpkg",
|
||||||
|
-]
|
||||||
|
-min_sqlite_version_3_7_16 = [
|
||||||
|
- "pkg-config",
|
||||||
|
- "vcpkg",
|
||||||
|
-]
|
||||||
|
-min_sqlite_version_3_7_7 = [
|
||||||
|
- "pkg-config",
|
||||||
|
- "vcpkg",
|
||||||
|
-]
|
||||||
|
+min_sqlite_version_3_6_23 = []
|
||||||
|
+min_sqlite_version_3_6_8 = []
|
||||||
|
+min_sqlite_version_3_7_16 = []
|
||||||
|
+min_sqlite_version_3_7_7 = []
|
||||||
|
preupdate_hook = ["buildtime_bindgen"]
|
||||||
|
session = [
|
||||||
|
"preupdate_hook",
|
||||||
|
@@ -94,6 +55,4 @@
|
||||||
|
]
|
||||||
|
sqlcipher = []
|
||||||
|
unlock_notify = []
|
||||||
|
-wasm32-wasi-vfs = []
|
||||||
|
-winsqlite3 = ["min_sqlite_version_3_7_16"]
|
||||||
|
with-asan = []
|
@ -0,0 +1,259 @@
|
|||||||
|
## START: Set by rpmautospec
|
||||||
|
## (rpmautospec version 0.3.5)
|
||||||
|
## RPMAUTOSPEC: autorelease, autochangelog
|
||||||
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||||
|
release_number = 1;
|
||||||
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||||
|
print(release_number + base_release_number - 1);
|
||||||
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||||
|
## END: Set by rpmautospec
|
||||||
|
|
||||||
|
# Generated by rust2rpm 24
|
||||||
|
%bcond_without check
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
%global crate libsqlite3-sys
|
||||||
|
|
||||||
|
Name: rust-libsqlite3-sys
|
||||||
|
Version: 0.25.2
|
||||||
|
Release: %autorelease
|
||||||
|
Summary: Native bindings to the libsqlite3 library
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
URL: https://crates.io/crates/libsqlite3-sys
|
||||||
|
Source: %{crates_source}
|
||||||
|
# Manually created patch for downstream crate metadata changes
|
||||||
|
# * bump bindgen from 0.60 to 0.63
|
||||||
|
# * remove features for building vendored sqlite3 and sqlcipher sources
|
||||||
|
# * drop Windows- and WASM-specific features
|
||||||
|
# * exclude files that are only useful for upstream development
|
||||||
|
Patch: libsqlite3-sys-fix-metadata.diff
|
||||||
|
# * unconditionally enable building with bindgen and pkg-config
|
||||||
|
Patch: 0001-unconditionally-enable-building-with-bindgen-and-pkg.patch
|
||||||
|
|
||||||
|
BuildRequires: rust-packaging >= 21
|
||||||
|
|
||||||
|
%global _description %{expand:
|
||||||
|
Native bindings to the libsqlite3 library.}
|
||||||
|
|
||||||
|
%description %{_description}
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: pkgconfig(sqlite3) >= 3.7.16
|
||||||
|
|
||||||
|
%description devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%license %{crate_instdir}/LICENSE
|
||||||
|
%doc %{crate_instdir}/README.md
|
||||||
|
%{crate_instdir}/
|
||||||
|
|
||||||
|
%package -n %{name}+default-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+default-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "default" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+default-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+buildtime_bindgen-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+buildtime_bindgen-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "buildtime_bindgen" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+buildtime_bindgen-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+min_sqlite_version_3_6_23-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+min_sqlite_version_3_6_23-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "min_sqlite_version_3_6_23" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+min_sqlite_version_3_6_23-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+min_sqlite_version_3_6_8-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+min_sqlite_version_3_6_8-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "min_sqlite_version_3_6_8" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+min_sqlite_version_3_6_8-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+min_sqlite_version_3_7_16-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+min_sqlite_version_3_7_16-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "min_sqlite_version_3_7_16" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+min_sqlite_version_3_7_16-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+min_sqlite_version_3_7_7-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+min_sqlite_version_3_7_7-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "min_sqlite_version_3_7_7" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+min_sqlite_version_3_7_7-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+preupdate_hook-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+preupdate_hook-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "preupdate_hook" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+preupdate_hook-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+session-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+session-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "session" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+session-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+sqlcipher-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: pkgconfig(sqlcipher)
|
||||||
|
|
||||||
|
%description -n %{name}+sqlcipher-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "sqlcipher" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+sqlcipher-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+unlock_notify-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+unlock_notify-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "unlock_notify" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+unlock_notify-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+with-asan-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+with-asan-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "with-asan" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+with-asan-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{crate}-%{version_no_tilde} -p1
|
||||||
|
# * remove bundled copies of sqlite and sqlcipher
|
||||||
|
rm -vr sqlite3/ sqlcipher/
|
||||||
|
%cargo_prep
|
||||||
|
|
||||||
|
%generate_buildrequires
|
||||||
|
%cargo_generate_buildrequires
|
||||||
|
echo 'pkgconfig(sqlcipher)'
|
||||||
|
echo 'pkgconfig(sqlite3) >= 3.7.16'
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cargo_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cargo_install
|
||||||
|
|
||||||
|
%if %{with check}
|
||||||
|
%check
|
||||||
|
%cargo_test
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Jan 15 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 0.25.2-1
|
||||||
|
- Rebuilt for MSVSphere 9.3
|
||||||
|
|
||||||
|
* Tue Mar 07 2023 Fabio Valentini <decathorpe@gmail.com> - 0.25.2-1
|
||||||
|
- Update to version 0.25.2; Fixes RHBZ#2059009
|
||||||
|
|
||||||
|
* Sun Feb 05 2023 Fabio Valentini <decathorpe@gmail.com> - 0.23.2-5
|
||||||
|
- Bump bindgen from 0.59 to 0.63
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 09 2021 Fabio Valentini <decathorpe@gmail.com> - 0.23.2-1
|
||||||
|
- Update to version 0.23.2; Fixes RHBZ#2030144
|
||||||
|
|
||||||
|
* Fri Nov 12 2021 Robert-André Mauchin <zebob.m@gmail.com> - 0.23.1-1
|
||||||
|
- Update to 0.23.1 Close: rhbz#1946044
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Mar 31 21:56:13 CEST 2021 Robert-André Mauchin <zebob.m@gmail.com> - 0.20.1-2
|
||||||
|
- Bump to bindgen 0.57
|
||||||
|
|
||||||
|
* Fri Mar 05 2021 Fabio Valentini <decathorpe@gmail.com> - 0.20.1-1
|
||||||
|
- Update to version 0.20.1.
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 27 2020 Fabio Valentini <decathorpe@gmail.com> - 0.18.0-4
|
||||||
|
- Bump to bindgen 0.56.
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat May 30 2020 Josh Stone <jistone@redhat.com> - 0.18.0-2
|
||||||
|
- Bump to bindgen 0.54
|
||||||
|
|
||||||
|
* Sat May 16 09:59:25 CEST 2020 Igor Raits <i.gnatenko.brain@gmail.com> - 0.18.0-1
|
||||||
|
- Initial package
|
||||||
|
|
Loading…
Reference in new issue