rework the catagories and tag thing

This commit is contained in:
Don Harper 2019-06-22 23:45:50 -05:00
parent 768c0cd9ea
commit 89bec69b93
61 changed files with 171 additions and 259 deletions

View file

@ -1,30 +1,13 @@
+++
date = "2014-09-18T05:09:12-07:00"
title = "Perl, Modules, and Package Management"
categories = ["sa","arch"]
categories = ["sa","unix"]
tags = ["linux"]
+++
So, even though I have been starting to
[work with \<back2freebsd-maybe\>]{role="doc"}
[FreeBSD \<freebsd-switch\>]{role="doc"}
[again \<one-step-closer\>]{role="doc"} , I am still running
[ArchLinux](http://www.archlinux.org/) on my workstation.
So, even though I have been starting to [work with \<back2freebsd-maybe\>]{role="doc"} [FreeBSD \<freebsd-switch\>]{role="doc"} [again \<one-step-closer\>]{role="doc"} , I am still running [ArchLinux](http://www.archlinux.org/) on my workstation.
And I wanted to run a script I wrote a long time ago to support a
[website](http://www.donaldharper.com/) of mine, which I have not
updated in a while. The way I would update the site is by doing some
batch editing of photos, park them in a directory, and then run my
script which pushes the photos to the web server, and then interfaces
with the CMS software to schedule the posts and all is good.
And I wanted to run a script I wrote a long time ago to support a [website](http://www.donaldharper.com/) of mine, which I have not updated in a while. The way I would update the site is by doing some batch editing of photos, park them in a directory, and then run my script which pushes the photos to the web server, and then interfaces with the CMS software to schedule the posts and all is good.
Except the script is in perl, and it uses some modules which are not
main-stream. While perl has the awesome **cpan(1perl)** command to fetch
and install perl modules, I wanted it to be tied into **pacman(8)** . A
quick trip to the [AUR](http://aur.archlinux.org/) turned up the tools
[cpan2aur](https://aur.archlinux.org/packages/perl-cpanplus-dist-arch-git/)
and
[mkaurball](https://aur.archlinux.org/packages/pkgbuild-introspection-git/)
which made it pretty easy to package up and post the the AUR the 9 perl
modules I needed to get my script going and keep track of things with
pacman.
Except the script is in perl, and it uses some modules which are not main-stream. While perl has the awesome **cpan(1perl)** command to fetch and install perl modules, I wanted it to be tied into **pacman(8)** . A quick trip to the [AUR](http://aur.archlinux.org/) turned up the tools [cpan2aur](https://aur.archlinux.org/packages/perl-cpanplus-dist-arch-git/) and [mkaurball](https://aur.archlinux.org/packages/pkgbuild-introspection-git/) which made it pretty easy to package up and post the the AUR the 9 perl modules I needed to get my script going and keep track of things with pacman.
Yeah!