Skip to content

Commit

Permalink
Split repo commands into the new xbps-repo bin.
Browse files Browse the repository at this point in the history
- Remove lib/info.c that doesn't belong in the lib and add it into the
  bins.
- Every binary now uses its own directory on bin/.

This is in preparation for future changes for correct behaviour of
the library and binaries.

--HG--
extra : convert_revision : 880d16378bf940c4f5478de0362afe883cd5fd2c
  • Loading branch information
Juan RP committed Feb 5, 2009
1 parent 45265e4 commit 7740958
Show file tree
Hide file tree
Showing 19 changed files with 412 additions and 199 deletions.
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ destdir/
srcdistdir/
builddir/
packages/
bin/xbps-bin
bin/xbps-cmpver
bin/xbps-digest
bin/xbps-pkgdb
bin/xbps-bin/xbps-bin
bin/xbps-cmpver/xbps-cmpver
bin/xbps-digest/xbps-digest
bin/xbps-repo/xbps-repo
bin/xbps-src/xbps-src
bin/xbps-pkgdb/xbps-pkgdb
*.o
*.so*
*.bak
49 changes: 19 additions & 30 deletions bin/Makefile
Original file line number Diff line number Diff line change
@@ -1,37 +1,26 @@
include ../vars.mk

EXTRA_CFLAGS = -funroll-all-loops -ftree-loop-linear
LDFLAGS += -L../lib -L$(PREFIX)/lib -lxbps
SUBDIRS = xbps-bin
SUBDIRS += xbps-cmpver
SUBDIRS += xbps-digest
SUBDIRS += xbps-pkgdb
SUBDIRS += xbps-repo
SUBDIRS += xbps-src

BINS = xbps-bin xbps-cmpver xbps-digest xbps-pkgdb

all: $(BINS)
.PHONY: all
all:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done

xbps-bin: xbps-bin.o
$(CC) $(LDFLAGS) $^ -o $@

xbps-cmpver: xbps-cmpver.o
$(CC) $(LDFLAGS) $^ -o $@

xbps-digest: xbps-digest.o
$(CC) $(EXTRA_CFLAGS) $(LDFLAGS) $^ -o $@

xbps-pkgdb: xbps-pkgdb.o
$(CC) $(LDFLAGS) $^ -o $@
.PHONY: install
install:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir install; \
done

.PHONY: clean
clean: clean-bins clean-objs

clean-bins:
-rm -f $(BINS)

clean-objs:
-rm -f *.o

install: $(BINS)
install -d $(SBINDIR)
install -m 755 $(BINS) $(SBINDIR)
install -m 755 xbps-src.sh $(SBINDIR)/xbps-src
sed -i -e "s|@@XBPS_INSTALL_PREFIX@@|$(PREFIX)|g" $(SBINDIR)/xbps-src

clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done
24 changes: 24 additions & 0 deletions bin/xbps-bin/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
TOPDIR = ../..
include $(TOPDIR)/vars.mk

OBJS = main.o
BIN = xbps-bin

all: $(BIN)
.PHONY: all

$(BIN): $(OBJS)
$(CC) $(LDFLAGS) $^ -o $@

.PHONY: clean
clean: clean-bins clean-objs

clean-bins:
-rm -f $(BIN)

clean-objs:
-rm -f *.o

install: $(BIN)
install -d $(SBINDIR)
install -m 755 $(BIN) $(SBINDIR)
170 changes: 170 additions & 0 deletions bin/xbps-bin/main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
/*-
* Copyright (c) 2008-2009 Juan Romero Pardines.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <limits.h>
#include <libgen.h>
#include <unistd.h>

#include <xbps_api.h>

static void usage(void);
static int list_pkgs_in_dict(prop_object_t, void *, bool *);

static void
usage(void)
{
printf("Usage: xbps-bin [options] [action] [arguments]\n\n"
" Available actions:\n"
" install, list, remove, show\n"
" Actions with arguments:\n"
" install\t<pkgname>\n"
" remove\t<pkgname>\n"
" show\t<pkgname>\n"
" Options shared by all actions:\n"
" -r\t\t<rootdir>\n"
"\n"
" Examples:\n"
" $ xbps-bin install klibc\n"
" $ xbps-bin -r /path/to/root install klibc\n"
" $ xbps-bin list\n"
" $ xbps-bin remove klibc\n"
" $ xbps-bin show klibc\n");
exit(EXIT_FAILURE);
}

static int
list_pkgs_in_dict(prop_object_t obj, void *arg, bool *loop_done)
{
const char *pkgname, *version, *short_desc;

assert(prop_object_type(obj) == PROP_TYPE_DICTIONARY);

prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
prop_dictionary_get_cstring_nocopy(obj, "short_desc", &short_desc);
if (pkgname && version && short_desc) {
printf("%s (%s)\t%s\n", pkgname, version, short_desc);
return 0;
}

return EINVAL;
}

int
main(int argc, char **argv)
{
prop_dictionary_t dict;
char *plist, *root = NULL;
int c, rv = 0;

while ((c = getopt(argc, argv, "r:")) != -1) {
switch (c) {
case 'r':
/* To specify the root directory */
root = optarg;
xbps_set_rootdir(root);
break;
case '?':
default:
usage();
}
}

