Barrido de TEXTO puro: 1427 líneas de comentario TOML. Cero ArtifactHash movidos, y eso está MEDIDO, no deducido: hasheé las 741 antes y después y los ficheros de hashes son idénticos byte a byte (723 con hash real + 18 que ya no hasheaban de antes). El guardián valió la pena: el primer barrido, filtrando por 'la línea empieza con #', movió el hash de helix, lsof y steam-runtime-sniper. La causa es que una fase se escribe como compile = <triple> ... <triple> y sus comentarios de SHELL también empiezan con #, pero viven dentro del VALOR — y las fases sí entran en hash_inputs. El barrido ahora calcula los rangos de las cadenas multilínea de TOML y no entra ahí. Quedan intactos a propósito: .hammer-zig-cc y .hammer-cargo-vendor (literales dentro de fases), hammerd, hammer-recover y toda ruta que empiece por /
140 lines
5.8 KiB
TOML
140 lines
5.8 KiB
TOML
# takana-edit — editor de código REAL para el distro: Adwaita + GtkSourceView, abrir/guardar/guardar-como
|
|
# (GtkFileDialog), resaltado por extensión, números de línea, apertura de archivos desde la CLI. Link 100%
|
|
# estático (gtk4+libadwaita+gtksourceview). No es una demo: es una app instalable y usable.
|
|
name = "hammer-edit"
|
|
version = "1.0.0"
|
|
license = "LGPL-2.1-or-later"
|
|
|
|
[source]
|
|
tarball = "https://download.gnome.org/sources/gtksourceview/5.16/gtksourceview-5.16.0.tar.xz"
|
|
sha256 = "ab35d420102f3e8b055dd3b8642d3a48209f888189e6254d0ffb4b6a7e8c3566"
|
|
|
|
[build]
|
|
compiler = "zig-cc"
|
|
target = "x86_64-linux-musl"
|
|
link = "static"
|
|
|
|
[build.phases]
|
|
configure = "true"
|
|
compile = '''
|
|
cat > hammer_edit.c <<'CEOF'
|
|
#include <adwaita.h>
|
|
#include <gtksourceview/gtksource.h>
|
|
#include <string.h>
|
|
|
|
typedef struct { GtkWindow *win; GtkSourceBuffer *buf; GFile *file; } App;
|
|
|
|
static void set_title(App *a) {
|
|
char *name = a->file ? g_file_get_basename(a->file) : g_strdup("Sin título");
|
|
char *full = g_strdup_printf("%s — hammer-edit", name);
|
|
gtk_window_set_title(a->win, full);
|
|
g_free(name); g_free(full);
|
|
}
|
|
|
|
static void load_file(App *a, GFile *file) {
|
|
char *contents; gsize len;
|
|
if (!g_file_load_contents(file, NULL, &contents, &len, NULL, NULL)) return;
|
|
gtk_text_buffer_set_text(GTK_TEXT_BUFFER(a->buf), contents, len);
|
|
g_free(contents);
|
|
g_set_object(&a->file, file);
|
|
GtkSourceLanguageManager *lm = gtk_source_language_manager_get_default();
|
|
char *base = g_file_get_basename(file);
|
|
GtkSourceLanguage *lang = gtk_source_language_manager_guess_language(lm, base, NULL);
|
|
gtk_source_buffer_set_language(a->buf, lang);
|
|
g_free(base);
|
|
set_title(a);
|
|
}
|
|
|
|
static void open_cb(GObject *src, GAsyncResult *res, gpointer ud) {
|
|
App *a = ud;
|
|
GFile *file = gtk_file_dialog_open_finish(GTK_FILE_DIALOG(src), res, NULL);
|
|
if (file) { load_file(a, file); g_object_unref(file); }
|
|
}
|
|
static void on_open(GtkButton *b, gpointer ud) {
|
|
App *a = ud;
|
|
GtkFileDialog *d = gtk_file_dialog_new();
|
|
gtk_file_dialog_open(d, a->win, NULL, open_cb, a);
|
|
g_object_unref(d);
|
|
}
|
|
|
|
static void save_to(App *a, GFile *file) {
|
|
GtkTextIter s, e;
|
|
gtk_text_buffer_get_bounds(GTK_TEXT_BUFFER(a->buf), &s, &e);
|
|
char *text = gtk_text_buffer_get_text(GTK_TEXT_BUFFER(a->buf), &s, &e, FALSE);
|
|
g_file_replace_contents(file, text, strlen(text), NULL, FALSE,
|
|
G_FILE_CREATE_NONE, NULL, NULL, NULL);
|
|
g_free(text);
|
|
g_set_object(&a->file, file);
|
|
set_title(a);
|
|
}
|
|
static void save_cb(GObject *src, GAsyncResult *res, gpointer ud) {
|
|
App *a = ud;
|
|
GFile *file = gtk_file_dialog_save_finish(GTK_FILE_DIALOG(src), res, NULL);
|
|
if (file) { save_to(a, file); g_object_unref(file); }
|
|
}
|
|
static void on_save(GtkButton *b, gpointer ud) {
|
|
App *a = ud;
|
|
if (a->file) { save_to(a, a->file); return; }
|
|
GtkFileDialog *d = gtk_file_dialog_new();
|
|
gtk_file_dialog_save(d, a->win, NULL, save_cb, a);
|
|
g_object_unref(d);
|
|
}
|
|
|
|
static App *build_window(GtkApplication *app) {
|
|
App *a = g_new0(App, 1);
|
|
GtkWidget *win = adw_application_window_new(app);
|
|
a->win = GTK_WINDOW(win);
|
|
gtk_window_set_default_size(a->win, 820, 580);
|
|
GtkWidget *tv = adw_toolbar_view_new();
|
|
GtkWidget *hb = adw_header_bar_new();
|
|
GtkWidget *ob = gtk_button_new_from_icon_name("document-open-symbolic");
|
|
GtkWidget *sb = gtk_button_new_from_icon_name("document-save-symbolic");
|
|
gtk_widget_set_tooltip_text(ob, "Abrir");
|
|
gtk_widget_set_tooltip_text(sb, "Guardar");
|
|
g_signal_connect(ob, "clicked", G_CALLBACK(on_open), a);
|
|
g_signal_connect(sb, "clicked", G_CALLBACK(on_save), a);
|
|
adw_header_bar_pack_start(ADW_HEADER_BAR(hb), ob);
|
|
adw_header_bar_pack_end(ADW_HEADER_BAR(hb), sb);
|
|
adw_toolbar_view_add_top_bar(ADW_TOOLBAR_VIEW(tv), hb);
|
|
a->buf = gtk_source_buffer_new(NULL);
|
|
gtk_source_buffer_set_highlight_syntax(a->buf, TRUE);
|
|
GtkWidget *view = gtk_source_view_new_with_buffer(a->buf);
|
|
gtk_source_view_set_show_line_numbers(GTK_SOURCE_VIEW(view), TRUE);
|
|
gtk_source_view_set_highlight_current_line(GTK_SOURCE_VIEW(view), TRUE);
|
|
gtk_source_view_set_auto_indent(GTK_SOURCE_VIEW(view), TRUE);
|
|
gtk_widget_add_css_class(view, "monospace");
|
|
GtkWidget *sc = gtk_scrolled_window_new();
|
|
gtk_scrolled_window_set_child(GTK_SCROLLED_WINDOW(sc), view);
|
|
adw_toolbar_view_set_content(ADW_TOOLBAR_VIEW(tv), sc);
|
|
adw_application_window_set_content(ADW_APPLICATION_WINDOW(win), tv);
|
|
set_title(a);
|
|
return a;
|
|
}
|
|
|
|
static void activate(GApplication *app, gpointer ud) {
|
|
App *a = build_window(GTK_APPLICATION(app));
|
|
gtk_window_present(a->win);
|
|
}
|
|
static void open_files(GApplication *app, GFile **files, gint n, const char *hint, gpointer ud) {
|
|
App *a = build_window(GTK_APPLICATION(app));
|
|
if (n > 0) load_file(a, files[0]);
|
|
gtk_window_present(a->win);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
AdwApplication *app = adw_application_new("org.hammer.edit", G_APPLICATION_HANDLES_OPEN);
|
|
g_signal_connect(app, "activate", G_CALLBACK(activate), NULL);
|
|
g_signal_connect(app, "open", G_CALLBACK(open_files), NULL);
|
|
int status = g_application_run(G_APPLICATION(app), argc, argv);
|
|
g_object_unref(app);
|
|
return status;
|
|
}
|
|
CEOF
|
|
export PKG_CONFIG_PATH=/usr/lib/pkgconfig
|
|
zig cc -mcpu=baseline -static hammer_edit.c -o hammer-edit $(pkg-config --cflags --libs --static gtksourceview-5 libadwaita-1 harfbuzz-subset epoxy xkbcommon wayland-client wayland-egl libtiff-4 libjpeg cairo-script-interpreter)
|
|
'''
|
|
install = "mkdir -p /out/usr/bin && cp hammer-edit /out/usr/bin/hammer-edit"
|
|
|
|
[deps]
|
|
build = ["pkgconf", "gtksourceview", "libadwaita", "appstream", "libyaml", "curl", "openssl", "libxmlb", "libxml2", "xz", "zstd", "gtk4", "pango", "gdk-pixbuf", "cairo", "graphene", "glib", "harfbuzz", "fribidi", "fontconfig", "freetype", "pixman", "libpng", "expat", "libjpeg-turbo", "libtiff", "libepoxy", "wayland", "libxkbcommon", "libdrm", "pcre2", "libffi", "zlib", "mesa"]
|