argc -= optind;
argv += optind;

if (argc < 1)
usage();

if (strcasecmp(argv[0], "list") == 0) {
/* Lists packages currently registered in database. */
if (argc != 1)
usage();

plist = xbps_append_full_path(true, NULL, XBPS_REGPKGDB);
if (plist == NULL)
exit(EXIT_FAILURE);

dict = prop_dictionary_internalize_from_file(plist);
if (dict == NULL) {
printf("No packages currently registered.\n");
free(plist);
exit(EXIT_SUCCESS);
}

if (!xbps_callback_array_iter_in_dict(dict, "packages",
list_pkgs_in_dict, NULL)) {
prop_object_release(dict);
free(plist);
exit(EXIT_FAILURE);
}
prop_object_release(dict);
free(plist);

} else if ((strcasecmp(argv[0], "install") == 0) ||
(strcasecmp(argv[0], "remove") == 0)) {
/* Installs a binary package and required deps. */
if (argc != 2)
usage();

if (geteuid() != 0) {
printf("ERROR: root permissions are needed to install"
"and remove binary packages.\n");
exit(EXIT_FAILURE);
}

/* Install into root directory by default. */
if (strcasecmp(argv[0], "install") == 0) {
rv = xbps_install_binary_pkg(argv[1], root);
if (rv) {
printf("ERROR: unable to install %s.\n", argv[1]);
exit(rv);
}
printf("Package %s installed successfully.\n", argv[1]);
} else {
rv = xbps_remove_binary_pkg(argv[1], root);
if (rv) {
if (rv == ENOENT)
printf("Package %s is not installed.\n",
argv[1]);
else
printf("ERROR: unable to remove %s.\n",
argv[1]);
exit(rv);
}
printf("Package %s removed successfully.\n", argv[1]);
}

} else {
usage();
}

exit(EXIT_SUCCESS);
}
24 changes: 24 additions & 0 deletions bin/xbps-cmpver/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
TOPDIR = ../..
include $(TOPDIR)/vars.mk

OBJS = main.o
BIN = xbps-cmpver

all: $(BIN)
.PHONY: all

$(BIN): $(OBJS)
$(CC) $(LDFLAGS) $^ -o $@

.PHONY: clean
clean: clean-bins clean-objs

clean-bins:
-rm -f $(BIN)

clean-objs:
-rm -f *.o

install: $(BIN)
install -d $(SBINDIR)
install -m 755 $(BIN) $(SBINDIR)
2 changes: 1 addition & 1 deletion bin/xbps-cmpver.c → bin/xbps-cmpver/main.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Compare package and version strings
* @ 2008
* Author: pancake <youterm.com>
Expand Down
25 changes: 25 additions & 0 deletions bin/xbps-digest/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
TOPDIR = ../..
include $(TOPDIR)/vars.mk

EXTRA_CFLAGS = -funroll-all-loops -ftree-loop-linear
OBJS = main.o
BIN = xbps-digest

all: $(BIN)
.PHONY: all

$(BIN): $(OBJS)
$(CC) $(EXTRA_CFLAGS) $(LDFLAGS) $^ -o $@

.PHONY: clean
clean: clean-bins clean-objs

clean-bins:
-rm -f $(BIN)

clean-objs:
-rm -f *.o

install: $(BIN)
install -d $(SBINDIR)
install -m 755 $(BIN) $(SBINDIR)
2 changes: 1 addition & 1 deletion bin/xbps-digest.c → bin/xbps-digest/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ main(int argc, char **argv)
for (i = 1; i < argc; i++) {
if ((fd = open(argv[i], O_RDONLY)) == -1) {
printf("xbps-digest: cannot open %s (%s)\n", argv[i],
strerror(errno));
strerror(errno));
exit(EXIT_FAILURE);
}

Expand Down
24 changes: 24 additions & 0 deletions bin/xbps-pkgdb/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
TOPDIR = ../..
include $(TOPDIR)/vars.mk

OBJS = main.o
BIN = xbps-pkgdb

all: $(BIN)
.PHONY: all

$(BIN): $(OBJS)
$(CC) $(LDFLAGS) $^ -o $@

.PHONY: clean
clean: clean-bins clean-objs

clean-bins:
-rm -f $(BIN)

clean-objs:
-rm -f *.o

install: $(BIN)
install -d $(SBINDIR)
install -m 755 $(BIN) $(SBINDIR)
File renamed without changes.
24 changes: 24 additions & 0 deletions bin/xbps-repo/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
TOPDIR = ../..
include $(TOPDIR)/vars.mk

OBJS = util.o main.o
BIN = xbps-repo

all: $(BIN)
.PHONY: all

$(BIN): $(OBJS)
$(CC) $(LDFLAGS) $^ -o $@

.PHONY: clean
clean: clean-bins clean-objs

clean-bins:
-rm -f $(BIN)

clean-objs:
-rm -f *.o

install: $(BIN)
install -d $(SBINDIR)
install -m 755 $(BIN) $(SBINDIR)
Loading

0 comments on commit 7740958

Please sign in to comment.